diff --git a/.gitignore b/.gitignore index b0f51f9..8ac3ab0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .DS_Store .env _site +.jekyll-metadata diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index f6abf8b..e4f2fac 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -4,7 +4,13 @@ repos: hooks: - id: lychee files: \.md$ - args: ["--no-progress", "--root-dir=.", "."] + args: + - "--no-progress" + - "--root-dir=." + - "--exclude-path=_includes" + - "--exclude-path=_layouts" + - "--exclude-path=_site" + - "." pass_filenames: false - repo: https://github.com/crate-ci/typos diff --git a/Gemfile b/Gemfile index 601eee1..09be13f 100644 --- a/Gemfile +++ b/Gemfile @@ -8,4 +8,7 @@ group :jekyll_plugins do gem "github-pages" gem "jekyll-timeago" gem "jekyll-gfm-admonitions" + gem "jekyll-sitemap" + gem "jekyll-commonmark-ghpages" + gem "jekyll-toc" end diff --git a/Gemfile.lock b/Gemfile.lock index 921157b..4ba9b71 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -224,6 +224,9 @@ GEM mini_i18n (>= 0.8.0) jekyll-titles-from-headings (0.5.3) jekyll (>= 3.3, < 5.0) + jekyll-toc (0.19.0) + jekyll (>= 3.9) + nokogiri (~> 1.12) jekyll-watch (2.2.1) listen (~> 3.0) jemoji (0.13.0) @@ -313,8 +316,11 @@ PLATFORMS DEPENDENCIES github-pages jekyll (~> 3.10.0) + jekyll-commonmark-ghpages jekyll-gfm-admonitions + jekyll-sitemap jekyll-timeago + jekyll-toc BUNDLED WITH 2.7.2 diff --git a/README.md b/README.md index 7a1fd0a..b49e6d3 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,76 @@ # MapSwipe Docs! + This repository contains all the documents related to MapSwipe - [Overview](/docs/overview.md) - [About Data](/docs/about_data.md) - [For project managers](/docs/for_project_managers.md) -- [Docs local development](/docs/docs_local_development.md) +## Getting Started + +```bash +# Get the repository +git clone https://github.com/mapswipe/mapswipe-docs + +# Install jekyll +gem install jekyll bundler --verbose + +# Install dependencies +bundle install +``` + +> [!IMPORTANT] +> Run this after changing the Gemfile + +## Run Docs in Dev Mode + +```bash +bundle exec jekyll serve --livereload +``` + +## Refreshing the Sample Export Data + +The point of this workflow is to keep the example exports under +`assets/docs/about_data/files/` consistent. Once exports are updated, the data +can also be used to keep the description for exports up-to-date. + +Two helper scripts under `examples/` fetch the data from the MapSwipe GraphQL backend. + +### Fetch Project Exports + +```bash +uv run examples/fetch-project-data/run.py 2962 \ + --sample 10 \ + --out assets/docs/about_data/files/project_exports +``` + +### Fetch Global Exports + +```bash +uv run examples/fetch-global-data/run.py \ + --sample 10 \ + --out assets/docs/about_data/files/global_exports +``` + +### Projects Mapping + +| Name | id | firebaseId | +| --- | --- | --- | +| Find Features - Find Buildings - Mozambique Floods 2026 - Chibuto (1) HOT | 2962 | 01KMMX0C9MG396SCV8W8CZ8RY3 | + + +## Changing the Syntax Highlighting Theme + +Fenced code blocks are colored by [Rouge](https://github.com/rouge-ruby/rouge), +wired into CommonMark via `syntax_highlighter: rouge` in `_config.yml`. The +active theme is generated to `assets/css/syntax.css`. + +To switch themes, run the following commands: + +```bash +# List every theme Rouge ships with +bundle exec rougify help style + +# Regenerate the stylesheet +bundle exec rougify style gruvbox.dark > assets/css/syntax.css +``` diff --git a/_config.yml b/_config.yml index 5058302..91679a5 100644 --- a/_config.yml +++ b/_config.yml @@ -1,5 +1,111 @@ -markdown: GFM +# Site metadata +title: MapSwipe Docs +description: Documentation for MapSwipe platform +url: https://docs.mapswipe.org repository: mapswipe/mapswipe-docs +# Plugins plugins: + - jekyll-remote-theme + - jekyll-commonmark-ghpages - jekyll-gfm-admonitions + - jekyll-seo-tag + - jekyll-sitemap + - jekyll-toc + - jekyll-relative-links + +# Rewrite Markdown links to *.md files into their rendered permalinks at build +# time. Lets us author plain relative .md links (which lychee can verify on +# disk) instead of hand-maintaining permalink URLs. +relative_links: + enabled: true + collections: false + +# Markdown processor (jekyll-commonmark-ghpages) +markdown: CommonMarkGhPages +commonmark: + options: + - SMART + - UNSAFE + extensions: + - strikethrough + - autolink + - table + - tagfilter + - tasklist + syntax_highlighter: rouge + syntax_highlighter_opts: + default_lang: text + +# Theme: just-the-docs (loaded via jekyll-remote-theme) +remote_theme: just-the-docs/just-the-docs +color_scheme: mapswipe + +# UI: Search +search_enabled: true +search: + heading_level: 3 + previews: 2 + preview_words_before: 3 + preview_words_after: 3 + tokenizer_separator: /[\s\-/]+/ + rel_url: true + button: false + +# UI: Anchor links on headings +heading_anchors: true + +# UI: Top-right auxiliary links +aux_links: + Community: https://community.mapswipe.org + Website: https://mapswipe.org + Manager Dashboard: https://managers.mapswipe.org +aux_links_new_tab: true + +# UI: "Edit this page" footer link +gh_edit_link: true +gh_edit_link_text: "Edit this page" +gh_edit_repository: "https://github.com/mapswipe/mapswipe-docs" +gh_edit_branch: "main" +gh_edit_view_mode: "edit" + +# UI: Footer +footer_content: 'Copyright © MapSwipe. Distributed under the project license.' +last_edit_timestamp: true + +# UI: Back-to-top link +back_to_top: true +back_to_top_text: "Back to top" + +# UI: Copy-to-clipboard button on fenced code blocks +enable_copy_code_button: true + +# UI: Mermaid diagrams in fenced ```mermaid blocks (just-the-docs theme) +# Version picked from https://www.jsdelivr.com/package/npm/mermaid +mermaid: + version: "11.4.1" + +# In-page Table of Contents (jekyll-toc) +toc: + min_level: 2 + max_level: 4 + ordered_list: false + no_toc_section_class: no-toc + +# Page defaults (Jekyll core) +defaults: + - scope: + path: "" + values: + layout: page + toc: true + +# Build exclusions (Jekyll core) +exclude: + - Gemfile + - Gemfile.lock + - README.md + - pre-push.sh + - .pre-commit-config.yaml + - typos.toml + - .lycheeignore diff --git a/_includes/head_custom.html b/_includes/head_custom.html new file mode 100644 index 0000000..0e60abb --- /dev/null +++ b/_includes/head_custom.html @@ -0,0 +1,6 @@ + + + + + + diff --git a/_includes/mermaid_config.js b/_includes/mermaid_config.js new file mode 100644 index 0000000..e1db2ac --- /dev/null +++ b/_includes/mermaid_config.js @@ -0,0 +1,20 @@ +{ + theme: "neutral", + look: "handDrawn", + themeVariables: { + fontSize: "18px", + fontFamily: "'Patrick Hand', 'Caveat', cursive" + }, + flowchart: { + nodeSpacing: 160, + rankSpacing: 80, + padding: 20 + }, + state: { + padding: 30, + titleTopMargin: 30, + dividerMargin: 20, + nodeSpacing: 160, + rankSpacing: 80 + } +} diff --git a/_includes/toc_heading_custom.html b/_includes/toc_heading_custom.html new file mode 100644 index 0000000..125880f --- /dev/null +++ b/_includes/toc_heading_custom.html @@ -0,0 +1 @@ +

Continue reading

diff --git a/_layouts/page.html b/_layouts/page.html new file mode 100644 index 0000000..7b37a64 --- /dev/null +++ b/_layouts/page.html @@ -0,0 +1,21 @@ +--- +layout: default +--- +{%- assign anchored = content | inject_anchors -%} +{%- if page.toc and content contains '' -%} + {%- assign parts = anchored | split: '' -%} + {{ parts[0] }} + + {{ parts | slice: 1, 999 | join: '' }} +{%- elsif page.toc and content contains ' +

Table of contents

+ {{ content | toc_only }} + + {{ anchored }} +{%- else -%} + {{ anchored }} +{%- endif -%} diff --git a/_sass/color_schemes/mapswipe.scss b/_sass/color_schemes/mapswipe.scss new file mode 100644 index 0000000..0041087 --- /dev/null +++ b/_sass/color_schemes/mapswipe.scss @@ -0,0 +1,133 @@ +// MapSwipe color scheme derived from mapswipe.org + +// Brand tokens (mirroring mapswipe.org's CSS custom properties) +$brand-color: #0f193f; +$brand-dark-color: #020e3b; +$accent-color: #aabe5d; +$accent-dark-color: #8a9b49; +$white: #ffffff; + +// Typography +$body-font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, + Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif; +$mono-font-family: "SFMono-Regular", Menlo, Consolas, Monospace; +$body-heading-font-family: "DM Sans", $body-font-family; + +$root-font-size: 16px; +$body-line-height: 1.6; +$content-line-height: 1.6; +$body-heading-line-height: 1.25; + +// Heading scale used to override just-the-docs's defaults +$heading-font-weight: 600; +$h1-font-size: 2rem; +$h2-font-size: 1.5rem; +$h3-font-size: 1.25rem; +$h4-font-size: 1.05rem; + +// Just-the-Docs surface colors +$body-background-color: $white; +$sidebar-color: #f6f8ff; +$search-background-color: $white; +$table-background-color: $white; +$code-background-color: #f5f5f5; +$feedback-color: darken($sidebar-color, 3%); + +$body-text-color: #5b5b5b; +$body-heading-color: #000000; +$nav-child-link-color: $body-text-color; +$search-result-preview-color: #757575; + +$link-color: #0060c9; +$btn-primary-color: $brand-color; +$base-button-color: $white; + +$border-color: #d0d0d0; + +// Just-the-Docs overrides applied at root for things the variables don't expose +.main-content { + h1, .text-alpha { + font-weight: $heading-font-weight !important; + font-size: $h1-font-size !important; + } + h2, .text-beta { + font-weight: $heading-font-weight !important; + font-size: $h2-font-size !important; + } + h3, .text-gamma { + font-weight: $heading-font-weight !important; + font-size: $h3-font-size !important; + } + h4, .text-delta { + font-weight: $heading-font-weight !important; + font-size: $h4-font-size !important; + text-transform: none; + letter-spacing: normal; + } + h5, h6 { + font-weight: $heading-font-weight !important; + } + + a { + color: $link-color; + } +} + +.site-title { + color: $brand-color !important; + font-family: $body-heading-font-family; + font-weight: $heading-font-weight; +} + +.site-header { + border-bottom: 1px solid $border-color; +} + +.site-nav .nav-list .nav-list-item .nav-list-link.active { + color: $brand-color; + font-weight: $heading-font-weight; +} + +.btn-primary { + background-image: linear-gradient($brand-color, $brand-dark-color); + background-color: $brand-color; + color: $white; +} + +.btn-primary:hover { + background-image: linear-gradient($brand-dark-color, $brand-dark-color); +} + +a.btn:hover { + color: $white; +} + +// Just-the-Docs code-block container style reset +div.highlighter-rouge, +div.highlighter-rouge pre.highlight, +figure.highlight, +figure.highlight pre, +pre.highlight, +.highlight pre, +.highlight .table-wrapper, +.highlight .table-wrapper td, +.highlight .table-wrapper pre { + background-color: transparent !important; + color: inherit !important; +} + +// In-page table of contents - generated by jekyll-toc +.page-toc { + margin: 1.5rem 0 2rem; +} + +.page-toc-title { + font-weight: $heading-font-weight !important; + font-size: $h4-font-size !important; + text-transform: none; + letter-spacing: normal; + + margin: 0 0 0.5rem; + font-family: $body-heading-font-family; + color: $body-heading-color; +} diff --git a/assets/css/syntax.css b/assets/css/syntax.css new file mode 100644 index 0000000..ad04fb6 --- /dev/null +++ b/assets/css/syntax.css @@ -0,0 +1,198 @@ +.highlight table td { padding: 5px; } +.highlight table pre { margin: 0; } +.highlight .gh { + color: #999999; +} +.highlight .sr { + color: #f6aa11; +} +.highlight .go { + color: #888888; +} +.highlight .gp { + color: #555555; +} +.highlight .gs { +} +.highlight .gu { + color: #aaaaaa; +} +.highlight .nb { + color: #f6aa11; +} +.highlight .cm { + color: #75715e; +} +.highlight .cp { + color: #75715e; +} +.highlight .c1 { + color: #75715e; +} +.highlight .cs { + color: #75715e; +} +.highlight .c, .highlight .ch, .highlight .cd, .highlight .cpf { + color: #75715e; +} +.highlight .err { + color: #960050; +} +.highlight .gr { + color: #960050; +} +.highlight .gt { + color: #960050; +} +.highlight .gd { + color: #49483e; +} +.highlight .gi { + color: #49483e; +} +.highlight .ge { + color: #49483e; +} +.highlight .kc { + color: #66d9ef; +} +.highlight .kd { + color: #66d9ef; +} +.highlight .kr { + color: #66d9ef; +} +.highlight .no { + color: #66d9ef; +} +.highlight .kt { + color: #66d9ef; +} +.highlight .mf { + color: #ae81ff; +} +.highlight .mh { + color: #ae81ff; +} +.highlight .il { + color: #ae81ff; +} +.highlight .mi { + color: #ae81ff; +} +.highlight .mo { + color: #ae81ff; +} +.highlight .m, .highlight .mb, .highlight .mx { + color: #ae81ff; +} +.highlight .sc { + color: #ae81ff; +} +.highlight .se { + color: #ae81ff; +} +.highlight .ss { + color: #ae81ff; +} +.highlight .sd { + color: #e6db74; +} +.highlight .s2 { + color: #e6db74; +} +.highlight .sb { + color: #e6db74; +} +.highlight .sh { + color: #e6db74; +} +.highlight .si { + color: #e6db74; +} +.highlight .sx { + color: #e6db74; +} +.highlight .s1 { + color: #e6db74; +} +.highlight .s, .highlight .sa, .highlight .dl { + color: #e6db74; +} +.highlight .na { + color: #a6e22e; +} +.highlight .nc { + color: #a6e22e; +} +.highlight .nd { + color: #a6e22e; +} +.highlight .ne { + color: #a6e22e; +} +.highlight .nf, .highlight .fm { + color: #a6e22e; +} +.highlight .vc { + color: #ffffff; + background-color: #272822; +} +.highlight .nn { + color: #ffffff; + background-color: #272822; +} +.highlight .nl { + color: #ffffff; + background-color: #272822; +} +.highlight .ni { + color: #ffffff; + background-color: #272822; +} +.highlight .bp { + color: #ffffff; + background-color: #272822; +} +.highlight .vg { + color: #ffffff; + background-color: #272822; +} +.highlight .vi { + color: #ffffff; + background-color: #272822; +} +.highlight .nv, .highlight .vm { + color: #ffffff; + background-color: #272822; +} +.highlight .w { + color: #ffffff; + background-color: #272822; +} +.highlight { + color: #ffffff; + background-color: #272822; +} +.highlight .n, .highlight .py, .highlight .nx { + color: #ffffff; + background-color: #272822; +} +.highlight .ow { + color: #f92672; +} +.highlight .nt { + color: #f92672; +} +.highlight .k, .highlight .kv { + color: #f92672; +} +.highlight .kn { + color: #f92672; +} +.highlight .kp { + color: #f92672; +} +.highlight .o { + color: #f92672; +} diff --git a/assets/docs/about_data/files/agg_results_-M56eeMCZ5VeOHjJN4Bx.csv.gz b/assets/docs/about_data/files/agg_results_-M56eeMCZ5VeOHjJN4Bx.csv.gz deleted file mode 100644 index 1eb5f72..0000000 Binary files a/assets/docs/about_data/files/agg_results_-M56eeMCZ5VeOHjJN4Bx.csv.gz and /dev/null differ diff --git a/assets/docs/about_data/files/agg_results_-M56eeMCZ5VeOHjJN4Bx_geom.geojson.gz b/assets/docs/about_data/files/agg_results_-M56eeMCZ5VeOHjJN4Bx_geom.geojson.gz deleted file mode 100644 index 8207a86..0000000 Binary files a/assets/docs/about_data/files/agg_results_-M56eeMCZ5VeOHjJN4Bx_geom.geojson.gz and /dev/null differ diff --git a/assets/docs/about_data/files/global_exports/project_stats_by_types.csv b/assets/docs/about_data/files/global_exports/project_stats_by_types.csv new file mode 100644 index 0000000..b81fb29 --- /dev/null +++ b/assets/docs/about_data/files/global_exports/project_stats_by_types.csv @@ -0,0 +1,7 @@ +project_type,project_type_display,projects_count,total_area_sqkm,total_number_of_results,total_number_of_results_progress,average_number_of_users_per_project +4,Check Completeness,24,83958.12326802516,24,24,24.583333333333332 +2,Validate Footprints,165,10048.333649269574,165,165,445.3030303030303 +7,View Streets,9,26.134804951581195,9,9,156.55555555555554 +10,Assess Images,4,0.0,4,4,0.0 +1,Find Features,2492,877770.5408119606,2492,2492,206.73274478330657 +3,Compare Dates,85,1043.2150504687609,85,85,84.48235294117647 diff --git a/assets/docs/about_data/files/global_exports/projects.csv b/assets/docs/about_data/files/global_exports/projects.csv new file mode 100644 index 0000000..99ea41b --- /dev/null +++ b/assets/docs/about_data/files/global_exports/projects.csv @@ -0,0 +1,11 @@ +id,firebase_id,name,description,look_for,project_type,project_type_display,organization_name,image_url,created_at,status,status_display,area_sqkm,centroid,geom,progress,number_of_contributor_users,number_of_results,number_of_results_for_progress,last_contribution_date +2509,01K7ER06TKMM8Y8G82ZKHJTWGE,Compare Dates - Building Detection - Urban Growth in Lagos - Nigeria (1) Togglecorp,"Rapid urban expansion in Lagos challenges automated mapping models. This project compares outputs from two AI models detecting buildings from satellite imagery. By choosing the more accurate result, volunteers help improve machine-learning datasets for mapping fast-growing cities.",Building,3,Compare Dates,Togglecorp,https://backend.mapswipe.org/media/project/2509/asset/input/01K7ER2X7M8SVVHMYAF465BNGW/360_F_234717402_ytMmHbtC5vF9dboXHP3q2gFh7a3uevcT.jpg,2025-10-13 12:16:24.404067+00:00,70,Withdrawn,20.252221252705358,POINT(3.616974379530524 6.624963834663823),"GEOMETRYCOLLECTION(POLYGON((3.602346290971724 6.641688813017908,3.59080666562329 6.639747435798398,3.586862403290041 6.620547245046623,3.621631074564704 6.604244962218061,3.642219896856176 6.609922791642902,3.645793456340414 6.628414317491121,3.62319891518419 6.644052216120102,3.602346290971724 6.641688813017908)))",0.04,1,150,150,2025-10-13 +2512,01K7ESF0YM1YVW6NN5845CKEJJ,View Streets - Street Network Completeness - Kathmandu Valley - Nepal (1) Togglecorp,"This project focuses on checking the completeness of mapped streets within Kathmandu Valley. Volunteers identify missing or incomplete road segments in satellite images. The data supports improving navigation, disaster planning, and city transport management.",Street,7,View Streets,Togglecorp,https://backend.mapswipe.org/media/project/2512/asset/input/01K7ESFJDD4DRVEJZWGR2AQAJS/cover_image1.jpg,2025-10-13 12:41:58.485327+00:00,70,Withdrawn,0.8134657267302797,POINT(85.3027180754338 27.734861987837345),"GEOMETRYCOLLECTION(POLYGON((85.2995980082153 27.737602134826318,85.29725632164707 27.736980353189253,85.2951734530671 27.73558405868752,85.29744119164002 27.732115062095446,85.30519340664858 27.731438703984324,85.30932216980989 27.732955049389645,85.30910032582022 27.736205848293125,85.30519340664858 27.7387256961552,85.2995980082153 27.737602134826318)))",0.0,0,0,0, +2513,01K7F1D3K029KF0BXMYBT98R6V,Validate Footprints - Validate - Dhaka - Bangladesh (1) American Red Cross,"This is an OSM building validation project type. You are looking to validate building footprints. Please use the tutorial to learn how to contribute. \n\n **Project description** \n\n Areas of Dhaka, Bangladesh were mapped in 2016 to support disaster risk reduction programming. Help us understand the quality of the OSM building data in the area. The results will be used to help evaluate if the area should be re-mapped.",Buildings,2,Validate Footprints,American Red Cross,https://backend.mapswipe.org/media/project/2513/asset/input/01K7F1JYVB8PKQG35KQB7PT7VA/dhaka.png,2025-10-13 15:00:44.257258+00:00,80,Discarded,14.40141147653637,POINT(90.41238989187768 23.7583002309542),"MULTIPOLYGON(((90.419199 23.7409,90.417951 23.739875,90.416222 23.738951,90.414346 23.738382,90.412395 23.73819,90.410339 23.73819,90.408284 23.73819,90.406228 23.73819,90.404172 23.73819,90.402117 23.73819,90.400166 23.738382,90.39829 23.738951,90.396561 23.739875,90.395046 23.741119,90.393802 23.742634,90.392878 23.744363,90.392309 23.746239,90.392117 23.74819,90.392117 23.749646,90.392117 23.751102,90.392117 23.752558,90.392117 23.754014,90.392117 23.75547,90.392309 23.757421,90.392878 23.759297,90.393802 23.761026,90.395046 23.762541,90.395162 23.762637,90.395858 23.763938,90.397101 23.765454,90.398617 23.766697,90.399424 23.767129,90.400672 23.768153,90.4007 23.768168,90.401101 23.76949,90.402025 23.771219,90.403268 23.772734,90.403385 23.77283,90.40408 23.774131,90.405324 23.775646,90.406839 23.77689,90.408568 23.777814,90.410444 23.778383,90.412395 23.778575,90.414451 23.778575,90.416506 23.778575,90.418562 23.778575,90.420618 23.778575,90.422673 23.778575,90.424624 23.778383,90.4265 23.777814,90.428229 23.77689,90.429744 23.775646,90.430988 23.774131,90.431912 23.772402,90.432481 23.770526,90.432673 23.768575,90.432673 23.767119,90.432673 23.765663,90.432673 23.764207,90.432673 23.762751,90.432481 23.7608,90.431912 23.758924,90.430988 23.757195,90.429744 23.75568,90.429628 23.755584,90.428932 23.754283,90.428379 23.753608,90.42837 23.753519,90.427801 23.751644,90.426877 23.749915,90.425633 23.748399,90.425517 23.748304,90.424821 23.747002,90.423577 23.745487,90.423461 23.745392,90.422765 23.74409,90.421522 23.742575,90.420006 23.741331,90.419199 23.7409)))",0.0,0,0,0, +2515,01K7GWW91NDWX0ZVF66X3GXC81,Find Features - Find Buildings - Flood Response Astore - AP-Pakistan (3) HOT,"This MapSwipe project aims to identify building footprints in areas affected by the **recent flooding in Pakistan** (August 2025). +By collaborating on this project, mappers will help to **identify buildings** to understand the extent of affected areas, which will turn in helping in the response and recovery efforts. +The resulting data is crucial for understanding the scope of the disaster and effectively directing aid to those in need. +Thanks for your support.",You are looking for buildings,1,Find Features,HOT,https://backend.mapswipe.org/media/project/2515/asset/input/01K7GWX82E342CRHCF9ZAS52VD/US_Army_helicopter_flies_over_a_flood-affected_area_of_Pakistan_Cut.png,2025-10-14 08:20:07.350397+00:00,75,Finished,1392.0273549762105,POINT(74.84203243396992 35.5019828234034),"GEOMETRYCOLLECTION(MULTIPOLYGON(((74.73818176700007 35.83336217300007,74.73818176700007 35.82855079400008,74.73841077100008 35.82465566600007,74.73886901500003 35.82167717800007,74.74001464600008 35.81869854900003,74.73955639100006 35.81549092800003,74.73863989300008 35.81319967600007,74.73772351200006 35.80678442200008,74.73726539800003 35.80311842800006,74.73405751800004 35.80059817100005,74.73130815200005 35.79945266900006,74.72924602100005 35.79624480100006,74.72901702900003 35.793495423000024,74.72901702900003 35.79005868000007,74.73062077500003 35.78799654900007,74.73314101900007 35.78730918400004,74.73589064400005 35.78730918400004,74.73886901500003 35.78730918400004,74.74138940000006 35.78616355200006,74.74459715100005 35.78364329600004,74.74780477200005 35.78135205600006,74.75055413800004 35.779061038000066,74.75399102200004 35.77585318200005,74.75628227400006 35.77287480000007,74.75788602000006 35.76875055100004,74.75880251900008 35.765313796000044,74.75857339700008 35.761876924000035,74.75719864300004 35.75889829500005,74.75582401900004 35.75591979500007,74.75353277900007 35.75339955100003,74.75192902100008 35.75179579300004,74.74895027500008 35.75019180000004,74.74574264200004 35.74904616800006,74.74345164800008 35.748129670000026,74.74161852200007 35.74675504500004,74.74093114500005 35.744692927000074,74.74116026700005 35.74171429800003,74.74161852200007 35.739652179000075,74.74322238500008 35.73667379700004,74.74345164800008 35.73392430200005,74.74276427100006 35.731862300000046,74.74161852200007 35.729571048000025,74.73978551300007 35.72796729100003,74.73818176700007 35.72590517200007,74.73795277400006 35.723155794000036,74.73909813600005 35.72086455400006,74.73959226800008 35.720235659000025,74.74077188600006 35.71873432700005,74.74161852200007 35.717656791000024,74.74528439800008 35.71513667600004,74.74826302700006 35.713303550000035,74.75078340100004 35.712387180000064,74.75628227400006 35.71215791800006,74.76017714300008 35.71169966300005,74.76407227100003 35.71169966300005,74.76980027700006 35.71215791800006,74.77346614200007 35.71376180500005,74.77575726500004 35.71582405300006,74.77732726400006 35.716696100000036,74.77801939400007 35.71708054000004,74.77988151400007 35.71811504600004,74.78286002500005 35.717656791000024,74.78606477000005 35.71692104400006,74.78693442900004 35.716066408000074,74.78904639300004 35.713990927000054,74.79202476400008 35.71215791800006,74.79591990300008 35.71147054100004,74.79695871300004 35.71147054100004,74.80187714900006 35.71147054100004,74.80691765000006 35.71215791800006,74.81035439300007 35.71284529500008,74.81082453500005 35.712930776000064,74.81287477800004 35.713303550000035,74.81403619900004 35.71430352400006,74.81522177500005 35.71532429700005,74.81768627500003 35.71742767000006,74.81974827600004 35.71971892200003,74.82181039500006 35.72086455400006,74.82267006900008 35.72086455400006,74.82455977300003 35.72086455400006,74.82868389200007 35.72063543200005,74.83143340000004 35.719489800000076,74.83396139500007 35.71810343200008,74.83647413500006 35.71559479000007,74.83945251800003 35.713303550000035,74.84266038600003 35.711241431000076,74.84540964600006 35.70986679500004,74.85090853100007 35.70872117500005,74.85503278000004 35.70803379800003,74.85778214700008 35.70780467600008,74.85984427700004 35.70665904400005,74.86213540000006 35.70551341300006,74.86580151100003 35.702076799000054,74.86877989300007 35.69909817000007,74.87061303100006 35.696348674000035,74.87267490300007 35.691995433000045,74.87519526500006 35.68787143000003,74.87725739600006 35.68145591800004,74.87840289800005 35.67801917500003,74.87863213800006 35.67458230200003,74.87840289800005 35.672062046000065,74.87771552200007 35.667937926000036,74.87542439900005 35.66427192100008,74.87313314700003 35.661980809000056,74.87084202400007 35.65968954600004,74.87107114500003 35.65625280300003,74.87130052500004 35.652815919000034,74.87221664800006 35.65029567400006,74.87267490300007 35.64800442200004,74.87267490300007 35.64640080500004,74.87267490300007 35.64388030200007,74.87267490300007 35.640672669000026,74.87107114500003 35.63838142900005,74.86969639200004 35.637006675000066,74.86740515200006 35.63540291700008,74.86328127800004 35.63540291700008,74.86098976800008 35.63540291700008,74.85869864500006 35.63356992000007,74.85543611700007 35.631856483000035,74.85509356800003 35.63117134400005,74.85434540300008 35.62967492200005,74.85434540300008 35.627841913000054,74.85434540300008 35.62600892800003,74.85434540300008 35.62496246400008,74.85434540300008 35.62384946100008,74.85424670700007 35.62351452400003,74.85342889300006 35.62073917600003,74.85136689200004 35.61867717500007,74.84953402400004 35.61753154300004,74.84701352100006 35.61661530300006,74.84495140300004 35.61661530300006,74.83899439200007 35.61638605200005,74.83647413500006 35.61638605200005,74.83395377300008 35.616156801000045,74.83280814100004 35.61409480000003,74.83280814100004 35.610428795000075,74.83280814100004 35.60790855000005,74.83280814100004 35.60561729800003,74.83303726300005 35.603097053000056,74.83441201700003 35.600805931000025,74.83693227300006 35.59897292200003,74.83945251800003 35.59691080300007,74.84266038600003 35.59461968000005,74.84351964400008 35.59388311400005,74.84586788900003 35.591870173000075,74.84815915300004 35.59003717600007,74.84999213800006 35.58820416700007,74.85159589600005 35.586371288000066,74.85342889300006 35.585454801000026,74.85617838900004 35.58408004800003,74.85984427700004 35.58064329300004,74.86121877200003 35.58064329300004,74.86168797500005 35.58064329300004,74.86328127800004 35.58064329300004,74.86589720800004 35.58056673100003,74.86694689600006 35.579726924000056,74.86855076000006 35.57720642100003,74.86992565400004 35.57560280400003,74.87107114500003 35.57354042700007,74.87038376900006 35.571707794000076,74.86740515200006 35.56895816900004,74.86603052700008 35.56712517200003,74.86528825900007 35.564934562000076,74.86465577400008 35.563459296000076,74.86216824500008 35.562132665000036,74.86121877200003 35.56162629900007,74.86144802300004 35.56048080800008,74.86328127800004 35.55818954400007,74.86557227200007 35.556814802000076,74.86900901500007 35.55475280100006,74.87496602600004 35.55108692500005,74.87748640000007 35.54948304900006,74.88000689100005 35.54719179700004,74.88183977100005 35.545358918000034,74.88310645600006 35.54391117200004,74.88345660100003 35.54352157100004,74.88481838800004 35.54306767700007,74.88665126700005 35.54283855600005,74.88894239000007 35.542609422000055,74.89169202600004 35.541692924000074,74.89398302000006 35.540318299000035,74.89741989200007 35.53848554900003,74.90268965600006 35.53596491700006,74.90406428000006 35.53413204900005,74.90475164500003 35.53161167500008,74.90521001800005 35.52909141900005,74.90658477200003 35.525654547000045,74.90704289700005 35.52359254600003,74.90841765100004 35.52359254600003,74.91185439400004 35.52427992200006,74.91506202700003 35.52427992200006,74.91918627600006 35.524509056000056,74.92331039600003 35.524509056000056,74.92537239700005 35.524509056000056,74.92743451600006 35.52290516900007,74.93110039200008 35.51992655200007,74.94186914700003 35.51419855700004,74.94690964800003 35.510991053000055,74.94897177800004 35.50892892200005,74.95011751600003 35.506866804000026,74.95093601700006 35.50473843000003,74.95126290100006 35.503888163000056,74.95217938800005 35.50182617400003,74.95286676400008 35.499305682000056,74.95332502000008 35.49609817800007,74.95340398500008 35.49602579100008,74.95430489200004 35.49519993000007,74.95496652000008 35.49459341600004,74.95607451500007 35.49357779300004,74.95744915100005 35.493348671000035,74.95974039100008 35.492432173000054,74.95996952500008 35.49105754800007,74.96088602300006 35.48945367300007,74.96248976900006 35.48670429500004,74.96317715800006 35.48578779700006,74.96523927700008 35.482121791000054,74.96684315200008 35.48005979000004,74.96982164000008 35.477768420000075,74.97188377000003 35.476393796000025,74.97325839500007 35.475477427000044,74.97440402600006 35.47501917200003,74.97669539600008 35.474790050000024,74.97898640100004 35.47456091600003,74.98104852000006 35.47433179500007,74.98311052100007 35.47295705300007,74.98608915000005 35.47089505200006,74.98998414800008 35.46997855300003,74.99142837800008 35.471010025000055,74.99365014200004 35.472727931000065,74.99571214300005 35.47410267300006,74.99800339500007 35.475477427000044,75.00235664900003 35.47662291800003,75.00398039400005 35.47621704900007,75.00535873000007 35.475872485000025,75.00602251300006 35.47570654800006,75.00716814500004 35.47410267300006,75.00877202100008 35.47226967600005,75.01106314400005 35.46952029800008,75.01266701900005 35.466312548000076,75.01312527400006 35.46310491400004,75.01450002700005 35.46195930600004,75.01495828300006 35.46058455200006,75.01541639700008 35.458522551000044,75.01610377400004 35.45554392200006,75.01610377400004 35.45371105500004,75.01610377400004 35.451419791000035,75.01564540100003 35.44935779000008,75.01564540100003 35.44863040900003,75.01564540100003 35.44660842300004,75.01665584900007 35.44502069400005,75.01724939400003 35.44408805000006,75.01797289300004 35.44328403900005,75.01931152400005 35.44179679800004,75.02137352500006 35.43973466700004,75.02343564400007 35.43813092100004,75.02549764500003 35.43629792400003,75.02801803100004 35.43561054700007,75.03145477400005 35.43675605000004,75.03273098500006 35.437394218000065,75.03374602600007 35.43790178800003,75.03473217400006 35.43812093500003,75.03580814400004 35.438360043000046,75.03718289800008 35.43904730200006,75.03924489900004 35.43904730200006,75.04084877400004 35.438589164000064,75.04291077600004 35.437214434000055,75.04474377300005 35.43561054700007,75.04611851400006 35.434235794000074,75.04757616300003 35.434235794000074,75.05047177900008 35.43469404900003,75.05211430700007 35.43491305800006,75.05390852300008 35.435152292000055,75.05642889600006 35.435152292000055,75.05849088600007 35.43469404900003,75.06215690300007 35.43331942400005,75.06376064900007 35.43240291400008,75.06490626900006 35.431028172000026,75.06559364600008 35.430799051000065,75.06559364600008 35.428507799000045,75.06536452500006 35.42713317400006,75.06536452500006 35.424612800000034,75.06628102300004 35.42232167800006,75.06903040100008 35.42003042500005,75.07200901800007 35.41865567200006,75.07361290500006 35.41842655000005,75.07567489500008 35.41842655000005,75.07743747500007 35.41842655000005,75.07888264500008 35.41842655000005,75.08056549900004 35.41863691800006,75.08251385300008 35.41940787100003,75.08438151900003 35.42003042500005,75.08690177500006 35.42003042500005,75.08714092700006 35.419312958000035,75.08758914000003 35.41796829500004,75.08808290700006 35.41735112400005,75.08942214900003 35.41567717200007,75.09194252200007 35.413156798000045,75.09446276700004 35.41086567600007,75.09537888900007 35.41008044200004,75.09606652500008 35.40949105100003,75.09835777700005 35.40674155600004,75.09996164000006 35.40399204900007,75.10133626500004 35.40124268200003,75.10202364200006 35.39872229700006,75.10202364200006 35.396889300000055,75.10179452000006 35.394598177000034,75.10087802100009 35.39322342300005,75.09904514200008 35.391161305000026,75.09812865500004 35.38978668000004,75.09784509500008 35.38929045200007,75.09721214500007 35.388182793000055,75.09858689900005 35.38634979600005,75.10019077400005 35.38589142400008,75.10311201400003 35.38543341500008,75.10654863900004 35.38457417700005,75.10826715200005 35.38285579300003,75.11009264600006 35.38187281200004,75.11196073600007 35.380866893000075,75.11199039400003 35.380850923000025,75.11314773900006 35.37985890600004,75.11399514700008 35.379132551000055,75.11657278000007 35.37626854800004,75.11743203100008 35.374263807000034,75.11857752200007 35.371399921000034,75.12086876200004 35.368822170000044,75.12316002600005 35.36681742800005,75.12430552900008 35.36509904500008,75.12462921500008 35.36466741700008,75.12602377100006 35.362807805000045,75.12632285600006 35.36206034400004,75.12659676900006 35.36137579100006,75.12802878200006 35.35793904800005,75.13146552500007 35.35593417800004,75.13519940600008 35.35430063000007,75.13604788900005 35.35392942500005,75.13875731200005 35.35269785700007,75.13919826200004 35.352497423000045,75.14206227700004 35.351065421000044,75.14492626900005 35.350206171000025,75.14750389100004 35.349347038000076,75.15552314900003 35.34591016600007,75.15810064200008 35.34304617400005,75.16067826400007 35.34018217100004,75.16468788800006 35.337031797000066,75.16697902200008 35.33474066300005,75.16755815000005 35.33351005700007,75.16927027400004 35.329871800000035,75.16955664400007 35.32672142700005,75.17041589500008 35.32299830300008,75.17070227600004 35.32070703900007,75.17070227600004 35.31812941700008,75.17156151500006 35.31440629200006,75.17270701700005 35.31154230100003,75.17442553000006 35.30896467900004,75.17700302300005 35.30610066400004,75.17728952200008 35.30352304200005,75.17728952200008 35.30094554900006,75.17614389000005 35.29865430900003,75.17614389000005 35.29464467300005,75.17614389000005 35.290921549000075,75.17614389000005 35.287771176000035,75.17557102100005 35.28519354200006,75.17557102100005 35.282043169000076,75.17557102100005 35.27803354500003,75.17585752000008 35.27516954200007,75.17728952200008 35.273164800000075,75.17814865400004 35.270873548000054,75.17757590300005 35.26915517700007,75.17757590300005 35.26600480400003,75.17762101900007 35.26433534600005,75.17766709600005 35.26263030500007,75.17786227300007 35.25540793500005,75.17728952200008 35.25397580400005,75.17499828100006 35.25225753800004,75.17499828100006 35.24996642700006,75.17410289700007 35.245817799000065,75.16862592900003 35.246784296000044,75.16147014400008 35.24804704700006,75.13340814500003 35.25740093300004,75.11049090400007 35.270028930000024,75.08336414600006 35.27985043000007,75.07026852200005 35.28172141700003,75.04711752100008 35.28195530600004,75.01905552200003 35.28429378900006,74.99660589500007 35.291309298000044,74.96994702200004 35.29318016700006,74.95908701100007 35.29350754400008,74.93693677700008 35.298895291000065,74.92457276700003 35.30114968100003,74.91996890200005 35.302070419000074,74.91290963900008 35.30299116900005,74.90738515300006 35.30452579400003,74.90262776900005 35.30598366600003,74.90032589000003 35.309666793000076,74.89779389000006 35.314500802000055,74.89595226200004 35.31703293000004,74.89411076300007 35.32048579700006,74.88996727800003 35.32393854600008,74.88605403100007 35.32716130400007,74.88260114100007 35.32900280300004,74.87822751400006 35.33038392200007,74.87431426700005 35.33084443100006,74.87086151700004 35.33084443100006,74.86648789000003 35.330614171000036,74.86119326600004 35.32969342100006,74.85589903000005 35.330614171000036,74.85175565100008 35.33383678800004,74.85037452100005 35.33636892900006,74.85037452100005 35.34028217600007,74.85014426000004 35.342584044000034,74.84991426900007 35.34718792000007,74.84968390300008 35.35225217800007,74.84600089300005 35.35041055000005,74.84231776600006 35.34972004900004,74.84001588600006 35.34972004900004,74.83702340000008 35.34972004900004,74.83287977500004 35.349029431000076,74.82781577600008 35.34672755100007,74.82528364700005 35.34488605200005,74.82229115000007 35.343504805000066,74.81883827100006 35.34281430400006,74.81722702100006 35.34120292500006,74.81548526900008 35.33924367700007,74.81354389400008 35.337059547000024,74.81032126500008 35.334067049000055,74.80801928000005 35.331534920000024,74.80709851800003 35.32877268300007,74.80640801800007 35.32601029400007,74.80479663900007 35.323708414000066,74.80203440200006 35.321636666000074,74.79604940700005 35.31795366800003,74.78822290100004 35.313810172000046,74.78338889200006 35.31173854100007,74.77832464700003 35.31104792300005,74.77533213700008 35.31058755500004,74.77280013800004 35.308976175000055,74.76658490500006 35.30851579500006,74.76106026700006 35.30851579500006,74.75530552100008 35.309666793000076,74.75024140500005 35.31058755500004,74.74563751600004 35.31104792300005,74.74149414900006 35.31127805500006,74.73619977200008 35.31081780400007,74.73297701400008 35.30943655600004,74.72768264800004 35.307825294000054,74.72352002200006 35.306508423000025,74.72041214800004 35.30823516700008,74.71661328000005 35.31134317100003,74.71143326900005 35.31203380100004,74.70728926800007 35.31272454800006,74.70349064700008 35.314796554000054,74.69900127800008 35.31721379900006,74.69347590000007 35.320667171000025,74.68829589000006 35.322393927000064,74.68311589100006 35.322393927000064,74.67788477500005 35.32150129100006,74.67861064600004 35.32380017600008,74.67906888900006 35.327236801000026,74.68021439200004 35.33021554800007,74.68204740100003 35.33319417600006,74.68319302100008 35.335256178000066,74.68548414400004 35.33640181000004,74.68960839300007 35.33823479500006,74.69189951600003 35.33915116400004,74.69533638800004 35.340296925000075,74.69808576600008 35.34098404400004,74.70037703000008 35.34098404400004,74.70152860600007 35.34127199200003,74.70404289400005 35.34190068300006,74.70528228200004 35.34246402100007,74.70908351300005 35.34419179400004,74.71137477700006 35.34579579900003,74.71217182400005 35.34689176200004,74.71320764400008 35.34831604300007,74.71504064100003 35.350378044000024,74.71595714000006 35.353127552000046,74.71595714000006 35.35610603900005,74.71618640200006 35.360001167000064,74.71644639700008 35.36156179200003,74.71664451700008 35.36275054500004,74.71756089800004 35.365270801000065,74.71962302800006 35.368020297000044,74.72214340200003 35.36985317600005,74.72258709400006 35.370297625000035,74.72397626900005 35.37168617300006,74.72482686000006 35.37338734600007,74.72512190100008 35.37397742500008,74.72580926600006 35.37649767000005,74.72649652600006 35.37878892200007,74.72832940500007 35.38039279700007,74.73016252000008 35.382454927000026,74.73153726200007 35.384287795000034,74.73107914700006 35.38589142400008,74.72993339800007 35.388182793000055,74.72810038900008 35.390015790000064,74.72741314200005 35.39253604700008,74.72718402000004 35.39345254500006,74.72649652600006 35.395285554000054,74.72535102300003 35.39734767200002,74.72420540300004 35.399638666000044,74.72351815500008 35.40192993000005,74.72328889300007 35.404450292000035,74.72328889300007 35.40788704700003,74.72260151600005 35.40994916500006,74.72053951500004 35.411782291000065,74.71893565100004 35.41292767700003,74.71779001900006 35.41521891700006,74.71664451700008 35.417280918000074,74.71618640200006 35.42071779100007,74.71664451700008 35.42255079900008,74.71650095500007 35.42456062000008,74.71641539500007 35.425758432000066,74.71562655600007 35.42699806500008,74.71481164900007 35.42827866500005,74.71253450400008 35.43195696600003,74.71183289100003 35.43309029100004,74.71091665100005 35.435839669000075,74.71183289100003 35.43744355600006,74.71366589900003 35.43927641200003,74.71572801800005 35.44088029900007,74.71824827400008 35.44271342500008,74.71766782900005 35.44503498900008,74.71756089800004 35.445462674000055,74.71733163500005 35.44752480400007,74.71572801800005 35.45256542300007,74.71297852300006 35.458522551000044,74.71137464700007 35.46241753800007,74.70977089000007 35.46585430400006,74.70816702600007 35.46952016900008,74.70587577400005 35.47410267300006,74.70450102000007 35.47822667500003,74.70289726300007 35.48120555100007,74.70037703000008 35.48464217700007,74.69716939700004 35.48739154300006,74.69327451600003 35.490599176000046,74.68892089900004 35.493119550000074,74.68433864100007 35.494723554000075,74.68090176900006 35.49655643400007,74.67792328100006 35.498618306000026,74.67654839800008 35.50113879700007,74.67677764900003 35.503659053000035,74.67792328100006 35.50640854900007,74.67847981900007 35.50807787700006,74.67883989700005 35.50915792700005,74.67883989700005 35.51167817100003,74.67700677100004 35.51488580400007,74.67507273700005 35.51961969100006,74.67288263900008 35.52290516900007,74.67265364700006 35.525654547000045,74.67150789700008 35.52817492100007,74.66990402200008 35.531382671000074,74.66830026400004 35.533444555000074,74.66830026400004 35.536652305000075,74.66852926800004 35.53825629800008,74.66863609900008 35.53953745200005,74.66875851900005 35.541005547000054,74.66921664500006 35.54352593200008,74.66852926800004 35.54742091900005,74.66784190300007 35.55177430100008,74.66669638900004 35.55314905500006,74.66532164700004 35.555210927000076,74.66449974000005 35.556150323000054,74.66371790100004 35.55704392400003,74.66119751500008 35.56002255300007,74.65867714200004 35.563001041000064,74.65786539300007 35.56641053900006,74.65753165100006 35.56781254900005,74.65707339600004 35.56987466800007,74.65661514000004 35.57239492400004,74.65615702600007 35.57468616400007,74.65455302200007 35.57606091800005,74.65317826800003 35.574915427000064,74.65134540000008 35.573082301000056,74.65019965100004 35.571478555000056,74.64813765000008 35.56964542900005,74.64538840100005 35.56918729100005,74.64378438500006 35.570332923000024,74.64218063900006 35.57285330800005,74.64057677500006 35.574915427000064,74.64011852000004 35.577435671000046,74.63943114300008 35.57949779000006,74.63874376700005 35.58270529400005,74.63828551100005 35.585225680000065,74.63691088700006 35.58614216600006,74.63370314800005 35.586371288000066,74.63049564400006 35.58705866500003,74.62797514100004 35.58820416700007,74.62660038800004 35.58980805500005,74.62637126600004 35.592099295000025,74.62682952100005 35.594390418000046,74.62728376100006 35.595298908000075,74.62797514100004 35.59668168200005,74.62957902800008 35.59897292200003,74.63072451900007 35.60034754600008,74.63196415700008 35.60229564600007,74.63232839500006 35.60286804900005,74.63278663800008 35.604929921000064,74.63278663800008 35.60790855000005,74.63255739900006 35.61065779900008,74.63049564400006 35.61363655700006,74.62797514100004 35.615240303000064,74.62591314000008 35.61707342900007,74.62362201700006 35.618906297000024,74.61975751600005 35.622357425000075,74.61651913900005 35.62371779400007,74.61598618800008 35.62415395100004,74.61598577500007 35.624154289000046,74.61398052900006 35.625871507000056,74.61376976100007 35.62692542700006,74.61399889500007 35.628529290000074,74.61417372300008 35.62914125000003,74.61445713800003 35.63013330600006,74.61468627200003 35.63196591600007,74.61537364800006 35.63379904200008,74.61537364800006 35.63677768300005,74.61537364800006 35.63906880500008,74.61560264100007 35.64135979900004,74.61560264100007 35.64319292500005,74.61560264100007 35.64617154200005,74.61422801700007 35.64777518300008,74.61285327500008 35.649150054000074,74.61285327500008 35.65098303900004,74.61331140100003 35.653503295000064,74.61376976100007 35.65602368100008,74.61583176300007 35.65877304700007,74.61835214800004 35.661293303000036,74.62155989900003 35.66335543400004,74.62476752000003 35.66450104200004,74.62843339700004 35.66610505800003,74.63141201400003 35.667479800000024,74.63393227000006 35.66885430700006,74.63622352200008 35.67114554800003,74.63782739700008 35.672978674000035,74.63897288800007 35.67572792200008,74.63897288800007 35.678477430000044,74.63943114300008 35.681684922000045,74.63943114300008 35.684434417000034,74.63943114300008 35.687413046000074,74.63943114300008 35.68947504700003,74.64011852000004 35.69222455500005,74.64172240700003 35.69382841800007,74.64332627100003 35.69520317200005,74.64538840100005 35.69680692900005,74.64745027300006 35.700243673000045,74.64813765000008 35.70322230100004,74.64813765000008 35.706200789000036,74.64767952400007 35.70895041400007,74.64579308100008 35.71035686300007,74.64355526300005 35.71169966300005,74.64218063900006 35.71215767100006,74.63966026500003 35.71261617300007,74.63759814600007 35.71261617300007,74.63576527900005 35.71284516500003,74.63324489300004 35.713303550000035,74.63118302100008 35.71422004800007,74.62934989500008 35.71582405300006,74.62797514100004 35.717885925000076,74.62660038800004 35.72063543200005,74.62475839600006 35.72386142000005,74.62385102200005 35.72617678700004,74.62385102200005 35.72888367200005,74.62408015500006 35.73300780300008,74.62408015500006 35.735757299000056,74.62408015500006 35.74056879500006,74.62430939400008 35.74263079600007,74.62591314000008 35.744005550000054,74.62889165200005 35.74492216600004,74.63141201400003 35.74560954300006,74.63416139200007 35.746525924000025,74.63736902500005 35.747900548000075,74.64126402300008 35.75087917700006,74.64378438500006 35.753170288000035,74.64584652700006 35.75614892900006,74.64790839900007 35.75912754600006,74.64997064700003 35.76393904200006,74.65088727500006 35.76691755400003,74.65203277700004 35.769666932000064,74.65203277700004 35.77172905100008,74.65088727500006 35.77402030300004,74.64722128100004 35.77631141400008,74.64447176200008 35.77745704600005,74.64126402300008 35.777915301000064,74.64005318000005 35.77798257300003,74.63714002000006 35.778144422000025,74.63255739900006 35.779061038000066,74.62957902800008 35.779519176000065,74.62660038800004 35.78089380000006,74.62453839800008 35.78341417400003,74.62293465200008 35.78570542600005,74.62262614700006 35.788230673000044,74.62278618400006 35.78904779700008,74.62316364500003 35.79097504900005,74.62476752000003 35.79326641800003,74.62614227400007 35.794870176000074,74.62843339700004 35.797390421000046,74.62957902800008 35.79945266900006,74.63026640500004 35.80128554800007,74.63118302100008 35.80426416500006,74.63209926100006 35.80609704500006,74.63324489300004 35.80701341400004,74.63576527900005 35.80861730100003,74.63920202200006 35.809533800000054,74.64218063900006 35.81136679600007,74.64470102400008 35.812741421000055,74.64722128100004 35.81572016700005,74.64882502700004 35.81869854900003,74.64974151300004 35.82121904100006,74.65065802400005 35.824197423000044,74.65180364400004 35.82694693000008,74.65546952000005 35.82900893100003,74.65867714200004 35.830154540000024,74.66211401400005 35.830612795000036,74.66646739600003 35.830612795000036,74.67082052000006 35.830612795000036,74.67373590000005 35.83046705000004,74.67540289500005 35.83038367300003,74.67723590400004 35.830612795000036,74.67929802300006 35.830841916000054,74.68204740100003 35.83175842700007,74.68456776300008 35.833820428000024,74.68685902700008 35.833820428000024,74.68892102800004 35.833820428000024,74.69189951600003 35.83404955000003,74.69510739500004 35.834507805000044,74.70014789600003 35.835424174000025,74.70266814100006 35.83634080200005,74.70518852600003 35.837028178000025,74.70793802200006 35.83817379900006,74.70909614800007 35.83906480300004,74.71091665100005 35.84046493300008,74.71320764400008 35.84229804800003,74.71664451700008 35.845047296000075,74.71939390600005 35.846651172000065,74.72305977100007 35.84894242400003,74.72603838800006 35.851004542000055,74.72855864400003 35.85192092300008,74.73199551700003 35.852608288000056,74.73405751800004 35.852608288000056,74.73680702500008 35.852608288000056,74.73890601700003 35.850865174000035,74.74024376800008 35.84917141600005,74.74024376800008 35.84619292800005,74.73886901500003 35.84252705200004,74.73795277400006 35.84046493300008,74.73795277400006 35.837028178000025,74.73818176700007 35.83336217300007))))",0.0,1,12,12,2025-10-14 +2506,01K7EDWZ4SR1RECVMWWF0KAH4K,Find Features - Homes in Villages - Dolakha (1) Togglecorp,You are looking for homes or houses in a rural village of Nepal.,homes,1,Find Features,Togglecorp,https://backend.mapswipe.org/media/project/2506/asset/input/01K7EDZBECWSYQA9N4NETHJDN1/bigu-gompa-in-dolkha.jpg,2025-10-13 09:19:52.474292+00:00,70,Withdrawn,0.5524327881484031,POINT(86.07870896783902 27.836908171930773),"GEOMETRYCOLLECTION(POLYGON((86.07411485292351 27.839661978955732,86.07411485292351 27.834154364905814,86.08330308275453 27.834154364905814,86.08330308275453 27.839661978955732,86.07411485292351 27.839661978955732)))",0.33,1,24,24,2025-10-13 +6,-NI88tnKIzbmAPHZq_VM,"Find Features - Public Health - Magaria, Niger (2) Médecins Sans Frontières",MSF is planning a large Indoor Residual Spraying campaign against the mosquito that carries malaria. To plan the intervention and do the follow up of the spraying campaign it is needed to identify all the buildings in the campaign area.,Buildings,1,Find Features,Médecins Sans Frontières,https://backend.mapswipe.org/media/project/6/asset/input/01K7E3PCK1MCQXVJH3MJ27W512/MSF196225_Medium.jpg,2022-11-30 15:30:57.715149+00:00,75,Finished,3054.874146883078,POINT(9.102046041003353 13.075926208295003),"POLYGON((8.798073 12.892653,8.799419 12.892344,8.801003 12.891992,8.803143 12.891499,8.803822 12.891333,8.804702 12.891137,8.806037 12.890829,8.807519 12.890497,8.808832 12.890181,8.81021 12.889825,8.811351 12.889546,8.813708 12.888684,8.816054 12.887857,8.818494 12.887052,8.820784 12.886328,8.823 12.885649,8.823999 12.885214,8.825677 12.884612,8.827741 12.883891,8.830173 12.883111,8.834765 12.881467,8.836355 12.880931,8.836643 12.880805,8.837504 12.880532,8.841661 12.879244,8.842392 12.879037,8.843051 12.878805,8.844345 12.878476,8.847172 12.877748,8.848386 12.877451,8.8494 12.87721,8.850553 12.876916,8.852073 12.876546,8.853895 12.876182,8.855132 12.87576,8.859893 12.874639,8.864069 12.873827,8.865906 12.873505,8.868441 12.872966,8.868983 12.872847,8.869451 12.872389,8.872279 12.870123,8.873261 12.869374,8.87464 12.86882,8.877333 12.867778,8.879031 12.867043,8.880228 12.86663,8.881667 12.866199,8.882806 12.865792,8.883659 12.865547,8.884392 12.865334,8.885434 12.864963,8.886015 12.864713,8.886636 12.864483,8.887762 12.864106,8.88846 12.863849,8.889452 12.863506,8.890318 12.863201,8.892195 12.862515,8.892801 12.862277,8.893634 12.861974,8.894611 12.861645,8.895102 12.861447,8.89572 12.861212,8.896623 12.860925,8.897898 12.860442,8.898968 12.860039,8.899888 12.859693,8.900851 12.859328,8.902975 12.858549,8.905298 12.857691,8.908143 12.856637,8.9103 12.855828,8.913251 12.854721,8.914965 12.854064,8.916671 12.853487,8.918901 12.852652,8.920435 12.852093,8.920876 12.851894,8.922561 12.851277,8.923877 12.850765,8.925057 12.850356,8.926903 12.849976,8.927718 12.849928,8.930668 12.849642,8.932947 12.848866,8.93442 12.84834,8.936493 12.847633,8.937089 12.847386,8.937933 12.847118,8.938869 12.84676,8.940202 12.846336,8.942057 12.845704,8.943193 12.845319,8.94472 12.844777,8.945908 12.844379,8.94734 12.843854,8.948949 12.843309,8.950473 12.842782,8.951697 12.842351,8.953175 12.841855,8.955217 12.84115,8.9562 12.840809,8.956692 12.840655,8.958559 12.840015,8.960251 12.839428,8.96161 12.838969,8.9623529 12.8387275,8.963999 12.838188,8.964855 12.837886,8.965759 12.837596,8.966053 12.837483,8.966646 12.837283,8.968389 12.836727,8.968917 12.836537,8.969605 12.836333,8.970377 12.836055,8.97099 12.835858,8.972265 12.835432,8.972987 12.835185,8.974124 12.834857,8.975047 12.834568,8.975682 12.834298,8.977927 12.833601,8.98088 12.835543,8.983007 12.835713,8.985111 12.835882,8.988688 12.836101,8.990203 12.836178,8.992209 12.836319,8.99522 12.836565,8.998674 12.837449,8.999254 12.8376,9.00018 12.837916,9.001692 12.838235,9.00214 12.838356,9.002755 12.838505,9.004622 12.838951,9.006549 12.839462,9.009082 12.840054,9.010021 12.840282,9.011492 12.840006,9.013992 12.839503,9.01675 12.83887,9.020035 12.838111,9.024287 12.837202,9.029183 12.836581,9.033463 12.836178,9.036822 12.835729,9.043262 12.834992,9.044144 12.834873,9.047609 12.834464,9.051558 12.833893,9.057669 12.834335,9.063145 12.834672,9.068087 12.834459,9.074111 12.83427,9.078279 12.834133,9.079073 12.834104,9.080882 12.834175,9.082561 12.834169,9.083774 12.834224,9.084944 12.83446,9.086026 12.834661,9.088852 12.835119,9.091848 12.834923,9.094895 12.834756,9.095786 12.834771,9.096651 12.834731,9.097807 12.83464,9.098547 12.834583,9.099944 12.834497,9.101813 12.834392,9.102869 12.834313,9.103697 12.834241,9.10543 12.834188,9.107302 12.834079,9.109308 12.833858,9.110713 12.833858,9.112169 12.833572,9.113285 12.833532,9.114621 12.833455,9.11532 12.833381,9.116142 12.833317,9.116578 12.833287,9.1225683 12.8331793,9.12909 12.833062,9.13042 12.833003,9.132104 12.833085,9.141649 12.833271,9.14297 12.833278,9.14481 12.833289,9.145367 12.833244,9.147542 12.833435,9.149651 12.833464,9.150863 12.833469,9.151498 12.833501,9.15273 12.833634,9.155075 12.833693,9.157308 12.833775,9.158379 12.833835,9.159589 12.833905,9.162093 12.834009,9.163312 12.834012,9.165354 12.834214,9.167215 12.834271,9.167877 12.834309,9.170914 12.834302,9.173285 12.834345,9.177044 12.834332,9.177826 12.834281,9.181895 12.834266,9.183725 12.831516,9.184332 12.830529,9.1850569 12.830333,9.190035 12.828987,9.190715 12.828766,9.192403 12.828333,9.194876 12.827683,9.196013 12.827362,9.198234 12.826747,9.199536 12.826512,9.201647 12.826465,9.204075 12.826387,9.206097 12.826317,9.208339 12.826211,9.210067 12.826114,9.211429 12.826085,9.213144 12.826091,9.21476 12.825968,9.217068 12.82584,9.219451 12.825815,9.221767 12.82573,9.223888 12.825672,9.224741 12.825627,9.226253 12.825607,9.227093 12.825568,9.227352 12.825519,9.229249 12.825525,9.229689 12.825495,9.2319 12.825411,9.233706 12.825369,9.235645 12.825302,9.23652 12.825223,9.237908 12.825112,9.238437 12.825066,9.241643 12.825052,9.243332 12.824931,9.244631 12.824847,9.246312 12.824853,9.246525 12.824795,9.247719 12.824682,9.248341 12.82466,9.248729 12.824658,9.249334 12.824641,9.252417 12.824541,9.252703 12.824261,9.25389 12.824289,9.254084 12.824227,9.254317 12.824193,9.25463 12.824097,9.254986 12.824048,9.255196 12.82403,9.255339 12.823993,9.256019 12.824027,9.256401 12.823996,9.25659 12.824001,9.257133 12.82405,9.257243 12.824039,9.25777 12.824018,9.258105 12.824003,9.258621 12.824011,9.258994 12.823935,9.259195 12.823917,9.259394 12.823909,9.259544 12.823896,9.25976 12.823869,9.259948 12.823861,9.260111 12.823843,9.260634 12.823824,9.261032 12.823786,9.261635 12.82376,9.262131 12.823731,9.262544 12.823728,9.263125 12.823697,9.263647 12.823633,9.264027 12.823591,9.264374 12.823594,9.265703 12.823481,9.266295 12.823449,9.266992 12.823376,9.268254 12.82331,9.270152 12.823297,9.270153 12.823297,9.299442 12.818925,9.331097 12.811057,9.332414 12.8113412,9.380234 12.8216585,9.386299 12.822967,9.437439 12.81871,9.43751825165 12.81870337227,9.43748920036 12.81875829946,9.43743290036 12.81887079946,9.43737660036 12.81897659946,9.43730150036 12.81912969946,9.43707210036 12.81959649946,9.43535040036 12.82321949946,9.43487540036 12.82421909946,9.43249900036 12.82916979946,9.43161520036 12.83119399946,9.43063210036 12.83353199946,9.42998810036 12.83514949946,9.42919050036 12.83718279946,9.42852390036 12.83890359946,9.42708760036 12.84281319946,9.42630710036 12.84513539946,9.42553730036 12.84763669946,9.42529860036 12.84846569946,9.42493920036 12.84956139946,9.42384880036 12.85245229946,9.42306360036 12.85451749946,9.42252250036 12.85581519946,9.42203630036 12.85683569946,9.42166950036 12.85755809946,9.42123900036 12.85834909946,9.41998650036 12.86058489946,9.41875670036 12.86244539946,9.41712860036 12.86483149946,9.41552860036 12.86712469946,9.41297380036 12.87120779946,9.41005160036 12.87592219946,9.40914360036 12.87724139946,9.40837520036 12.87813559946,9.40660760036 12.88004309946,9.40600950036 12.88073989946,9.40578420036 12.88106539946,9.40560310036 12.88133599946,9.40478770036 12.88266169946,9.40347480036 12.88480829946,9.40310730036 12.88544499946,9.40290750036 12.88580579946,9.40265540036 12.88633919946,9.40248640036 12.88679029946,9.40233890036 12.88722039946,9.40198180036 12.88848069946,9.40094950036 12.89212409946,9.40072690036 12.89287969946,9.40060880036 12.89337129946,9.40010730036 12.89648519946,9.39916310036 12.90296139946,9.39791590036 12.90895239946,9.39768660036 12.91001249946,9.39743580036 12.91084909946,9.39680010036 12.91285569946,9.39573790036 12.91636539946,9.39564140036 12.91684779946,9.39553950036 12.91747129946,9.39529270036 12.91994969946,9.39514520036 12.92128819946,9.39497890036 12.92218489946,9.39466100036 12.92343059946,9.39455640036 12.92379919946,9.39444240036 12.92416649946,9.39431450036 12.92451859946,9.39356130036 12.92659119946,9.39329980036 12.92750489946,9.39274460036 12.93050339946,9.39251530036 12.93136019946,9.39229670036 12.93203469946,9.38888760036 12.94148799946,9.38864890036 12.94217549946,9.38852280036 12.94261989946,9.38782540036 12.94575019946,9.38768060036 12.94632919946,9.38738150036 12.94730819946,9.38708510036 12.94805059946,9.38657020036 12.94913019946,9.38517810036 12.95212189946,9.38347220036 12.95576829946,9.38210960036 12.95896509946,9.38129420036 12.96084189946,9.38087980036 12.96164959946,9.38023700036 12.96275499946,9.37960980036 12.96383349946,9.37729510036 12.96779729946,9.37597540036 12.96999029946,9.37389810036 12.97320779946,9.37353060036 12.97385339946,9.37285600036 12.97525439946,9.36729530036 12.98669089946,9.36589570036 12.98956939946,9.36551950036 12.99042139946,9.36539010036 12.99086959946,9.36526810036 12.99154909946,9.36461640036 12.99627899946,9.36438590036 12.99818679946,9.36399130036 13.00094209946,9.36388810036 13.00130009946,9.36375390036 13.00161239946,9.36356350036 13.00199659946,9.36312760036 13.00266169946,9.36047900036 13.00606959946,9.35907750036 13.00787279946,9.35848740036 13.00871829946,9.35819240036 13.00921479946,9.35800460036 13.00960419946,9.35778740036 13.01011899946,9.35753390036 13.01083119946,9.35651470036 13.01511049946,9.35523660036 13.02047289946,9.35510250036 13.02092629946,9.35504580036 13.02110069946,9.35339530036 13.02617369946,9.35268310036 13.02834389946,9.35108590036 13.03328539946,9.35063930036 13.03494339946,9.35033490036 13.03619639946,9.34941890036 13.03996309946,9.34915870036 13.04094949946,9.34695390036 13.04758849946,9.34580060036 13.05098859946,9.34394050036 13.05553369946,9.34383450036 13.05591649946,9.34376750036 13.05633719946,9.34370040036 13.05701389946,9.34369550036 13.05709769946,9.34362050036 13.05838599946,9.34361190036 13.05853329946,9.34354720036 13.05937649946,9.34348260036 13.06021809946,9.34342550036 13.06140739946,9.34342630036 13.06200699946,9.34341680036 13.06251649946,9.34340070036 13.06257729946,9.34338060036 13.06260469946,9.34334840036 13.06262819946,9.34329940036 13.06263929946,9.34317740036 13.06262759946,9.34294870036 13.06258149946,9.34286620036 13.06256489946,9.34228940036 13.06239889946,9.34212600036 13.06235189946,9.34178800036 13.06225659946,9.34165800036 13.06222829946,9.34152380036 13.06219909946,9.34130120036 13.06218859946,9.34114430036 13.06223299946,9.34103160036 13.06232319946,9.34094980036 13.06247729946,9.34076740036 13.06295029946,9.34055750036 13.06346429946,9.34025260036 13.06414979946,9.34017200036 13.06433109946,9.33974820036 13.06520379946,9.33952960036 13.06573419946,9.33941690036 13.06613129946,9.33932720036 13.06654939946,9.33928150036 13.06676229946,9.33919410036 13.06739409946,9.33915810036 13.06765459946,9.33902340036 13.06861219946,9.33896760036 13.06900929946,9.33873970036 13.07037309946,9.33795780036 13.07415629946,9.33765740036 13.07589109946,9.33743140036 13.07702109946,9.33683660036 13.07979699946,9.33591930036 13.08329269946,9.33527420036 13.08557079946,9.33472840036 13.08768699946,9.33337390036 13.09325429946,9.33295950036 13.09494319946,9.33253170036 13.09679939946,9.33233320036 13.09893369946,9.33224200036 13.10014459946,9.33219910036 13.10037709946,9.33205020036 13.10079379946,9.33191810036 13.10111379946,9.33105380036 13.10305219946,9.33089290036 13.10351059946,9.33081370036 13.10391949946,9.33069710036 13.10459219946,9.33036180036 13.10699159946,9.33036040036 13.10734169946,9.33041810036 13.10802609946,9.33059780036 13.10965749946,9.33075610036 13.11113729946,9.33097870036 13.11350139946,9.33100950036 13.11425899946,9.33102430036 13.11500739946,9.33098140036 13.11570229946,9.33091830036 13.11657349946,9.33075200036 13.11831579946,9.33066890036 13.11904719946,9.33063400036 13.11989359946,9.33057900036 13.12027889946,9.33052540036 13.12053619946,9.33047310036 13.12070859946,9.33010560036 13.12171559946,9.32930370036 13.12375569946,9.32821870036 13.12649059946,9.32740200036 13.12848359946,9.32668050036 13.13003909946,9.32637600036 13.13070779946,9.32604340036 13.13157629946,9.32506840036 13.13471729946,9.32428660036 13.13718309946,9.32389100036 13.13849299946,9.32356510036 13.13939019946,9.32268530036 13.14160259946,9.32119670036 13.14503859946,9.32102500036 13.14535329946,9.32085600036 13.14562239946,9.31868880036 13.14875139946,9.31861370036 13.14887549946,9.31856810036 13.14899949946,9.31658860036 13.15618869946,9.31618630036 13.15777659946,9.31596640036 13.15870379946,9.31581080036 13.15985039946,9.31570890036 13.16068089946,9.31546750036 13.16260319946,9.31530120036 13.16463509946,9.31517780036 13.16528279946,9.31492570036 13.16607679946,9.31432750036 13.16816349946,9.31408350036 13.16910629946,9.31300650036 13.17480879946,9.31266320036 13.17648679946,9.31255330036 13.17676889946,9.31241240036 13.17701169946,9.31100820036 13.17877779946,9.31014060036 13.17988189946,9.30991800036 13.18025529946,9.30912670036 13.18195019946,9.30896180036 13.18238889946,9.30887190036 13.18279369946,9.30813960036 13.18659839946,9.30658370036 13.19468199946,9.30601670036 13.19762799946,9.30571500036 13.19914919946,9.30531670036 13.20250469946,9.30499880036 13.20464599946,9.30461260036 13.20735909946,9.30425580036 13.20934109946,9.30413780036 13.21008789946,9.30399030036 13.21081899946,9.30386690036 13.21124459946,9.30315350036 13.21338839946,9.30269750036 13.21497999946,9.30238630036 13.21598659946,9.30161120036 13.21924529946,9.30104990036 13.22193819946,9.30020780036 13.22560419946,9.30011720036 13.22607329946,9.30010910036 13.22644669946,9.30020750036 13.22720509946,9.30052920036 13.23004799946,9.30055570036 13.23028229946,9.30065770036 13.23084629946,9.30073280036 13.23133589946,9.30103320036 13.23404869946,9.30100050036 13.23475169946,9.30099430036 13.23488419946,9.30096740036 13.23518789946,9.30094060036 13.23549119946,9.30087450036 13.23588559946,9.30058920036 13.23758959946,9.30037740036 13.23885409946,9.29925350036 13.24466599946,9.29903630036 13.24541529946,9.29881360036 13.24604709946,9.29863120036 13.24689299946,9.29779980036 13.25151419946,9.29745910036 13.25320859946,9.29738130036 13.25390039946,9.29731960036 13.25432339946,9.29685290036 13.25682709946,9.29641310036 13.25927329946,9.29608650036 13.26086189946,9.29556010036 13.26415009946,9.29548770036 13.26472179946,9.29545420036 13.26580259946,9.29546220036 13.26620209946,9.29549980036 13.26659889946,9.29568890036 13.26753089946,9.29595630036 13.26864559946,9.29606970036 13.26911809946,9.29642510036 13.27060089946,9.29693880036 13.27225079946,9.29784130036 13.27413819946,9.29819810036 13.27517069946,9.29835500036 13.27575289946,9.29843810036 13.27623969946,9.29847970036 13.27671089946,9.29847170036 13.27736219946,9.29836376257 13.27928826595,9.29363774652 13.28071553315,9.26143167257 13.28737598905,9.24454448462 13.29011167811,9.23053295706 13.2887838549,9.21289435387 13.30051125414,9.19778815269 13.32247823685,9.15186873436 13.3910391307,9.14581771374 13.40627683318,9.13196867907 13.41103461001,9.10423261642 13.4076545699,9.04895765305 13.41333191567,9.01376707077 13.40030721748,8.99840350628 13.38536121692,8.98033614635 13.37809668542,8.96510115623 13.36832683942,8.95188323021 13.36339999371,8.93248549461 13.34803426934,8.92347327232 13.34694861051,8.798073 12.892653))",0.99,249,449550,421734,2022-12-20 +43,-NBOhCDaQSPYPMeVfA10,"Find Features - Mapping mobile homes - Arizona, USA (36) Arizona State University","**The mapping** \n\n\n Help us look for ""mobile homes"" including both manufactured homes and recreational vehicle (RV). Please take the tutorial to learn how to identify these features. \n\n\n **The data** \n\n\n Data will be used by researchers at Arizona State University and partners like AAMHO, the City of Phoenix and SRP to design solutions for heat resilience among mobile home owners across the state. People who live in this type of housing are 6 times more likely to suffer heat related deaths. We will better understand the nature and extent of the problem and identify precise cost and locations of where to activate support, energy innovations, and housing weatherization in order to prevent hundreds of fatalities each year.",mobile homes,1,Find Features,Arizona State University,https://backend.mapswipe.org/media/project/43/asset/input/01K7E3R5V2ZYW5YMH1A45DYBM0/demo_cover.png,2022-09-12 07:58:39.217053+00:00,75,Finished,4893.96778746156,POINT(-114.49220039592907 32.88376333380176),"POLYGON((-114.855464193244 32.5604848277883,-114.110714959252 32.5757013294135,-114.126325363231 33.2064817444721,-114.876356995645 33.1908955503027,-114.855464193244 32.5604848277883))",0.99,860,1521762,1494540,2023-01-17 diff --git a/assets/docs/about_data/files/global_exports/projects_centroid.geojson b/assets/docs/about_data/files/global_exports/projects_centroid.geojson new file mode 100644 index 0000000..896b170 --- /dev/null +++ b/assets/docs/about_data/files/global_exports/projects_centroid.geojson @@ -0,0 +1,316 @@ +{ + "type": "FeatureCollection", + "name": "projects", + "features": [ + { + "type": "Feature", + "properties": { + "id": "2509", + "firebase_id": "01K7ER06TKMM8Y8G82ZKHJTWGE", + "name": "Compare Dates - Building Detection - Urban Growth in Lagos - Nigeria (1) Togglecorp", + "description": "Rapid urban expansion in Lagos challenges automated mapping models. This project compares outputs from two AI models detecting buildings from satellite imagery. By choosing the more accurate result, volunteers help improve machine-learning datasets for mapping fast-growing cities.", + "look_for": "Building", + "project_type": "3", + "project_type_display": "Compare Dates", + "organization_name": "Togglecorp", + "image_url": "https://backend.mapswipe.org/media/project/2509/asset/input/01K7ER2X7M8SVVHMYAF465BNGW/360_F_234717402_ytMmHbtC5vF9dboXHP3q2gFh7a3uevcT.jpg", + "created_at": "2025-10-13 12:16:24.404067+00:00", + "status": "70", + "status_display": "Withdrawn", + "area_sqkm": "20.252221252705358", + "centroid": "POINT(3.616974379530524 6.624963834663823)", + "progress": "0.04", + "number_of_contributor_users": "1", + "number_of_results": "150", + "number_of_results_for_progress": "150", + "last_contribution_date": "2025-10-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.616974379530524, + 6.624963834663823 + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "2512", + "firebase_id": "01K7ESF0YM1YVW6NN5845CKEJJ", + "name": "View Streets - Street Network Completeness - Kathmandu Valley - Nepal (1) Togglecorp", + "description": "This project focuses on checking the completeness of mapped streets within Kathmandu Valley. Volunteers identify missing or incomplete road segments in satellite images. The data supports improving navigation, disaster planning, and city transport management.", + "look_for": "Street", + "project_type": "7", + "project_type_display": "View Streets", + "organization_name": "Togglecorp", + "image_url": "https://backend.mapswipe.org/media/project/2512/asset/input/01K7ESFJDD4DRVEJZWGR2AQAJS/cover_image1.jpg", + "created_at": "2025-10-13 12:41:58.485327+00:00", + "status": "70", + "status_display": "Withdrawn", + "area_sqkm": "0.8134657267302797", + "centroid": "POINT(85.3027180754338 27.734861987837345)", + "progress": "0.0", + "number_of_contributor_users": "0", + "number_of_results": "0", + "number_of_results_for_progress": "0", + "last_contribution_date": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 85.3027180754338, + 27.734861987837345 + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "2513", + "firebase_id": "01K7F1D3K029KF0BXMYBT98R6V", + "name": "Validate Footprints - Validate - Dhaka - Bangladesh (1) American Red Cross", + "description": "This is an OSM building validation project type. You are looking to validate building footprints. Please use the tutorial to learn how to contribute. \\n\\n **Project description** \\n\\n Areas of Dhaka, Bangladesh were mapped in 2016 to support disaster risk reduction programming. Help us understand the quality of the OSM building data in the area. The results will be used to help evaluate if the area should be re-mapped.", + "look_for": "Buildings", + "project_type": "2", + "project_type_display": "Validate Footprints", + "organization_name": "American Red Cross", + "image_url": "https://backend.mapswipe.org/media/project/2513/asset/input/01K7F1JYVB8PKQG35KQB7PT7VA/dhaka.png", + "created_at": "2025-10-13 15:00:44.257258+00:00", + "status": "80", + "status_display": "Discarded", + "area_sqkm": "14.40141147653637", + "centroid": "POINT(90.41238989187768 23.7583002309542)", + "progress": "0.0", + "number_of_contributor_users": "0", + "number_of_results": "0", + "number_of_results_for_progress": "0", + "last_contribution_date": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 90.41238989187768, + 23.7583002309542 + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "2515", + "firebase_id": "01K7GWW91NDWX0ZVF66X3GXC81", + "name": "Find Features - Find Buildings - Flood Response Astore - AP-Pakistan (3) HOT", + "description": "This MapSwipe project aims to identify building footprints in areas affected by the **recent flooding in Pakistan** (August 2025). \nBy collaborating on this project, mappers will help to **identify buildings** to understand the extent of affected areas, which will turn in helping in the response and recovery efforts. \nThe resulting data is crucial for understanding the scope of the disaster and effectively directing aid to those in need.\nThanks for your support.", + "look_for": "You are looking for buildings", + "project_type": "1", + "project_type_display": "Find Features", + "organization_name": "HOT", + "image_url": "https://backend.mapswipe.org/media/project/2515/asset/input/01K7GWX82E342CRHCF9ZAS52VD/US_Army_helicopter_flies_over_a_flood-affected_area_of_Pakistan_Cut.png", + "created_at": "2025-10-14 08:20:07.350397+00:00", + "status": "75", + "status_display": "Finished", + "area_sqkm": "1392.0273549762105", + "centroid": "POINT(74.84203243396992 35.5019828234034)", + "progress": "0.0", + "number_of_contributor_users": "1", + "number_of_results": "12", + "number_of_results_for_progress": "12", + "last_contribution_date": "2025-10-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 74.84203243396992, + 35.5019828234034 + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "2506", + "firebase_id": "01K7EDWZ4SR1RECVMWWF0KAH4K", + "name": "Find Features - Homes in Villages - Dolakha (1) Togglecorp", + "description": "You are looking for homes or houses in a rural village of Nepal.", + "look_for": "homes", + "project_type": "1", + "project_type_display": "Find Features", + "organization_name": "Togglecorp", + "image_url": "https://backend.mapswipe.org/media/project/2506/asset/input/01K7EDZBECWSYQA9N4NETHJDN1/bigu-gompa-in-dolkha.jpg", + "created_at": "2025-10-13 09:19:52.474292+00:00", + "status": "70", + "status_display": "Withdrawn", + "area_sqkm": "0.5524327881484031", + "centroid": "POINT(86.07870896783902 27.836908171930773)", + "progress": "0.33", + "number_of_contributor_users": "1", + "number_of_results": "24", + "number_of_results_for_progress": "24", + "last_contribution_date": "2025-10-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 86.07870896783902, + 27.836908171930773 + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "6", + "firebase_id": "-NI88tnKIzbmAPHZq_VM", + "name": "Find Features - Public Health - Magaria, Niger (2) M\u00e9decins Sans Fronti\u00e8res", + "description": "MSF is planning a large Indoor Residual Spraying campaign against the mosquito that carries malaria. To plan the intervention and do the follow up of the spraying campaign it is needed to identify all the buildings in the campaign area.", + "look_for": "Buildings", + "project_type": "1", + "project_type_display": "Find Features", + "organization_name": "M\u00e9decins Sans Fronti\u00e8res", + "image_url": "https://backend.mapswipe.org/media/project/6/asset/input/01K7E3PCK1MCQXVJH3MJ27W512/MSF196225_Medium.jpg", + "created_at": "2022-11-30 15:30:57.715149+00:00", + "status": "75", + "status_display": "Finished", + "area_sqkm": "3054.874146883078", + "centroid": "POINT(9.102046041003353 13.075926208295003)", + "progress": "0.99", + "number_of_contributor_users": "249", + "number_of_results": "449550", + "number_of_results_for_progress": "421734", + "last_contribution_date": "2022-12-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.102046041003353, + 13.075926208295003 + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "43", + "firebase_id": "-NBOhCDaQSPYPMeVfA10", + "name": "Find Features - Mapping mobile homes - Arizona, USA (36) Arizona State University", + "description": "**The mapping** \\n\\n\\n Help us look for \"mobile homes\" including both manufactured homes and recreational vehicle (RV). Please take the tutorial to learn how to identify these features. \\n\\n\\n **The data** \\n\\n\\n Data will be used by researchers at Arizona State University and partners like AAMHO, the City of Phoenix and SRP to design solutions for heat resilience among mobile home owners across the state. People who live in this type of housing are 6 times more likely to suffer heat related deaths. We will better understand the nature and extent of the problem and identify precise cost and locations of where to activate support, energy innovations, and housing weatherization in order to prevent hundreds of fatalities each year.", + "look_for": "mobile homes", + "project_type": "1", + "project_type_display": "Find Features", + "organization_name": "Arizona State University", + "image_url": "https://backend.mapswipe.org/media/project/43/asset/input/01K7E3R5V2ZYW5YMH1A45DYBM0/demo_cover.png", + "created_at": "2022-09-12 07:58:39.217053+00:00", + "status": "75", + "status_display": "Finished", + "area_sqkm": "4893.96778746156", + "centroid": "POINT(-114.49220039592907 32.88376333380176)", + "progress": "0.99", + "number_of_contributor_users": "860", + "number_of_results": "1521762", + "number_of_results_for_progress": "1494540", + "last_contribution_date": "2023-01-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -114.49220039592907, + 32.88376333380176 + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "55", + "firebase_id": "-MZ3drBQ6Dh7rheLrHY-", + "name": "Find Features - Forecast-based Financing - Sudan (22) Red Cross Red Crescent Climate Centre", + "description": "Help the Red Cross Red Crescent Climate Centre in identifying areas where people live in Sudan. Swipe slowly through the satellite imagery and mark anything that looks like a building and/or road. The data will be used to support forecast-based financing projects on floods and droughts.", + "look_for": "Buildings and Roads", + "project_type": "1", + "project_type_display": "Find Features", + "organization_name": "Red Cross Red Crescent Climate Centre", + "image_url": "https://backend.mapswipe.org/media/project/55/asset/input/01K7E3RP0RW0XTSTJ5GCQYPMAF/buehnenbild_Darfur_Menschenmenge.jpg", + "created_at": "2021-04-24 16:16:33.161141+00:00", + "status": "75", + "status_display": "Finished", + "area_sqkm": "4912.210640093994", + "centroid": "POINT(22.888356304376963 12.756266941750075)", + "progress": "0.99", + "number_of_contributor_users": "640", + "number_of_results": "905160", + "number_of_results_for_progress": "898008", + "last_contribution_date": "2021-12-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 22.888356304376963, + 12.756266941750075 + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "2516", + "firebase_id": "01K7H065YS65S297K9AS5918QA", + "name": "Find Features - Find Buildings - Flood Response 2025 Astore - AP-Pakistan (3) HOT", + "description": "This MapSwipe project aims to **identify building footprints** in areas affected by the recent **flooding in Pakistan (August 2025)**. \nBy collaborating on this project, mappers will help to identify buildings to understand the extent of affected areas, which will turn in helping in the response and recovery efforts. \nThe resulting data is crucial for understanding the scope of the disaster and effectively directing aid to those in need.\nThanks for your collaboration.", + "look_for": "Buildings", + "project_type": "1", + "project_type_display": "Find Features", + "organization_name": "HOT", + "image_url": "https://backend.mapswipe.org/media/project/2516/asset/input/01K7H1B1D3RQ23E7YFV6GZ9EK7/US_Army_helicopter_flies_over_a_flood-affected_area_of_Pakistan_Cut.png", + "created_at": "2025-10-14 09:17:57.594472+00:00", + "status": "75", + "status_display": "Finished", + "area_sqkm": "1392.0273549762105", + "centroid": "POINT(74.84203243396992 35.5019828234034)", + "progress": "1.0", + "number_of_contributor_users": "445", + "number_of_results": "565740", + "number_of_results_for_progress": "463650", + "last_contribution_date": "2025-10-29" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 74.84203243396992, + 35.5019828234034 + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "2517", + "firebase_id": "01K7H2YBXBBB8H3FCMD98G8F8N", + "name": "Find Features - Find - Buildings - Upat\u00e1, Bolivar-Venezuela (1) HOT", + "description": "Mapping in areas of high multidimensional poverty is of crucial relevance, as women play an essential role in** indigenous populations**, and contribute significantly to social cohesion, cultural preservation and community sustainability. \nIn addition, women in indigenous communities are transmitters of local knowledge and assume fundamental responsibilities in the management of natural resources and environmental preservation. Women\u2019s active participation in their communities strengthens resilience in the face of socioeconomic and environmental challenges. In the context of the Amazon, mapping becomes critically important when considering vulnerability and the need to preserve valuable natural resources. When women in these communities have detailed information of their surroundings, it facilitates strategic planning against threats, and contributes to the implementation of adaptation and protection measures, to ensure the long-term survival of the region and its population.\nImage: \u00a9Rei2Rey / Wikimedia Commons / CC-BY-SA-3.0 / GFDL", + "look_for": "You are looking for: buildings", + "project_type": "1", + "project_type_display": "Find Features", + "organization_name": "HOT", + "image_url": "https://backend.mapswipe.org/media/project/2517/asset/input/01K7H2YT9CXEFWZVAEN8H8J8J7/Upata.JPG", + "created_at": "2025-10-14 10:06:07.275638+00:00", + "status": "75", + "status_display": "Finished", + "area_sqkm": "748.0441932907204", + "centroid": "POINT(-62.360876832035835 8.014680005459482)", + "progress": "1.0", + "number_of_contributor_users": "188", + "number_of_results": "223254", + "number_of_results_for_progress": "171270", + "last_contribution_date": "2025-10-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -62.360876832035835, + 8.014680005459482 + ] + } + } + ] +} diff --git a/assets/docs/about_data/files/global_exports/projects_geom.geojson b/assets/docs/about_data/files/global_exports/projects_geom.geojson new file mode 100644 index 0000000..68b072f --- /dev/null +++ b/assets/docs/about_data/files/global_exports/projects_geom.geojson @@ -0,0 +1,9471 @@ +{ + "type": "FeatureCollection", + "name": "projects", + "features": [ + { + "type": "Feature", + "properties": { + "id": "2509", + "firebase_id": "01K7ER06TKMM8Y8G82ZKHJTWGE", + "name": "Compare Dates - Building Detection - Urban Growth in Lagos - Nigeria (1) Togglecorp", + "description": "Rapid urban expansion in Lagos challenges automated mapping models. This project compares outputs from two AI models detecting buildings from satellite imagery. By choosing the more accurate result, volunteers help improve machine-learning datasets for mapping fast-growing cities.", + "look_for": "Building", + "project_type": "3", + "project_type_display": "Compare Dates", + "organization_name": "Togglecorp", + "image_url": "https://backend.mapswipe.org/media/project/2509/asset/input/01K7ER2X7M8SVVHMYAF465BNGW/360_F_234717402_ytMmHbtC5vF9dboXHP3q2gFh7a3uevcT.jpg", + "created_at": "2025-10-13 12:16:24.404067+00:00", + "status": "70", + "status_display": "Withdrawn", + "area_sqkm": "20.252221252705358", + "centroid": "POINT(3.616974379530524 6.624963834663823)", + "progress": "0.04", + "number_of_contributor_users": "1", + "number_of_results": "150", + "number_of_results_for_progress": "150", + "last_contribution_date": "2025-10-13" + }, + "geometry": { + "type": "GeometryCollection", + "geometries": [ + { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.602346290971724, + 6.641688813017908 + ], + [ + 3.59080666562329, + 6.639747435798398 + ], + [ + 3.586862403290041, + 6.620547245046623 + ], + [ + 3.621631074564704, + 6.604244962218061 + ], + [ + 3.642219896856176, + 6.609922791642902 + ], + [ + 3.645793456340414, + 6.628414317491121 + ], + [ + 3.62319891518419, + 6.644052216120102 + ], + [ + 3.602346290971724, + 6.641688813017908 + ] + ] + ] + } + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "2512", + "firebase_id": "01K7ESF0YM1YVW6NN5845CKEJJ", + "name": "View Streets - Street Network Completeness - Kathmandu Valley - Nepal (1) Togglecorp", + "description": "This project focuses on checking the completeness of mapped streets within Kathmandu Valley. Volunteers identify missing or incomplete road segments in satellite images. The data supports improving navigation, disaster planning, and city transport management.", + "look_for": "Street", + "project_type": "7", + "project_type_display": "View Streets", + "organization_name": "Togglecorp", + "image_url": "https://backend.mapswipe.org/media/project/2512/asset/input/01K7ESFJDD4DRVEJZWGR2AQAJS/cover_image1.jpg", + "created_at": "2025-10-13 12:41:58.485327+00:00", + "status": "70", + "status_display": "Withdrawn", + "area_sqkm": "0.8134657267302797", + "centroid": "POINT(85.3027180754338 27.734861987837345)", + "progress": "0.0", + "number_of_contributor_users": "0", + "number_of_results": "0", + "number_of_results_for_progress": "0", + "last_contribution_date": "" + }, + "geometry": { + "type": "GeometryCollection", + "geometries": [ + { + "type": "Polygon", + "coordinates": [ + [ + [ + 85.2995980082153, + 27.737602134826318 + ], + [ + 85.29725632164707, + 27.736980353189253 + ], + [ + 85.2951734530671, + 27.73558405868752 + ], + [ + 85.29744119164002, + 27.732115062095446 + ], + [ + 85.30519340664858, + 27.731438703984324 + ], + [ + 85.30932216980989, + 27.732955049389645 + ], + [ + 85.30910032582022, + 27.736205848293125 + ], + [ + 85.30519340664858, + 27.7387256961552 + ], + [ + 85.2995980082153, + 27.737602134826318 + ] + ] + ] + } + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "2513", + "firebase_id": "01K7F1D3K029KF0BXMYBT98R6V", + "name": "Validate Footprints - Validate - Dhaka - Bangladesh (1) American Red Cross", + "description": "This is an OSM building validation project type. You are looking to validate building footprints. Please use the tutorial to learn how to contribute. \\n\\n **Project description** \\n\\n Areas of Dhaka, Bangladesh were mapped in 2016 to support disaster risk reduction programming. Help us understand the quality of the OSM building data in the area. The results will be used to help evaluate if the area should be re-mapped.", + "look_for": "Buildings", + "project_type": "2", + "project_type_display": "Validate Footprints", + "organization_name": "American Red Cross", + "image_url": "https://backend.mapswipe.org/media/project/2513/asset/input/01K7F1JYVB8PKQG35KQB7PT7VA/dhaka.png", + "created_at": "2025-10-13 15:00:44.257258+00:00", + "status": "80", + "status_display": "Discarded", + "area_sqkm": "14.40141147653637", + "centroid": "POINT(90.41238989187768 23.7583002309542)", + "progress": "0.0", + "number_of_contributor_users": "0", + "number_of_results": "0", + "number_of_results_for_progress": "0", + "last_contribution_date": "" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 90.419199, + 23.7409 + ], + [ + 90.417951, + 23.739875 + ], + [ + 90.416222, + 23.738951 + ], + [ + 90.414346, + 23.738382 + ], + [ + 90.412395, + 23.73819 + ], + [ + 90.410339, + 23.73819 + ], + [ + 90.408284, + 23.73819 + ], + [ + 90.406228, + 23.73819 + ], + [ + 90.404172, + 23.73819 + ], + [ + 90.402117, + 23.73819 + ], + [ + 90.400166, + 23.738382 + ], + [ + 90.39829, + 23.738951 + ], + [ + 90.396561, + 23.739875 + ], + [ + 90.395046, + 23.741119 + ], + [ + 90.393802, + 23.742634 + ], + [ + 90.392878, + 23.744363 + ], + [ + 90.392309, + 23.746239 + ], + [ + 90.392117, + 23.74819 + ], + [ + 90.392117, + 23.749646 + ], + [ + 90.392117, + 23.751102 + ], + [ + 90.392117, + 23.752558 + ], + [ + 90.392117, + 23.754014 + ], + [ + 90.392117, + 23.75547 + ], + [ + 90.392309, + 23.757421 + ], + [ + 90.392878, + 23.759297 + ], + [ + 90.393802, + 23.761026 + ], + [ + 90.395046, + 23.762541 + ], + [ + 90.395162, + 23.762637 + ], + [ + 90.395858, + 23.763938 + ], + [ + 90.397101, + 23.765454 + ], + [ + 90.398617, + 23.766697 + ], + [ + 90.399424, + 23.767129 + ], + [ + 90.400672, + 23.768153 + ], + [ + 90.4007, + 23.768168 + ], + [ + 90.401101, + 23.76949 + ], + [ + 90.402025, + 23.771219 + ], + [ + 90.403268, + 23.772734 + ], + [ + 90.403385, + 23.77283 + ], + [ + 90.40408, + 23.774131 + ], + [ + 90.405324, + 23.775646 + ], + [ + 90.406839, + 23.77689 + ], + [ + 90.408568, + 23.777814 + ], + [ + 90.410444, + 23.778383 + ], + [ + 90.412395, + 23.778575 + ], + [ + 90.414451, + 23.778575 + ], + [ + 90.416506, + 23.778575 + ], + [ + 90.418562, + 23.778575 + ], + [ + 90.420618, + 23.778575 + ], + [ + 90.422673, + 23.778575 + ], + [ + 90.424624, + 23.778383 + ], + [ + 90.4265, + 23.777814 + ], + [ + 90.428229, + 23.77689 + ], + [ + 90.429744, + 23.775646 + ], + [ + 90.430988, + 23.774131 + ], + [ + 90.431912, + 23.772402 + ], + [ + 90.432481, + 23.770526 + ], + [ + 90.432673, + 23.768575 + ], + [ + 90.432673, + 23.767119 + ], + [ + 90.432673, + 23.765663 + ], + [ + 90.432673, + 23.764207 + ], + [ + 90.432673, + 23.762751 + ], + [ + 90.432481, + 23.7608 + ], + [ + 90.431912, + 23.758924 + ], + [ + 90.430988, + 23.757195 + ], + [ + 90.429744, + 23.75568 + ], + [ + 90.429628, + 23.755584 + ], + [ + 90.428932, + 23.754283 + ], + [ + 90.428379, + 23.753608 + ], + [ + 90.42837, + 23.753519 + ], + [ + 90.427801, + 23.751644 + ], + [ + 90.426877, + 23.749915 + ], + [ + 90.425633, + 23.748399 + ], + [ + 90.425517, + 23.748304 + ], + [ + 90.424821, + 23.747002 + ], + [ + 90.423577, + 23.745487 + ], + [ + 90.423461, + 23.745392 + ], + [ + 90.422765, + 23.74409 + ], + [ + 90.421522, + 23.742575 + ], + [ + 90.420006, + 23.741331 + ], + [ + 90.419199, + 23.7409 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "2515", + "firebase_id": "01K7GWW91NDWX0ZVF66X3GXC81", + "name": "Find Features - Find Buildings - Flood Response Astore - AP-Pakistan (3) HOT", + "description": "This MapSwipe project aims to identify building footprints in areas affected by the **recent flooding in Pakistan** (August 2025). \nBy collaborating on this project, mappers will help to **identify buildings** to understand the extent of affected areas, which will turn in helping in the response and recovery efforts. \nThe resulting data is crucial for understanding the scope of the disaster and effectively directing aid to those in need.\nThanks for your support.", + "look_for": "You are looking for buildings", + "project_type": "1", + "project_type_display": "Find Features", + "organization_name": "HOT", + "image_url": "https://backend.mapswipe.org/media/project/2515/asset/input/01K7GWX82E342CRHCF9ZAS52VD/US_Army_helicopter_flies_over_a_flood-affected_area_of_Pakistan_Cut.png", + "created_at": "2025-10-14 08:20:07.350397+00:00", + "status": "75", + "status_display": "Finished", + "area_sqkm": "1392.0273549762105", + "centroid": "POINT(74.84203243396992 35.5019828234034)", + "progress": "0.0", + "number_of_contributor_users": "1", + "number_of_results": "12", + "number_of_results_for_progress": "12", + "last_contribution_date": "2025-10-14" + }, + "geometry": { + "type": "GeometryCollection", + "geometries": [ + { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 74.73818176700007, + 35.83336217300007 + ], + [ + 74.73818176700007, + 35.82855079400008 + ], + [ + 74.73841077100008, + 35.82465566600007 + ], + [ + 74.73886901500003, + 35.82167717800007 + ], + [ + 74.74001464600008, + 35.81869854900003 + ], + [ + 74.73955639100006, + 35.81549092800003 + ], + [ + 74.73863989300008, + 35.81319967600007 + ], + [ + 74.73772351200006, + 35.80678442200008 + ], + [ + 74.73726539800003, + 35.80311842800006 + ], + [ + 74.73405751800004, + 35.80059817100005 + ], + [ + 74.73130815200005, + 35.79945266900006 + ], + [ + 74.72924602100005, + 35.79624480100006 + ], + [ + 74.72901702900003, + 35.793495423000024 + ], + [ + 74.72901702900003, + 35.79005868000007 + ], + [ + 74.73062077500003, + 35.78799654900007 + ], + [ + 74.73314101900007, + 35.78730918400004 + ], + [ + 74.73589064400005, + 35.78730918400004 + ], + [ + 74.73886901500003, + 35.78730918400004 + ], + [ + 74.74138940000006, + 35.78616355200006 + ], + [ + 74.74459715100005, + 35.78364329600004 + ], + [ + 74.74780477200005, + 35.78135205600006 + ], + [ + 74.75055413800004, + 35.779061038000066 + ], + [ + 74.75399102200004, + 35.77585318200005 + ], + [ + 74.75628227400006, + 35.77287480000007 + ], + [ + 74.75788602000006, + 35.76875055100004 + ], + [ + 74.75880251900008, + 35.765313796000044 + ], + [ + 74.75857339700008, + 35.761876924000035 + ], + [ + 74.75719864300004, + 35.75889829500005 + ], + [ + 74.75582401900004, + 35.75591979500007 + ], + [ + 74.75353277900007, + 35.75339955100003 + ], + [ + 74.75192902100008, + 35.75179579300004 + ], + [ + 74.74895027500008, + 35.75019180000004 + ], + [ + 74.74574264200004, + 35.74904616800006 + ], + [ + 74.74345164800008, + 35.748129670000026 + ], + [ + 74.74161852200007, + 35.74675504500004 + ], + [ + 74.74093114500005, + 35.744692927000074 + ], + [ + 74.74116026700005, + 35.74171429800003 + ], + [ + 74.74161852200007, + 35.739652179000075 + ], + [ + 74.74322238500008, + 35.73667379700004 + ], + [ + 74.74345164800008, + 35.73392430200005 + ], + [ + 74.74276427100006, + 35.731862300000046 + ], + [ + 74.74161852200007, + 35.729571048000025 + ], + [ + 74.73978551300007, + 35.72796729100003 + ], + [ + 74.73818176700007, + 35.72590517200007 + ], + [ + 74.73795277400006, + 35.723155794000036 + ], + [ + 74.73909813600005, + 35.72086455400006 + ], + [ + 74.73959226800008, + 35.720235659000025 + ], + [ + 74.74077188600006, + 35.71873432700005 + ], + [ + 74.74161852200007, + 35.717656791000024 + ], + [ + 74.74528439800008, + 35.71513667600004 + ], + [ + 74.74826302700006, + 35.713303550000035 + ], + [ + 74.75078340100004, + 35.712387180000064 + ], + [ + 74.75628227400006, + 35.71215791800006 + ], + [ + 74.76017714300008, + 35.71169966300005 + ], + [ + 74.76407227100003, + 35.71169966300005 + ], + [ + 74.76980027700006, + 35.71215791800006 + ], + [ + 74.77346614200007, + 35.71376180500005 + ], + [ + 74.77575726500004, + 35.71582405300006 + ], + [ + 74.77732726400006, + 35.716696100000036 + ], + [ + 74.77801939400007, + 35.71708054000004 + ], + [ + 74.77988151400007, + 35.71811504600004 + ], + [ + 74.78286002500005, + 35.717656791000024 + ], + [ + 74.78606477000005, + 35.71692104400006 + ], + [ + 74.78693442900004, + 35.716066408000074 + ], + [ + 74.78904639300004, + 35.713990927000054 + ], + [ + 74.79202476400008, + 35.71215791800006 + ], + [ + 74.79591990300008, + 35.71147054100004 + ], + [ + 74.79695871300004, + 35.71147054100004 + ], + [ + 74.80187714900006, + 35.71147054100004 + ], + [ + 74.80691765000006, + 35.71215791800006 + ], + [ + 74.81035439300007, + 35.71284529500008 + ], + [ + 74.81082453500005, + 35.712930776000064 + ], + [ + 74.81287477800004, + 35.713303550000035 + ], + [ + 74.81403619900004, + 35.71430352400006 + ], + [ + 74.81522177500005, + 35.71532429700005 + ], + [ + 74.81768627500003, + 35.71742767000006 + ], + [ + 74.81974827600004, + 35.71971892200003 + ], + [ + 74.82181039500006, + 35.72086455400006 + ], + [ + 74.82267006900008, + 35.72086455400006 + ], + [ + 74.82455977300003, + 35.72086455400006 + ], + [ + 74.82868389200007, + 35.72063543200005 + ], + [ + 74.83143340000004, + 35.719489800000076 + ], + [ + 74.83396139500007, + 35.71810343200008 + ], + [ + 74.83647413500006, + 35.71559479000007 + ], + [ + 74.83945251800003, + 35.713303550000035 + ], + [ + 74.84266038600003, + 35.711241431000076 + ], + [ + 74.84540964600006, + 35.70986679500004 + ], + [ + 74.85090853100007, + 35.70872117500005 + ], + [ + 74.85503278000004, + 35.70803379800003 + ], + [ + 74.85778214700008, + 35.70780467600008 + ], + [ + 74.85984427700004, + 35.70665904400005 + ], + [ + 74.86213540000006, + 35.70551341300006 + ], + [ + 74.86580151100003, + 35.702076799000054 + ], + [ + 74.86877989300007, + 35.69909817000007 + ], + [ + 74.87061303100006, + 35.696348674000035 + ], + [ + 74.87267490300007, + 35.691995433000045 + ], + [ + 74.87519526500006, + 35.68787143000003 + ], + [ + 74.87725739600006, + 35.68145591800004 + ], + [ + 74.87840289800005, + 35.67801917500003 + ], + [ + 74.87863213800006, + 35.67458230200003 + ], + [ + 74.87840289800005, + 35.672062046000065 + ], + [ + 74.87771552200007, + 35.667937926000036 + ], + [ + 74.87542439900005, + 35.66427192100008 + ], + [ + 74.87313314700003, + 35.661980809000056 + ], + [ + 74.87084202400007, + 35.65968954600004 + ], + [ + 74.87107114500003, + 35.65625280300003 + ], + [ + 74.87130052500004, + 35.652815919000034 + ], + [ + 74.87221664800006, + 35.65029567400006 + ], + [ + 74.87267490300007, + 35.64800442200004 + ], + [ + 74.87267490300007, + 35.64640080500004 + ], + [ + 74.87267490300007, + 35.64388030200007 + ], + [ + 74.87267490300007, + 35.640672669000026 + ], + [ + 74.87107114500003, + 35.63838142900005 + ], + [ + 74.86969639200004, + 35.637006675000066 + ], + [ + 74.86740515200006, + 35.63540291700008 + ], + [ + 74.86328127800004, + 35.63540291700008 + ], + [ + 74.86098976800008, + 35.63540291700008 + ], + [ + 74.85869864500006, + 35.63356992000007 + ], + [ + 74.85543611700007, + 35.631856483000035 + ], + [ + 74.85509356800003, + 35.63117134400005 + ], + [ + 74.85434540300008, + 35.62967492200005 + ], + [ + 74.85434540300008, + 35.627841913000054 + ], + [ + 74.85434540300008, + 35.62600892800003 + ], + [ + 74.85434540300008, + 35.62496246400008 + ], + [ + 74.85434540300008, + 35.62384946100008 + ], + [ + 74.85424670700007, + 35.62351452400003 + ], + [ + 74.85342889300006, + 35.62073917600003 + ], + [ + 74.85136689200004, + 35.61867717500007 + ], + [ + 74.84953402400004, + 35.61753154300004 + ], + [ + 74.84701352100006, + 35.61661530300006 + ], + [ + 74.84495140300004, + 35.61661530300006 + ], + [ + 74.83899439200007, + 35.61638605200005 + ], + [ + 74.83647413500006, + 35.61638605200005 + ], + [ + 74.83395377300008, + 35.616156801000045 + ], + [ + 74.83280814100004, + 35.61409480000003 + ], + [ + 74.83280814100004, + 35.610428795000075 + ], + [ + 74.83280814100004, + 35.60790855000005 + ], + [ + 74.83280814100004, + 35.60561729800003 + ], + [ + 74.83303726300005, + 35.603097053000056 + ], + [ + 74.83441201700003, + 35.600805931000025 + ], + [ + 74.83693227300006, + 35.59897292200003 + ], + [ + 74.83945251800003, + 35.59691080300007 + ], + [ + 74.84266038600003, + 35.59461968000005 + ], + [ + 74.84351964400008, + 35.59388311400005 + ], + [ + 74.84586788900003, + 35.591870173000075 + ], + [ + 74.84815915300004, + 35.59003717600007 + ], + [ + 74.84999213800006, + 35.58820416700007 + ], + [ + 74.85159589600005, + 35.586371288000066 + ], + [ + 74.85342889300006, + 35.585454801000026 + ], + [ + 74.85617838900004, + 35.58408004800003 + ], + [ + 74.85984427700004, + 35.58064329300004 + ], + [ + 74.86121877200003, + 35.58064329300004 + ], + [ + 74.86168797500005, + 35.58064329300004 + ], + [ + 74.86328127800004, + 35.58064329300004 + ], + [ + 74.86589720800004, + 35.58056673100003 + ], + [ + 74.86694689600006, + 35.579726924000056 + ], + [ + 74.86855076000006, + 35.57720642100003 + ], + [ + 74.86992565400004, + 35.57560280400003 + ], + [ + 74.87107114500003, + 35.57354042700007 + ], + [ + 74.87038376900006, + 35.571707794000076 + ], + [ + 74.86740515200006, + 35.56895816900004 + ], + [ + 74.86603052700008, + 35.56712517200003 + ], + [ + 74.86528825900007, + 35.564934562000076 + ], + [ + 74.86465577400008, + 35.563459296000076 + ], + [ + 74.86216824500008, + 35.562132665000036 + ], + [ + 74.86121877200003, + 35.56162629900007 + ], + [ + 74.86144802300004, + 35.56048080800008 + ], + [ + 74.86328127800004, + 35.55818954400007 + ], + [ + 74.86557227200007, + 35.556814802000076 + ], + [ + 74.86900901500007, + 35.55475280100006 + ], + [ + 74.87496602600004, + 35.55108692500005 + ], + [ + 74.87748640000007, + 35.54948304900006 + ], + [ + 74.88000689100005, + 35.54719179700004 + ], + [ + 74.88183977100005, + 35.545358918000034 + ], + [ + 74.88310645600006, + 35.54391117200004 + ], + [ + 74.88345660100003, + 35.54352157100004 + ], + [ + 74.88481838800004, + 35.54306767700007 + ], + [ + 74.88665126700005, + 35.54283855600005 + ], + [ + 74.88894239000007, + 35.542609422000055 + ], + [ + 74.89169202600004, + 35.541692924000074 + ], + [ + 74.89398302000006, + 35.540318299000035 + ], + [ + 74.89741989200007, + 35.53848554900003 + ], + [ + 74.90268965600006, + 35.53596491700006 + ], + [ + 74.90406428000006, + 35.53413204900005 + ], + [ + 74.90475164500003, + 35.53161167500008 + ], + [ + 74.90521001800005, + 35.52909141900005 + ], + [ + 74.90658477200003, + 35.525654547000045 + ], + [ + 74.90704289700005, + 35.52359254600003 + ], + [ + 74.90841765100004, + 35.52359254600003 + ], + [ + 74.91185439400004, + 35.52427992200006 + ], + [ + 74.91506202700003, + 35.52427992200006 + ], + [ + 74.91918627600006, + 35.524509056000056 + ], + [ + 74.92331039600003, + 35.524509056000056 + ], + [ + 74.92537239700005, + 35.524509056000056 + ], + [ + 74.92743451600006, + 35.52290516900007 + ], + [ + 74.93110039200008, + 35.51992655200007 + ], + [ + 74.94186914700003, + 35.51419855700004 + ], + [ + 74.94690964800003, + 35.510991053000055 + ], + [ + 74.94897177800004, + 35.50892892200005 + ], + [ + 74.95011751600003, + 35.506866804000026 + ], + [ + 74.95093601700006, + 35.50473843000003 + ], + [ + 74.95126290100006, + 35.503888163000056 + ], + [ + 74.95217938800005, + 35.50182617400003 + ], + [ + 74.95286676400008, + 35.499305682000056 + ], + [ + 74.95332502000008, + 35.49609817800007 + ], + [ + 74.95340398500008, + 35.49602579100008 + ], + [ + 74.95430489200004, + 35.49519993000007 + ], + [ + 74.95496652000008, + 35.49459341600004 + ], + [ + 74.95607451500007, + 35.49357779300004 + ], + [ + 74.95744915100005, + 35.493348671000035 + ], + [ + 74.95974039100008, + 35.492432173000054 + ], + [ + 74.95996952500008, + 35.49105754800007 + ], + [ + 74.96088602300006, + 35.48945367300007 + ], + [ + 74.96248976900006, + 35.48670429500004 + ], + [ + 74.96317715800006, + 35.48578779700006 + ], + [ + 74.96523927700008, + 35.482121791000054 + ], + [ + 74.96684315200008, + 35.48005979000004 + ], + [ + 74.96982164000008, + 35.477768420000075 + ], + [ + 74.97188377000003, + 35.476393796000025 + ], + [ + 74.97325839500007, + 35.475477427000044 + ], + [ + 74.97440402600006, + 35.47501917200003 + ], + [ + 74.97669539600008, + 35.474790050000024 + ], + [ + 74.97898640100004, + 35.47456091600003 + ], + [ + 74.98104852000006, + 35.47433179500007 + ], + [ + 74.98311052100007, + 35.47295705300007 + ], + [ + 74.98608915000005, + 35.47089505200006 + ], + [ + 74.98998414800008, + 35.46997855300003 + ], + [ + 74.99142837800008, + 35.471010025000055 + ], + [ + 74.99365014200004, + 35.472727931000065 + ], + [ + 74.99571214300005, + 35.47410267300006 + ], + [ + 74.99800339500007, + 35.475477427000044 + ], + [ + 75.00235664900003, + 35.47662291800003 + ], + [ + 75.00398039400005, + 35.47621704900007 + ], + [ + 75.00535873000007, + 35.475872485000025 + ], + [ + 75.00602251300006, + 35.47570654800006 + ], + [ + 75.00716814500004, + 35.47410267300006 + ], + [ + 75.00877202100008, + 35.47226967600005 + ], + [ + 75.01106314400005, + 35.46952029800008 + ], + [ + 75.01266701900005, + 35.466312548000076 + ], + [ + 75.01312527400006, + 35.46310491400004 + ], + [ + 75.01450002700005, + 35.46195930600004 + ], + [ + 75.01495828300006, + 35.46058455200006 + ], + [ + 75.01541639700008, + 35.458522551000044 + ], + [ + 75.01610377400004, + 35.45554392200006 + ], + [ + 75.01610377400004, + 35.45371105500004 + ], + [ + 75.01610377400004, + 35.451419791000035 + ], + [ + 75.01564540100003, + 35.44935779000008 + ], + [ + 75.01564540100003, + 35.44863040900003 + ], + [ + 75.01564540100003, + 35.44660842300004 + ], + [ + 75.01665584900007, + 35.44502069400005 + ], + [ + 75.01724939400003, + 35.44408805000006 + ], + [ + 75.01797289300004, + 35.44328403900005 + ], + [ + 75.01931152400005, + 35.44179679800004 + ], + [ + 75.02137352500006, + 35.43973466700004 + ], + [ + 75.02343564400007, + 35.43813092100004 + ], + [ + 75.02549764500003, + 35.43629792400003 + ], + [ + 75.02801803100004, + 35.43561054700007 + ], + [ + 75.03145477400005, + 35.43675605000004 + ], + [ + 75.03273098500006, + 35.437394218000065 + ], + [ + 75.03374602600007, + 35.43790178800003 + ], + [ + 75.03473217400006, + 35.43812093500003 + ], + [ + 75.03580814400004, + 35.438360043000046 + ], + [ + 75.03718289800008, + 35.43904730200006 + ], + [ + 75.03924489900004, + 35.43904730200006 + ], + [ + 75.04084877400004, + 35.438589164000064 + ], + [ + 75.04291077600004, + 35.437214434000055 + ], + [ + 75.04474377300005, + 35.43561054700007 + ], + [ + 75.04611851400006, + 35.434235794000074 + ], + [ + 75.04757616300003, + 35.434235794000074 + ], + [ + 75.05047177900008, + 35.43469404900003 + ], + [ + 75.05211430700007, + 35.43491305800006 + ], + [ + 75.05390852300008, + 35.435152292000055 + ], + [ + 75.05642889600006, + 35.435152292000055 + ], + [ + 75.05849088600007, + 35.43469404900003 + ], + [ + 75.06215690300007, + 35.43331942400005 + ], + [ + 75.06376064900007, + 35.43240291400008 + ], + [ + 75.06490626900006, + 35.431028172000026 + ], + [ + 75.06559364600008, + 35.430799051000065 + ], + [ + 75.06559364600008, + 35.428507799000045 + ], + [ + 75.06536452500006, + 35.42713317400006 + ], + [ + 75.06536452500006, + 35.424612800000034 + ], + [ + 75.06628102300004, + 35.42232167800006 + ], + [ + 75.06903040100008, + 35.42003042500005 + ], + [ + 75.07200901800007, + 35.41865567200006 + ], + [ + 75.07361290500006, + 35.41842655000005 + ], + [ + 75.07567489500008, + 35.41842655000005 + ], + [ + 75.07743747500007, + 35.41842655000005 + ], + [ + 75.07888264500008, + 35.41842655000005 + ], + [ + 75.08056549900004, + 35.41863691800006 + ], + [ + 75.08251385300008, + 35.41940787100003 + ], + [ + 75.08438151900003, + 35.42003042500005 + ], + [ + 75.08690177500006, + 35.42003042500005 + ], + [ + 75.08714092700006, + 35.419312958000035 + ], + [ + 75.08758914000003, + 35.41796829500004 + ], + [ + 75.08808290700006, + 35.41735112400005 + ], + [ + 75.08942214900003, + 35.41567717200007 + ], + [ + 75.09194252200007, + 35.413156798000045 + ], + [ + 75.09446276700004, + 35.41086567600007 + ], + [ + 75.09537888900007, + 35.41008044200004 + ], + [ + 75.09606652500008, + 35.40949105100003 + ], + [ + 75.09835777700005, + 35.40674155600004 + ], + [ + 75.09996164000006, + 35.40399204900007 + ], + [ + 75.10133626500004, + 35.40124268200003 + ], + [ + 75.10202364200006, + 35.39872229700006 + ], + [ + 75.10202364200006, + 35.396889300000055 + ], + [ + 75.10179452000006, + 35.394598177000034 + ], + [ + 75.10087802100009, + 35.39322342300005 + ], + [ + 75.09904514200008, + 35.391161305000026 + ], + [ + 75.09812865500004, + 35.38978668000004 + ], + [ + 75.09784509500008, + 35.38929045200007 + ], + [ + 75.09721214500007, + 35.388182793000055 + ], + [ + 75.09858689900005, + 35.38634979600005 + ], + [ + 75.10019077400005, + 35.38589142400008 + ], + [ + 75.10311201400003, + 35.38543341500008 + ], + [ + 75.10654863900004, + 35.38457417700005 + ], + [ + 75.10826715200005, + 35.38285579300003 + ], + [ + 75.11009264600006, + 35.38187281200004 + ], + [ + 75.11196073600007, + 35.380866893000075 + ], + [ + 75.11199039400003, + 35.380850923000025 + ], + [ + 75.11314773900006, + 35.37985890600004 + ], + [ + 75.11399514700008, + 35.379132551000055 + ], + [ + 75.11657278000007, + 35.37626854800004 + ], + [ + 75.11743203100008, + 35.374263807000034 + ], + [ + 75.11857752200007, + 35.371399921000034 + ], + [ + 75.12086876200004, + 35.368822170000044 + ], + [ + 75.12316002600005, + 35.36681742800005 + ], + [ + 75.12430552900008, + 35.36509904500008 + ], + [ + 75.12462921500008, + 35.36466741700008 + ], + [ + 75.12602377100006, + 35.362807805000045 + ], + [ + 75.12632285600006, + 35.36206034400004 + ], + [ + 75.12659676900006, + 35.36137579100006 + ], + [ + 75.12802878200006, + 35.35793904800005 + ], + [ + 75.13146552500007, + 35.35593417800004 + ], + [ + 75.13519940600008, + 35.35430063000007 + ], + [ + 75.13604788900005, + 35.35392942500005 + ], + [ + 75.13875731200005, + 35.35269785700007 + ], + [ + 75.13919826200004, + 35.352497423000045 + ], + [ + 75.14206227700004, + 35.351065421000044 + ], + [ + 75.14492626900005, + 35.350206171000025 + ], + [ + 75.14750389100004, + 35.349347038000076 + ], + [ + 75.15552314900003, + 35.34591016600007 + ], + [ + 75.15810064200008, + 35.34304617400005 + ], + [ + 75.16067826400007, + 35.34018217100004 + ], + [ + 75.16468788800006, + 35.337031797000066 + ], + [ + 75.16697902200008, + 35.33474066300005 + ], + [ + 75.16755815000005, + 35.33351005700007 + ], + [ + 75.16927027400004, + 35.329871800000035 + ], + [ + 75.16955664400007, + 35.32672142700005 + ], + [ + 75.17041589500008, + 35.32299830300008 + ], + [ + 75.17070227600004, + 35.32070703900007 + ], + [ + 75.17070227600004, + 35.31812941700008 + ], + [ + 75.17156151500006, + 35.31440629200006 + ], + [ + 75.17270701700005, + 35.31154230100003 + ], + [ + 75.17442553000006, + 35.30896467900004 + ], + [ + 75.17700302300005, + 35.30610066400004 + ], + [ + 75.17728952200008, + 35.30352304200005 + ], + [ + 75.17728952200008, + 35.30094554900006 + ], + [ + 75.17614389000005, + 35.29865430900003 + ], + [ + 75.17614389000005, + 35.29464467300005 + ], + [ + 75.17614389000005, + 35.290921549000075 + ], + [ + 75.17614389000005, + 35.287771176000035 + ], + [ + 75.17557102100005, + 35.28519354200006 + ], + [ + 75.17557102100005, + 35.282043169000076 + ], + [ + 75.17557102100005, + 35.27803354500003 + ], + [ + 75.17585752000008, + 35.27516954200007 + ], + [ + 75.17728952200008, + 35.273164800000075 + ], + [ + 75.17814865400004, + 35.270873548000054 + ], + [ + 75.17757590300005, + 35.26915517700007 + ], + [ + 75.17757590300005, + 35.26600480400003 + ], + [ + 75.17762101900007, + 35.26433534600005 + ], + [ + 75.17766709600005, + 35.26263030500007 + ], + [ + 75.17786227300007, + 35.25540793500005 + ], + [ + 75.17728952200008, + 35.25397580400005 + ], + [ + 75.17499828100006, + 35.25225753800004 + ], + [ + 75.17499828100006, + 35.24996642700006 + ], + [ + 75.17410289700007, + 35.245817799000065 + ], + [ + 75.16862592900003, + 35.246784296000044 + ], + [ + 75.16147014400008, + 35.24804704700006 + ], + [ + 75.13340814500003, + 35.25740093300004 + ], + [ + 75.11049090400007, + 35.270028930000024 + ], + [ + 75.08336414600006, + 35.27985043000007 + ], + [ + 75.07026852200005, + 35.28172141700003 + ], + [ + 75.04711752100008, + 35.28195530600004 + ], + [ + 75.01905552200003, + 35.28429378900006 + ], + [ + 74.99660589500007, + 35.291309298000044 + ], + [ + 74.96994702200004, + 35.29318016700006 + ], + [ + 74.95908701100007, + 35.29350754400008 + ], + [ + 74.93693677700008, + 35.298895291000065 + ], + [ + 74.92457276700003, + 35.30114968100003 + ], + [ + 74.91996890200005, + 35.302070419000074 + ], + [ + 74.91290963900008, + 35.30299116900005 + ], + [ + 74.90738515300006, + 35.30452579400003 + ], + [ + 74.90262776900005, + 35.30598366600003 + ], + [ + 74.90032589000003, + 35.309666793000076 + ], + [ + 74.89779389000006, + 35.314500802000055 + ], + [ + 74.89595226200004, + 35.31703293000004 + ], + [ + 74.89411076300007, + 35.32048579700006 + ], + [ + 74.88996727800003, + 35.32393854600008 + ], + [ + 74.88605403100007, + 35.32716130400007 + ], + [ + 74.88260114100007, + 35.32900280300004 + ], + [ + 74.87822751400006, + 35.33038392200007 + ], + [ + 74.87431426700005, + 35.33084443100006 + ], + [ + 74.87086151700004, + 35.33084443100006 + ], + [ + 74.86648789000003, + 35.330614171000036 + ], + [ + 74.86119326600004, + 35.32969342100006 + ], + [ + 74.85589903000005, + 35.330614171000036 + ], + [ + 74.85175565100008, + 35.33383678800004 + ], + [ + 74.85037452100005, + 35.33636892900006 + ], + [ + 74.85037452100005, + 35.34028217600007 + ], + [ + 74.85014426000004, + 35.342584044000034 + ], + [ + 74.84991426900007, + 35.34718792000007 + ], + [ + 74.84968390300008, + 35.35225217800007 + ], + [ + 74.84600089300005, + 35.35041055000005 + ], + [ + 74.84231776600006, + 35.34972004900004 + ], + [ + 74.84001588600006, + 35.34972004900004 + ], + [ + 74.83702340000008, + 35.34972004900004 + ], + [ + 74.83287977500004, + 35.349029431000076 + ], + [ + 74.82781577600008, + 35.34672755100007 + ], + [ + 74.82528364700005, + 35.34488605200005 + ], + [ + 74.82229115000007, + 35.343504805000066 + ], + [ + 74.81883827100006, + 35.34281430400006 + ], + [ + 74.81722702100006, + 35.34120292500006 + ], + [ + 74.81548526900008, + 35.33924367700007 + ], + [ + 74.81354389400008, + 35.337059547000024 + ], + [ + 74.81032126500008, + 35.334067049000055 + ], + [ + 74.80801928000005, + 35.331534920000024 + ], + [ + 74.80709851800003, + 35.32877268300007 + ], + [ + 74.80640801800007, + 35.32601029400007 + ], + [ + 74.80479663900007, + 35.323708414000066 + ], + [ + 74.80203440200006, + 35.321636666000074 + ], + [ + 74.79604940700005, + 35.31795366800003 + ], + [ + 74.78822290100004, + 35.313810172000046 + ], + [ + 74.78338889200006, + 35.31173854100007 + ], + [ + 74.77832464700003, + 35.31104792300005 + ], + [ + 74.77533213700008, + 35.31058755500004 + ], + [ + 74.77280013800004, + 35.308976175000055 + ], + [ + 74.76658490500006, + 35.30851579500006 + ], + [ + 74.76106026700006, + 35.30851579500006 + ], + [ + 74.75530552100008, + 35.309666793000076 + ], + [ + 74.75024140500005, + 35.31058755500004 + ], + [ + 74.74563751600004, + 35.31104792300005 + ], + [ + 74.74149414900006, + 35.31127805500006 + ], + [ + 74.73619977200008, + 35.31081780400007 + ], + [ + 74.73297701400008, + 35.30943655600004 + ], + [ + 74.72768264800004, + 35.307825294000054 + ], + [ + 74.72352002200006, + 35.306508423000025 + ], + [ + 74.72041214800004, + 35.30823516700008 + ], + [ + 74.71661328000005, + 35.31134317100003 + ], + [ + 74.71143326900005, + 35.31203380100004 + ], + [ + 74.70728926800007, + 35.31272454800006 + ], + [ + 74.70349064700008, + 35.314796554000054 + ], + [ + 74.69900127800008, + 35.31721379900006 + ], + [ + 74.69347590000007, + 35.320667171000025 + ], + [ + 74.68829589000006, + 35.322393927000064 + ], + [ + 74.68311589100006, + 35.322393927000064 + ], + [ + 74.67788477500005, + 35.32150129100006 + ], + [ + 74.67861064600004, + 35.32380017600008 + ], + [ + 74.67906888900006, + 35.327236801000026 + ], + [ + 74.68021439200004, + 35.33021554800007 + ], + [ + 74.68204740100003, + 35.33319417600006 + ], + [ + 74.68319302100008, + 35.335256178000066 + ], + [ + 74.68548414400004, + 35.33640181000004 + ], + [ + 74.68960839300007, + 35.33823479500006 + ], + [ + 74.69189951600003, + 35.33915116400004 + ], + [ + 74.69533638800004, + 35.340296925000075 + ], + [ + 74.69808576600008, + 35.34098404400004 + ], + [ + 74.70037703000008, + 35.34098404400004 + ], + [ + 74.70152860600007, + 35.34127199200003 + ], + [ + 74.70404289400005, + 35.34190068300006 + ], + [ + 74.70528228200004, + 35.34246402100007 + ], + [ + 74.70908351300005, + 35.34419179400004 + ], + [ + 74.71137477700006, + 35.34579579900003 + ], + [ + 74.71217182400005, + 35.34689176200004 + ], + [ + 74.71320764400008, + 35.34831604300007 + ], + [ + 74.71504064100003, + 35.350378044000024 + ], + [ + 74.71595714000006, + 35.353127552000046 + ], + [ + 74.71595714000006, + 35.35610603900005 + ], + [ + 74.71618640200006, + 35.360001167000064 + ], + [ + 74.71644639700008, + 35.36156179200003 + ], + [ + 74.71664451700008, + 35.36275054500004 + ], + [ + 74.71756089800004, + 35.365270801000065 + ], + [ + 74.71962302800006, + 35.368020297000044 + ], + [ + 74.72214340200003, + 35.36985317600005 + ], + [ + 74.72258709400006, + 35.370297625000035 + ], + [ + 74.72397626900005, + 35.37168617300006 + ], + [ + 74.72482686000006, + 35.37338734600007 + ], + [ + 74.72512190100008, + 35.37397742500008 + ], + [ + 74.72580926600006, + 35.37649767000005 + ], + [ + 74.72649652600006, + 35.37878892200007 + ], + [ + 74.72832940500007, + 35.38039279700007 + ], + [ + 74.73016252000008, + 35.382454927000026 + ], + [ + 74.73153726200007, + 35.384287795000034 + ], + [ + 74.73107914700006, + 35.38589142400008 + ], + [ + 74.72993339800007, + 35.388182793000055 + ], + [ + 74.72810038900008, + 35.390015790000064 + ], + [ + 74.72741314200005, + 35.39253604700008 + ], + [ + 74.72718402000004, + 35.39345254500006 + ], + [ + 74.72649652600006, + 35.395285554000054 + ], + [ + 74.72535102300003, + 35.39734767200002 + ], + [ + 74.72420540300004, + 35.399638666000044 + ], + [ + 74.72351815500008, + 35.40192993000005 + ], + [ + 74.72328889300007, + 35.404450292000035 + ], + [ + 74.72328889300007, + 35.40788704700003 + ], + [ + 74.72260151600005, + 35.40994916500006 + ], + [ + 74.72053951500004, + 35.411782291000065 + ], + [ + 74.71893565100004, + 35.41292767700003 + ], + [ + 74.71779001900006, + 35.41521891700006 + ], + [ + 74.71664451700008, + 35.417280918000074 + ], + [ + 74.71618640200006, + 35.42071779100007 + ], + [ + 74.71664451700008, + 35.42255079900008 + ], + [ + 74.71650095500007, + 35.42456062000008 + ], + [ + 74.71641539500007, + 35.425758432000066 + ], + [ + 74.71562655600007, + 35.42699806500008 + ], + [ + 74.71481164900007, + 35.42827866500005 + ], + [ + 74.71253450400008, + 35.43195696600003 + ], + [ + 74.71183289100003, + 35.43309029100004 + ], + [ + 74.71091665100005, + 35.435839669000075 + ], + [ + 74.71183289100003, + 35.43744355600006 + ], + [ + 74.71366589900003, + 35.43927641200003 + ], + [ + 74.71572801800005, + 35.44088029900007 + ], + [ + 74.71824827400008, + 35.44271342500008 + ], + [ + 74.71766782900005, + 35.44503498900008 + ], + [ + 74.71756089800004, + 35.445462674000055 + ], + [ + 74.71733163500005, + 35.44752480400007 + ], + [ + 74.71572801800005, + 35.45256542300007 + ], + [ + 74.71297852300006, + 35.458522551000044 + ], + [ + 74.71137464700007, + 35.46241753800007 + ], + [ + 74.70977089000007, + 35.46585430400006 + ], + [ + 74.70816702600007, + 35.46952016900008 + ], + [ + 74.70587577400005, + 35.47410267300006 + ], + [ + 74.70450102000007, + 35.47822667500003 + ], + [ + 74.70289726300007, + 35.48120555100007 + ], + [ + 74.70037703000008, + 35.48464217700007 + ], + [ + 74.69716939700004, + 35.48739154300006 + ], + [ + 74.69327451600003, + 35.490599176000046 + ], + [ + 74.68892089900004, + 35.493119550000074 + ], + [ + 74.68433864100007, + 35.494723554000075 + ], + [ + 74.68090176900006, + 35.49655643400007 + ], + [ + 74.67792328100006, + 35.498618306000026 + ], + [ + 74.67654839800008, + 35.50113879700007 + ], + [ + 74.67677764900003, + 35.503659053000035 + ], + [ + 74.67792328100006, + 35.50640854900007 + ], + [ + 74.67847981900007, + 35.50807787700006 + ], + [ + 74.67883989700005, + 35.50915792700005 + ], + [ + 74.67883989700005, + 35.51167817100003 + ], + [ + 74.67700677100004, + 35.51488580400007 + ], + [ + 74.67507273700005, + 35.51961969100006 + ], + [ + 74.67288263900008, + 35.52290516900007 + ], + [ + 74.67265364700006, + 35.525654547000045 + ], + [ + 74.67150789700008, + 35.52817492100007 + ], + [ + 74.66990402200008, + 35.531382671000074 + ], + [ + 74.66830026400004, + 35.533444555000074 + ], + [ + 74.66830026400004, + 35.536652305000075 + ], + [ + 74.66852926800004, + 35.53825629800008 + ], + [ + 74.66863609900008, + 35.53953745200005 + ], + [ + 74.66875851900005, + 35.541005547000054 + ], + [ + 74.66921664500006, + 35.54352593200008 + ], + [ + 74.66852926800004, + 35.54742091900005 + ], + [ + 74.66784190300007, + 35.55177430100008 + ], + [ + 74.66669638900004, + 35.55314905500006 + ], + [ + 74.66532164700004, + 35.555210927000076 + ], + [ + 74.66449974000005, + 35.556150323000054 + ], + [ + 74.66371790100004, + 35.55704392400003 + ], + [ + 74.66119751500008, + 35.56002255300007 + ], + [ + 74.65867714200004, + 35.563001041000064 + ], + [ + 74.65786539300007, + 35.56641053900006 + ], + [ + 74.65753165100006, + 35.56781254900005 + ], + [ + 74.65707339600004, + 35.56987466800007 + ], + [ + 74.65661514000004, + 35.57239492400004 + ], + [ + 74.65615702600007, + 35.57468616400007 + ], + [ + 74.65455302200007, + 35.57606091800005 + ], + [ + 74.65317826800003, + 35.574915427000064 + ], + [ + 74.65134540000008, + 35.573082301000056 + ], + [ + 74.65019965100004, + 35.571478555000056 + ], + [ + 74.64813765000008, + 35.56964542900005 + ], + [ + 74.64538840100005, + 35.56918729100005 + ], + [ + 74.64378438500006, + 35.570332923000024 + ], + [ + 74.64218063900006, + 35.57285330800005 + ], + [ + 74.64057677500006, + 35.574915427000064 + ], + [ + 74.64011852000004, + 35.577435671000046 + ], + [ + 74.63943114300008, + 35.57949779000006 + ], + [ + 74.63874376700005, + 35.58270529400005 + ], + [ + 74.63828551100005, + 35.585225680000065 + ], + [ + 74.63691088700006, + 35.58614216600006 + ], + [ + 74.63370314800005, + 35.586371288000066 + ], + [ + 74.63049564400006, + 35.58705866500003 + ], + [ + 74.62797514100004, + 35.58820416700007 + ], + [ + 74.62660038800004, + 35.58980805500005 + ], + [ + 74.62637126600004, + 35.592099295000025 + ], + [ + 74.62682952100005, + 35.594390418000046 + ], + [ + 74.62728376100006, + 35.595298908000075 + ], + [ + 74.62797514100004, + 35.59668168200005 + ], + [ + 74.62957902800008, + 35.59897292200003 + ], + [ + 74.63072451900007, + 35.60034754600008 + ], + [ + 74.63196415700008, + 35.60229564600007 + ], + [ + 74.63232839500006, + 35.60286804900005 + ], + [ + 74.63278663800008, + 35.604929921000064 + ], + [ + 74.63278663800008, + 35.60790855000005 + ], + [ + 74.63255739900006, + 35.61065779900008 + ], + [ + 74.63049564400006, + 35.61363655700006 + ], + [ + 74.62797514100004, + 35.615240303000064 + ], + [ + 74.62591314000008, + 35.61707342900007 + ], + [ + 74.62362201700006, + 35.618906297000024 + ], + [ + 74.61975751600005, + 35.622357425000075 + ], + [ + 74.61651913900005, + 35.62371779400007 + ], + [ + 74.61598618800008, + 35.62415395100004 + ], + [ + 74.61598577500007, + 35.624154289000046 + ], + [ + 74.61398052900006, + 35.625871507000056 + ], + [ + 74.61376976100007, + 35.62692542700006 + ], + [ + 74.61399889500007, + 35.628529290000074 + ], + [ + 74.61417372300008, + 35.62914125000003 + ], + [ + 74.61445713800003, + 35.63013330600006 + ], + [ + 74.61468627200003, + 35.63196591600007 + ], + [ + 74.61537364800006, + 35.63379904200008 + ], + [ + 74.61537364800006, + 35.63677768300005 + ], + [ + 74.61537364800006, + 35.63906880500008 + ], + [ + 74.61560264100007, + 35.64135979900004 + ], + [ + 74.61560264100007, + 35.64319292500005 + ], + [ + 74.61560264100007, + 35.64617154200005 + ], + [ + 74.61422801700007, + 35.64777518300008 + ], + [ + 74.61285327500008, + 35.649150054000074 + ], + [ + 74.61285327500008, + 35.65098303900004 + ], + [ + 74.61331140100003, + 35.653503295000064 + ], + [ + 74.61376976100007, + 35.65602368100008 + ], + [ + 74.61583176300007, + 35.65877304700007 + ], + [ + 74.61835214800004, + 35.661293303000036 + ], + [ + 74.62155989900003, + 35.66335543400004 + ], + [ + 74.62476752000003, + 35.66450104200004 + ], + [ + 74.62843339700004, + 35.66610505800003 + ], + [ + 74.63141201400003, + 35.667479800000024 + ], + [ + 74.63393227000006, + 35.66885430700006 + ], + [ + 74.63622352200008, + 35.67114554800003 + ], + [ + 74.63782739700008, + 35.672978674000035 + ], + [ + 74.63897288800007, + 35.67572792200008 + ], + [ + 74.63897288800007, + 35.678477430000044 + ], + [ + 74.63943114300008, + 35.681684922000045 + ], + [ + 74.63943114300008, + 35.684434417000034 + ], + [ + 74.63943114300008, + 35.687413046000074 + ], + [ + 74.63943114300008, + 35.68947504700003 + ], + [ + 74.64011852000004, + 35.69222455500005 + ], + [ + 74.64172240700003, + 35.69382841800007 + ], + [ + 74.64332627100003, + 35.69520317200005 + ], + [ + 74.64538840100005, + 35.69680692900005 + ], + [ + 74.64745027300006, + 35.700243673000045 + ], + [ + 74.64813765000008, + 35.70322230100004 + ], + [ + 74.64813765000008, + 35.706200789000036 + ], + [ + 74.64767952400007, + 35.70895041400007 + ], + [ + 74.64579308100008, + 35.71035686300007 + ], + [ + 74.64355526300005, + 35.71169966300005 + ], + [ + 74.64218063900006, + 35.71215767100006 + ], + [ + 74.63966026500003, + 35.71261617300007 + ], + [ + 74.63759814600007, + 35.71261617300007 + ], + [ + 74.63576527900005, + 35.71284516500003 + ], + [ + 74.63324489300004, + 35.713303550000035 + ], + [ + 74.63118302100008, + 35.71422004800007 + ], + [ + 74.62934989500008, + 35.71582405300006 + ], + [ + 74.62797514100004, + 35.717885925000076 + ], + [ + 74.62660038800004, + 35.72063543200005 + ], + [ + 74.62475839600006, + 35.72386142000005 + ], + [ + 74.62385102200005, + 35.72617678700004 + ], + [ + 74.62385102200005, + 35.72888367200005 + ], + [ + 74.62408015500006, + 35.73300780300008 + ], + [ + 74.62408015500006, + 35.735757299000056 + ], + [ + 74.62408015500006, + 35.74056879500006 + ], + [ + 74.62430939400008, + 35.74263079600007 + ], + [ + 74.62591314000008, + 35.744005550000054 + ], + [ + 74.62889165200005, + 35.74492216600004 + ], + [ + 74.63141201400003, + 35.74560954300006 + ], + [ + 74.63416139200007, + 35.746525924000025 + ], + [ + 74.63736902500005, + 35.747900548000075 + ], + [ + 74.64126402300008, + 35.75087917700006 + ], + [ + 74.64378438500006, + 35.753170288000035 + ], + [ + 74.64584652700006, + 35.75614892900006 + ], + [ + 74.64790839900007, + 35.75912754600006 + ], + [ + 74.64997064700003, + 35.76393904200006 + ], + [ + 74.65088727500006, + 35.76691755400003 + ], + [ + 74.65203277700004, + 35.769666932000064 + ], + [ + 74.65203277700004, + 35.77172905100008 + ], + [ + 74.65088727500006, + 35.77402030300004 + ], + [ + 74.64722128100004, + 35.77631141400008 + ], + [ + 74.64447176200008, + 35.77745704600005 + ], + [ + 74.64126402300008, + 35.777915301000064 + ], + [ + 74.64005318000005, + 35.77798257300003 + ], + [ + 74.63714002000006, + 35.778144422000025 + ], + [ + 74.63255739900006, + 35.779061038000066 + ], + [ + 74.62957902800008, + 35.779519176000065 + ], + [ + 74.62660038800004, + 35.78089380000006 + ], + [ + 74.62453839800008, + 35.78341417400003 + ], + [ + 74.62293465200008, + 35.78570542600005 + ], + [ + 74.62262614700006, + 35.788230673000044 + ], + [ + 74.62278618400006, + 35.78904779700008 + ], + [ + 74.62316364500003, + 35.79097504900005 + ], + [ + 74.62476752000003, + 35.79326641800003 + ], + [ + 74.62614227400007, + 35.794870176000074 + ], + [ + 74.62843339700004, + 35.797390421000046 + ], + [ + 74.62957902800008, + 35.79945266900006 + ], + [ + 74.63026640500004, + 35.80128554800007 + ], + [ + 74.63118302100008, + 35.80426416500006 + ], + [ + 74.63209926100006, + 35.80609704500006 + ], + [ + 74.63324489300004, + 35.80701341400004 + ], + [ + 74.63576527900005, + 35.80861730100003 + ], + [ + 74.63920202200006, + 35.809533800000054 + ], + [ + 74.64218063900006, + 35.81136679600007 + ], + [ + 74.64470102400008, + 35.812741421000055 + ], + [ + 74.64722128100004, + 35.81572016700005 + ], + [ + 74.64882502700004, + 35.81869854900003 + ], + [ + 74.64974151300004, + 35.82121904100006 + ], + [ + 74.65065802400005, + 35.824197423000044 + ], + [ + 74.65180364400004, + 35.82694693000008 + ], + [ + 74.65546952000005, + 35.82900893100003 + ], + [ + 74.65867714200004, + 35.830154540000024 + ], + [ + 74.66211401400005, + 35.830612795000036 + ], + [ + 74.66646739600003, + 35.830612795000036 + ], + [ + 74.67082052000006, + 35.830612795000036 + ], + [ + 74.67373590000005, + 35.83046705000004 + ], + [ + 74.67540289500005, + 35.83038367300003 + ], + [ + 74.67723590400004, + 35.830612795000036 + ], + [ + 74.67929802300006, + 35.830841916000054 + ], + [ + 74.68204740100003, + 35.83175842700007 + ], + [ + 74.68456776300008, + 35.833820428000024 + ], + [ + 74.68685902700008, + 35.833820428000024 + ], + [ + 74.68892102800004, + 35.833820428000024 + ], + [ + 74.69189951600003, + 35.83404955000003 + ], + [ + 74.69510739500004, + 35.834507805000044 + ], + [ + 74.70014789600003, + 35.835424174000025 + ], + [ + 74.70266814100006, + 35.83634080200005 + ], + [ + 74.70518852600003, + 35.837028178000025 + ], + [ + 74.70793802200006, + 35.83817379900006 + ], + [ + 74.70909614800007, + 35.83906480300004 + ], + [ + 74.71091665100005, + 35.84046493300008 + ], + [ + 74.71320764400008, + 35.84229804800003 + ], + [ + 74.71664451700008, + 35.845047296000075 + ], + [ + 74.71939390600005, + 35.846651172000065 + ], + [ + 74.72305977100007, + 35.84894242400003 + ], + [ + 74.72603838800006, + 35.851004542000055 + ], + [ + 74.72855864400003, + 35.85192092300008 + ], + [ + 74.73199551700003, + 35.852608288000056 + ], + [ + 74.73405751800004, + 35.852608288000056 + ], + [ + 74.73680702500008, + 35.852608288000056 + ], + [ + 74.73890601700003, + 35.850865174000035 + ], + [ + 74.74024376800008, + 35.84917141600005 + ], + [ + 74.74024376800008, + 35.84619292800005 + ], + [ + 74.73886901500003, + 35.84252705200004 + ], + [ + 74.73795277400006, + 35.84046493300008 + ], + [ + 74.73795277400006, + 35.837028178000025 + ], + [ + 74.73818176700007, + 35.83336217300007 + ] + ] + ] + ] + } + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "2506", + "firebase_id": "01K7EDWZ4SR1RECVMWWF0KAH4K", + "name": "Find Features - Homes in Villages - Dolakha (1) Togglecorp", + "description": "You are looking for homes or houses in a rural village of Nepal.", + "look_for": "homes", + "project_type": "1", + "project_type_display": "Find Features", + "organization_name": "Togglecorp", + "image_url": "https://backend.mapswipe.org/media/project/2506/asset/input/01K7EDZBECWSYQA9N4NETHJDN1/bigu-gompa-in-dolkha.jpg", + "created_at": "2025-10-13 09:19:52.474292+00:00", + "status": "70", + "status_display": "Withdrawn", + "area_sqkm": "0.5524327881484031", + "centroid": "POINT(86.07870896783902 27.836908171930773)", + "progress": "0.33", + "number_of_contributor_users": "1", + "number_of_results": "24", + "number_of_results_for_progress": "24", + "last_contribution_date": "2025-10-13" + }, + "geometry": { + "type": "GeometryCollection", + "geometries": [ + { + "type": "Polygon", + "coordinates": [ + [ + [ + 86.07411485292351, + 27.839661978955732 + ], + [ + 86.07411485292351, + 27.834154364905814 + ], + [ + 86.08330308275453, + 27.834154364905814 + ], + [ + 86.08330308275453, + 27.839661978955732 + ], + [ + 86.07411485292351, + 27.839661978955732 + ] + ] + ] + } + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "6", + "firebase_id": "-NI88tnKIzbmAPHZq_VM", + "name": "Find Features - Public Health - Magaria, Niger (2) M\u00e9decins Sans Fronti\u00e8res", + "description": "MSF is planning a large Indoor Residual Spraying campaign against the mosquito that carries malaria. To plan the intervention and do the follow up of the spraying campaign it is needed to identify all the buildings in the campaign area.", + "look_for": "Buildings", + "project_type": "1", + "project_type_display": "Find Features", + "organization_name": "M\u00e9decins Sans Fronti\u00e8res", + "image_url": "https://backend.mapswipe.org/media/project/6/asset/input/01K7E3PCK1MCQXVJH3MJ27W512/MSF196225_Medium.jpg", + "created_at": "2022-11-30 15:30:57.715149+00:00", + "status": "75", + "status_display": "Finished", + "area_sqkm": "3054.874146883078", + "centroid": "POINT(9.102046041003353 13.075926208295003)", + "progress": "0.99", + "number_of_contributor_users": "249", + "number_of_results": "449550", + "number_of_results_for_progress": "421734", + "last_contribution_date": "2022-12-20" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.798073, + 12.892653 + ], + [ + 8.799419, + 12.892344 + ], + [ + 8.801003, + 12.891992 + ], + [ + 8.803143, + 12.891499 + ], + [ + 8.803822, + 12.891333 + ], + [ + 8.804702, + 12.891137 + ], + [ + 8.806037, + 12.890829 + ], + [ + 8.807519, + 12.890497 + ], + [ + 8.808832, + 12.890181 + ], + [ + 8.81021, + 12.889825 + ], + [ + 8.811351, + 12.889546 + ], + [ + 8.813708, + 12.888684 + ], + [ + 8.816054, + 12.887857 + ], + [ + 8.818494, + 12.887052 + ], + [ + 8.820784, + 12.886328 + ], + [ + 8.823, + 12.885649 + ], + [ + 8.823999, + 12.885214 + ], + [ + 8.825677, + 12.884612 + ], + [ + 8.827741, + 12.883891 + ], + [ + 8.830173, + 12.883111 + ], + [ + 8.834765, + 12.881467 + ], + [ + 8.836355, + 12.880931 + ], + [ + 8.836643, + 12.880805 + ], + [ + 8.837504, + 12.880532 + ], + [ + 8.841661, + 12.879244 + ], + [ + 8.842392, + 12.879037 + ], + [ + 8.843051, + 12.878805 + ], + [ + 8.844345, + 12.878476 + ], + [ + 8.847172, + 12.877748 + ], + [ + 8.848386, + 12.877451 + ], + [ + 8.8494, + 12.87721 + ], + [ + 8.850553, + 12.876916 + ], + [ + 8.852073, + 12.876546 + ], + [ + 8.853895, + 12.876182 + ], + [ + 8.855132, + 12.87576 + ], + [ + 8.859893, + 12.874639 + ], + [ + 8.864069, + 12.873827 + ], + [ + 8.865906, + 12.873505 + ], + [ + 8.868441, + 12.872966 + ], + [ + 8.868983, + 12.872847 + ], + [ + 8.869451, + 12.872389 + ], + [ + 8.872279, + 12.870123 + ], + [ + 8.873261, + 12.869374 + ], + [ + 8.87464, + 12.86882 + ], + [ + 8.877333, + 12.867778 + ], + [ + 8.879031, + 12.867043 + ], + [ + 8.880228, + 12.86663 + ], + [ + 8.881667, + 12.866199 + ], + [ + 8.882806, + 12.865792 + ], + [ + 8.883659, + 12.865547 + ], + [ + 8.884392, + 12.865334 + ], + [ + 8.885434, + 12.864963 + ], + [ + 8.886015, + 12.864713 + ], + [ + 8.886636, + 12.864483 + ], + [ + 8.887762, + 12.864106 + ], + [ + 8.88846, + 12.863849 + ], + [ + 8.889452, + 12.863506 + ], + [ + 8.890318, + 12.863201 + ], + [ + 8.892195, + 12.862515 + ], + [ + 8.892801, + 12.862277 + ], + [ + 8.893634, + 12.861974 + ], + [ + 8.894611, + 12.861645 + ], + [ + 8.895102, + 12.861447 + ], + [ + 8.89572, + 12.861212 + ], + [ + 8.896623, + 12.860925 + ], + [ + 8.897898, + 12.860442 + ], + [ + 8.898968, + 12.860039 + ], + [ + 8.899888, + 12.859693 + ], + [ + 8.900851, + 12.859328 + ], + [ + 8.902975, + 12.858549 + ], + [ + 8.905298, + 12.857691 + ], + [ + 8.908143, + 12.856637 + ], + [ + 8.9103, + 12.855828 + ], + [ + 8.913251, + 12.854721 + ], + [ + 8.914965, + 12.854064 + ], + [ + 8.916671, + 12.853487 + ], + [ + 8.918901, + 12.852652 + ], + [ + 8.920435, + 12.852093 + ], + [ + 8.920876, + 12.851894 + ], + [ + 8.922561, + 12.851277 + ], + [ + 8.923877, + 12.850765 + ], + [ + 8.925057, + 12.850356 + ], + [ + 8.926903, + 12.849976 + ], + [ + 8.927718, + 12.849928 + ], + [ + 8.930668, + 12.849642 + ], + [ + 8.932947, + 12.848866 + ], + [ + 8.93442, + 12.84834 + ], + [ + 8.936493, + 12.847633 + ], + [ + 8.937089, + 12.847386 + ], + [ + 8.937933, + 12.847118 + ], + [ + 8.938869, + 12.84676 + ], + [ + 8.940202, + 12.846336 + ], + [ + 8.942057, + 12.845704 + ], + [ + 8.943193, + 12.845319 + ], + [ + 8.94472, + 12.844777 + ], + [ + 8.945908, + 12.844379 + ], + [ + 8.94734, + 12.843854 + ], + [ + 8.948949, + 12.843309 + ], + [ + 8.950473, + 12.842782 + ], + [ + 8.951697, + 12.842351 + ], + [ + 8.953175, + 12.841855 + ], + [ + 8.955217, + 12.84115 + ], + [ + 8.9562, + 12.840809 + ], + [ + 8.956692, + 12.840655 + ], + [ + 8.958559, + 12.840015 + ], + [ + 8.960251, + 12.839428 + ], + [ + 8.96161, + 12.838969 + ], + [ + 8.9623529, + 12.8387275 + ], + [ + 8.963999, + 12.838188 + ], + [ + 8.964855, + 12.837886 + ], + [ + 8.965759, + 12.837596 + ], + [ + 8.966053, + 12.837483 + ], + [ + 8.966646, + 12.837283 + ], + [ + 8.968389, + 12.836727 + ], + [ + 8.968917, + 12.836537 + ], + [ + 8.969605, + 12.836333 + ], + [ + 8.970377, + 12.836055 + ], + [ + 8.97099, + 12.835858 + ], + [ + 8.972265, + 12.835432 + ], + [ + 8.972987, + 12.835185 + ], + [ + 8.974124, + 12.834857 + ], + [ + 8.975047, + 12.834568 + ], + [ + 8.975682, + 12.834298 + ], + [ + 8.977927, + 12.833601 + ], + [ + 8.98088, + 12.835543 + ], + [ + 8.983007, + 12.835713 + ], + [ + 8.985111, + 12.835882 + ], + [ + 8.988688, + 12.836101 + ], + [ + 8.990203, + 12.836178 + ], + [ + 8.992209, + 12.836319 + ], + [ + 8.99522, + 12.836565 + ], + [ + 8.998674, + 12.837449 + ], + [ + 8.999254, + 12.8376 + ], + [ + 9.00018, + 12.837916 + ], + [ + 9.001692, + 12.838235 + ], + [ + 9.00214, + 12.838356 + ], + [ + 9.002755, + 12.838505 + ], + [ + 9.004622, + 12.838951 + ], + [ + 9.006549, + 12.839462 + ], + [ + 9.009082, + 12.840054 + ], + [ + 9.010021, + 12.840282 + ], + [ + 9.011492, + 12.840006 + ], + [ + 9.013992, + 12.839503 + ], + [ + 9.01675, + 12.83887 + ], + [ + 9.020035, + 12.838111 + ], + [ + 9.024287, + 12.837202 + ], + [ + 9.029183, + 12.836581 + ], + [ + 9.033463, + 12.836178 + ], + [ + 9.036822, + 12.835729 + ], + [ + 9.043262, + 12.834992 + ], + [ + 9.044144, + 12.834873 + ], + [ + 9.047609, + 12.834464 + ], + [ + 9.051558, + 12.833893 + ], + [ + 9.057669, + 12.834335 + ], + [ + 9.063145, + 12.834672 + ], + [ + 9.068087, + 12.834459 + ], + [ + 9.074111, + 12.83427 + ], + [ + 9.078279, + 12.834133 + ], + [ + 9.079073, + 12.834104 + ], + [ + 9.080882, + 12.834175 + ], + [ + 9.082561, + 12.834169 + ], + [ + 9.083774, + 12.834224 + ], + [ + 9.084944, + 12.83446 + ], + [ + 9.086026, + 12.834661 + ], + [ + 9.088852, + 12.835119 + ], + [ + 9.091848, + 12.834923 + ], + [ + 9.094895, + 12.834756 + ], + [ + 9.095786, + 12.834771 + ], + [ + 9.096651, + 12.834731 + ], + [ + 9.097807, + 12.83464 + ], + [ + 9.098547, + 12.834583 + ], + [ + 9.099944, + 12.834497 + ], + [ + 9.101813, + 12.834392 + ], + [ + 9.102869, + 12.834313 + ], + [ + 9.103697, + 12.834241 + ], + [ + 9.10543, + 12.834188 + ], + [ + 9.107302, + 12.834079 + ], + [ + 9.109308, + 12.833858 + ], + [ + 9.110713, + 12.833858 + ], + [ + 9.112169, + 12.833572 + ], + [ + 9.113285, + 12.833532 + ], + [ + 9.114621, + 12.833455 + ], + [ + 9.11532, + 12.833381 + ], + [ + 9.116142, + 12.833317 + ], + [ + 9.116578, + 12.833287 + ], + [ + 9.1225683, + 12.8331793 + ], + [ + 9.12909, + 12.833062 + ], + [ + 9.13042, + 12.833003 + ], + [ + 9.132104, + 12.833085 + ], + [ + 9.141649, + 12.833271 + ], + [ + 9.14297, + 12.833278 + ], + [ + 9.14481, + 12.833289 + ], + [ + 9.145367, + 12.833244 + ], + [ + 9.147542, + 12.833435 + ], + [ + 9.149651, + 12.833464 + ], + [ + 9.150863, + 12.833469 + ], + [ + 9.151498, + 12.833501 + ], + [ + 9.15273, + 12.833634 + ], + [ + 9.155075, + 12.833693 + ], + [ + 9.157308, + 12.833775 + ], + [ + 9.158379, + 12.833835 + ], + [ + 9.159589, + 12.833905 + ], + [ + 9.162093, + 12.834009 + ], + [ + 9.163312, + 12.834012 + ], + [ + 9.165354, + 12.834214 + ], + [ + 9.167215, + 12.834271 + ], + [ + 9.167877, + 12.834309 + ], + [ + 9.170914, + 12.834302 + ], + [ + 9.173285, + 12.834345 + ], + [ + 9.177044, + 12.834332 + ], + [ + 9.177826, + 12.834281 + ], + [ + 9.181895, + 12.834266 + ], + [ + 9.183725, + 12.831516 + ], + [ + 9.184332, + 12.830529 + ], + [ + 9.1850569, + 12.830333 + ], + [ + 9.190035, + 12.828987 + ], + [ + 9.190715, + 12.828766 + ], + [ + 9.192403, + 12.828333 + ], + [ + 9.194876, + 12.827683 + ], + [ + 9.196013, + 12.827362 + ], + [ + 9.198234, + 12.826747 + ], + [ + 9.199536, + 12.826512 + ], + [ + 9.201647, + 12.826465 + ], + [ + 9.204075, + 12.826387 + ], + [ + 9.206097, + 12.826317 + ], + [ + 9.208339, + 12.826211 + ], + [ + 9.210067, + 12.826114 + ], + [ + 9.211429, + 12.826085 + ], + [ + 9.213144, + 12.826091 + ], + [ + 9.21476, + 12.825968 + ], + [ + 9.217068, + 12.82584 + ], + [ + 9.219451, + 12.825815 + ], + [ + 9.221767, + 12.82573 + ], + [ + 9.223888, + 12.825672 + ], + [ + 9.224741, + 12.825627 + ], + [ + 9.226253, + 12.825607 + ], + [ + 9.227093, + 12.825568 + ], + [ + 9.227352, + 12.825519 + ], + [ + 9.229249, + 12.825525 + ], + [ + 9.229689, + 12.825495 + ], + [ + 9.2319, + 12.825411 + ], + [ + 9.233706, + 12.825369 + ], + [ + 9.235645, + 12.825302 + ], + [ + 9.23652, + 12.825223 + ], + [ + 9.237908, + 12.825112 + ], + [ + 9.238437, + 12.825066 + ], + [ + 9.241643, + 12.825052 + ], + [ + 9.243332, + 12.824931 + ], + [ + 9.244631, + 12.824847 + ], + [ + 9.246312, + 12.824853 + ], + [ + 9.246525, + 12.824795 + ], + [ + 9.247719, + 12.824682 + ], + [ + 9.248341, + 12.82466 + ], + [ + 9.248729, + 12.824658 + ], + [ + 9.249334, + 12.824641 + ], + [ + 9.252417, + 12.824541 + ], + [ + 9.252703, + 12.824261 + ], + [ + 9.25389, + 12.824289 + ], + [ + 9.254084, + 12.824227 + ], + [ + 9.254317, + 12.824193 + ], + [ + 9.25463, + 12.824097 + ], + [ + 9.254986, + 12.824048 + ], + [ + 9.255196, + 12.82403 + ], + [ + 9.255339, + 12.823993 + ], + [ + 9.256019, + 12.824027 + ], + [ + 9.256401, + 12.823996 + ], + [ + 9.25659, + 12.824001 + ], + [ + 9.257133, + 12.82405 + ], + [ + 9.257243, + 12.824039 + ], + [ + 9.25777, + 12.824018 + ], + [ + 9.258105, + 12.824003 + ], + [ + 9.258621, + 12.824011 + ], + [ + 9.258994, + 12.823935 + ], + [ + 9.259195, + 12.823917 + ], + [ + 9.259394, + 12.823909 + ], + [ + 9.259544, + 12.823896 + ], + [ + 9.25976, + 12.823869 + ], + [ + 9.259948, + 12.823861 + ], + [ + 9.260111, + 12.823843 + ], + [ + 9.260634, + 12.823824 + ], + [ + 9.261032, + 12.823786 + ], + [ + 9.261635, + 12.82376 + ], + [ + 9.262131, + 12.823731 + ], + [ + 9.262544, + 12.823728 + ], + [ + 9.263125, + 12.823697 + ], + [ + 9.263647, + 12.823633 + ], + [ + 9.264027, + 12.823591 + ], + [ + 9.264374, + 12.823594 + ], + [ + 9.265703, + 12.823481 + ], + [ + 9.266295, + 12.823449 + ], + [ + 9.266992, + 12.823376 + ], + [ + 9.268254, + 12.82331 + ], + [ + 9.270152, + 12.823297 + ], + [ + 9.270153, + 12.823297 + ], + [ + 9.299442, + 12.818925 + ], + [ + 9.331097, + 12.811057 + ], + [ + 9.332414, + 12.8113412 + ], + [ + 9.380234, + 12.8216585 + ], + [ + 9.386299, + 12.822967 + ], + [ + 9.437439, + 12.81871 + ], + [ + 9.43751825165, + 12.81870337227 + ], + [ + 9.43748920036, + 12.81875829946 + ], + [ + 9.43743290036, + 12.81887079946 + ], + [ + 9.43737660036, + 12.81897659946 + ], + [ + 9.43730150036, + 12.81912969946 + ], + [ + 9.43707210036, + 12.81959649946 + ], + [ + 9.43535040036, + 12.82321949946 + ], + [ + 9.43487540036, + 12.82421909946 + ], + [ + 9.43249900036, + 12.82916979946 + ], + [ + 9.43161520036, + 12.83119399946 + ], + [ + 9.43063210036, + 12.83353199946 + ], + [ + 9.42998810036, + 12.83514949946 + ], + [ + 9.42919050036, + 12.83718279946 + ], + [ + 9.42852390036, + 12.83890359946 + ], + [ + 9.42708760036, + 12.84281319946 + ], + [ + 9.42630710036, + 12.84513539946 + ], + [ + 9.42553730036, + 12.84763669946 + ], + [ + 9.42529860036, + 12.84846569946 + ], + [ + 9.42493920036, + 12.84956139946 + ], + [ + 9.42384880036, + 12.85245229946 + ], + [ + 9.42306360036, + 12.85451749946 + ], + [ + 9.42252250036, + 12.85581519946 + ], + [ + 9.42203630036, + 12.85683569946 + ], + [ + 9.42166950036, + 12.85755809946 + ], + [ + 9.42123900036, + 12.85834909946 + ], + [ + 9.41998650036, + 12.86058489946 + ], + [ + 9.41875670036, + 12.86244539946 + ], + [ + 9.41712860036, + 12.86483149946 + ], + [ + 9.41552860036, + 12.86712469946 + ], + [ + 9.41297380036, + 12.87120779946 + ], + [ + 9.41005160036, + 12.87592219946 + ], + [ + 9.40914360036, + 12.87724139946 + ], + [ + 9.40837520036, + 12.87813559946 + ], + [ + 9.40660760036, + 12.88004309946 + ], + [ + 9.40600950036, + 12.88073989946 + ], + [ + 9.40578420036, + 12.88106539946 + ], + [ + 9.40560310036, + 12.88133599946 + ], + [ + 9.40478770036, + 12.88266169946 + ], + [ + 9.40347480036, + 12.88480829946 + ], + [ + 9.40310730036, + 12.88544499946 + ], + [ + 9.40290750036, + 12.88580579946 + ], + [ + 9.40265540036, + 12.88633919946 + ], + [ + 9.40248640036, + 12.88679029946 + ], + [ + 9.40233890036, + 12.88722039946 + ], + [ + 9.40198180036, + 12.88848069946 + ], + [ + 9.40094950036, + 12.89212409946 + ], + [ + 9.40072690036, + 12.89287969946 + ], + [ + 9.40060880036, + 12.89337129946 + ], + [ + 9.40010730036, + 12.89648519946 + ], + [ + 9.39916310036, + 12.90296139946 + ], + [ + 9.39791590036, + 12.90895239946 + ], + [ + 9.39768660036, + 12.91001249946 + ], + [ + 9.39743580036, + 12.91084909946 + ], + [ + 9.39680010036, + 12.91285569946 + ], + [ + 9.39573790036, + 12.91636539946 + ], + [ + 9.39564140036, + 12.91684779946 + ], + [ + 9.39553950036, + 12.91747129946 + ], + [ + 9.39529270036, + 12.91994969946 + ], + [ + 9.39514520036, + 12.92128819946 + ], + [ + 9.39497890036, + 12.92218489946 + ], + [ + 9.39466100036, + 12.92343059946 + ], + [ + 9.39455640036, + 12.92379919946 + ], + [ + 9.39444240036, + 12.92416649946 + ], + [ + 9.39431450036, + 12.92451859946 + ], + [ + 9.39356130036, + 12.92659119946 + ], + [ + 9.39329980036, + 12.92750489946 + ], + [ + 9.39274460036, + 12.93050339946 + ], + [ + 9.39251530036, + 12.93136019946 + ], + [ + 9.39229670036, + 12.93203469946 + ], + [ + 9.38888760036, + 12.94148799946 + ], + [ + 9.38864890036, + 12.94217549946 + ], + [ + 9.38852280036, + 12.94261989946 + ], + [ + 9.38782540036, + 12.94575019946 + ], + [ + 9.38768060036, + 12.94632919946 + ], + [ + 9.38738150036, + 12.94730819946 + ], + [ + 9.38708510036, + 12.94805059946 + ], + [ + 9.38657020036, + 12.94913019946 + ], + [ + 9.38517810036, + 12.95212189946 + ], + [ + 9.38347220036, + 12.95576829946 + ], + [ + 9.38210960036, + 12.95896509946 + ], + [ + 9.38129420036, + 12.96084189946 + ], + [ + 9.38087980036, + 12.96164959946 + ], + [ + 9.38023700036, + 12.96275499946 + ], + [ + 9.37960980036, + 12.96383349946 + ], + [ + 9.37729510036, + 12.96779729946 + ], + [ + 9.37597540036, + 12.96999029946 + ], + [ + 9.37389810036, + 12.97320779946 + ], + [ + 9.37353060036, + 12.97385339946 + ], + [ + 9.37285600036, + 12.97525439946 + ], + [ + 9.36729530036, + 12.98669089946 + ], + [ + 9.36589570036, + 12.98956939946 + ], + [ + 9.36551950036, + 12.99042139946 + ], + [ + 9.36539010036, + 12.99086959946 + ], + [ + 9.36526810036, + 12.99154909946 + ], + [ + 9.36461640036, + 12.99627899946 + ], + [ + 9.36438590036, + 12.99818679946 + ], + [ + 9.36399130036, + 13.00094209946 + ], + [ + 9.36388810036, + 13.00130009946 + ], + [ + 9.36375390036, + 13.00161239946 + ], + [ + 9.36356350036, + 13.00199659946 + ], + [ + 9.36312760036, + 13.00266169946 + ], + [ + 9.36047900036, + 13.00606959946 + ], + [ + 9.35907750036, + 13.00787279946 + ], + [ + 9.35848740036, + 13.00871829946 + ], + [ + 9.35819240036, + 13.00921479946 + ], + [ + 9.35800460036, + 13.00960419946 + ], + [ + 9.35778740036, + 13.01011899946 + ], + [ + 9.35753390036, + 13.01083119946 + ], + [ + 9.35651470036, + 13.01511049946 + ], + [ + 9.35523660036, + 13.02047289946 + ], + [ + 9.35510250036, + 13.02092629946 + ], + [ + 9.35504580036, + 13.02110069946 + ], + [ + 9.35339530036, + 13.02617369946 + ], + [ + 9.35268310036, + 13.02834389946 + ], + [ + 9.35108590036, + 13.03328539946 + ], + [ + 9.35063930036, + 13.03494339946 + ], + [ + 9.35033490036, + 13.03619639946 + ], + [ + 9.34941890036, + 13.03996309946 + ], + [ + 9.34915870036, + 13.04094949946 + ], + [ + 9.34695390036, + 13.04758849946 + ], + [ + 9.34580060036, + 13.05098859946 + ], + [ + 9.34394050036, + 13.05553369946 + ], + [ + 9.34383450036, + 13.05591649946 + ], + [ + 9.34376750036, + 13.05633719946 + ], + [ + 9.34370040036, + 13.05701389946 + ], + [ + 9.34369550036, + 13.05709769946 + ], + [ + 9.34362050036, + 13.05838599946 + ], + [ + 9.34361190036, + 13.05853329946 + ], + [ + 9.34354720036, + 13.05937649946 + ], + [ + 9.34348260036, + 13.06021809946 + ], + [ + 9.34342550036, + 13.06140739946 + ], + [ + 9.34342630036, + 13.06200699946 + ], + [ + 9.34341680036, + 13.06251649946 + ], + [ + 9.34340070036, + 13.06257729946 + ], + [ + 9.34338060036, + 13.06260469946 + ], + [ + 9.34334840036, + 13.06262819946 + ], + [ + 9.34329940036, + 13.06263929946 + ], + [ + 9.34317740036, + 13.06262759946 + ], + [ + 9.34294870036, + 13.06258149946 + ], + [ + 9.34286620036, + 13.06256489946 + ], + [ + 9.34228940036, + 13.06239889946 + ], + [ + 9.34212600036, + 13.06235189946 + ], + [ + 9.34178800036, + 13.06225659946 + ], + [ + 9.34165800036, + 13.06222829946 + ], + [ + 9.34152380036, + 13.06219909946 + ], + [ + 9.34130120036, + 13.06218859946 + ], + [ + 9.34114430036, + 13.06223299946 + ], + [ + 9.34103160036, + 13.06232319946 + ], + [ + 9.34094980036, + 13.06247729946 + ], + [ + 9.34076740036, + 13.06295029946 + ], + [ + 9.34055750036, + 13.06346429946 + ], + [ + 9.34025260036, + 13.06414979946 + ], + [ + 9.34017200036, + 13.06433109946 + ], + [ + 9.33974820036, + 13.06520379946 + ], + [ + 9.33952960036, + 13.06573419946 + ], + [ + 9.33941690036, + 13.06613129946 + ], + [ + 9.33932720036, + 13.06654939946 + ], + [ + 9.33928150036, + 13.06676229946 + ], + [ + 9.33919410036, + 13.06739409946 + ], + [ + 9.33915810036, + 13.06765459946 + ], + [ + 9.33902340036, + 13.06861219946 + ], + [ + 9.33896760036, + 13.06900929946 + ], + [ + 9.33873970036, + 13.07037309946 + ], + [ + 9.33795780036, + 13.07415629946 + ], + [ + 9.33765740036, + 13.07589109946 + ], + [ + 9.33743140036, + 13.07702109946 + ], + [ + 9.33683660036, + 13.07979699946 + ], + [ + 9.33591930036, + 13.08329269946 + ], + [ + 9.33527420036, + 13.08557079946 + ], + [ + 9.33472840036, + 13.08768699946 + ], + [ + 9.33337390036, + 13.09325429946 + ], + [ + 9.33295950036, + 13.09494319946 + ], + [ + 9.33253170036, + 13.09679939946 + ], + [ + 9.33233320036, + 13.09893369946 + ], + [ + 9.33224200036, + 13.10014459946 + ], + [ + 9.33219910036, + 13.10037709946 + ], + [ + 9.33205020036, + 13.10079379946 + ], + [ + 9.33191810036, + 13.10111379946 + ], + [ + 9.33105380036, + 13.10305219946 + ], + [ + 9.33089290036, + 13.10351059946 + ], + [ + 9.33081370036, + 13.10391949946 + ], + [ + 9.33069710036, + 13.10459219946 + ], + [ + 9.33036180036, + 13.10699159946 + ], + [ + 9.33036040036, + 13.10734169946 + ], + [ + 9.33041810036, + 13.10802609946 + ], + [ + 9.33059780036, + 13.10965749946 + ], + [ + 9.33075610036, + 13.11113729946 + ], + [ + 9.33097870036, + 13.11350139946 + ], + [ + 9.33100950036, + 13.11425899946 + ], + [ + 9.33102430036, + 13.11500739946 + ], + [ + 9.33098140036, + 13.11570229946 + ], + [ + 9.33091830036, + 13.11657349946 + ], + [ + 9.33075200036, + 13.11831579946 + ], + [ + 9.33066890036, + 13.11904719946 + ], + [ + 9.33063400036, + 13.11989359946 + ], + [ + 9.33057900036, + 13.12027889946 + ], + [ + 9.33052540036, + 13.12053619946 + ], + [ + 9.33047310036, + 13.12070859946 + ], + [ + 9.33010560036, + 13.12171559946 + ], + [ + 9.32930370036, + 13.12375569946 + ], + [ + 9.32821870036, + 13.12649059946 + ], + [ + 9.32740200036, + 13.12848359946 + ], + [ + 9.32668050036, + 13.13003909946 + ], + [ + 9.32637600036, + 13.13070779946 + ], + [ + 9.32604340036, + 13.13157629946 + ], + [ + 9.32506840036, + 13.13471729946 + ], + [ + 9.32428660036, + 13.13718309946 + ], + [ + 9.32389100036, + 13.13849299946 + ], + [ + 9.32356510036, + 13.13939019946 + ], + [ + 9.32268530036, + 13.14160259946 + ], + [ + 9.32119670036, + 13.14503859946 + ], + [ + 9.32102500036, + 13.14535329946 + ], + [ + 9.32085600036, + 13.14562239946 + ], + [ + 9.31868880036, + 13.14875139946 + ], + [ + 9.31861370036, + 13.14887549946 + ], + [ + 9.31856810036, + 13.14899949946 + ], + [ + 9.31658860036, + 13.15618869946 + ], + [ + 9.31618630036, + 13.15777659946 + ], + [ + 9.31596640036, + 13.15870379946 + ], + [ + 9.31581080036, + 13.15985039946 + ], + [ + 9.31570890036, + 13.16068089946 + ], + [ + 9.31546750036, + 13.16260319946 + ], + [ + 9.31530120036, + 13.16463509946 + ], + [ + 9.31517780036, + 13.16528279946 + ], + [ + 9.31492570036, + 13.16607679946 + ], + [ + 9.31432750036, + 13.16816349946 + ], + [ + 9.31408350036, + 13.16910629946 + ], + [ + 9.31300650036, + 13.17480879946 + ], + [ + 9.31266320036, + 13.17648679946 + ], + [ + 9.31255330036, + 13.17676889946 + ], + [ + 9.31241240036, + 13.17701169946 + ], + [ + 9.31100820036, + 13.17877779946 + ], + [ + 9.31014060036, + 13.17988189946 + ], + [ + 9.30991800036, + 13.18025529946 + ], + [ + 9.30912670036, + 13.18195019946 + ], + [ + 9.30896180036, + 13.18238889946 + ], + [ + 9.30887190036, + 13.18279369946 + ], + [ + 9.30813960036, + 13.18659839946 + ], + [ + 9.30658370036, + 13.19468199946 + ], + [ + 9.30601670036, + 13.19762799946 + ], + [ + 9.30571500036, + 13.19914919946 + ], + [ + 9.30531670036, + 13.20250469946 + ], + [ + 9.30499880036, + 13.20464599946 + ], + [ + 9.30461260036, + 13.20735909946 + ], + [ + 9.30425580036, + 13.20934109946 + ], + [ + 9.30413780036, + 13.21008789946 + ], + [ + 9.30399030036, + 13.21081899946 + ], + [ + 9.30386690036, + 13.21124459946 + ], + [ + 9.30315350036, + 13.21338839946 + ], + [ + 9.30269750036, + 13.21497999946 + ], + [ + 9.30238630036, + 13.21598659946 + ], + [ + 9.30161120036, + 13.21924529946 + ], + [ + 9.30104990036, + 13.22193819946 + ], + [ + 9.30020780036, + 13.22560419946 + ], + [ + 9.30011720036, + 13.22607329946 + ], + [ + 9.30010910036, + 13.22644669946 + ], + [ + 9.30020750036, + 13.22720509946 + ], + [ + 9.30052920036, + 13.23004799946 + ], + [ + 9.30055570036, + 13.23028229946 + ], + [ + 9.30065770036, + 13.23084629946 + ], + [ + 9.30073280036, + 13.23133589946 + ], + [ + 9.30103320036, + 13.23404869946 + ], + [ + 9.30100050036, + 13.23475169946 + ], + [ + 9.30099430036, + 13.23488419946 + ], + [ + 9.30096740036, + 13.23518789946 + ], + [ + 9.30094060036, + 13.23549119946 + ], + [ + 9.30087450036, + 13.23588559946 + ], + [ + 9.30058920036, + 13.23758959946 + ], + [ + 9.30037740036, + 13.23885409946 + ], + [ + 9.29925350036, + 13.24466599946 + ], + [ + 9.29903630036, + 13.24541529946 + ], + [ + 9.29881360036, + 13.24604709946 + ], + [ + 9.29863120036, + 13.24689299946 + ], + [ + 9.29779980036, + 13.25151419946 + ], + [ + 9.29745910036, + 13.25320859946 + ], + [ + 9.29738130036, + 13.25390039946 + ], + [ + 9.29731960036, + 13.25432339946 + ], + [ + 9.29685290036, + 13.25682709946 + ], + [ + 9.29641310036, + 13.25927329946 + ], + [ + 9.29608650036, + 13.26086189946 + ], + [ + 9.29556010036, + 13.26415009946 + ], + [ + 9.29548770036, + 13.26472179946 + ], + [ + 9.29545420036, + 13.26580259946 + ], + [ + 9.29546220036, + 13.26620209946 + ], + [ + 9.29549980036, + 13.26659889946 + ], + [ + 9.29568890036, + 13.26753089946 + ], + [ + 9.29595630036, + 13.26864559946 + ], + [ + 9.29606970036, + 13.26911809946 + ], + [ + 9.29642510036, + 13.27060089946 + ], + [ + 9.29693880036, + 13.27225079946 + ], + [ + 9.29784130036, + 13.27413819946 + ], + [ + 9.29819810036, + 13.27517069946 + ], + [ + 9.29835500036, + 13.27575289946 + ], + [ + 9.29843810036, + 13.27623969946 + ], + [ + 9.29847970036, + 13.27671089946 + ], + [ + 9.29847170036, + 13.27736219946 + ], + [ + 9.29836376257, + 13.27928826595 + ], + [ + 9.29363774652, + 13.28071553315 + ], + [ + 9.26143167257, + 13.28737598905 + ], + [ + 9.24454448462, + 13.29011167811 + ], + [ + 9.23053295706, + 13.2887838549 + ], + [ + 9.21289435387, + 13.30051125414 + ], + [ + 9.19778815269, + 13.32247823685 + ], + [ + 9.15186873436, + 13.3910391307 + ], + [ + 9.14581771374, + 13.40627683318 + ], + [ + 9.13196867907, + 13.41103461001 + ], + [ + 9.10423261642, + 13.4076545699 + ], + [ + 9.04895765305, + 13.41333191567 + ], + [ + 9.01376707077, + 13.40030721748 + ], + [ + 8.99840350628, + 13.38536121692 + ], + [ + 8.98033614635, + 13.37809668542 + ], + [ + 8.96510115623, + 13.36832683942 + ], + [ + 8.95188323021, + 13.36339999371 + ], + [ + 8.93248549461, + 13.34803426934 + ], + [ + 8.92347327232, + 13.34694861051 + ], + [ + 8.798073, + 12.892653 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "43", + "firebase_id": "-NBOhCDaQSPYPMeVfA10", + "name": "Find Features - Mapping mobile homes - Arizona, USA (36) Arizona State University", + "description": "**The mapping** \\n\\n\\n Help us look for \"mobile homes\" including both manufactured homes and recreational vehicle (RV). Please take the tutorial to learn how to identify these features. \\n\\n\\n **The data** \\n\\n\\n Data will be used by researchers at Arizona State University and partners like AAMHO, the City of Phoenix and SRP to design solutions for heat resilience among mobile home owners across the state. People who live in this type of housing are 6 times more likely to suffer heat related deaths. We will better understand the nature and extent of the problem and identify precise cost and locations of where to activate support, energy innovations, and housing weatherization in order to prevent hundreds of fatalities each year.", + "look_for": "mobile homes", + "project_type": "1", + "project_type_display": "Find Features", + "organization_name": "Arizona State University", + "image_url": "https://backend.mapswipe.org/media/project/43/asset/input/01K7E3R5V2ZYW5YMH1A45DYBM0/demo_cover.png", + "created_at": "2022-09-12 07:58:39.217053+00:00", + "status": "75", + "status_display": "Finished", + "area_sqkm": "4893.96778746156", + "centroid": "POINT(-114.49220039592907 32.88376333380176)", + "progress": "0.99", + "number_of_contributor_users": "860", + "number_of_results": "1521762", + "number_of_results_for_progress": "1494540", + "last_contribution_date": "2023-01-17" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -114.855464193244, + 32.5604848277883 + ], + [ + -114.110714959252, + 32.5757013294135 + ], + [ + -114.126325363231, + 33.2064817444721 + ], + [ + -114.876356995645, + 33.1908955503027 + ], + [ + -114.855464193244, + 32.5604848277883 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "55", + "firebase_id": "-MZ3drBQ6Dh7rheLrHY-", + "name": "Find Features - Forecast-based Financing - Sudan (22) Red Cross Red Crescent Climate Centre", + "description": "Help the Red Cross Red Crescent Climate Centre in identifying areas where people live in Sudan. Swipe slowly through the satellite imagery and mark anything that looks like a building and/or road. The data will be used to support forecast-based financing projects on floods and droughts.", + "look_for": "Buildings and Roads", + "project_type": "1", + "project_type_display": "Find Features", + "organization_name": "Red Cross Red Crescent Climate Centre", + "image_url": "https://backend.mapswipe.org/media/project/55/asset/input/01K7E3RP0RW0XTSTJ5GCQYPMAF/buehnenbild_Darfur_Menschenmenge.jpg", + "created_at": "2021-04-24 16:16:33.161141+00:00", + "status": "75", + "status_display": "Finished", + "area_sqkm": "4912.210640093994", + "centroid": "POINT(22.888356304376963 12.756266941750075)", + "progress": "0.99", + "number_of_contributor_users": "640", + "number_of_results": "905160", + "number_of_results_for_progress": "898008", + "last_contribution_date": "2021-12-08" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 22.4996863110001, + 12.4932543310001 + ], + [ + 23.2770262980001, + 12.4932543310001 + ], + [ + 23.2770262980001, + 13.0192795520001 + ], + [ + 22.4996863110001, + 13.019279553 + ], + [ + 22.4996863110001, + 12.4932543310001 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "2516", + "firebase_id": "01K7H065YS65S297K9AS5918QA", + "name": "Find Features - Find Buildings - Flood Response 2025 Astore - AP-Pakistan (3) HOT", + "description": "This MapSwipe project aims to **identify building footprints** in areas affected by the recent **flooding in Pakistan (August 2025)**. \nBy collaborating on this project, mappers will help to identify buildings to understand the extent of affected areas, which will turn in helping in the response and recovery efforts. \nThe resulting data is crucial for understanding the scope of the disaster and effectively directing aid to those in need.\nThanks for your collaboration.", + "look_for": "Buildings", + "project_type": "1", + "project_type_display": "Find Features", + "organization_name": "HOT", + "image_url": "https://backend.mapswipe.org/media/project/2516/asset/input/01K7H1B1D3RQ23E7YFV6GZ9EK7/US_Army_helicopter_flies_over_a_flood-affected_area_of_Pakistan_Cut.png", + "created_at": "2025-10-14 09:17:57.594472+00:00", + "status": "75", + "status_display": "Finished", + "area_sqkm": "1392.0273549762105", + "centroid": "POINT(74.84203243396992 35.5019828234034)", + "progress": "1.0", + "number_of_contributor_users": "445", + "number_of_results": "565740", + "number_of_results_for_progress": "463650", + "last_contribution_date": "2025-10-29" + }, + "geometry": { + "type": "GeometryCollection", + "geometries": [ + { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 74.73818176700007, + 35.83336217300007 + ], + [ + 74.73818176700007, + 35.82855079400008 + ], + [ + 74.73841077100008, + 35.82465566600007 + ], + [ + 74.73886901500003, + 35.82167717800007 + ], + [ + 74.74001464600008, + 35.81869854900003 + ], + [ + 74.73955639100006, + 35.81549092800003 + ], + [ + 74.73863989300008, + 35.81319967600007 + ], + [ + 74.73772351200006, + 35.80678442200008 + ], + [ + 74.73726539800003, + 35.80311842800006 + ], + [ + 74.73405751800004, + 35.80059817100005 + ], + [ + 74.73130815200005, + 35.79945266900006 + ], + [ + 74.72924602100005, + 35.79624480100006 + ], + [ + 74.72901702900003, + 35.793495423000024 + ], + [ + 74.72901702900003, + 35.79005868000007 + ], + [ + 74.73062077500003, + 35.78799654900007 + ], + [ + 74.73314101900007, + 35.78730918400004 + ], + [ + 74.73589064400005, + 35.78730918400004 + ], + [ + 74.73886901500003, + 35.78730918400004 + ], + [ + 74.74138940000006, + 35.78616355200006 + ], + [ + 74.74459715100005, + 35.78364329600004 + ], + [ + 74.74780477200005, + 35.78135205600006 + ], + [ + 74.75055413800004, + 35.779061038000066 + ], + [ + 74.75399102200004, + 35.77585318200005 + ], + [ + 74.75628227400006, + 35.77287480000007 + ], + [ + 74.75788602000006, + 35.76875055100004 + ], + [ + 74.75880251900008, + 35.765313796000044 + ], + [ + 74.75857339700008, + 35.761876924000035 + ], + [ + 74.75719864300004, + 35.75889829500005 + ], + [ + 74.75582401900004, + 35.75591979500007 + ], + [ + 74.75353277900007, + 35.75339955100003 + ], + [ + 74.75192902100008, + 35.75179579300004 + ], + [ + 74.74895027500008, + 35.75019180000004 + ], + [ + 74.74574264200004, + 35.74904616800006 + ], + [ + 74.74345164800008, + 35.748129670000026 + ], + [ + 74.74161852200007, + 35.74675504500004 + ], + [ + 74.74093114500005, + 35.744692927000074 + ], + [ + 74.74116026700005, + 35.74171429800003 + ], + [ + 74.74161852200007, + 35.739652179000075 + ], + [ + 74.74322238500008, + 35.73667379700004 + ], + [ + 74.74345164800008, + 35.73392430200005 + ], + [ + 74.74276427100006, + 35.731862300000046 + ], + [ + 74.74161852200007, + 35.729571048000025 + ], + [ + 74.73978551300007, + 35.72796729100003 + ], + [ + 74.73818176700007, + 35.72590517200007 + ], + [ + 74.73795277400006, + 35.723155794000036 + ], + [ + 74.73909813600005, + 35.72086455400006 + ], + [ + 74.73959226800008, + 35.720235659000025 + ], + [ + 74.74077188600006, + 35.71873432700005 + ], + [ + 74.74161852200007, + 35.717656791000024 + ], + [ + 74.74528439800008, + 35.71513667600004 + ], + [ + 74.74826302700006, + 35.713303550000035 + ], + [ + 74.75078340100004, + 35.712387180000064 + ], + [ + 74.75628227400006, + 35.71215791800006 + ], + [ + 74.76017714300008, + 35.71169966300005 + ], + [ + 74.76407227100003, + 35.71169966300005 + ], + [ + 74.76980027700006, + 35.71215791800006 + ], + [ + 74.77346614200007, + 35.71376180500005 + ], + [ + 74.77575726500004, + 35.71582405300006 + ], + [ + 74.77732726400006, + 35.716696100000036 + ], + [ + 74.77801939400007, + 35.71708054000004 + ], + [ + 74.77988151400007, + 35.71811504600004 + ], + [ + 74.78286002500005, + 35.717656791000024 + ], + [ + 74.78606477000005, + 35.71692104400006 + ], + [ + 74.78693442900004, + 35.716066408000074 + ], + [ + 74.78904639300004, + 35.713990927000054 + ], + [ + 74.79202476400008, + 35.71215791800006 + ], + [ + 74.79591990300008, + 35.71147054100004 + ], + [ + 74.79695871300004, + 35.71147054100004 + ], + [ + 74.80187714900006, + 35.71147054100004 + ], + [ + 74.80691765000006, + 35.71215791800006 + ], + [ + 74.81035439300007, + 35.71284529500008 + ], + [ + 74.81082453500005, + 35.712930776000064 + ], + [ + 74.81287477800004, + 35.713303550000035 + ], + [ + 74.81403619900004, + 35.71430352400006 + ], + [ + 74.81522177500005, + 35.71532429700005 + ], + [ + 74.81768627500003, + 35.71742767000006 + ], + [ + 74.81974827600004, + 35.71971892200003 + ], + [ + 74.82181039500006, + 35.72086455400006 + ], + [ + 74.82267006900008, + 35.72086455400006 + ], + [ + 74.82455977300003, + 35.72086455400006 + ], + [ + 74.82868389200007, + 35.72063543200005 + ], + [ + 74.83143340000004, + 35.719489800000076 + ], + [ + 74.83396139500007, + 35.71810343200008 + ], + [ + 74.83647413500006, + 35.71559479000007 + ], + [ + 74.83945251800003, + 35.713303550000035 + ], + [ + 74.84266038600003, + 35.711241431000076 + ], + [ + 74.84540964600006, + 35.70986679500004 + ], + [ + 74.85090853100007, + 35.70872117500005 + ], + [ + 74.85503278000004, + 35.70803379800003 + ], + [ + 74.85778214700008, + 35.70780467600008 + ], + [ + 74.85984427700004, + 35.70665904400005 + ], + [ + 74.86213540000006, + 35.70551341300006 + ], + [ + 74.86580151100003, + 35.702076799000054 + ], + [ + 74.86877989300007, + 35.69909817000007 + ], + [ + 74.87061303100006, + 35.696348674000035 + ], + [ + 74.87267490300007, + 35.691995433000045 + ], + [ + 74.87519526500006, + 35.68787143000003 + ], + [ + 74.87725739600006, + 35.68145591800004 + ], + [ + 74.87840289800005, + 35.67801917500003 + ], + [ + 74.87863213800006, + 35.67458230200003 + ], + [ + 74.87840289800005, + 35.672062046000065 + ], + [ + 74.87771552200007, + 35.667937926000036 + ], + [ + 74.87542439900005, + 35.66427192100008 + ], + [ + 74.87313314700003, + 35.661980809000056 + ], + [ + 74.87084202400007, + 35.65968954600004 + ], + [ + 74.87107114500003, + 35.65625280300003 + ], + [ + 74.87130052500004, + 35.652815919000034 + ], + [ + 74.87221664800006, + 35.65029567400006 + ], + [ + 74.87267490300007, + 35.64800442200004 + ], + [ + 74.87267490300007, + 35.64640080500004 + ], + [ + 74.87267490300007, + 35.64388030200007 + ], + [ + 74.87267490300007, + 35.640672669000026 + ], + [ + 74.87107114500003, + 35.63838142900005 + ], + [ + 74.86969639200004, + 35.637006675000066 + ], + [ + 74.86740515200006, + 35.63540291700008 + ], + [ + 74.86328127800004, + 35.63540291700008 + ], + [ + 74.86098976800008, + 35.63540291700008 + ], + [ + 74.85869864500006, + 35.63356992000007 + ], + [ + 74.85543611700007, + 35.631856483000035 + ], + [ + 74.85509356800003, + 35.63117134400005 + ], + [ + 74.85434540300008, + 35.62967492200005 + ], + [ + 74.85434540300008, + 35.627841913000054 + ], + [ + 74.85434540300008, + 35.62600892800003 + ], + [ + 74.85434540300008, + 35.62496246400008 + ], + [ + 74.85434540300008, + 35.62384946100008 + ], + [ + 74.85424670700007, + 35.62351452400003 + ], + [ + 74.85342889300006, + 35.62073917600003 + ], + [ + 74.85136689200004, + 35.61867717500007 + ], + [ + 74.84953402400004, + 35.61753154300004 + ], + [ + 74.84701352100006, + 35.61661530300006 + ], + [ + 74.84495140300004, + 35.61661530300006 + ], + [ + 74.83899439200007, + 35.61638605200005 + ], + [ + 74.83647413500006, + 35.61638605200005 + ], + [ + 74.83395377300008, + 35.616156801000045 + ], + [ + 74.83280814100004, + 35.61409480000003 + ], + [ + 74.83280814100004, + 35.610428795000075 + ], + [ + 74.83280814100004, + 35.60790855000005 + ], + [ + 74.83280814100004, + 35.60561729800003 + ], + [ + 74.83303726300005, + 35.603097053000056 + ], + [ + 74.83441201700003, + 35.600805931000025 + ], + [ + 74.83693227300006, + 35.59897292200003 + ], + [ + 74.83945251800003, + 35.59691080300007 + ], + [ + 74.84266038600003, + 35.59461968000005 + ], + [ + 74.84351964400008, + 35.59388311400005 + ], + [ + 74.84586788900003, + 35.591870173000075 + ], + [ + 74.84815915300004, + 35.59003717600007 + ], + [ + 74.84999213800006, + 35.58820416700007 + ], + [ + 74.85159589600005, + 35.586371288000066 + ], + [ + 74.85342889300006, + 35.585454801000026 + ], + [ + 74.85617838900004, + 35.58408004800003 + ], + [ + 74.85984427700004, + 35.58064329300004 + ], + [ + 74.86121877200003, + 35.58064329300004 + ], + [ + 74.86168797500005, + 35.58064329300004 + ], + [ + 74.86328127800004, + 35.58064329300004 + ], + [ + 74.86589720800004, + 35.58056673100003 + ], + [ + 74.86694689600006, + 35.579726924000056 + ], + [ + 74.86855076000006, + 35.57720642100003 + ], + [ + 74.86992565400004, + 35.57560280400003 + ], + [ + 74.87107114500003, + 35.57354042700007 + ], + [ + 74.87038376900006, + 35.571707794000076 + ], + [ + 74.86740515200006, + 35.56895816900004 + ], + [ + 74.86603052700008, + 35.56712517200003 + ], + [ + 74.86528825900007, + 35.564934562000076 + ], + [ + 74.86465577400008, + 35.563459296000076 + ], + [ + 74.86216824500008, + 35.562132665000036 + ], + [ + 74.86121877200003, + 35.56162629900007 + ], + [ + 74.86144802300004, + 35.56048080800008 + ], + [ + 74.86328127800004, + 35.55818954400007 + ], + [ + 74.86557227200007, + 35.556814802000076 + ], + [ + 74.86900901500007, + 35.55475280100006 + ], + [ + 74.87496602600004, + 35.55108692500005 + ], + [ + 74.87748640000007, + 35.54948304900006 + ], + [ + 74.88000689100005, + 35.54719179700004 + ], + [ + 74.88183977100005, + 35.545358918000034 + ], + [ + 74.88310645600006, + 35.54391117200004 + ], + [ + 74.88345660100003, + 35.54352157100004 + ], + [ + 74.88481838800004, + 35.54306767700007 + ], + [ + 74.88665126700005, + 35.54283855600005 + ], + [ + 74.88894239000007, + 35.542609422000055 + ], + [ + 74.89169202600004, + 35.541692924000074 + ], + [ + 74.89398302000006, + 35.540318299000035 + ], + [ + 74.89741989200007, + 35.53848554900003 + ], + [ + 74.90268965600006, + 35.53596491700006 + ], + [ + 74.90406428000006, + 35.53413204900005 + ], + [ + 74.90475164500003, + 35.53161167500008 + ], + [ + 74.90521001800005, + 35.52909141900005 + ], + [ + 74.90658477200003, + 35.525654547000045 + ], + [ + 74.90704289700005, + 35.52359254600003 + ], + [ + 74.90841765100004, + 35.52359254600003 + ], + [ + 74.91185439400004, + 35.52427992200006 + ], + [ + 74.91506202700003, + 35.52427992200006 + ], + [ + 74.91918627600006, + 35.524509056000056 + ], + [ + 74.92331039600003, + 35.524509056000056 + ], + [ + 74.92537239700005, + 35.524509056000056 + ], + [ + 74.92743451600006, + 35.52290516900007 + ], + [ + 74.93110039200008, + 35.51992655200007 + ], + [ + 74.94186914700003, + 35.51419855700004 + ], + [ + 74.94690964800003, + 35.510991053000055 + ], + [ + 74.94897177800004, + 35.50892892200005 + ], + [ + 74.95011751600003, + 35.506866804000026 + ], + [ + 74.95093601700006, + 35.50473843000003 + ], + [ + 74.95126290100006, + 35.503888163000056 + ], + [ + 74.95217938800005, + 35.50182617400003 + ], + [ + 74.95286676400008, + 35.499305682000056 + ], + [ + 74.95332502000008, + 35.49609817800007 + ], + [ + 74.95340398500008, + 35.49602579100008 + ], + [ + 74.95430489200004, + 35.49519993000007 + ], + [ + 74.95496652000008, + 35.49459341600004 + ], + [ + 74.95607451500007, + 35.49357779300004 + ], + [ + 74.95744915100005, + 35.493348671000035 + ], + [ + 74.95974039100008, + 35.492432173000054 + ], + [ + 74.95996952500008, + 35.49105754800007 + ], + [ + 74.96088602300006, + 35.48945367300007 + ], + [ + 74.96248976900006, + 35.48670429500004 + ], + [ + 74.96317715800006, + 35.48578779700006 + ], + [ + 74.96523927700008, + 35.482121791000054 + ], + [ + 74.96684315200008, + 35.48005979000004 + ], + [ + 74.96982164000008, + 35.477768420000075 + ], + [ + 74.97188377000003, + 35.476393796000025 + ], + [ + 74.97325839500007, + 35.475477427000044 + ], + [ + 74.97440402600006, + 35.47501917200003 + ], + [ + 74.97669539600008, + 35.474790050000024 + ], + [ + 74.97898640100004, + 35.47456091600003 + ], + [ + 74.98104852000006, + 35.47433179500007 + ], + [ + 74.98311052100007, + 35.47295705300007 + ], + [ + 74.98608915000005, + 35.47089505200006 + ], + [ + 74.98998414800008, + 35.46997855300003 + ], + [ + 74.99142837800008, + 35.471010025000055 + ], + [ + 74.99365014200004, + 35.472727931000065 + ], + [ + 74.99571214300005, + 35.47410267300006 + ], + [ + 74.99800339500007, + 35.475477427000044 + ], + [ + 75.00235664900003, + 35.47662291800003 + ], + [ + 75.00398039400005, + 35.47621704900007 + ], + [ + 75.00535873000007, + 35.475872485000025 + ], + [ + 75.00602251300006, + 35.47570654800006 + ], + [ + 75.00716814500004, + 35.47410267300006 + ], + [ + 75.00877202100008, + 35.47226967600005 + ], + [ + 75.01106314400005, + 35.46952029800008 + ], + [ + 75.01266701900005, + 35.466312548000076 + ], + [ + 75.01312527400006, + 35.46310491400004 + ], + [ + 75.01450002700005, + 35.46195930600004 + ], + [ + 75.01495828300006, + 35.46058455200006 + ], + [ + 75.01541639700008, + 35.458522551000044 + ], + [ + 75.01610377400004, + 35.45554392200006 + ], + [ + 75.01610377400004, + 35.45371105500004 + ], + [ + 75.01610377400004, + 35.451419791000035 + ], + [ + 75.01564540100003, + 35.44935779000008 + ], + [ + 75.01564540100003, + 35.44863040900003 + ], + [ + 75.01564540100003, + 35.44660842300004 + ], + [ + 75.01665584900007, + 35.44502069400005 + ], + [ + 75.01724939400003, + 35.44408805000006 + ], + [ + 75.01797289300004, + 35.44328403900005 + ], + [ + 75.01931152400005, + 35.44179679800004 + ], + [ + 75.02137352500006, + 35.43973466700004 + ], + [ + 75.02343564400007, + 35.43813092100004 + ], + [ + 75.02549764500003, + 35.43629792400003 + ], + [ + 75.02801803100004, + 35.43561054700007 + ], + [ + 75.03145477400005, + 35.43675605000004 + ], + [ + 75.03273098500006, + 35.437394218000065 + ], + [ + 75.03374602600007, + 35.43790178800003 + ], + [ + 75.03473217400006, + 35.43812093500003 + ], + [ + 75.03580814400004, + 35.438360043000046 + ], + [ + 75.03718289800008, + 35.43904730200006 + ], + [ + 75.03924489900004, + 35.43904730200006 + ], + [ + 75.04084877400004, + 35.438589164000064 + ], + [ + 75.04291077600004, + 35.437214434000055 + ], + [ + 75.04474377300005, + 35.43561054700007 + ], + [ + 75.04611851400006, + 35.434235794000074 + ], + [ + 75.04757616300003, + 35.434235794000074 + ], + [ + 75.05047177900008, + 35.43469404900003 + ], + [ + 75.05211430700007, + 35.43491305800006 + ], + [ + 75.05390852300008, + 35.435152292000055 + ], + [ + 75.05642889600006, + 35.435152292000055 + ], + [ + 75.05849088600007, + 35.43469404900003 + ], + [ + 75.06215690300007, + 35.43331942400005 + ], + [ + 75.06376064900007, + 35.43240291400008 + ], + [ + 75.06490626900006, + 35.431028172000026 + ], + [ + 75.06559364600008, + 35.430799051000065 + ], + [ + 75.06559364600008, + 35.428507799000045 + ], + [ + 75.06536452500006, + 35.42713317400006 + ], + [ + 75.06536452500006, + 35.424612800000034 + ], + [ + 75.06628102300004, + 35.42232167800006 + ], + [ + 75.06903040100008, + 35.42003042500005 + ], + [ + 75.07200901800007, + 35.41865567200006 + ], + [ + 75.07361290500006, + 35.41842655000005 + ], + [ + 75.07567489500008, + 35.41842655000005 + ], + [ + 75.07743747500007, + 35.41842655000005 + ], + [ + 75.07888264500008, + 35.41842655000005 + ], + [ + 75.08056549900004, + 35.41863691800006 + ], + [ + 75.08251385300008, + 35.41940787100003 + ], + [ + 75.08438151900003, + 35.42003042500005 + ], + [ + 75.08690177500006, + 35.42003042500005 + ], + [ + 75.08714092700006, + 35.419312958000035 + ], + [ + 75.08758914000003, + 35.41796829500004 + ], + [ + 75.08808290700006, + 35.41735112400005 + ], + [ + 75.08942214900003, + 35.41567717200007 + ], + [ + 75.09194252200007, + 35.413156798000045 + ], + [ + 75.09446276700004, + 35.41086567600007 + ], + [ + 75.09537888900007, + 35.41008044200004 + ], + [ + 75.09606652500008, + 35.40949105100003 + ], + [ + 75.09835777700005, + 35.40674155600004 + ], + [ + 75.09996164000006, + 35.40399204900007 + ], + [ + 75.10133626500004, + 35.40124268200003 + ], + [ + 75.10202364200006, + 35.39872229700006 + ], + [ + 75.10202364200006, + 35.396889300000055 + ], + [ + 75.10179452000006, + 35.394598177000034 + ], + [ + 75.10087802100009, + 35.39322342300005 + ], + [ + 75.09904514200008, + 35.391161305000026 + ], + [ + 75.09812865500004, + 35.38978668000004 + ], + [ + 75.09784509500008, + 35.38929045200007 + ], + [ + 75.09721214500007, + 35.388182793000055 + ], + [ + 75.09858689900005, + 35.38634979600005 + ], + [ + 75.10019077400005, + 35.38589142400008 + ], + [ + 75.10311201400003, + 35.38543341500008 + ], + [ + 75.10654863900004, + 35.38457417700005 + ], + [ + 75.10826715200005, + 35.38285579300003 + ], + [ + 75.11009264600006, + 35.38187281200004 + ], + [ + 75.11196073600007, + 35.380866893000075 + ], + [ + 75.11199039400003, + 35.380850923000025 + ], + [ + 75.11314773900006, + 35.37985890600004 + ], + [ + 75.11399514700008, + 35.379132551000055 + ], + [ + 75.11657278000007, + 35.37626854800004 + ], + [ + 75.11743203100008, + 35.374263807000034 + ], + [ + 75.11857752200007, + 35.371399921000034 + ], + [ + 75.12086876200004, + 35.368822170000044 + ], + [ + 75.12316002600005, + 35.36681742800005 + ], + [ + 75.12430552900008, + 35.36509904500008 + ], + [ + 75.12462921500008, + 35.36466741700008 + ], + [ + 75.12602377100006, + 35.362807805000045 + ], + [ + 75.12632285600006, + 35.36206034400004 + ], + [ + 75.12659676900006, + 35.36137579100006 + ], + [ + 75.12802878200006, + 35.35793904800005 + ], + [ + 75.13146552500007, + 35.35593417800004 + ], + [ + 75.13519940600008, + 35.35430063000007 + ], + [ + 75.13604788900005, + 35.35392942500005 + ], + [ + 75.13875731200005, + 35.35269785700007 + ], + [ + 75.13919826200004, + 35.352497423000045 + ], + [ + 75.14206227700004, + 35.351065421000044 + ], + [ + 75.14492626900005, + 35.350206171000025 + ], + [ + 75.14750389100004, + 35.349347038000076 + ], + [ + 75.15552314900003, + 35.34591016600007 + ], + [ + 75.15810064200008, + 35.34304617400005 + ], + [ + 75.16067826400007, + 35.34018217100004 + ], + [ + 75.16468788800006, + 35.337031797000066 + ], + [ + 75.16697902200008, + 35.33474066300005 + ], + [ + 75.16755815000005, + 35.33351005700007 + ], + [ + 75.16927027400004, + 35.329871800000035 + ], + [ + 75.16955664400007, + 35.32672142700005 + ], + [ + 75.17041589500008, + 35.32299830300008 + ], + [ + 75.17070227600004, + 35.32070703900007 + ], + [ + 75.17070227600004, + 35.31812941700008 + ], + [ + 75.17156151500006, + 35.31440629200006 + ], + [ + 75.17270701700005, + 35.31154230100003 + ], + [ + 75.17442553000006, + 35.30896467900004 + ], + [ + 75.17700302300005, + 35.30610066400004 + ], + [ + 75.17728952200008, + 35.30352304200005 + ], + [ + 75.17728952200008, + 35.30094554900006 + ], + [ + 75.17614389000005, + 35.29865430900003 + ], + [ + 75.17614389000005, + 35.29464467300005 + ], + [ + 75.17614389000005, + 35.290921549000075 + ], + [ + 75.17614389000005, + 35.287771176000035 + ], + [ + 75.17557102100005, + 35.28519354200006 + ], + [ + 75.17557102100005, + 35.282043169000076 + ], + [ + 75.17557102100005, + 35.27803354500003 + ], + [ + 75.17585752000008, + 35.27516954200007 + ], + [ + 75.17728952200008, + 35.273164800000075 + ], + [ + 75.17814865400004, + 35.270873548000054 + ], + [ + 75.17757590300005, + 35.26915517700007 + ], + [ + 75.17757590300005, + 35.26600480400003 + ], + [ + 75.17762101900007, + 35.26433534600005 + ], + [ + 75.17766709600005, + 35.26263030500007 + ], + [ + 75.17786227300007, + 35.25540793500005 + ], + [ + 75.17728952200008, + 35.25397580400005 + ], + [ + 75.17499828100006, + 35.25225753800004 + ], + [ + 75.17499828100006, + 35.24996642700006 + ], + [ + 75.17410289700007, + 35.245817799000065 + ], + [ + 75.16862592900003, + 35.246784296000044 + ], + [ + 75.16147014400008, + 35.24804704700006 + ], + [ + 75.13340814500003, + 35.25740093300004 + ], + [ + 75.11049090400007, + 35.270028930000024 + ], + [ + 75.08336414600006, + 35.27985043000007 + ], + [ + 75.07026852200005, + 35.28172141700003 + ], + [ + 75.04711752100008, + 35.28195530600004 + ], + [ + 75.01905552200003, + 35.28429378900006 + ], + [ + 74.99660589500007, + 35.291309298000044 + ], + [ + 74.96994702200004, + 35.29318016700006 + ], + [ + 74.95908701100007, + 35.29350754400008 + ], + [ + 74.93693677700008, + 35.298895291000065 + ], + [ + 74.92457276700003, + 35.30114968100003 + ], + [ + 74.91996890200005, + 35.302070419000074 + ], + [ + 74.91290963900008, + 35.30299116900005 + ], + [ + 74.90738515300006, + 35.30452579400003 + ], + [ + 74.90262776900005, + 35.30598366600003 + ], + [ + 74.90032589000003, + 35.309666793000076 + ], + [ + 74.89779389000006, + 35.314500802000055 + ], + [ + 74.89595226200004, + 35.31703293000004 + ], + [ + 74.89411076300007, + 35.32048579700006 + ], + [ + 74.88996727800003, + 35.32393854600008 + ], + [ + 74.88605403100007, + 35.32716130400007 + ], + [ + 74.88260114100007, + 35.32900280300004 + ], + [ + 74.87822751400006, + 35.33038392200007 + ], + [ + 74.87431426700005, + 35.33084443100006 + ], + [ + 74.87086151700004, + 35.33084443100006 + ], + [ + 74.86648789000003, + 35.330614171000036 + ], + [ + 74.86119326600004, + 35.32969342100006 + ], + [ + 74.85589903000005, + 35.330614171000036 + ], + [ + 74.85175565100008, + 35.33383678800004 + ], + [ + 74.85037452100005, + 35.33636892900006 + ], + [ + 74.85037452100005, + 35.34028217600007 + ], + [ + 74.85014426000004, + 35.342584044000034 + ], + [ + 74.84991426900007, + 35.34718792000007 + ], + [ + 74.84968390300008, + 35.35225217800007 + ], + [ + 74.84600089300005, + 35.35041055000005 + ], + [ + 74.84231776600006, + 35.34972004900004 + ], + [ + 74.84001588600006, + 35.34972004900004 + ], + [ + 74.83702340000008, + 35.34972004900004 + ], + [ + 74.83287977500004, + 35.349029431000076 + ], + [ + 74.82781577600008, + 35.34672755100007 + ], + [ + 74.82528364700005, + 35.34488605200005 + ], + [ + 74.82229115000007, + 35.343504805000066 + ], + [ + 74.81883827100006, + 35.34281430400006 + ], + [ + 74.81722702100006, + 35.34120292500006 + ], + [ + 74.81548526900008, + 35.33924367700007 + ], + [ + 74.81354389400008, + 35.337059547000024 + ], + [ + 74.81032126500008, + 35.334067049000055 + ], + [ + 74.80801928000005, + 35.331534920000024 + ], + [ + 74.80709851800003, + 35.32877268300007 + ], + [ + 74.80640801800007, + 35.32601029400007 + ], + [ + 74.80479663900007, + 35.323708414000066 + ], + [ + 74.80203440200006, + 35.321636666000074 + ], + [ + 74.79604940700005, + 35.31795366800003 + ], + [ + 74.78822290100004, + 35.313810172000046 + ], + [ + 74.78338889200006, + 35.31173854100007 + ], + [ + 74.77832464700003, + 35.31104792300005 + ], + [ + 74.77533213700008, + 35.31058755500004 + ], + [ + 74.77280013800004, + 35.308976175000055 + ], + [ + 74.76658490500006, + 35.30851579500006 + ], + [ + 74.76106026700006, + 35.30851579500006 + ], + [ + 74.75530552100008, + 35.309666793000076 + ], + [ + 74.75024140500005, + 35.31058755500004 + ], + [ + 74.74563751600004, + 35.31104792300005 + ], + [ + 74.74149414900006, + 35.31127805500006 + ], + [ + 74.73619977200008, + 35.31081780400007 + ], + [ + 74.73297701400008, + 35.30943655600004 + ], + [ + 74.72768264800004, + 35.307825294000054 + ], + [ + 74.72352002200006, + 35.306508423000025 + ], + [ + 74.72041214800004, + 35.30823516700008 + ], + [ + 74.71661328000005, + 35.31134317100003 + ], + [ + 74.71143326900005, + 35.31203380100004 + ], + [ + 74.70728926800007, + 35.31272454800006 + ], + [ + 74.70349064700008, + 35.314796554000054 + ], + [ + 74.69900127800008, + 35.31721379900006 + ], + [ + 74.69347590000007, + 35.320667171000025 + ], + [ + 74.68829589000006, + 35.322393927000064 + ], + [ + 74.68311589100006, + 35.322393927000064 + ], + [ + 74.67788477500005, + 35.32150129100006 + ], + [ + 74.67861064600004, + 35.32380017600008 + ], + [ + 74.67906888900006, + 35.327236801000026 + ], + [ + 74.68021439200004, + 35.33021554800007 + ], + [ + 74.68204740100003, + 35.33319417600006 + ], + [ + 74.68319302100008, + 35.335256178000066 + ], + [ + 74.68548414400004, + 35.33640181000004 + ], + [ + 74.68960839300007, + 35.33823479500006 + ], + [ + 74.69189951600003, + 35.33915116400004 + ], + [ + 74.69533638800004, + 35.340296925000075 + ], + [ + 74.69808576600008, + 35.34098404400004 + ], + [ + 74.70037703000008, + 35.34098404400004 + ], + [ + 74.70152860600007, + 35.34127199200003 + ], + [ + 74.70404289400005, + 35.34190068300006 + ], + [ + 74.70528228200004, + 35.34246402100007 + ], + [ + 74.70908351300005, + 35.34419179400004 + ], + [ + 74.71137477700006, + 35.34579579900003 + ], + [ + 74.71217182400005, + 35.34689176200004 + ], + [ + 74.71320764400008, + 35.34831604300007 + ], + [ + 74.71504064100003, + 35.350378044000024 + ], + [ + 74.71595714000006, + 35.353127552000046 + ], + [ + 74.71595714000006, + 35.35610603900005 + ], + [ + 74.71618640200006, + 35.360001167000064 + ], + [ + 74.71644639700008, + 35.36156179200003 + ], + [ + 74.71664451700008, + 35.36275054500004 + ], + [ + 74.71756089800004, + 35.365270801000065 + ], + [ + 74.71962302800006, + 35.368020297000044 + ], + [ + 74.72214340200003, + 35.36985317600005 + ], + [ + 74.72258709400006, + 35.370297625000035 + ], + [ + 74.72397626900005, + 35.37168617300006 + ], + [ + 74.72482686000006, + 35.37338734600007 + ], + [ + 74.72512190100008, + 35.37397742500008 + ], + [ + 74.72580926600006, + 35.37649767000005 + ], + [ + 74.72649652600006, + 35.37878892200007 + ], + [ + 74.72832940500007, + 35.38039279700007 + ], + [ + 74.73016252000008, + 35.382454927000026 + ], + [ + 74.73153726200007, + 35.384287795000034 + ], + [ + 74.73107914700006, + 35.38589142400008 + ], + [ + 74.72993339800007, + 35.388182793000055 + ], + [ + 74.72810038900008, + 35.390015790000064 + ], + [ + 74.72741314200005, + 35.39253604700008 + ], + [ + 74.72718402000004, + 35.39345254500006 + ], + [ + 74.72649652600006, + 35.395285554000054 + ], + [ + 74.72535102300003, + 35.39734767200002 + ], + [ + 74.72420540300004, + 35.399638666000044 + ], + [ + 74.72351815500008, + 35.40192993000005 + ], + [ + 74.72328889300007, + 35.404450292000035 + ], + [ + 74.72328889300007, + 35.40788704700003 + ], + [ + 74.72260151600005, + 35.40994916500006 + ], + [ + 74.72053951500004, + 35.411782291000065 + ], + [ + 74.71893565100004, + 35.41292767700003 + ], + [ + 74.71779001900006, + 35.41521891700006 + ], + [ + 74.71664451700008, + 35.417280918000074 + ], + [ + 74.71618640200006, + 35.42071779100007 + ], + [ + 74.71664451700008, + 35.42255079900008 + ], + [ + 74.71650095500007, + 35.42456062000008 + ], + [ + 74.71641539500007, + 35.425758432000066 + ], + [ + 74.71562655600007, + 35.42699806500008 + ], + [ + 74.71481164900007, + 35.42827866500005 + ], + [ + 74.71253450400008, + 35.43195696600003 + ], + [ + 74.71183289100003, + 35.43309029100004 + ], + [ + 74.71091665100005, + 35.435839669000075 + ], + [ + 74.71183289100003, + 35.43744355600006 + ], + [ + 74.71366589900003, + 35.43927641200003 + ], + [ + 74.71572801800005, + 35.44088029900007 + ], + [ + 74.71824827400008, + 35.44271342500008 + ], + [ + 74.71766782900005, + 35.44503498900008 + ], + [ + 74.71756089800004, + 35.445462674000055 + ], + [ + 74.71733163500005, + 35.44752480400007 + ], + [ + 74.71572801800005, + 35.45256542300007 + ], + [ + 74.71297852300006, + 35.458522551000044 + ], + [ + 74.71137464700007, + 35.46241753800007 + ], + [ + 74.70977089000007, + 35.46585430400006 + ], + [ + 74.70816702600007, + 35.46952016900008 + ], + [ + 74.70587577400005, + 35.47410267300006 + ], + [ + 74.70450102000007, + 35.47822667500003 + ], + [ + 74.70289726300007, + 35.48120555100007 + ], + [ + 74.70037703000008, + 35.48464217700007 + ], + [ + 74.69716939700004, + 35.48739154300006 + ], + [ + 74.69327451600003, + 35.490599176000046 + ], + [ + 74.68892089900004, + 35.493119550000074 + ], + [ + 74.68433864100007, + 35.494723554000075 + ], + [ + 74.68090176900006, + 35.49655643400007 + ], + [ + 74.67792328100006, + 35.498618306000026 + ], + [ + 74.67654839800008, + 35.50113879700007 + ], + [ + 74.67677764900003, + 35.503659053000035 + ], + [ + 74.67792328100006, + 35.50640854900007 + ], + [ + 74.67847981900007, + 35.50807787700006 + ], + [ + 74.67883989700005, + 35.50915792700005 + ], + [ + 74.67883989700005, + 35.51167817100003 + ], + [ + 74.67700677100004, + 35.51488580400007 + ], + [ + 74.67507273700005, + 35.51961969100006 + ], + [ + 74.67288263900008, + 35.52290516900007 + ], + [ + 74.67265364700006, + 35.525654547000045 + ], + [ + 74.67150789700008, + 35.52817492100007 + ], + [ + 74.66990402200008, + 35.531382671000074 + ], + [ + 74.66830026400004, + 35.533444555000074 + ], + [ + 74.66830026400004, + 35.536652305000075 + ], + [ + 74.66852926800004, + 35.53825629800008 + ], + [ + 74.66863609900008, + 35.53953745200005 + ], + [ + 74.66875851900005, + 35.541005547000054 + ], + [ + 74.66921664500006, + 35.54352593200008 + ], + [ + 74.66852926800004, + 35.54742091900005 + ], + [ + 74.66784190300007, + 35.55177430100008 + ], + [ + 74.66669638900004, + 35.55314905500006 + ], + [ + 74.66532164700004, + 35.555210927000076 + ], + [ + 74.66449974000005, + 35.556150323000054 + ], + [ + 74.66371790100004, + 35.55704392400003 + ], + [ + 74.66119751500008, + 35.56002255300007 + ], + [ + 74.65867714200004, + 35.563001041000064 + ], + [ + 74.65786539300007, + 35.56641053900006 + ], + [ + 74.65753165100006, + 35.56781254900005 + ], + [ + 74.65707339600004, + 35.56987466800007 + ], + [ + 74.65661514000004, + 35.57239492400004 + ], + [ + 74.65615702600007, + 35.57468616400007 + ], + [ + 74.65455302200007, + 35.57606091800005 + ], + [ + 74.65317826800003, + 35.574915427000064 + ], + [ + 74.65134540000008, + 35.573082301000056 + ], + [ + 74.65019965100004, + 35.571478555000056 + ], + [ + 74.64813765000008, + 35.56964542900005 + ], + [ + 74.64538840100005, + 35.56918729100005 + ], + [ + 74.64378438500006, + 35.570332923000024 + ], + [ + 74.64218063900006, + 35.57285330800005 + ], + [ + 74.64057677500006, + 35.574915427000064 + ], + [ + 74.64011852000004, + 35.577435671000046 + ], + [ + 74.63943114300008, + 35.57949779000006 + ], + [ + 74.63874376700005, + 35.58270529400005 + ], + [ + 74.63828551100005, + 35.585225680000065 + ], + [ + 74.63691088700006, + 35.58614216600006 + ], + [ + 74.63370314800005, + 35.586371288000066 + ], + [ + 74.63049564400006, + 35.58705866500003 + ], + [ + 74.62797514100004, + 35.58820416700007 + ], + [ + 74.62660038800004, + 35.58980805500005 + ], + [ + 74.62637126600004, + 35.592099295000025 + ], + [ + 74.62682952100005, + 35.594390418000046 + ], + [ + 74.62728376100006, + 35.595298908000075 + ], + [ + 74.62797514100004, + 35.59668168200005 + ], + [ + 74.62957902800008, + 35.59897292200003 + ], + [ + 74.63072451900007, + 35.60034754600008 + ], + [ + 74.63196415700008, + 35.60229564600007 + ], + [ + 74.63232839500006, + 35.60286804900005 + ], + [ + 74.63278663800008, + 35.604929921000064 + ], + [ + 74.63278663800008, + 35.60790855000005 + ], + [ + 74.63255739900006, + 35.61065779900008 + ], + [ + 74.63049564400006, + 35.61363655700006 + ], + [ + 74.62797514100004, + 35.615240303000064 + ], + [ + 74.62591314000008, + 35.61707342900007 + ], + [ + 74.62362201700006, + 35.618906297000024 + ], + [ + 74.61975751600005, + 35.622357425000075 + ], + [ + 74.61651913900005, + 35.62371779400007 + ], + [ + 74.61598618800008, + 35.62415395100004 + ], + [ + 74.61598577500007, + 35.624154289000046 + ], + [ + 74.61398052900006, + 35.625871507000056 + ], + [ + 74.61376976100007, + 35.62692542700006 + ], + [ + 74.61399889500007, + 35.628529290000074 + ], + [ + 74.61417372300008, + 35.62914125000003 + ], + [ + 74.61445713800003, + 35.63013330600006 + ], + [ + 74.61468627200003, + 35.63196591600007 + ], + [ + 74.61537364800006, + 35.63379904200008 + ], + [ + 74.61537364800006, + 35.63677768300005 + ], + [ + 74.61537364800006, + 35.63906880500008 + ], + [ + 74.61560264100007, + 35.64135979900004 + ], + [ + 74.61560264100007, + 35.64319292500005 + ], + [ + 74.61560264100007, + 35.64617154200005 + ], + [ + 74.61422801700007, + 35.64777518300008 + ], + [ + 74.61285327500008, + 35.649150054000074 + ], + [ + 74.61285327500008, + 35.65098303900004 + ], + [ + 74.61331140100003, + 35.653503295000064 + ], + [ + 74.61376976100007, + 35.65602368100008 + ], + [ + 74.61583176300007, + 35.65877304700007 + ], + [ + 74.61835214800004, + 35.661293303000036 + ], + [ + 74.62155989900003, + 35.66335543400004 + ], + [ + 74.62476752000003, + 35.66450104200004 + ], + [ + 74.62843339700004, + 35.66610505800003 + ], + [ + 74.63141201400003, + 35.667479800000024 + ], + [ + 74.63393227000006, + 35.66885430700006 + ], + [ + 74.63622352200008, + 35.67114554800003 + ], + [ + 74.63782739700008, + 35.672978674000035 + ], + [ + 74.63897288800007, + 35.67572792200008 + ], + [ + 74.63897288800007, + 35.678477430000044 + ], + [ + 74.63943114300008, + 35.681684922000045 + ], + [ + 74.63943114300008, + 35.684434417000034 + ], + [ + 74.63943114300008, + 35.687413046000074 + ], + [ + 74.63943114300008, + 35.68947504700003 + ], + [ + 74.64011852000004, + 35.69222455500005 + ], + [ + 74.64172240700003, + 35.69382841800007 + ], + [ + 74.64332627100003, + 35.69520317200005 + ], + [ + 74.64538840100005, + 35.69680692900005 + ], + [ + 74.64745027300006, + 35.700243673000045 + ], + [ + 74.64813765000008, + 35.70322230100004 + ], + [ + 74.64813765000008, + 35.706200789000036 + ], + [ + 74.64767952400007, + 35.70895041400007 + ], + [ + 74.64579308100008, + 35.71035686300007 + ], + [ + 74.64355526300005, + 35.71169966300005 + ], + [ + 74.64218063900006, + 35.71215767100006 + ], + [ + 74.63966026500003, + 35.71261617300007 + ], + [ + 74.63759814600007, + 35.71261617300007 + ], + [ + 74.63576527900005, + 35.71284516500003 + ], + [ + 74.63324489300004, + 35.713303550000035 + ], + [ + 74.63118302100008, + 35.71422004800007 + ], + [ + 74.62934989500008, + 35.71582405300006 + ], + [ + 74.62797514100004, + 35.717885925000076 + ], + [ + 74.62660038800004, + 35.72063543200005 + ], + [ + 74.62475839600006, + 35.72386142000005 + ], + [ + 74.62385102200005, + 35.72617678700004 + ], + [ + 74.62385102200005, + 35.72888367200005 + ], + [ + 74.62408015500006, + 35.73300780300008 + ], + [ + 74.62408015500006, + 35.735757299000056 + ], + [ + 74.62408015500006, + 35.74056879500006 + ], + [ + 74.62430939400008, + 35.74263079600007 + ], + [ + 74.62591314000008, + 35.744005550000054 + ], + [ + 74.62889165200005, + 35.74492216600004 + ], + [ + 74.63141201400003, + 35.74560954300006 + ], + [ + 74.63416139200007, + 35.746525924000025 + ], + [ + 74.63736902500005, + 35.747900548000075 + ], + [ + 74.64126402300008, + 35.75087917700006 + ], + [ + 74.64378438500006, + 35.753170288000035 + ], + [ + 74.64584652700006, + 35.75614892900006 + ], + [ + 74.64790839900007, + 35.75912754600006 + ], + [ + 74.64997064700003, + 35.76393904200006 + ], + [ + 74.65088727500006, + 35.76691755400003 + ], + [ + 74.65203277700004, + 35.769666932000064 + ], + [ + 74.65203277700004, + 35.77172905100008 + ], + [ + 74.65088727500006, + 35.77402030300004 + ], + [ + 74.64722128100004, + 35.77631141400008 + ], + [ + 74.64447176200008, + 35.77745704600005 + ], + [ + 74.64126402300008, + 35.777915301000064 + ], + [ + 74.64005318000005, + 35.77798257300003 + ], + [ + 74.63714002000006, + 35.778144422000025 + ], + [ + 74.63255739900006, + 35.779061038000066 + ], + [ + 74.62957902800008, + 35.779519176000065 + ], + [ + 74.62660038800004, + 35.78089380000006 + ], + [ + 74.62453839800008, + 35.78341417400003 + ], + [ + 74.62293465200008, + 35.78570542600005 + ], + [ + 74.62262614700006, + 35.788230673000044 + ], + [ + 74.62278618400006, + 35.78904779700008 + ], + [ + 74.62316364500003, + 35.79097504900005 + ], + [ + 74.62476752000003, + 35.79326641800003 + ], + [ + 74.62614227400007, + 35.794870176000074 + ], + [ + 74.62843339700004, + 35.797390421000046 + ], + [ + 74.62957902800008, + 35.79945266900006 + ], + [ + 74.63026640500004, + 35.80128554800007 + ], + [ + 74.63118302100008, + 35.80426416500006 + ], + [ + 74.63209926100006, + 35.80609704500006 + ], + [ + 74.63324489300004, + 35.80701341400004 + ], + [ + 74.63576527900005, + 35.80861730100003 + ], + [ + 74.63920202200006, + 35.809533800000054 + ], + [ + 74.64218063900006, + 35.81136679600007 + ], + [ + 74.64470102400008, + 35.812741421000055 + ], + [ + 74.64722128100004, + 35.81572016700005 + ], + [ + 74.64882502700004, + 35.81869854900003 + ], + [ + 74.64974151300004, + 35.82121904100006 + ], + [ + 74.65065802400005, + 35.824197423000044 + ], + [ + 74.65180364400004, + 35.82694693000008 + ], + [ + 74.65546952000005, + 35.82900893100003 + ], + [ + 74.65867714200004, + 35.830154540000024 + ], + [ + 74.66211401400005, + 35.830612795000036 + ], + [ + 74.66646739600003, + 35.830612795000036 + ], + [ + 74.67082052000006, + 35.830612795000036 + ], + [ + 74.67373590000005, + 35.83046705000004 + ], + [ + 74.67540289500005, + 35.83038367300003 + ], + [ + 74.67723590400004, + 35.830612795000036 + ], + [ + 74.67929802300006, + 35.830841916000054 + ], + [ + 74.68204740100003, + 35.83175842700007 + ], + [ + 74.68456776300008, + 35.833820428000024 + ], + [ + 74.68685902700008, + 35.833820428000024 + ], + [ + 74.68892102800004, + 35.833820428000024 + ], + [ + 74.69189951600003, + 35.83404955000003 + ], + [ + 74.69510739500004, + 35.834507805000044 + ], + [ + 74.70014789600003, + 35.835424174000025 + ], + [ + 74.70266814100006, + 35.83634080200005 + ], + [ + 74.70518852600003, + 35.837028178000025 + ], + [ + 74.70793802200006, + 35.83817379900006 + ], + [ + 74.70909614800007, + 35.83906480300004 + ], + [ + 74.71091665100005, + 35.84046493300008 + ], + [ + 74.71320764400008, + 35.84229804800003 + ], + [ + 74.71664451700008, + 35.845047296000075 + ], + [ + 74.71939390600005, + 35.846651172000065 + ], + [ + 74.72305977100007, + 35.84894242400003 + ], + [ + 74.72603838800006, + 35.851004542000055 + ], + [ + 74.72855864400003, + 35.85192092300008 + ], + [ + 74.73199551700003, + 35.852608288000056 + ], + [ + 74.73405751800004, + 35.852608288000056 + ], + [ + 74.73680702500008, + 35.852608288000056 + ], + [ + 74.73890601700003, + 35.850865174000035 + ], + [ + 74.74024376800008, + 35.84917141600005 + ], + [ + 74.74024376800008, + 35.84619292800005 + ], + [ + 74.73886901500003, + 35.84252705200004 + ], + [ + 74.73795277400006, + 35.84046493300008 + ], + [ + 74.73795277400006, + 35.837028178000025 + ], + [ + 74.73818176700007, + 35.83336217300007 + ] + ] + ] + ] + } + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "2517", + "firebase_id": "01K7H2YBXBBB8H3FCMD98G8F8N", + "name": "Find Features - Find - Buildings - Upat\u00e1, Bolivar-Venezuela (1) HOT", + "description": "Mapping in areas of high multidimensional poverty is of crucial relevance, as women play an essential role in** indigenous populations**, and contribute significantly to social cohesion, cultural preservation and community sustainability. \nIn addition, women in indigenous communities are transmitters of local knowledge and assume fundamental responsibilities in the management of natural resources and environmental preservation. Women\u2019s active participation in their communities strengthens resilience in the face of socioeconomic and environmental challenges. In the context of the Amazon, mapping becomes critically important when considering vulnerability and the need to preserve valuable natural resources. When women in these communities have detailed information of their surroundings, it facilitates strategic planning against threats, and contributes to the implementation of adaptation and protection measures, to ensure the long-term survival of the region and its population.\nImage: \u00a9Rei2Rey / Wikimedia Commons / CC-BY-SA-3.0 / GFDL", + "look_for": "You are looking for: buildings", + "project_type": "1", + "project_type_display": "Find Features", + "organization_name": "HOT", + "image_url": "https://backend.mapswipe.org/media/project/2517/asset/input/01K7H2YT9CXEFWZVAEN8H8J8J7/Upata.JPG", + "created_at": "2025-10-14 10:06:07.275638+00:00", + "status": "75", + "status_display": "Finished", + "area_sqkm": "748.0441932907204", + "centroid": "POINT(-62.360876832035835 8.014680005459482)", + "progress": "1.0", + "number_of_contributor_users": "188", + "number_of_results": "223254", + "number_of_results_for_progress": "171270", + "last_contribution_date": "2025-10-16" + }, + "geometry": { + "type": "GeometryCollection", + "geometries": [ + { + "type": "Polygon", + "coordinates": [ + [ + [ + -62.41727867962493, + 7.864182906657741 + ], + [ + -62.45424867593003, + 7.944025309223053 + ], + [ + -62.49673539328463, + 7.993970813158017 + ], + [ + -62.5072129959514, + 8.07817190692502 + ], + [ + -62.49251248624179, + 8.118548009959763 + ], + [ + -62.447087150678755, + 8.165285425873897 + ], + [ + -62.4255502, + 8.151277 + ], + [ + -62.4268055, + 8.1680144 + ], + [ + -62.4091673, + 8.174705 + ], + [ + -62.4209047, + 8.1637239 + ], + [ + -62.4060559, + 8.1529762 + ], + [ + -62.3855639, + 8.1872999 + ], + [ + -62.4186516, + 8.1726872 + ], + [ + -62.40449582244363, + 8.183973712619578 + ], + [ + -62.388868823750016, + 8.188304767806201 + ], + [ + -62.34580517578652, + 8.18682104847091 + ], + [ + -62.30531745059265, + 8.172150215316055 + ], + [ + -62.250853906212186, + 8.115772302613408 + ], + [ + -62.259013177445354, + 7.834836417296184 + ], + [ + -62.342417575900825, + 7.823937316106099 + ], + [ + -62.41727867962493, + 7.864182906657741 + ] + ], + [ + [ + -62.4540997, + 8.031248 + ], + [ + -62.4669314, + 8.0248951 + ], + [ + -62.4635947, + 7.9970704 + ], + [ + -62.4280393, + 7.9857764 + ], + [ + -62.4484778, + 7.9793378 + ], + [ + -62.4321056, + 7.9619018 + ], + [ + -62.3859072, + 7.9601699 + ], + [ + -62.3829299, + 7.9756615 + ], + [ + -62.3618478, + 7.9805862 + ], + [ + -62.3621321, + 7.9702002 + ], + [ + -62.3330355, + 7.9625712 + ], + [ + -62.3145175, + 7.9789128 + ], + [ + -62.3080588, + 8.010064 + ], + [ + -62.3494177, + 8.029842 + ], + [ + -62.3477126, + 8.0446123 + ], + [ + -62.3804462, + 8.0360711 + ], + [ + -62.4079764, + 8.0550548 + ], + [ + -62.4540997, + 8.031248 + ] + ] + ] + }, + { + "type": "Polygon", + "coordinates": [ + [ + [ + -62.4594856, + 8.1559924 + ], + [ + -62.4614167, + 8.1538259 + ], + [ + -62.46451764686198, + 8.15342552872967 + ], + [ + -62.459175499150106, + 8.157060657168062 + ], + [ + -62.4594856, + 8.1559924 + ] + ] + ] + }, + { + "type": "Polygon", + "coordinates": [ + [ + [ + -62.41462211502947, + 8.181020307582449 + ], + [ + -62.427578, + 8.1716465 + ], + [ + -62.4355272294733, + 8.173149499690348 + ], + [ + -62.43028911055387, + 8.176450080469927 + ], + [ + -62.41462211502947, + 8.181020307582449 + ] + ] + ] + }, + { + "type": "Polygon", + "coordinates": [ + [ + [ + -62.4162177, + 7.981315 + ], + [ + -62.41653395075282, + 7.977337966766278 + ], + [ + -62.4260116, + 7.9766603 + ], + [ + -62.42327670536468, + 7.983726916059595 + ], + [ + -62.4162177, + 7.981315 + ] + ] + ] + } + ] + } + } + ] +} diff --git a/assets/docs/about_data/files/groups_-M56eeMCZ5VeOHjJN4Bx.csv.gz b/assets/docs/about_data/files/groups_-M56eeMCZ5VeOHjJN4Bx.csv.gz deleted file mode 100644 index 9613ef4..0000000 Binary files a/assets/docs/about_data/files/groups_-M56eeMCZ5VeOHjJN4Bx.csv.gz and /dev/null differ diff --git a/assets/docs/about_data/files/history_-M56eeMCZ5VeOHjJN4Bx.csv b/assets/docs/about_data/files/history_-M56eeMCZ5VeOHjJN4Bx.csv deleted file mode 100644 index 31896c7..0000000 --- a/assets/docs/about_data/files/history_-M56eeMCZ5VeOHjJN4Bx.csv +++ /dev/null @@ -1,6 +0,0 @@ -day,number_of_results,number_of_results_progress,cum_number_of_results,cum_number_of_results_progress,progress,cum_progress,number_of_users,number_of_new_users,cum_number_of_users,project_id -2020-04-17,138387,138387,138387,138387,0.3121084182465257,0.3121084182465257,78,78,78,-M56eeMCZ5VeOHjJN4Bx -2020-04-18,126825,126639,265212,265026,0.2856127958429749,0.5977212140895005,113,85,163,-M56eeMCZ5VeOHjJN4Bx -2020-04-19,143178,137460,408390,402486,0.31001772689752227,0.9077389409870228,88,39,202,-M56eeMCZ5VeOHjJN4Bx -2020-04-20,59640,40557,468030,443043,0.0914694380167526,0.9992083790037755,37,11,213,-M56eeMCZ5VeOHjJN4Bx -2020-04-21,258,0,468288,443043,0.0,0.9992083790037755,1,0,213,-M56eeMCZ5VeOHjJN4Bx diff --git a/assets/docs/about_data/files/hot_tm_-M56eeMCZ5VeOHjJN4Bx.geojson b/assets/docs/about_data/files/hot_tm_-M56eeMCZ5VeOHjJN4Bx.geojson deleted file mode 100644 index d0b26f8..0000000 --- a/assets/docs/about_data/files/hot_tm_-M56eeMCZ5VeOHjJN4Bx.geojson +++ /dev/null @@ -1 +0,0 @@ -{"type": "FeatureCollection", "name": "/root/.local/share/mapswipe_workers/api/hot_tm/hot_tm_-M56eeMCZ5VeOHjJN4Bx.geojson", "crs": {"type": "name", "properties": {"name": "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "features": [{"type": "Feature", "properties": {"group_id": 1427}, "geometry": {"type": "Polygon", "coordinates": [[[15.9040833, -3.9519409, 0.0], [15.9068298, -3.9519409, 0.0], [15.9068298, -3.9492008, 0.0], [15.9040833, -3.9492008, 0.0], [15.9040833, -3.9519409, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1361}, "geometry": {"type": "Polygon", "coordinates": [[[15.8903503, -3.960161, 0.0], [15.8999634, -3.960161, 0.0], [15.8999634, -3.9546809, 0.0], [15.8903503, -3.9546809, 0.0], [15.8903503, -3.960161, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1214}, "geometry": {"type": "Polygon", "coordinates": [[[15.8642578, -3.969751, 0.0], [15.8670044, -3.969751, 0.0], [15.8670044, -3.965641, 0.0], [15.8642578, -3.965641, 0.0], [15.8642578, -3.969751, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1065}, "geometry": {"type": "Polygon", "coordinates": [[[15.8340454, -3.9779709, 0.0], [15.836792, -3.9779709, 0.0], [15.836792, -3.9766009, 0.0], [15.8340454, -3.9766009, 0.0], [15.8340454, -3.9779709, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1086}, "geometry": {"type": "Polygon", "coordinates": [[[15.8395386, -3.9793409, 0.0], [15.8409119, -3.9793409, 0.0], [15.8409119, -3.9779709, 0.0], [15.8395386, -3.9779709, 0.0], [15.8395386, -3.9793409, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1323}, "geometry": {"type": "Polygon", "coordinates": [[[15.8834839, -3.9807109, 0.0], [15.8848572, -3.9807109, 0.0], [15.8848572, -3.9793409, 0.0], [15.8834839, -3.9793409, 0.0], [15.8834839, -3.9807109, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1116}, "geometry": {"type": "Polygon", "coordinates": [[[15.846405, -3.9834508, 0.0], [15.8477783, -3.9834508, 0.0], [15.8477783, -3.9820809, 0.0], [15.846405, -3.9820809, 0.0], [15.846405, -3.9834508, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1362}, "geometry": {"type": "Polygon", "coordinates": [[[15.8903503, -3.9848208, 0.0], [15.8917236, -3.9848208, 0.0], [15.8917236, -3.9820809, 0.0], [15.8903503, -3.9820809, 0.0], [15.8903503, -3.9848208, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 866}, "geometry": {"type": "Polygon", "coordinates": [[[15.7928467, -3.9875608, 0.0], [15.79422, -3.9875608, 0.0], [15.79422, -3.9861908, 0.0], [15.7928467, -3.9861908, 0.0], [15.7928467, -3.9875608, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 897}, "geometry": {"type": "Polygon", "coordinates": [[[15.7983398, -3.9889307, 0.0], [15.8010864, -3.9889307, 0.0], [15.8010864, -3.9875608, 0.0], [15.7983398, -3.9875608, 0.0], [15.7983398, -3.9889307, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 917}, "geometry": {"type": "Polygon", "coordinates": [[[15.803833, -3.9889307, 0.0], [15.8093262, -3.9889307, 0.0], [15.8093262, -3.9861908, 0.0], [15.803833, -3.9861908, 0.0], [15.803833, -3.9889307, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 981}, "geometry": {"type": "Polygon", "coordinates": [[[15.8175659, -3.9875608, 0.0], [15.8230591, -3.9875608, 0.0], [15.8230591, -3.9848208, 0.0], [15.8175659, -3.9848208, 0.0], [15.8175659, -3.9875608, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1451}, "geometry": {"type": "Polygon", "coordinates": [[[15.9109497, -3.9889307, 0.0], [15.912323, -3.9889307, 0.0], [15.912323, -3.9875608, 0.0], [15.9109497, -3.9875608, 0.0], [15.9109497, -3.9889307, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1465}, "geometry": {"type": "Polygon", "coordinates": [[[15.9150696, -3.9916706, 0.0], [15.921936, -3.9916706, 0.0], [15.921936, -3.9848208, 0.0], [15.9150696, -3.9848208, 0.0], [15.9150696, -3.9916706, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1514}, "geometry": {"type": "Polygon", "coordinates": [[[15.9274292, -3.9889307, 0.0], [15.9288025, -3.9889307, 0.0], [15.9288025, -3.9875608, 0.0], [15.9274292, -3.9875608, 0.0], [15.9274292, -3.9889307, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1528}, "geometry": {"type": "Polygon", "coordinates": [[[15.9315491, -3.9875608, 0.0], [15.9329224, -3.9875608, 0.0], [15.9329224, -3.9861908, 0.0], [15.9315491, -3.9861908, 0.0], [15.9315491, -3.9875608, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 640}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -3.9930406, 0.0], [15.7543945, -3.9930406, 0.0], [15.7543945, -3.9916706, 0.0], [15.7530212, -3.9916706, 0.0], [15.7530212, -3.9930406, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1507}, "geometry": {"type": "Polygon", "coordinates": [[[15.9246826, -3.9998904, 0.0], [15.9356689, -3.9998904, 0.0], [15.9356689, -3.9916706, 0.0], [15.9246826, -3.9916706, 0.0], [15.9246826, -3.9998904, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1566}, "geometry": {"type": "Polygon", "coordinates": [[[15.9466553, -3.9985204, 0.0], [15.9535217, -3.9985204, 0.0], [15.9535217, -3.9903007, 0.0], [15.9466553, -3.9903007, 0.0], [15.9466553, -3.9985204, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 418}, "geometry": {"type": "Polygon", "coordinates": [[[15.7159424, -3.9985204, 0.0], [15.7241821, -3.9985204, 0.0], [15.7241821, -3.9957805, 0.0], [15.7159424, -3.9957805, 0.0], [15.7159424, -3.9985204, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 486}, "geometry": {"type": "Polygon", "coordinates": [[[15.728302, -3.9985204, 0.0], [15.7296753, -3.9985204, 0.0], [15.7296753, -3.9944106, 0.0], [15.728302, -3.9944106, 0.0], [15.728302, -3.9985204, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 511}, "geometry": {"type": "Polygon", "coordinates": [[[15.7337952, -3.9944106, 0.0], [15.7365417, -3.9944106, 0.0], [15.7365417, -3.9930406, 0.0], [15.7337952, -3.9930406, 0.0], [15.7337952, -3.9944106, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 569}, "geometry": {"type": "Polygon", "coordinates": [[[15.7434082, -3.9944106, 0.0], [15.7447815, -3.9944106, 0.0], [15.7447815, -3.9930406, 0.0], [15.7434082, -3.9930406, 0.0], [15.7434082, -3.9944106, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 825}, "geometry": {"type": "Polygon", "coordinates": [[[15.7859802, -3.9985204, 0.0], [15.7873535, -3.9985204, 0.0], [15.7873535, -3.9957805, 0.0], [15.7859802, -3.9957805, 0.0], [15.7859802, -3.9985204, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 858}, "geometry": {"type": "Polygon", "coordinates": [[[15.7914734, -3.9971505, 0.0], [15.7969666, -3.9971505, 0.0], [15.7969666, -3.9930406, 0.0], [15.7914734, -3.9930406, 0.0], [15.7914734, -3.9971505, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1257}, "geometry": {"type": "Polygon", "coordinates": [[[15.8711243, -3.9957805, 0.0], [15.8724976, -3.9957805, 0.0], [15.8724976, -3.9944106, 0.0], [15.8711243, -3.9944106, 0.0], [15.8711243, -3.9957805, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1274}, "geometry": {"type": "Polygon", "coordinates": [[[15.8752441, -3.9971505, 0.0], [15.879364, -3.9971505, 0.0], [15.879364, -3.9930406, 0.0], [15.8752441, -3.9930406, 0.0], [15.8752441, -3.9971505, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1339}, "geometry": {"type": "Polygon", "coordinates": [[[15.8862305, -3.9971505, 0.0], [15.8889771, -3.9971505, 0.0], [15.8889771, -3.9957805, 0.0], [15.8862305, -3.9957805, 0.0], [15.8862305, -3.9971505, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 326}, "geometry": {"type": "Polygon", "coordinates": [[[15.6967163, -4.0012603, 0.0], [15.7008362, -4.0012603, 0.0], [15.7008362, -3.9985204, 0.0], [15.6967163, -3.9985204, 0.0], [15.6967163, -4.0012603, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 363}, "geometry": {"type": "Polygon", "coordinates": [[[15.7049561, -3.9998904, 0.0], [15.7090759, -3.9998904, 0.0], [15.7090759, -3.9971505, 0.0], [15.7049561, -3.9971505, 0.0], [15.7049561, -3.9998904, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 403}, "geometry": {"type": "Polygon", "coordinates": [[[15.7118225, -3.9985204, 0.0], [15.7131958, -3.9985204, 0.0], [15.7131958, -3.9971505, 0.0], [15.7118225, -3.9971505, 0.0], [15.7118225, -3.9985204, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 849}, "geometry": {"type": "Polygon", "coordinates": [[[15.7901001, -4.0012603, 0.0], [15.79422, -4.0012603, 0.0], [15.79422, -3.9985204, 0.0], [15.7901001, -3.9985204, 0.0], [15.7901001, -4.0012603, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1117}, "geometry": {"type": "Polygon", "coordinates": [[[15.846405, -4.0012603, 0.0], [15.8477783, -4.0012603, 0.0], [15.8477783, -3.9998904, 0.0], [15.846405, -3.9998904, 0.0], [15.846405, -4.0012603, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1200}, "geometry": {"type": "Polygon", "coordinates": [[[15.8615112, -3.9998904, 0.0], [15.8628845, -3.9998904, 0.0], [15.8628845, -3.9985204, 0.0], [15.8615112, -3.9985204, 0.0], [15.8615112, -3.9998904, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1457}, "geometry": {"type": "Polygon", "coordinates": [[[15.9136963, -4.0012603, 0.0], [15.9178162, -4.0012603, 0.0], [15.9178162, -3.9985204, 0.0], [15.9136963, -3.9985204, 0.0], [15.9136963, -4.0012603, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1537}, "geometry": {"type": "Polygon", "coordinates": [[[15.9342957, -4.0053701, 0.0], [15.9411621, -4.0053701, 0.0], [15.9411621, -3.9985204, 0.0], [15.9342957, -3.9985204, 0.0], [15.9342957, -4.0053701, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 272}, "geometry": {"type": "Polygon", "coordinates": [[[15.6843567, -4.0053701, 0.0], [15.6871033, -4.0053701, 0.0], [15.6871033, -4.0026302, 0.0], [15.6843567, -4.0026302, 0.0], [15.6843567, -4.0053701, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 307}, "geometry": {"type": "Polygon", "coordinates": [[[15.6925964, -4.0026302, 0.0], [15.6939697, -4.0026302, 0.0], [15.6939697, -4.0012603, 0.0], [15.6925964, -4.0012603, 0.0], [15.6925964, -4.0026302, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 233}, "geometry": {"type": "Polygon", "coordinates": [[[15.6733704, -4.00811, 0.0], [15.6761169, -4.00811, 0.0], [15.6761169, -4.0067401, 0.0], [15.6733704, -4.0067401, 0.0], [15.6733704, -4.00811, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1087}, "geometry": {"type": "Polygon", "coordinates": [[[15.8395386, -4.0067401, 0.0], [15.8409119, -4.0067401, 0.0], [15.8409119, -4.0053701, 0.0], [15.8395386, -4.0053701, 0.0], [15.8395386, -4.0067401, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1443}, "geometry": {"type": "Polygon", "coordinates": [[[15.9082031, -4.0067401, 0.0], [15.9095764, -4.0067401, 0.0], [15.9095764, -4.0053701, 0.0], [15.9082031, -4.0053701, 0.0], [15.9082031, -4.0067401, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 197}, "geometry": {"type": "Polygon", "coordinates": [[[15.6568909, -4.0122198, 0.0], [15.6582642, -4.0122198, 0.0], [15.6582642, -4.0108499, 0.0], [15.6568909, -4.0108499, 0.0], [15.6568909, -4.0122198, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 139}, "geometry": {"type": "Polygon", "coordinates": [[[15.6321716, -4.0218092, 0.0], [15.6459045, -4.0218092, 0.0], [15.6459045, -4.0135897, 0.0], [15.6321716, -4.0135897, 0.0], [15.6321716, -4.0218092, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 179}, "geometry": {"type": "Polygon", "coordinates": [[[15.6486511, -4.0149596, 0.0], [15.6500244, -4.0149596, 0.0], [15.6500244, -4.0135897, 0.0], [15.6486511, -4.0135897, 0.0], [15.6486511, -4.0149596, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 390}, "geometry": {"type": "Polygon", "coordinates": [[[15.7104492, -4.0149596, 0.0], [15.7118225, -4.0149596, 0.0], [15.7118225, -4.0135897, 0.0], [15.7104492, -4.0135897, 0.0], [15.7104492, -4.0149596, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 999}, "geometry": {"type": "Polygon", "coordinates": [[[15.8203125, -4.0163295, 0.0], [15.8216858, -4.0163295, 0.0], [15.8216858, -4.0149596, 0.0], [15.8203125, -4.0149596, 0.0], [15.8203125, -4.0163295, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1197}, "geometry": {"type": "Polygon", "coordinates": [[[15.8601379, -4.0163295, 0.0], [15.8615112, -4.0163295, 0.0], [15.8615112, -4.0135897, 0.0], [15.8601379, -4.0135897, 0.0], [15.8601379, -4.0163295, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1340}, "geometry": {"type": "Polygon", "coordinates": [[[15.8862305, -4.0176995, 0.0], [15.8876038, -4.0176995, 0.0], [15.8876038, -4.0163295, 0.0], [15.8862305, -4.0163295, 0.0], [15.8862305, -4.0176995, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1368}, "geometry": {"type": "Polygon", "coordinates": [[[15.8917236, -4.0149596, 0.0], [15.8930969, -4.0149596, 0.0], [15.8930969, -4.0135897, 0.0], [15.8917236, -4.0135897, 0.0], [15.8917236, -4.0149596, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1458}, "geometry": {"type": "Polygon", "coordinates": [[[15.9136963, -4.0163295, 0.0], [15.9150696, -4.0163295, 0.0], [15.9150696, -4.0135897, 0.0], [15.9136963, -4.0135897, 0.0], [15.9136963, -4.0163295, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 327}, "geometry": {"type": "Polygon", "coordinates": [[[15.6967163, -4.0218092, 0.0], [15.6994629, -4.0218092, 0.0], [15.6994629, -4.0190694, 0.0], [15.6967163, -4.0190694, 0.0], [15.6967163, -4.0218092, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 819}, "geometry": {"type": "Polygon", "coordinates": [[[15.7846069, -4.0218092, 0.0], [15.7859802, -4.0218092, 0.0], [15.7859802, -4.0190694, 0.0], [15.7846069, -4.0190694, 0.0], [15.7846069, -4.0218092, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1049}, "geometry": {"type": "Polygon", "coordinates": [[[15.8299255, -4.0190694, 0.0], [15.8312988, -4.0190694, 0.0], [15.8312988, -4.0176995, 0.0], [15.8299255, -4.0176995, 0.0], [15.8299255, -4.0190694, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1223}, "geometry": {"type": "Polygon", "coordinates": [[[15.8656311, -4.0204393, 0.0], [15.8683777, -4.0204393, 0.0], [15.8683777, -4.0176995, 0.0], [15.8656311, -4.0176995, 0.0], [15.8656311, -4.0204393, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1379}, "geometry": {"type": "Polygon", "coordinates": [[[15.8930969, -4.0204393, 0.0], [15.8944702, -4.0204393, 0.0], [15.8944702, -4.0190694, 0.0], [15.8930969, -4.0190694, 0.0], [15.8930969, -4.0204393, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1488}, "geometry": {"type": "Polygon", "coordinates": [[[15.921936, -4.0218092, 0.0], [15.9233093, -4.0218092, 0.0], [15.9233093, -4.0204393, 0.0], [15.921936, -4.0204393, 0.0], [15.921936, -4.0218092, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 94}, "geometry": {"type": "Polygon", "coordinates": [[[15.6143188, -4.0259189, 0.0], [15.6184387, -4.0259189, 0.0], [15.6184387, -4.024549, 0.0], [15.6143188, -4.024549, 0.0], [15.6143188, -4.0259189, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 109}, "geometry": {"type": "Polygon", "coordinates": [[[15.6211853, -4.0259189, 0.0], [15.6253052, -4.0259189, 0.0], [15.6253052, -4.0231791, 0.0], [15.6211853, -4.0231791, 0.0], [15.6211853, -4.0259189, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 203}, "geometry": {"type": "Polygon", "coordinates": [[[15.6596375, -4.024549, 0.0], [15.6610107, -4.024549, 0.0], [15.6610107, -4.0231791, 0.0], [15.6596375, -4.0231791, 0.0], [15.6596375, -4.024549, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 218}, "geometry": {"type": "Polygon", "coordinates": [[[15.6678772, -4.024549, 0.0], [15.6692505, -4.024549, 0.0], [15.6692505, -4.0231791, 0.0], [15.6678772, -4.0231791, 0.0], [15.6678772, -4.024549, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1005}, "geometry": {"type": "Polygon", "coordinates": [[[15.8216858, -4.024549, 0.0], [15.8230591, -4.024549, 0.0], [15.8230591, -4.0231791, 0.0], [15.8216858, -4.0231791, 0.0], [15.8216858, -4.024549, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1178}, "geometry": {"type": "Polygon", "coordinates": [[[15.8573914, -4.024549, 0.0], [15.8615112, -4.024549, 0.0], [15.8615112, -4.0218092, 0.0], [15.8573914, -4.0218092, 0.0], [15.8573914, -4.024549, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1215}, "geometry": {"type": "Polygon", "coordinates": [[[15.8642578, -4.0259189, 0.0], [15.8656311, -4.0259189, 0.0], [15.8656311, -4.024549, 0.0], [15.8642578, -4.024549, 0.0], [15.8642578, -4.0259189, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1304}, "geometry": {"type": "Polygon", "coordinates": [[[15.8807373, -4.024549, 0.0], [15.8821106, -4.024549, 0.0], [15.8821106, -4.0218092, 0.0], [15.8807373, -4.0218092, 0.0], [15.8807373, -4.024549, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1508}, "geometry": {"type": "Polygon", "coordinates": [[[15.9260559, -4.0272888, 0.0], [15.9288025, -4.0272888, 0.0], [15.9288025, -4.024549, 0.0], [15.9260559, -4.024549, 0.0], [15.9260559, -4.0272888, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 70}, "geometry": {"type": "Polygon", "coordinates": [[[15.5978394, -4.0313985, 0.0], [15.6060791, -4.0313985, 0.0], [15.6060791, -4.0272888, 0.0], [15.5978394, -4.0272888, 0.0], [15.5978394, -4.0313985, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 208}, "geometry": {"type": "Polygon", "coordinates": [[[15.662384, -4.0327684, 0.0], [15.6651306, -4.0327684, 0.0], [15.6651306, -4.0286587, 0.0], [15.662384, -4.0286587, 0.0], [15.662384, -4.0327684, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 308}, "geometry": {"type": "Polygon", "coordinates": [[[15.6925964, -4.0300286, 0.0], [15.6939697, -4.0300286, 0.0], [15.6939697, -4.0286587, 0.0], [15.6925964, -4.0286587, 0.0], [15.6925964, -4.0300286, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 328}, "geometry": {"type": "Polygon", "coordinates": [[[15.6967163, -4.0313985, 0.0], [15.7008362, -4.0313985, 0.0], [15.7008362, -4.0259189, 0.0], [15.6967163, -4.0259189, 0.0], [15.6967163, -4.0313985, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 391}, "geometry": {"type": "Polygon", "coordinates": [[[15.7104492, -4.0313985, 0.0], [15.7131958, -4.0313985, 0.0], [15.7131958, -4.0272888, 0.0], [15.7104492, -4.0272888, 0.0], [15.7104492, -4.0313985, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 469}, "geometry": {"type": "Polygon", "coordinates": [[[15.7241821, -4.0286587, 0.0], [15.7255554, -4.0286587, 0.0], [15.7255554, -4.0259189, 0.0], [15.7241821, -4.0259189, 0.0], [15.7241821, -4.0286587, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 921}, "geometry": {"type": "Polygon", "coordinates": [[[15.8052063, -4.0300286, 0.0], [15.8065796, -4.0300286, 0.0], [15.8065796, -4.0286587, 0.0], [15.8052063, -4.0286587, 0.0], [15.8052063, -4.0300286, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1295}, "geometry": {"type": "Polygon", "coordinates": [[[15.879364, -4.0300286, 0.0], [15.8807373, -4.0300286, 0.0], [15.8807373, -4.0286587, 0.0], [15.879364, -4.0286587, 0.0], [15.879364, -4.0300286, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1544}, "geometry": {"type": "Polygon", "coordinates": [[[15.9370422, -4.0286587, 0.0], [15.9384155, -4.0286587, 0.0], [15.9384155, -4.0272888, 0.0], [15.9370422, -4.0272888, 0.0], [15.9370422, -4.0286587, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 67}, "geometry": {"type": "Polygon", "coordinates": [[[15.5923462, -4.0341383, 0.0], [15.5937195, -4.0341383, 0.0], [15.5937195, -4.0327684, 0.0], [15.5923462, -4.0327684, 0.0], [15.5923462, -4.0341383, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 285}, "geometry": {"type": "Polygon", "coordinates": [[[15.6871033, -4.0341383, 0.0], [15.6884766, -4.0341383, 0.0], [15.6884766, -4.0327684, 0.0], [15.6871033, -4.0327684, 0.0], [15.6871033, -4.0341383, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 316}, "geometry": {"type": "Polygon", "coordinates": [[[15.6939697, -4.0341383, 0.0], [15.695343, -4.0341383, 0.0], [15.695343, -4.0327684, 0.0], [15.6939697, -4.0327684, 0.0], [15.6939697, -4.0341383, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 547}, "geometry": {"type": "Polygon", "coordinates": [[[15.7392883, -4.0341383, 0.0], [15.7406616, -4.0341383, 0.0], [15.7406616, -4.0327684, 0.0], [15.7392883, -4.0327684, 0.0], [15.7392883, -4.0341383, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 731}, "geometry": {"type": "Polygon", "coordinates": [[[15.7653809, -4.0355082, 0.0], [15.7681274, -4.0355082, 0.0], [15.7681274, -4.0313985, 0.0], [15.7653809, -4.0313985, 0.0], [15.7653809, -4.0355082, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1000}, "geometry": {"type": "Polygon", "coordinates": [[[15.8203125, -4.0341383, 0.0], [15.8216858, -4.0341383, 0.0], [15.8216858, -4.0327684, 0.0], [15.8203125, -4.0327684, 0.0], [15.8203125, -4.0341383, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1076}, "geometry": {"type": "Polygon", "coordinates": [[[15.8354187, -4.0341383, 0.0], [15.836792, -4.0341383, 0.0], [15.836792, -4.0327684, 0.0], [15.8354187, -4.0327684, 0.0], [15.8354187, -4.0341383, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1088}, "geometry": {"type": "Polygon", "coordinates": [[[15.8395386, -4.0368781, 0.0], [15.8450317, -4.0368781, 0.0], [15.8450317, -4.0313985, 0.0], [15.8395386, -4.0313985, 0.0], [15.8395386, -4.0368781, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1179}, "geometry": {"type": "Polygon", "coordinates": [[[15.8573914, -4.0327684, 0.0], [15.8587646, -4.0327684, 0.0], [15.8587646, -4.0313985, 0.0], [15.8573914, -4.0313985, 0.0], [15.8573914, -4.0327684, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1264}, "geometry": {"type": "Polygon", "coordinates": [[[15.8724976, -4.0327684, 0.0], [15.8752441, -4.0327684, 0.0], [15.8752441, -4.0300286, 0.0], [15.8724976, -4.0300286, 0.0], [15.8724976, -4.0327684, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1324}, "geometry": {"type": "Polygon", "coordinates": [[[15.8834839, -4.0327684, 0.0], [15.8903503, -4.0327684, 0.0], [15.8903503, -4.0300286, 0.0], [15.8834839, -4.0300286, 0.0], [15.8834839, -4.0327684, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1476}, "geometry": {"type": "Polygon", "coordinates": [[[15.9178162, -4.0327684, 0.0], [15.9191895, -4.0327684, 0.0], [15.9191895, -4.0313985, 0.0], [15.9178162, -4.0313985, 0.0], [15.9178162, -4.0327684, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 140}, "geometry": {"type": "Polygon", "coordinates": [[[15.6321716, -4.0382479, 0.0], [15.6335449, -4.0382479, 0.0], [15.6335449, -4.0355082, 0.0], [15.6321716, -4.0355082, 0.0], [15.6321716, -4.0382479, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 582}, "geometry": {"type": "Polygon", "coordinates": [[[15.7447815, -4.0368781, 0.0], [15.7461548, -4.0368781, 0.0], [15.7461548, -4.0355082, 0.0], [15.7447815, -4.0355082, 0.0], [15.7447815, -4.0368781, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 761}, "geometry": {"type": "Polygon", "coordinates": [[[15.770874, -4.0355082, 0.0], [15.7722473, -4.0355082, 0.0], [15.7722473, -4.0341383, 0.0], [15.770874, -4.0341383, 0.0], [15.770874, -4.0355082, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1216}, "geometry": {"type": "Polygon", "coordinates": [[[15.8642578, -4.0368781, 0.0], [15.8656311, -4.0368781, 0.0], [15.8656311, -4.0355082, 0.0], [15.8642578, -4.0355082, 0.0], [15.8642578, -4.0368781, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1444}, "geometry": {"type": "Polygon", "coordinates": [[[15.9082031, -4.0382479, 0.0], [15.9095764, -4.0382479, 0.0], [15.9095764, -4.0368781, 0.0], [15.9082031, -4.0368781, 0.0], [15.9082031, -4.0382479, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 141}, "geometry": {"type": "Polygon", "coordinates": [[[15.6321716, -4.0478371, 0.0], [15.6362915, -4.0478371, 0.0], [15.6362915, -4.0409877, 0.0], [15.6321716, -4.0409877, 0.0], [15.6321716, -4.0478371, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 214}, "geometry": {"type": "Polygon", "coordinates": [[[15.6651306, -4.0437275, 0.0], [15.6733704, -4.0437275, 0.0], [15.6733704, -4.0396178, 0.0], [15.6651306, -4.0396178, 0.0], [15.6651306, -4.0437275, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 248}, "geometry": {"type": "Polygon", "coordinates": [[[15.6761169, -4.0423576, 0.0], [15.6802368, -4.0423576, 0.0], [15.6802368, -4.0396178, 0.0], [15.6761169, -4.0396178, 0.0], [15.6761169, -4.0423576, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 268}, "geometry": {"type": "Polygon", "coordinates": [[[15.6829834, -4.0423576, 0.0], [15.6843567, -4.0423576, 0.0], [15.6843567, -4.0409877, 0.0], [15.6829834, -4.0409877, 0.0], [15.6829834, -4.0423576, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 375}, "geometry": {"type": "Polygon", "coordinates": [[[15.7077026, -4.0423576, 0.0], [15.7131958, -4.0423576, 0.0], [15.7131958, -4.0382479, 0.0], [15.7077026, -4.0382479, 0.0], [15.7077026, -4.0423576, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 462}, "geometry": {"type": "Polygon", "coordinates": [[[15.7228088, -4.0423576, 0.0], [15.7255554, -4.0423576, 0.0], [15.7255554, -4.0409877, 0.0], [15.7228088, -4.0409877, 0.0], [15.7228088, -4.0423576, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 937}, "geometry": {"type": "Polygon", "coordinates": [[[15.8079529, -4.0409877, 0.0], [15.8093262, -4.0409877, 0.0], [15.8093262, -4.0396178, 0.0], [15.8079529, -4.0396178, 0.0], [15.8079529, -4.0409877, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1066}, "geometry": {"type": "Polygon", "coordinates": [[[15.8340454, -4.0423576, 0.0], [15.8381653, -4.0423576, 0.0], [15.8381653, -4.0409877, 0.0], [15.8340454, -4.0409877, 0.0], [15.8340454, -4.0423576, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1248}, "geometry": {"type": "Polygon", "coordinates": [[[15.8683777, -4.0437275, 0.0], [15.8711243, -4.0437275, 0.0], [15.8711243, -4.0382479, 0.0], [15.8683777, -4.0382479, 0.0], [15.8683777, -4.0437275, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1402}, "geometry": {"type": "Polygon", "coordinates": [[[15.8972168, -4.0533165, 0.0], [15.90271, -4.0533165, 0.0], [15.90271, -4.0409877, 0.0], [15.8972168, -4.0409877, 0.0], [15.8972168, -4.0533165, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 295}, "geometry": {"type": "Polygon", "coordinates": [[[15.6898499, -4.0464672, 0.0], [15.6939697, -4.0464672, 0.0], [15.6939697, -4.0437275, 0.0], [15.6898499, -4.0437275, 0.0], [15.6898499, -4.0464672, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 448}, "geometry": {"type": "Polygon", "coordinates": [[[15.7200623, -4.0464672, 0.0], [15.7214355, -4.0464672, 0.0], [15.7214355, -4.0450973, 0.0], [15.7200623, -4.0450973, 0.0], [15.7200623, -4.0464672, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 562}, "geometry": {"type": "Polygon", "coordinates": [[[15.7420349, -4.0478371, 0.0], [15.7516479, -4.0478371, 0.0], [15.7516479, -4.0423576, 0.0], [15.7420349, -4.0423576, 0.0], [15.7420349, -4.0478371, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 867}, "geometry": {"type": "Polygon", "coordinates": [[[15.7928467, -4.0437275, 0.0], [15.79422, -4.0437275, 0.0], [15.79422, -4.0423576, 0.0], [15.7928467, -4.0423576, 0.0], [15.7928467, -4.0437275, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 882}, "geometry": {"type": "Polygon", "coordinates": [[[15.7955933, -4.0478371, 0.0], [15.7997131, -4.0478371, 0.0], [15.7997131, -4.0437275, 0.0], [15.7955933, -4.0437275, 0.0], [15.7955933, -4.0478371, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 949}, "geometry": {"type": "Polygon", "coordinates": [[[15.8106995, -4.0450973, 0.0], [15.8120728, -4.0450973, 0.0], [15.8120728, -4.0437275, 0.0], [15.8106995, -4.0437275, 0.0], [15.8106995, -4.0450973, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1035}, "geometry": {"type": "Polygon", "coordinates": [[[15.827179, -4.0464672, 0.0], [15.8285522, -4.0464672, 0.0], [15.8285522, -4.0437275, 0.0], [15.827179, -4.0437275, 0.0], [15.827179, -4.0464672, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1096}, "geometry": {"type": "Polygon", "coordinates": [[[15.8409119, -4.0437275, 0.0], [15.8422852, -4.0437275, 0.0], [15.8422852, -4.0423576, 0.0], [15.8409119, -4.0423576, 0.0], [15.8409119, -4.0437275, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1118}, "geometry": {"type": "Polygon", "coordinates": [[[15.846405, -4.0464672, 0.0], [15.8477783, -4.0464672, 0.0], [15.8477783, -4.0450973, 0.0], [15.846405, -4.0450973, 0.0], [15.846405, -4.0464672, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1162}, "geometry": {"type": "Polygon", "coordinates": [[[15.8518982, -4.0519466, 0.0], [15.8615112, -4.0519466, 0.0], [15.8615112, -4.0423576, 0.0], [15.8518982, -4.0423576, 0.0], [15.8518982, -4.0519466, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 152}, "geometry": {"type": "Polygon", "coordinates": [[[15.6390381, -4.0505768, 0.0], [15.6404114, -4.0505768, 0.0], [15.6404114, -4.0478371, 0.0], [15.6390381, -4.0478371, 0.0], [15.6390381, -4.0505768, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 234}, "geometry": {"type": "Polygon", "coordinates": [[[15.6733704, -4.0478371, 0.0], [15.6747437, -4.0478371, 0.0], [15.6747437, -4.0464672, 0.0], [15.6733704, -4.0464672, 0.0], [15.6733704, -4.0478371, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 264}, "geometry": {"type": "Polygon", "coordinates": [[[15.6816101, -4.0519466, 0.0], [15.6898499, -4.0519466, 0.0], [15.6898499, -4.0478371, 0.0], [15.6816101, -4.0478371, 0.0], [15.6816101, -4.0519466, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 477}, "geometry": {"type": "Polygon", "coordinates": [[[15.7269287, -4.0505768, 0.0], [15.7310486, -4.0505768, 0.0], [15.7310486, -4.0464672, 0.0], [15.7269287, -4.0464672, 0.0], [15.7269287, -4.0505768, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 950}, "geometry": {"type": "Polygon", "coordinates": [[[15.8106995, -4.0492069, 0.0], [15.8120728, -4.0492069, 0.0], [15.8120728, -4.0478371, 0.0], [15.8106995, -4.0478371, 0.0], [15.8106995, -4.0492069, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 982}, "geometry": {"type": "Polygon", "coordinates": [[[15.8175659, -4.0492069, 0.0], [15.8203125, -4.0492069, 0.0], [15.8203125, -4.0464672, 0.0], [15.8175659, -4.0464672, 0.0], [15.8175659, -4.0492069, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1067}, "geometry": {"type": "Polygon", "coordinates": [[[15.8340454, -4.0505768, 0.0], [15.8354187, -4.0505768, 0.0], [15.8354187, -4.0492069, 0.0], [15.8340454, -4.0492069, 0.0], [15.8340454, -4.0505768, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1249}, "geometry": {"type": "Polygon", "coordinates": [[[15.869751, -4.0519466, 0.0], [15.8724976, -4.0519466, 0.0], [15.8724976, -4.0492069, 0.0], [15.869751, -4.0492069, 0.0], [15.869751, -4.0519466, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1315}, "geometry": {"type": "Polygon", "coordinates": [[[15.8821106, -4.0505768, 0.0], [15.8834839, -4.0505768, 0.0], [15.8834839, -4.0492069, 0.0], [15.8821106, -4.0492069, 0.0], [15.8821106, -4.0505768, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 53}, "geometry": {"type": "Polygon", "coordinates": [[[15.5786133, -4.0519466, 0.0], [15.5799866, -4.0519466, 0.0], [15.5799866, -4.0505768, 0.0], [15.5786133, -4.0505768, 0.0], [15.5786133, -4.0519466, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 240}, "geometry": {"type": "Polygon", "coordinates": [[[15.6747437, -4.0560562, 0.0], [15.6774902, -4.0560562, 0.0], [15.6774902, -4.0519466, 0.0], [15.6747437, -4.0519466, 0.0], [15.6747437, -4.0560562, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 868}, "geometry": {"type": "Polygon", "coordinates": [[[15.7928467, -4.0519466, 0.0], [15.7955933, -4.0519466, 0.0], [15.7955933, -4.0505768, 0.0], [15.7928467, -4.0505768, 0.0], [15.7928467, -4.0519466, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1387}, "geometry": {"type": "Polygon", "coordinates": [[[15.8944702, -4.0546864, 0.0], [15.8972168, -4.0546864, 0.0], [15.8972168, -4.0533165, 0.0], [15.8944702, -4.0533165, 0.0], [15.8944702, -4.0546864, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 160}, "geometry": {"type": "Polygon", "coordinates": [[[15.6417847, -4.0587959, 0.0], [15.6445312, -4.0587959, 0.0], [15.6445312, -4.0546864, 0.0], [15.6417847, -4.0546864, 0.0], [15.6417847, -4.0587959, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 290}, "geometry": {"type": "Polygon", "coordinates": [[[15.6884766, -4.0601658, 0.0], [15.6980896, -4.0601658, 0.0], [15.6980896, -4.0560562, 0.0], [15.6884766, -4.0560562, 0.0], [15.6884766, -4.0601658, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 709}, "geometry": {"type": "Polygon", "coordinates": [[[15.7626343, -4.0615356, 0.0], [15.7667542, -4.0615356, 0.0], [15.7667542, -4.0574261, 0.0], [15.7626343, -4.0574261, 0.0], [15.7626343, -4.0615356, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 883}, "geometry": {"type": "Polygon", "coordinates": [[[15.7955933, -4.0587959, 0.0], [15.7969666, -4.0587959, 0.0], [15.7969666, -4.0574261, 0.0], [15.7955933, -4.0574261, 0.0], [15.7955933, -4.0587959, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 903}, "geometry": {"type": "Polygon", "coordinates": [[[15.7997131, -4.0587959, 0.0], [15.803833, -4.0587959, 0.0], [15.803833, -4.0546864, 0.0], [15.7997131, -4.0546864, 0.0], [15.7997131, -4.0587959, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 928}, "geometry": {"type": "Polygon", "coordinates": [[[15.8065796, -4.0587959, 0.0], [15.8079529, -4.0587959, 0.0], [15.8079529, -4.0574261, 0.0], [15.8065796, -4.0574261, 0.0], [15.8065796, -4.0587959, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1036}, "geometry": {"type": "Polygon", "coordinates": [[[15.827179, -4.0601658, 0.0], [15.8299255, -4.0601658, 0.0], [15.8299255, -4.0574261, 0.0], [15.827179, -4.0574261, 0.0], [15.827179, -4.0601658, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1143}, "geometry": {"type": "Polygon", "coordinates": [[[15.8518982, -4.0587959, 0.0], [15.8546448, -4.0587959, 0.0], [15.8546448, -4.0574261, 0.0], [15.8518982, -4.0574261, 0.0], [15.8518982, -4.0587959, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1459}, "geometry": {"type": "Polygon", "coordinates": [[[15.9136963, -4.0574261, 0.0], [15.9150696, -4.0574261, 0.0], [15.9150696, -4.0560562, 0.0], [15.9136963, -4.0560562, 0.0], [15.9136963, -4.0574261, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 63}, "geometry": {"type": "Polygon", "coordinates": [[[15.5882263, -4.0629054, 0.0], [15.5895996, -4.0629054, 0.0], [15.5895996, -4.0615356, 0.0], [15.5882263, -4.0615356, 0.0], [15.5882263, -4.0629054, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 392}, "geometry": {"type": "Polygon", "coordinates": [[[15.7104492, -4.0615356, 0.0], [15.7118225, -4.0615356, 0.0], [15.7118225, -4.0601658, 0.0], [15.7104492, -4.0601658, 0.0], [15.7104492, -4.0615356, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 532}, "geometry": {"type": "Polygon", "coordinates": [[[15.7365417, -4.0642753, 0.0], [15.7406616, -4.0642753, 0.0], [15.7406616, -4.0615356, 0.0], [15.7365417, -4.0615356, 0.0], [15.7365417, -4.0642753, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 570}, "geometry": {"type": "Polygon", "coordinates": [[[15.7434082, -4.0615356, 0.0], [15.7461548, -4.0615356, 0.0], [15.7461548, -4.0587959, 0.0], [15.7434082, -4.0587959, 0.0], [15.7434082, -4.0615356, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 663}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.0629054, 0.0], [15.7571411, -4.0629054, 0.0], [15.7571411, -4.0615356, 0.0], [15.7557678, -4.0615356, 0.0], [15.7557678, -4.0629054, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 938}, "geometry": {"type": "Polygon", "coordinates": [[[15.8079529, -4.0656451, 0.0], [15.8106995, -4.0656451, 0.0], [15.8106995, -4.0615356, 0.0], [15.8079529, -4.0615356, 0.0], [15.8079529, -4.0656451, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 972}, "geometry": {"type": "Polygon", "coordinates": [[[15.8161926, -4.0615356, 0.0], [15.8175659, -4.0615356, 0.0], [15.8175659, -4.0587959, 0.0], [15.8161926, -4.0587959, 0.0], [15.8161926, -4.0615356, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 983}, "geometry": {"type": "Polygon", "coordinates": [[[15.8175659, -4.0656451, 0.0], [15.8230591, -4.0656451, 0.0], [15.8230591, -4.0615356, 0.0], [15.8175659, -4.0615356, 0.0], [15.8175659, -4.0656451, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1068}, "geometry": {"type": "Polygon", "coordinates": [[[15.8340454, -4.0601658, 0.0], [15.8354187, -4.0601658, 0.0], [15.8354187, -4.0587959, 0.0], [15.8340454, -4.0587959, 0.0], [15.8340454, -4.0601658, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1097}, "geometry": {"type": "Polygon", "coordinates": [[[15.8409119, -4.0601658, 0.0], [15.8422852, -4.0601658, 0.0], [15.8422852, -4.0587959, 0.0], [15.8409119, -4.0587959, 0.0], [15.8409119, -4.0601658, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1131}, "geometry": {"type": "Polygon", "coordinates": [[[15.8491516, -4.0642753, 0.0], [15.8532715, -4.0642753, 0.0], [15.8532715, -4.0615356, 0.0], [15.8491516, -4.0615356, 0.0], [15.8491516, -4.0642753, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1316}, "geometry": {"type": "Polygon", "coordinates": [[[15.8821106, -4.0656451, 0.0], [15.8862305, -4.0656451, 0.0], [15.8862305, -4.0587959, 0.0], [15.8821106, -4.0587959, 0.0], [15.8821106, -4.0656451, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1394}, "geometry": {"type": "Polygon", "coordinates": [[[15.8958435, -4.0601658, 0.0], [15.8972168, -4.0601658, 0.0], [15.8972168, -4.0587959, 0.0], [15.8958435, -4.0587959, 0.0], [15.8958435, -4.0601658, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 172}, "geometry": {"type": "Polygon", "coordinates": [[[15.6472778, -4.0656451, 0.0], [15.6500244, -4.0656451, 0.0], [15.6500244, -4.0642753, 0.0], [15.6472778, -4.0642753, 0.0], [15.6472778, -4.0656451, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 359}, "geometry": {"type": "Polygon", "coordinates": [[[15.7035828, -4.0711244, 0.0], [15.7118225, -4.0711244, 0.0], [15.7118225, -4.0656451, 0.0], [15.7035828, -4.0656451, 0.0], [15.7035828, -4.0711244, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 589}, "geometry": {"type": "Polygon", "coordinates": [[[15.7461548, -4.0670149, 0.0], [15.7502747, -4.0670149, 0.0], [15.7502747, -4.0642753, 0.0], [15.7461548, -4.0642753, 0.0], [15.7461548, -4.0670149, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 641}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -4.0683848, 0.0], [15.7571411, -4.0683848, 0.0], [15.7571411, -4.0656451, 0.0], [15.7530212, -4.0656451, 0.0], [15.7530212, -4.0683848, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 702}, "geometry": {"type": "Polygon", "coordinates": [[[15.761261, -4.0656451, 0.0], [15.7626343, -4.0656451, 0.0], [15.7626343, -4.0642753, 0.0], [15.761261, -4.0642753, 0.0], [15.761261, -4.0656451, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1230}, "geometry": {"type": "Polygon", "coordinates": [[[15.8670044, -4.0642753, 0.0], [15.8683777, -4.0642753, 0.0], [15.8683777, -4.0629054, 0.0], [15.8670044, -4.0629054, 0.0], [15.8670044, -4.0642753, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1369}, "geometry": {"type": "Polygon", "coordinates": [[[15.8917236, -4.0738641, 0.0], [15.9040833, -4.0738641, 0.0], [15.9040833, -4.0642753, 0.0], [15.8917236, -4.0642753, 0.0], [15.8917236, -4.0738641, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 54}, "geometry": {"type": "Polygon", "coordinates": [[[15.5786133, -4.0738641, 0.0], [15.5827332, -4.0738641, 0.0], [15.5827332, -4.0697546, 0.0], [15.5786133, -4.0697546, 0.0], [15.5786133, -4.0738641, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 105}, "geometry": {"type": "Polygon", "coordinates": [[[15.619812, -4.0779735, 0.0], [15.6266785, -4.0779735, 0.0], [15.6266785, -4.0683848, 0.0], [15.619812, -4.0683848, 0.0], [15.619812, -4.0779735, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 463}, "geometry": {"type": "Polygon", "coordinates": [[[15.7228088, -4.0766037, 0.0], [15.7269287, -4.0766037, 0.0], [15.7269287, -4.0670149, 0.0], [15.7228088, -4.0670149, 0.0], [15.7228088, -4.0766037, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 512}, "geometry": {"type": "Polygon", "coordinates": [[[15.7337952, -4.0697546, 0.0], [15.7365417, -4.0697546, 0.0], [15.7365417, -4.0670149, 0.0], [15.7337952, -4.0670149, 0.0], [15.7337952, -4.0697546, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 991}, "geometry": {"type": "Polygon", "coordinates": [[[15.8189392, -4.0697546, 0.0], [15.8203125, -4.0697546, 0.0], [15.8203125, -4.0683848, 0.0], [15.8189392, -4.0683848, 0.0], [15.8189392, -4.0697546, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1061}, "geometry": {"type": "Polygon", "coordinates": [[[15.8326721, -4.0683848, 0.0], [15.8340454, -4.0683848, 0.0], [15.8340454, -4.0670149, 0.0], [15.8326721, -4.0670149, 0.0], [15.8326721, -4.0683848, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 393}, "geometry": {"type": "Polygon", "coordinates": [[[15.7104492, -4.0752339, 0.0], [15.7131958, -4.0752339, 0.0], [15.7131958, -4.0711244, 0.0], [15.7104492, -4.0711244, 0.0], [15.7104492, -4.0752339, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 548}, "geometry": {"type": "Polygon", "coordinates": [[[15.7392883, -4.0738641, 0.0], [15.7406616, -4.0738641, 0.0], [15.7406616, -4.0724943, 0.0], [15.7392883, -4.0724943, 0.0], [15.7392883, -4.0738641, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 695}, "geometry": {"type": "Polygon", "coordinates": [[[15.7598877, -4.0724943, 0.0], [15.761261, -4.0724943, 0.0], [15.761261, -4.0711244, 0.0], [15.7598877, -4.0711244, 0.0], [15.7598877, -4.0724943, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 820}, "geometry": {"type": "Polygon", "coordinates": [[[15.7846069, -4.0752339, 0.0], [15.7859802, -4.0752339, 0.0], [15.7859802, -4.0738641, 0.0], [15.7846069, -4.0738641, 0.0], [15.7846069, -4.0752339, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 939}, "geometry": {"type": "Polygon", "coordinates": [[[15.8079529, -4.0766037, 0.0], [15.813446, -4.0766037, 0.0], [15.813446, -4.0724943, 0.0], [15.8079529, -4.0724943, 0.0], [15.8079529, -4.0766037, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1325}, "geometry": {"type": "Polygon", "coordinates": [[[15.8834839, -4.0724943, 0.0], [15.8848572, -4.0724943, 0.0], [15.8848572, -4.0711244, 0.0], [15.8834839, -4.0711244, 0.0], [15.8834839, -4.0724943, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 205}, "geometry": {"type": "Polygon", "coordinates": [[[15.6610107, -4.0793433, 0.0], [15.662384, -4.0793433, 0.0], [15.662384, -4.0779735, 0.0], [15.6610107, -4.0779735, 0.0], [15.6610107, -4.0793433, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 449}, "geometry": {"type": "Polygon", "coordinates": [[[15.7200623, -4.0793433, 0.0], [15.7214355, -4.0793433, 0.0], [15.7214355, -4.0752339, 0.0], [15.7200623, -4.0752339, 0.0], [15.7200623, -4.0793433, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 524}, "geometry": {"type": "Polygon", "coordinates": [[[15.7351685, -4.0766037, 0.0], [15.7365417, -4.0766037, 0.0], [15.7365417, -4.0752339, 0.0], [15.7351685, -4.0752339, 0.0], [15.7351685, -4.0766037, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1250}, "geometry": {"type": "Polygon", "coordinates": [[[15.869751, -4.0779735, 0.0], [15.8738708, -4.0779735, 0.0], [15.8738708, -4.0766037, 0.0], [15.869751, -4.0766037, 0.0], [15.869751, -4.0779735, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1296}, "geometry": {"type": "Polygon", "coordinates": [[[15.879364, -4.0793433, 0.0], [15.8834839, -4.0793433, 0.0], [15.8834839, -4.0766037, 0.0], [15.879364, -4.0766037, 0.0], [15.879364, -4.0793433, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1370}, "geometry": {"type": "Polygon", "coordinates": [[[15.8917236, -4.0807132, 0.0], [15.8958435, -4.0807132, 0.0], [15.8958435, -4.0752339, 0.0], [15.8917236, -4.0752339, 0.0], [15.8917236, -4.0807132, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 36}, "geometry": {"type": "Polygon", "coordinates": [[[15.5621338, -4.0916716, 0.0], [15.567627, -4.0916716, 0.0], [15.567627, -4.082083, 0.0], [15.5621338, -4.082083, 0.0], [15.5621338, -4.0916716, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 83}, "geometry": {"type": "Polygon", "coordinates": [[[15.610199, -4.0807132, 0.0], [15.6115723, -4.0807132, 0.0], [15.6115723, -4.0793433, 0.0], [15.610199, -4.0793433, 0.0], [15.610199, -4.0807132, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 95}, "geometry": {"type": "Polygon", "coordinates": [[[15.6143188, -4.082083, 0.0], [15.6156921, -4.082083, 0.0], [15.6156921, -4.0807132, 0.0], [15.6143188, -4.0807132, 0.0], [15.6143188, -4.082083, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 170}, "geometry": {"type": "Polygon", "coordinates": [[[15.6459045, -4.0807132, 0.0], [15.6472778, -4.0807132, 0.0], [15.6472778, -4.0793433, 0.0], [15.6459045, -4.0793433, 0.0], [15.6459045, -4.0807132, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 184}, "geometry": {"type": "Polygon", "coordinates": [[[15.6500244, -4.0834528, 0.0], [15.6555176, -4.0834528, 0.0], [15.6555176, -4.0807132, 0.0], [15.6500244, -4.0807132, 0.0], [15.6500244, -4.0834528, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 222}, "geometry": {"type": "Polygon", "coordinates": [[[15.6692505, -4.0807132, 0.0], [15.6706238, -4.0807132, 0.0], [15.6706238, -4.0793433, 0.0], [15.6692505, -4.0793433, 0.0], [15.6692505, -4.0807132, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 273}, "geometry": {"type": "Polygon", "coordinates": [[[15.6843567, -4.0834528, 0.0], [15.6884766, -4.0834528, 0.0], [15.6884766, -4.0807132, 0.0], [15.6843567, -4.0807132, 0.0], [15.6843567, -4.0834528, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 599}, "geometry": {"type": "Polygon", "coordinates": [[[15.7475281, -4.0848226, 0.0], [15.7489014, -4.0848226, 0.0], [15.7489014, -4.082083, 0.0], [15.7475281, -4.082083, 0.0], [15.7475281, -4.0848226, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1026}, "geometry": {"type": "Polygon", "coordinates": [[[15.8258057, -4.0834528, 0.0], [15.8285522, -4.0834528, 0.0], [15.8285522, -4.0807132, 0.0], [15.8258057, -4.0807132, 0.0], [15.8258057, -4.0834528, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1112}, "geometry": {"type": "Polygon", "coordinates": [[[15.8450317, -4.082083, 0.0], [15.846405, -4.082083, 0.0], [15.846405, -4.0793433, 0.0], [15.8450317, -4.0793433, 0.0], [15.8450317, -4.082083, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1185}, "geometry": {"type": "Polygon", "coordinates": [[[15.8587646, -4.082083, 0.0], [15.8601379, -4.082083, 0.0], [15.8601379, -4.0807132, 0.0], [15.8587646, -4.0807132, 0.0], [15.8587646, -4.082083, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1284}, "geometry": {"type": "Polygon", "coordinates": [[[15.8766174, -4.082083, 0.0], [15.8779907, -4.082083, 0.0], [15.8779907, -4.0807132, 0.0], [15.8766174, -4.0807132, 0.0], [15.8766174, -4.082083, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 100}, "geometry": {"type": "Polygon", "coordinates": [[[15.6170654, -4.0971507, 0.0], [15.619812, -4.0971507, 0.0], [15.619812, -4.0861924, 0.0], [15.6170654, -4.0861924, 0.0], [15.6170654, -4.0971507, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 657}, "geometry": {"type": "Polygon", "coordinates": [[[15.7543945, -4.0861924, 0.0], [15.7557678, -4.0861924, 0.0], [15.7557678, -4.0848226, 0.0], [15.7543945, -4.0848226, 0.0], [15.7543945, -4.0861924, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 764}, "geometry": {"type": "Polygon", "coordinates": [[[15.7722473, -4.088932, 0.0], [15.7749939, -4.088932, 0.0], [15.7749939, -4.0848226, 0.0], [15.7722473, -4.0848226, 0.0], [15.7722473, -4.088932, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1136}, "geometry": {"type": "Polygon", "coordinates": [[[15.8505249, -4.0930413, 0.0], [15.8573914, -4.0930413, 0.0], [15.8573914, -4.0848226, 0.0], [15.8505249, -4.0848226, 0.0], [15.8505249, -4.0930413, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1240}, "geometry": {"type": "Polygon", "coordinates": [[[15.8683777, -4.088932, 0.0], [15.8724976, -4.088932, 0.0], [15.8724976, -4.0861924, 0.0], [15.8683777, -4.0861924, 0.0], [15.8683777, -4.088932, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1341}, "geometry": {"type": "Polygon", "coordinates": [[[15.8862305, -4.0875622, 0.0], [15.8903503, -4.0875622, 0.0], [15.8903503, -4.0834528, 0.0], [15.8862305, -4.0834528, 0.0], [15.8862305, -4.0875622, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 188}, "geometry": {"type": "Polygon", "coordinates": [[[15.6513977, -4.0916716, 0.0], [15.652771, -4.0916716, 0.0], [15.652771, -4.0903018, 0.0], [15.6513977, -4.0903018, 0.0], [15.6513977, -4.0916716, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 242}, "geometry": {"type": "Polygon", "coordinates": [[[15.6747437, -4.0930413, 0.0], [15.6816101, -4.0930413, 0.0], [15.6816101, -4.0875622, 0.0], [15.6747437, -4.0875622, 0.0], [15.6747437, -4.0930413, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 299}, "geometry": {"type": "Polygon", "coordinates": [[[15.6912231, -4.0903018, 0.0], [15.6939697, -4.0903018, 0.0], [15.6939697, -4.0875622, 0.0], [15.6912231, -4.0875622, 0.0], [15.6912231, -4.0903018, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 383}, "geometry": {"type": "Polygon", "coordinates": [[[15.7090759, -4.088932, 0.0], [15.7104492, -4.088932, 0.0], [15.7104492, -4.0875622, 0.0], [15.7090759, -4.0875622, 0.0], [15.7090759, -4.088932, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 642}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -4.0930413, 0.0], [15.7543945, -4.0930413, 0.0], [15.7543945, -4.0903018, 0.0], [15.7530212, -4.0903018, 0.0], [15.7530212, -4.0930413, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1380}, "geometry": {"type": "Polygon", "coordinates": [[[15.8930969, -4.0903018, 0.0], [15.8944702, -4.0903018, 0.0], [15.8944702, -4.088932, 0.0], [15.8930969, -4.088932, 0.0], [15.8930969, -4.0903018, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 132}, "geometry": {"type": "Polygon", "coordinates": [[[15.6280518, -4.0985205, 0.0], [15.629425, -4.0985205, 0.0], [15.629425, -4.0930413, 0.0], [15.6280518, -4.0930413, 0.0], [15.6280518, -4.0985205, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 165}, "geometry": {"type": "Polygon", "coordinates": [[[15.643158, -4.0985205, 0.0], [15.6500244, -4.0985205, 0.0], [15.6500244, -4.0944111, 0.0], [15.643158, -4.0944111, 0.0], [15.643158, -4.0985205, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 209}, "geometry": {"type": "Polygon", "coordinates": [[[15.662384, -4.0944111, 0.0], [15.6651306, -4.0944111, 0.0], [15.6651306, -4.0916716, 0.0], [15.662384, -4.0916716, 0.0], [15.662384, -4.0944111, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 219}, "geometry": {"type": "Polygon", "coordinates": [[[15.6678772, -4.0971507, 0.0], [15.6692505, -4.0971507, 0.0], [15.6692505, -4.0944111, 0.0], [15.6678772, -4.0944111, 0.0], [15.6678772, -4.0971507, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 278}, "geometry": {"type": "Polygon", "coordinates": [[[15.6843567, -4.10126, 0.0], [15.6884766, -4.10126, 0.0], [15.6884766, -4.0930413, 0.0], [15.6843567, -4.0930413, 0.0], [15.6843567, -4.10126, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 410}, "geometry": {"type": "Polygon", "coordinates": [[[15.7131958, -4.10126, 0.0], [15.7173157, -4.10126, 0.0], [15.7173157, -4.0944111, 0.0], [15.7131958, -4.0944111, 0.0], [15.7131958, -4.10126, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 494}, "geometry": {"type": "Polygon", "coordinates": [[[15.7296753, -4.0944111, 0.0], [15.7310486, -4.0944111, 0.0], [15.7310486, -4.0930413, 0.0], [15.7296753, -4.0930413, 0.0], [15.7296753, -4.0944111, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 735}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.0957809, 0.0], [15.7681274, -4.0957809, 0.0], [15.7681274, -4.0944111, 0.0], [15.7667542, -4.0944111, 0.0], [15.7667542, -4.0957809, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 790}, "geometry": {"type": "Polygon", "coordinates": [[[15.7777405, -4.0944111, 0.0], [15.7791138, -4.0944111, 0.0], [15.7791138, -4.0916716, 0.0], [15.7777405, -4.0916716, 0.0], [15.7777405, -4.0944111, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 816}, "geometry": {"type": "Polygon", "coordinates": [[[15.7832336, -4.0944111, 0.0], [15.7846069, -4.0944111, 0.0], [15.7846069, -4.0930413, 0.0], [15.7832336, -4.0930413, 0.0], [15.7832336, -4.0944111, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1089}, "geometry": {"type": "Polygon", "coordinates": [[[15.8395386, -4.0944111, 0.0], [15.8409119, -4.0944111, 0.0], [15.8409119, -4.0930413, 0.0], [15.8395386, -4.0930413, 0.0], [15.8395386, -4.0944111, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1206}, "geometry": {"type": "Polygon", "coordinates": [[[15.8628845, -4.0957809, 0.0], [15.8670044, -4.0957809, 0.0], [15.8670044, -4.0930413, 0.0], [15.8628845, -4.0930413, 0.0], [15.8628845, -4.0957809, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1275}, "geometry": {"type": "Polygon", "coordinates": [[[15.8752441, -4.0930413, 0.0], [15.8766174, -4.0930413, 0.0], [15.8766174, -4.0916716, 0.0], [15.8752441, -4.0916716, 0.0], [15.8752441, -4.0930413, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1305}, "geometry": {"type": "Polygon", "coordinates": [[[15.8807373, -4.0957809, 0.0], [15.8834839, -4.0957809, 0.0], [15.8834839, -4.0944111, 0.0], [15.8807373, -4.0944111, 0.0], [15.8807373, -4.0957809, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1395}, "geometry": {"type": "Polygon", "coordinates": [[[15.8958435, -4.0985205, 0.0], [15.9013367, -4.0985205, 0.0], [15.9013367, -4.0930413, 0.0], [15.8958435, -4.0930413, 0.0], [15.8958435, -4.0985205, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 41}, "geometry": {"type": "Polygon", "coordinates": [[[15.567627, -4.0985205, 0.0], [15.5703735, -4.0985205, 0.0], [15.5703735, -4.0957809, 0.0], [15.567627, -4.0957809, 0.0], [15.567627, -4.0985205, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 57}, "geometry": {"type": "Polygon", "coordinates": [[[15.5813599, -4.0998903, 0.0], [15.5827332, -4.0998903, 0.0], [15.5827332, -4.0985205, 0.0], [15.5813599, -4.0985205, 0.0], [15.5813599, -4.0998903, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 200}, "geometry": {"type": "Polygon", "coordinates": [[[15.6582642, -4.0985205, 0.0], [15.6596375, -4.0985205, 0.0], [15.6596375, -4.0957809, 0.0], [15.6582642, -4.0957809, 0.0], [15.6582642, -4.0985205, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 210}, "geometry": {"type": "Polygon", "coordinates": [[[15.662384, -4.1081089, 0.0], [15.6678772, -4.1081089, 0.0], [15.6678772, -4.0985205, 0.0], [15.662384, -4.0985205, 0.0], [15.662384, -4.1081089, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 346}, "geometry": {"type": "Polygon", "coordinates": [[[15.7008362, -4.1026298, 0.0], [15.7049561, -4.1026298, 0.0], [15.7049561, -4.0971507, 0.0], [15.7008362, -4.0971507, 0.0], [15.7008362, -4.1026298, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 736}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.10126, 0.0], [15.7695007, -4.10126, 0.0], [15.7695007, -4.0985205, 0.0], [15.7667542, -4.0985205, 0.0], [15.7667542, -4.10126, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 783}, "geometry": {"type": "Polygon", "coordinates": [[[15.7763672, -4.0998903, 0.0], [15.7777405, -4.0998903, 0.0], [15.7777405, -4.0971507, 0.0], [15.7763672, -4.0971507, 0.0], [15.7763672, -4.0998903, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1077}, "geometry": {"type": "Polygon", "coordinates": [[[15.8354187, -4.0971507, 0.0], [15.836792, -4.0971507, 0.0], [15.836792, -4.0957809, 0.0], [15.8354187, -4.0957809, 0.0], [15.8354187, -4.0971507, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1495}, "geometry": {"type": "Polygon", "coordinates": [[[15.9233093, -4.0998903, 0.0], [15.9246826, -4.0998903, 0.0], [15.9246826, -4.0985205, 0.0], [15.9233093, -4.0985205, 0.0], [15.9233093, -4.0998903, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 126}, "geometry": {"type": "Polygon", "coordinates": [[[15.6266785, -4.1039996, 0.0], [15.6280518, -4.1039996, 0.0], [15.6280518, -4.1026298, 0.0], [15.6266785, -4.1026298, 0.0], [15.6266785, -4.1039996, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 185}, "geometry": {"type": "Polygon", "coordinates": [[[15.6500244, -4.1053693, 0.0], [15.662384, -4.1053693, 0.0], [15.662384, -4.0998903, 0.0], [15.6500244, -4.0998903, 0.0], [15.6500244, -4.1053693, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 300}, "geometry": {"type": "Polygon", "coordinates": [[[15.6912231, -4.1026298, 0.0], [15.6967163, -4.1026298, 0.0], [15.6967163, -4.0998903, 0.0], [15.6912231, -4.0998903, 0.0], [15.6912231, -4.1026298, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 513}, "geometry": {"type": "Polygon", "coordinates": [[[15.7337952, -4.1026298, 0.0], [15.737915, -4.1026298, 0.0], [15.737915, -4.0998903, 0.0], [15.7337952, -4.0998903, 0.0], [15.7337952, -4.1026298, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 945}, "geometry": {"type": "Polygon", "coordinates": [[[15.8079529, -4.1094786, 0.0], [15.8148193, -4.1094786, 0.0], [15.8148193, -4.10126, 0.0], [15.8079529, -4.10126, 0.0], [15.8079529, -4.1094786, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1080}, "geometry": {"type": "Polygon", "coordinates": [[[15.836792, -4.1081089, 0.0], [15.8409119, -4.1081089, 0.0], [15.8409119, -4.1026298, 0.0], [15.836792, -4.1026298, 0.0], [15.836792, -4.1081089, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1297}, "geometry": {"type": "Polygon", "coordinates": [[[15.879364, -4.1039996, 0.0], [15.8821106, -4.1039996, 0.0], [15.8821106, -4.1026298, 0.0], [15.879364, -4.1026298, 0.0], [15.879364, -4.1039996, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 17}, "geometry": {"type": "Polygon", "coordinates": [[[15.5401611, -4.1094786, 0.0], [15.544281, -4.1094786, 0.0], [15.544281, -4.1067391, 0.0], [15.5401611, -4.1067391, 0.0], [15.5401611, -4.1094786, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 84}, "geometry": {"type": "Polygon", "coordinates": [[[15.610199, -4.1067391, 0.0], [15.6129456, -4.1067391, 0.0], [15.6129456, -4.1039996, 0.0], [15.610199, -4.1039996, 0.0], [15.610199, -4.1067391, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 110}, "geometry": {"type": "Polygon", "coordinates": [[[15.6211853, -4.1067391, 0.0], [15.6225586, -4.1067391, 0.0], [15.6225586, -4.1039996, 0.0], [15.6211853, -4.1039996, 0.0], [15.6211853, -4.1067391, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 194}, "geometry": {"type": "Polygon", "coordinates": [[[15.652771, -4.1122182, 0.0], [15.6555176, -4.1122182, 0.0], [15.6555176, -4.1067391, 0.0], [15.652771, -4.1067391, 0.0], [15.652771, -4.1122182, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 243}, "geometry": {"type": "Polygon", "coordinates": [[[15.6747437, -4.1081089, 0.0], [15.6761169, -4.1081089, 0.0], [15.6761169, -4.1067391, 0.0], [15.6747437, -4.1067391, 0.0], [15.6747437, -4.1081089, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 536}, "geometry": {"type": "Polygon", "coordinates": [[[15.737915, -4.1135879, 0.0], [15.7420349, -4.1135879, 0.0], [15.7420349, -4.1067391, 0.0], [15.737915, -4.1067391, 0.0], [15.737915, -4.1135879, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1326}, "geometry": {"type": "Polygon", "coordinates": [[[15.8834839, -4.1081089, 0.0], [15.8848572, -4.1081089, 0.0], [15.8848572, -4.1067391, 0.0], [15.8834839, -4.1067391, 0.0], [15.8834839, -4.1081089, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 201}, "geometry": {"type": "Polygon", "coordinates": [[[15.6582642, -4.1149577, 0.0], [15.6637573, -4.1149577, 0.0], [15.6637573, -4.1094786, 0.0], [15.6582642, -4.1094786, 0.0], [15.6582642, -4.1149577, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 225}, "geometry": {"type": "Polygon", "coordinates": [[[15.6706238, -4.1108484, 0.0], [15.6719971, -4.1108484, 0.0], [15.6719971, -4.1094786, 0.0], [15.6706238, -4.1094786, 0.0], [15.6706238, -4.1108484, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 279}, "geometry": {"type": "Polygon", "coordinates": [[[15.68573, -4.1135879, 0.0], [15.6871033, -4.1135879, 0.0], [15.6871033, -4.1094786, 0.0], [15.68573, -4.1094786, 0.0], [15.68573, -4.1135879, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 473}, "geometry": {"type": "Polygon", "coordinates": [[[15.7255554, -4.1108484, 0.0], [15.728302, -4.1108484, 0.0], [15.728302, -4.1094786, 0.0], [15.7255554, -4.1094786, 0.0], [15.7255554, -4.1108484, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 607}, "geometry": {"type": "Polygon", "coordinates": [[[15.7489014, -4.1094786, 0.0], [15.7502747, -4.1094786, 0.0], [15.7502747, -4.1081089, 0.0], [15.7489014, -4.1081089, 0.0], [15.7489014, -4.1094786, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 765}, "geometry": {"type": "Polygon", "coordinates": [[[15.7722473, -4.1135879, 0.0], [15.7777405, -4.1135879, 0.0], [15.7777405, -4.1094786, 0.0], [15.7722473, -4.1094786, 0.0], [15.7722473, -4.1135879, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1347}, "geometry": {"type": "Polygon", "coordinates": [[[15.8876038, -4.1108484, 0.0], [15.8889771, -4.1108484, 0.0], [15.8889771, -4.1081089, 0.0], [15.8876038, -4.1081089, 0.0], [15.8876038, -4.1108484, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1433}, "geometry": {"type": "Polygon", "coordinates": [[[15.9054565, -4.1108484, 0.0], [15.9068298, -4.1108484, 0.0], [15.9068298, -4.1094786, 0.0], [15.9054565, -4.1094786, 0.0], [15.9054565, -4.1108484, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 101}, "geometry": {"type": "Polygon", "coordinates": [[[15.6170654, -4.1163274, 0.0], [15.6184387, -4.1163274, 0.0], [15.6184387, -4.1149577, 0.0], [15.6170654, -4.1149577, 0.0], [15.6170654, -4.1163274, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 119}, "geometry": {"type": "Polygon", "coordinates": [[[15.6239319, -4.1149577, 0.0], [15.6253052, -4.1149577, 0.0], [15.6253052, -4.1135879, 0.0], [15.6239319, -4.1135879, 0.0], [15.6239319, -4.1149577, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 136}, "geometry": {"type": "Polygon", "coordinates": [[[15.629425, -4.1135879, 0.0], [15.6307983, -4.1135879, 0.0], [15.6307983, -4.1122182, 0.0], [15.629425, -4.1122182, 0.0], [15.629425, -4.1135879, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 216}, "geometry": {"type": "Polygon", "coordinates": [[[15.6665039, -4.1163274, 0.0], [15.6678772, -4.1163274, 0.0], [15.6678772, -4.1149577, 0.0], [15.6665039, -4.1149577, 0.0], [15.6665039, -4.1163274, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 318}, "geometry": {"type": "Polygon", "coordinates": [[[15.6912231, -4.1204366, 0.0], [15.6967163, -4.1204366, 0.0], [15.6967163, -4.1122182, 0.0], [15.6912231, -4.1122182, 0.0], [15.6912231, -4.1204366, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 754}, "geometry": {"type": "Polygon", "coordinates": [[[15.7695007, -4.1163274, 0.0], [15.770874, -4.1163274, 0.0], [15.770874, -4.1149577, 0.0], [15.7695007, -4.1149577, 0.0], [15.7695007, -4.1163274, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 992}, "geometry": {"type": "Polygon", "coordinates": [[[15.8189392, -4.1135879, 0.0], [15.8203125, -4.1135879, 0.0], [15.8203125, -4.1122182, 0.0], [15.8189392, -4.1122182, 0.0], [15.8189392, -4.1135879, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1290}, "geometry": {"type": "Polygon", "coordinates": [[[15.8779907, -4.1163274, 0.0], [15.8834839, -4.1163274, 0.0], [15.8834839, -4.1122182, 0.0], [15.8779907, -4.1122182, 0.0], [15.8779907, -4.1163274, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 127}, "geometry": {"type": "Polygon", "coordinates": [[[15.6266785, -4.1245459, 0.0], [15.6307983, -4.1245459, 0.0], [15.6307983, -4.1163274, 0.0], [15.6266785, -4.1163274, 0.0], [15.6266785, -4.1245459, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 171}, "geometry": {"type": "Polygon", "coordinates": [[[15.6459045, -4.1190669, 0.0], [15.6472778, -4.1190669, 0.0], [15.6472778, -4.1176972, 0.0], [15.6459045, -4.1176972, 0.0], [15.6459045, -4.1190669, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 229}, "geometry": {"type": "Polygon", "coordinates": [[[15.6719971, -4.1272853, 0.0], [15.6747437, -4.1272853, 0.0], [15.6747437, -4.1190669, 0.0], [15.6719971, -4.1190669, 0.0], [15.6719971, -4.1272853, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 422}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.1204366, 0.0], [15.718689, -4.1204366, 0.0], [15.718689, -4.1163274, 0.0], [15.7173157, -4.1163274, 0.0], [15.7173157, -4.1204366, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 681}, "geometry": {"type": "Polygon", "coordinates": [[[15.7571411, -4.1204366, 0.0], [15.761261, -4.1204366, 0.0], [15.761261, -4.1176972, 0.0], [15.7571411, -4.1176972, 0.0], [15.7571411, -4.1204366, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1251}, "geometry": {"type": "Polygon", "coordinates": [[[15.869751, -4.1259156, 0.0], [15.8752441, -4.1259156, 0.0], [15.8752441, -4.1190669, 0.0], [15.869751, -4.1190669, 0.0], [15.869751, -4.1259156, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1409}, "geometry": {"type": "Polygon", "coordinates": [[[15.8999634, -4.1218064, 0.0], [15.90271, -4.1218064, 0.0], [15.90271, -4.1190669, 0.0], [15.8999634, -4.1190669, 0.0], [15.8999634, -4.1218064, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 78}, "geometry": {"type": "Polygon", "coordinates": [[[15.6047058, -4.1231761, 0.0], [15.6060791, -4.1231761, 0.0], [15.6060791, -4.1218064, 0.0], [15.6047058, -4.1218064, 0.0], [15.6047058, -4.1231761, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 147}, "geometry": {"type": "Polygon", "coordinates": [[[15.6349182, -4.1259156, 0.0], [15.6376648, -4.1259156, 0.0], [15.6376648, -4.1231761, 0.0], [15.6349182, -4.1231761, 0.0], [15.6349182, -4.1259156, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 269}, "geometry": {"type": "Polygon", "coordinates": [[[15.6829834, -4.1272853, 0.0], [15.6898499, -4.1272853, 0.0], [15.6898499, -4.1231761, 0.0], [15.6829834, -4.1231761, 0.0], [15.6829834, -4.1272853, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 503}, "geometry": {"type": "Polygon", "coordinates": [[[15.7310486, -4.1286551, 0.0], [15.7351685, -4.1286551, 0.0], [15.7351685, -4.1231761, 0.0], [15.7310486, -4.1231761, 0.0], [15.7310486, -4.1286551, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 537}, "geometry": {"type": "Polygon", "coordinates": [[[15.737915, -4.1259156, 0.0], [15.7406616, -4.1259156, 0.0], [15.7406616, -4.1204366, 0.0], [15.737915, -4.1204366, 0.0], [15.737915, -4.1259156, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 621}, "geometry": {"type": "Polygon", "coordinates": [[[15.7502747, -4.1245459, 0.0], [15.7530212, -4.1245459, 0.0], [15.7530212, -4.1204366, 0.0], [15.7502747, -4.1204366, 0.0], [15.7502747, -4.1245459, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 941}, "geometry": {"type": "Polygon", "coordinates": [[[15.8079529, -4.1245459, 0.0], [15.8093262, -4.1245459, 0.0], [15.8093262, -4.1231761, 0.0], [15.8079529, -4.1231761, 0.0], [15.8079529, -4.1245459, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1354}, "geometry": {"type": "Polygon", "coordinates": [[[15.8889771, -4.1245459, 0.0], [15.8903503, -4.1245459, 0.0], [15.8903503, -4.1231761, 0.0], [15.8889771, -4.1231761, 0.0], [15.8889771, -4.1245459, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 31}, "geometry": {"type": "Polygon", "coordinates": [[[15.5552673, -4.1272853, 0.0], [15.5566406, -4.1272853, 0.0], [15.5566406, -4.1259156, 0.0], [15.5552673, -4.1259156, 0.0], [15.5552673, -4.1272853, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 87}, "geometry": {"type": "Polygon", "coordinates": [[[15.6129456, -4.1286551, 0.0], [15.6143188, -4.1286551, 0.0], [15.6143188, -4.1272853, 0.0], [15.6129456, -4.1272853, 0.0], [15.6129456, -4.1286551, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 102}, "geometry": {"type": "Polygon", "coordinates": [[[15.6184387, -4.1286551, 0.0], [15.619812, -4.1286551, 0.0], [15.619812, -4.1245459, 0.0], [15.6184387, -4.1245459, 0.0], [15.6184387, -4.1286551, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 254}, "geometry": {"type": "Polygon", "coordinates": [[[15.6788635, -4.1259156, 0.0], [15.6802368, -4.1259156, 0.0], [15.6802368, -4.1245459, 0.0], [15.6788635, -4.1245459, 0.0], [15.6788635, -4.1259156, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 309}, "geometry": {"type": "Polygon", "coordinates": [[[15.6925964, -4.1272853, 0.0], [15.695343, -4.1272853, 0.0], [15.695343, -4.1245459, 0.0], [15.6925964, -4.1245459, 0.0], [15.6925964, -4.1272853, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 993}, "geometry": {"type": "Polygon", "coordinates": [[[15.8189392, -4.1272853, 0.0], [15.8203125, -4.1272853, 0.0], [15.8203125, -4.1259156, 0.0], [15.8189392, -4.1259156, 0.0], [15.8189392, -4.1272853, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1098}, "geometry": {"type": "Polygon", "coordinates": [[[15.8409119, -4.1259156, 0.0], [15.8422852, -4.1259156, 0.0], [15.8422852, -4.1245459, 0.0], [15.8409119, -4.1245459, 0.0], [15.8409119, -4.1259156, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1285}, "geometry": {"type": "Polygon", "coordinates": [[[15.8766174, -4.1272853, 0.0], [15.879364, -4.1272853, 0.0], [15.879364, -4.1245459, 0.0], [15.8766174, -4.1245459, 0.0], [15.8766174, -4.1272853, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1327}, "geometry": {"type": "Polygon", "coordinates": [[[15.8834839, -4.1272853, 0.0], [15.8848572, -4.1272853, 0.0], [15.8848572, -4.1245459, 0.0], [15.8834839, -4.1245459, 0.0], [15.8834839, -4.1272853, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 11}, "geometry": {"type": "Polygon", "coordinates": [[[15.5332947, -4.1341339, 0.0], [15.5374146, -4.1341339, 0.0], [15.5374146, -4.1300248, 0.0], [15.5332947, -4.1300248, 0.0], [15.5332947, -4.1341339, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 29}, "geometry": {"type": "Polygon", "coordinates": [[[15.5511475, -4.1382431, 0.0], [15.5566406, -4.1382431, 0.0], [15.5566406, -4.1300248, 0.0], [15.5511475, -4.1300248, 0.0], [15.5511475, -4.1382431, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 42}, "geometry": {"type": "Polygon", "coordinates": [[[15.5690002, -4.1313945, 0.0], [15.5717468, -4.1313945, 0.0], [15.5717468, -4.1300248, 0.0], [15.5690002, -4.1300248, 0.0], [15.5690002, -4.1313945, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 73}, "geometry": {"type": "Polygon", "coordinates": [[[15.6005859, -4.1341339, 0.0], [15.6033325, -4.1341339, 0.0], [15.6033325, -4.1313945, 0.0], [15.6005859, -4.1313945, 0.0], [15.6005859, -4.1341339, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 291}, "geometry": {"type": "Polygon", "coordinates": [[[15.6884766, -4.1327642, 0.0], [15.6898499, -4.1327642, 0.0], [15.6898499, -4.1313945, 0.0], [15.6884766, -4.1313945, 0.0], [15.6884766, -4.1327642, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 411}, "geometry": {"type": "Polygon", "coordinates": [[[15.7131958, -4.1313945, 0.0], [15.7145691, -4.1313945, 0.0], [15.7145691, -4.1300248, 0.0], [15.7131958, -4.1300248, 0.0], [15.7131958, -4.1313945, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 549}, "geometry": {"type": "Polygon", "coordinates": [[[15.7392883, -4.1313945, 0.0], [15.7406616, -4.1313945, 0.0], [15.7406616, -4.1300248, 0.0], [15.7392883, -4.1300248, 0.0], [15.7392883, -4.1313945, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 628}, "geometry": {"type": "Polygon", "coordinates": [[[15.7516479, -4.1313945, 0.0], [15.7530212, -4.1313945, 0.0], [15.7530212, -4.1300248, 0.0], [15.7516479, -4.1300248, 0.0], [15.7516479, -4.1313945, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 907}, "geometry": {"type": "Polygon", "coordinates": [[[15.8010864, -4.1300248, 0.0], [15.8024597, -4.1300248, 0.0], [15.8024597, -4.1286551, 0.0], [15.8010864, -4.1286551, 0.0], [15.8010864, -4.1300248, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1069}, "geometry": {"type": "Polygon", "coordinates": [[[15.8340454, -4.1313945, 0.0], [15.8354187, -4.1313945, 0.0], [15.8354187, -4.1300248, 0.0], [15.8340454, -4.1300248, 0.0], [15.8340454, -4.1313945, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1389}, "geometry": {"type": "Polygon", "coordinates": [[[15.8944702, -4.1341339, 0.0], [15.9013367, -4.1341339, 0.0], [15.9013367, -4.1300248, 0.0], [15.8944702, -4.1300248, 0.0], [15.8944702, -4.1341339, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2}, "geometry": {"type": "Polygon", "coordinates": [[[15.5154419, -4.1423522, 0.0], [15.5236816, -4.1423522, 0.0], [15.5236816, -4.1327642, 0.0], [15.5154419, -4.1327642, 0.0], [15.5154419, -4.1423522, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 16}, "geometry": {"type": "Polygon", "coordinates": [[[15.5387878, -4.1368734, 0.0], [15.5401611, -4.1368734, 0.0], [15.5401611, -4.1355037, 0.0], [15.5387878, -4.1355037, 0.0], [15.5387878, -4.1368734, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 48}, "geometry": {"type": "Polygon", "coordinates": [[[15.5744934, -4.1396128, 0.0], [15.57724, -4.1396128, 0.0], [15.57724, -4.1355037, 0.0], [15.5744934, -4.1355037, 0.0], [15.5744934, -4.1396128, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 55}, "geometry": {"type": "Polygon", "coordinates": [[[15.5799866, -4.1409825, 0.0], [15.5841064, -4.1409825, 0.0], [15.5841064, -4.1355037, 0.0], [15.5799866, -4.1355037, 0.0], [15.5799866, -4.1409825, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 64}, "geometry": {"type": "Polygon", "coordinates": [[[15.5895996, -4.1355037, 0.0], [15.5923462, -4.1355037, 0.0], [15.5923462, -4.1341339, 0.0], [15.5895996, -4.1341339, 0.0], [15.5895996, -4.1355037, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 82}, "geometry": {"type": "Polygon", "coordinates": [[[15.6088257, -4.1368734, 0.0], [15.610199, -4.1368734, 0.0], [15.610199, -4.1355037, 0.0], [15.6088257, -4.1355037, 0.0], [15.6088257, -4.1368734, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 111}, "geometry": {"type": "Polygon", "coordinates": [[[15.6211853, -4.1341339, 0.0], [15.6225586, -4.1341339, 0.0], [15.6225586, -4.1327642, 0.0], [15.6211853, -4.1327642, 0.0], [15.6211853, -4.1341339, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 145}, "geometry": {"type": "Polygon", "coordinates": [[[15.6335449, -4.1437219, 0.0], [15.6362915, -4.1437219, 0.0], [15.6362915, -4.1341339, 0.0], [15.6335449, -4.1341339, 0.0], [15.6335449, -4.1437219, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 236}, "geometry": {"type": "Polygon", "coordinates": [[[15.6733704, -4.1437219, 0.0], [15.6774902, -4.1437219, 0.0], [15.6774902, -4.1327642, 0.0], [15.6733704, -4.1327642, 0.0], [15.6733704, -4.1437219, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 296}, "geometry": {"type": "Polygon", "coordinates": [[[15.6898499, -4.1368734, 0.0], [15.6912231, -4.1368734, 0.0], [15.6912231, -4.1355037, 0.0], [15.6898499, -4.1355037, 0.0], [15.6898499, -4.1368734, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 629}, "geometry": {"type": "Polygon", "coordinates": [[[15.7516479, -4.1355037, 0.0], [15.7530212, -4.1355037, 0.0], [15.7530212, -4.1341339, 0.0], [15.7516479, -4.1341339, 0.0], [15.7516479, -4.1355037, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 710}, "geometry": {"type": "Polygon", "coordinates": [[[15.7626343, -4.1355037, 0.0], [15.7640076, -4.1355037, 0.0], [15.7640076, -4.1341339, 0.0], [15.7626343, -4.1341339, 0.0], [15.7626343, -4.1355037, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 810}, "geometry": {"type": "Polygon", "coordinates": [[[15.7818604, -4.1409825, 0.0], [15.7846069, -4.1409825, 0.0], [15.7846069, -4.1341339, 0.0], [15.7818604, -4.1341339, 0.0], [15.7818604, -4.1409825, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 835}, "geometry": {"type": "Polygon", "coordinates": [[[15.7873535, -4.1355037, 0.0], [15.7887268, -4.1355037, 0.0], [15.7887268, -4.1341339, 0.0], [15.7873535, -4.1341339, 0.0], [15.7873535, -4.1355037, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1050}, "geometry": {"type": "Polygon", "coordinates": [[[15.8299255, -4.1355037, 0.0], [15.8312988, -4.1355037, 0.0], [15.8312988, -4.1341339, 0.0], [15.8299255, -4.1341339, 0.0], [15.8299255, -4.1355037, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 22}, "geometry": {"type": "Polygon", "coordinates": [[[15.5429077, -4.1464613, 0.0], [15.5470276, -4.1464613, 0.0], [15.5470276, -4.1396128, 0.0], [15.5429077, -4.1396128, 0.0], [15.5429077, -4.1464613, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 62}, "geometry": {"type": "Polygon", "coordinates": [[[15.5854797, -4.1450916, 0.0], [15.5909729, -4.1450916, 0.0], [15.5909729, -4.1382431, 0.0], [15.5854797, -4.1382431, 0.0], [15.5854797, -4.1450916, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 74}, "geometry": {"type": "Polygon", "coordinates": [[[15.6005859, -4.1396128, 0.0], [15.6033325, -4.1396128, 0.0], [15.6033325, -4.1368734, 0.0], [15.6005859, -4.1368734, 0.0], [15.6005859, -4.1396128, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 96}, "geometry": {"type": "Polygon", "coordinates": [[[15.6143188, -4.1409825, 0.0], [15.6184387, -4.1409825, 0.0], [15.6184387, -4.1382431, 0.0], [15.6143188, -4.1382431, 0.0], [15.6143188, -4.1409825, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 302}, "geometry": {"type": "Polygon", "coordinates": [[[15.6912231, -4.1450916, 0.0], [15.6994629, -4.1450916, 0.0], [15.6994629, -4.1368734, 0.0], [15.6912231, -4.1368734, 0.0], [15.6912231, -4.1450916, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 384}, "geometry": {"type": "Polygon", "coordinates": [[[15.7090759, -4.1409825, 0.0], [15.7131958, -4.1409825, 0.0], [15.7131958, -4.1368734, 0.0], [15.7090759, -4.1368734, 0.0], [15.7090759, -4.1409825, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 643}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -4.147831, 0.0], [15.761261, -4.147831, 0.0], [15.761261, -4.1396128, 0.0], [15.7530212, -4.1396128, 0.0], [15.7530212, -4.147831, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 791}, "geometry": {"type": "Polygon", "coordinates": [[[15.7777405, -4.1396128, 0.0], [15.7791138, -4.1396128, 0.0], [15.7791138, -4.1382431, 0.0], [15.7777405, -4.1382431, 0.0], [15.7777405, -4.1396128, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1018}, "geometry": {"type": "Polygon", "coordinates": [[[15.8244324, -4.1423522, 0.0], [15.8258057, -4.1423522, 0.0], [15.8258057, -4.1396128, 0.0], [15.8244324, -4.1396128, 0.0], [15.8244324, -4.1423522, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1051}, "geometry": {"type": "Polygon", "coordinates": [[[15.8299255, -4.1423522, 0.0], [15.8354187, -4.1423522, 0.0], [15.8354187, -4.1396128, 0.0], [15.8299255, -4.1396128, 0.0], [15.8299255, -4.1423522, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1101}, "geometry": {"type": "Polygon", "coordinates": [[[15.8422852, -4.1396128, 0.0], [15.8436584, -4.1396128, 0.0], [15.8436584, -4.1382431, 0.0], [15.8422852, -4.1382431, 0.0], [15.8422852, -4.1396128, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1333}, "geometry": {"type": "Polygon", "coordinates": [[[15.8848572, -4.147831, 0.0], [15.8917236, -4.147831, 0.0], [15.8917236, -4.1396128, 0.0], [15.8848572, -4.1396128, 0.0], [15.8848572, -4.147831, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 15}, "geometry": {"type": "Polygon", "coordinates": [[[15.5374146, -4.1437219, 0.0], [15.5401611, -4.1437219, 0.0], [15.5401611, -4.1409825, 0.0], [15.5374146, -4.1409825, 0.0], [15.5374146, -4.1437219, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 56}, "geometry": {"type": "Polygon", "coordinates": [[[15.5799866, -4.1450916, 0.0], [15.5813599, -4.1450916, 0.0], [15.5813599, -4.1437219, 0.0], [15.5799866, -4.1437219, 0.0], [15.5799866, -4.1450916, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 69}, "geometry": {"type": "Polygon", "coordinates": [[[15.5964661, -4.1505704, 0.0], [15.6088257, -4.1505704, 0.0], [15.6088257, -4.1437219, 0.0], [15.5964661, -4.1437219, 0.0], [15.5964661, -4.1505704, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 258}, "geometry": {"type": "Polygon", "coordinates": [[[15.6802368, -4.1464613, 0.0], [15.68573, -4.1464613, 0.0], [15.68573, -4.1423522, 0.0], [15.6802368, -4.1423522, 0.0], [15.6802368, -4.1464613, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 419}, "geometry": {"type": "Polygon", "coordinates": [[[15.7159424, -4.1423522, 0.0], [15.7173157, -4.1423522, 0.0], [15.7173157, -4.1409825, 0.0], [15.7159424, -4.1409825, 0.0], [15.7159424, -4.1423522, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 721}, "geometry": {"type": "Polygon", "coordinates": [[[15.7640076, -4.1450916, 0.0], [15.7653809, -4.1450916, 0.0], [15.7653809, -4.1437219, 0.0], [15.7640076, -4.1437219, 0.0], [15.7640076, -4.1450916, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1}, "geometry": {"type": "Polygon", "coordinates": [[[15.5044556, -4.1492007, 0.0], [15.5126953, -4.1492007, 0.0], [15.5126953, -4.1450916, 0.0], [15.5044556, -4.1450916, 0.0], [15.5044556, -4.1492007, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 385}, "geometry": {"type": "Polygon", "coordinates": [[[15.7090759, -4.1464613, 0.0], [15.7104492, -4.1464613, 0.0], [15.7104492, -4.1450916, 0.0], [15.7090759, -4.1450916, 0.0], [15.7090759, -4.1464613, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 376}, "geometry": {"type": "Polygon", "coordinates": [[[15.7077026, -4.1505704, 0.0], [15.7145691, -4.1505704, 0.0], [15.7145691, -4.147831, 0.0], [15.7077026, -4.147831, 0.0], [15.7077026, -4.1505704, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 622}, "geometry": {"type": "Polygon", "coordinates": [[[15.7502747, -4.1519401, 0.0], [15.7543945, -4.1519401, 0.0], [15.7543945, -4.147831, 0.0], [15.7502747, -4.147831, 0.0], [15.7502747, -4.1519401, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1027}, "geometry": {"type": "Polygon", "coordinates": [[[15.8258057, -4.147831, 0.0], [15.827179, -4.147831, 0.0], [15.827179, -4.1464613, 0.0], [15.8258057, -4.1464613, 0.0], [15.8258057, -4.147831, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1207}, "geometry": {"type": "Polygon", "coordinates": [[[15.8628845, -4.1492007, 0.0], [15.8642578, -4.1492007, 0.0], [15.8642578, -4.147831, 0.0], [15.8628845, -4.147831, 0.0], [15.8628845, -4.1492007, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1306}, "geometry": {"type": "Polygon", "coordinates": [[[15.8807373, -4.1492007, 0.0], [15.8821106, -4.1492007, 0.0], [15.8821106, -4.1464613, 0.0], [15.8807373, -4.1464613, 0.0], [15.8807373, -4.1492007, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1382}, "geometry": {"type": "Polygon", "coordinates": [[[15.8930969, -4.147831, 0.0], [15.8944702, -4.147831, 0.0], [15.8944702, -4.1464613, 0.0], [15.8930969, -4.1464613, 0.0], [15.8930969, -4.147831, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 142}, "geometry": {"type": "Polygon", "coordinates": [[[15.6321716, -4.1587885, 0.0], [15.6349182, -4.1587885, 0.0], [15.6349182, -4.1492007, 0.0], [15.6321716, -4.1492007, 0.0], [15.6321716, -4.1587885, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 206}, "geometry": {"type": "Polygon", "coordinates": [[[15.6610107, -4.1519401, 0.0], [15.662384, -4.1519401, 0.0], [15.662384, -4.1505704, 0.0], [15.6610107, -4.1505704, 0.0], [15.6610107, -4.1519401, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 550}, "geometry": {"type": "Polygon", "coordinates": [[[15.7392883, -4.1505704, 0.0], [15.7420349, -4.1505704, 0.0], [15.7420349, -4.1492007, 0.0], [15.7392883, -4.1492007, 0.0], [15.7392883, -4.1505704, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 7}, "geometry": {"type": "Polygon", "coordinates": [[[15.5291748, -4.1574188, 0.0], [15.5305481, -4.1574188, 0.0], [15.5305481, -4.1560491, 0.0], [15.5291748, -4.1560491, 0.0], [15.5291748, -4.1574188, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 71}, "geometry": {"type": "Polygon", "coordinates": [[[15.5978394, -4.1587885, 0.0], [15.6019592, -4.1587885, 0.0], [15.6019592, -4.1560491, 0.0], [15.5978394, -4.1560491, 0.0], [15.5978394, -4.1587885, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 88}, "geometry": {"type": "Polygon", "coordinates": [[[15.6129456, -4.1546794, 0.0], [15.6143188, -4.1546794, 0.0], [15.6143188, -4.1533098, 0.0], [15.6129456, -4.1533098, 0.0], [15.6129456, -4.1546794, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 106}, "geometry": {"type": "Polygon", "coordinates": [[[15.619812, -4.1574188, 0.0], [15.6211853, -4.1574188, 0.0], [15.6211853, -4.1560491, 0.0], [15.619812, -4.1560491, 0.0], [15.619812, -4.1574188, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 360}, "geometry": {"type": "Polygon", "coordinates": [[[15.7035828, -4.1601582, 0.0], [15.7063293, -4.1601582, 0.0], [15.7063293, -4.1560491, 0.0], [15.7035828, -4.1560491, 0.0], [15.7035828, -4.1601582, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 377}, "geometry": {"type": "Polygon", "coordinates": [[[15.7077026, -4.1560491, 0.0], [15.7090759, -4.1560491, 0.0], [15.7090759, -4.1546794, 0.0], [15.7077026, -4.1546794, 0.0], [15.7077026, -4.1560491, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 533}, "geometry": {"type": "Polygon", "coordinates": [[[15.7365417, -4.1560491, 0.0], [15.7392883, -4.1560491, 0.0], [15.7392883, -4.1533098, 0.0], [15.7365417, -4.1533098, 0.0], [15.7365417, -4.1560491, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 571}, "geometry": {"type": "Polygon", "coordinates": [[[15.7434082, -4.1546794, 0.0], [15.7489014, -4.1546794, 0.0], [15.7489014, -4.1533098, 0.0], [15.7434082, -4.1533098, 0.0], [15.7434082, -4.1546794, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 644}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -4.1601582, 0.0], [15.7571411, -4.1601582, 0.0], [15.7571411, -4.1560491, 0.0], [15.7530212, -4.1560491, 0.0], [15.7530212, -4.1601582, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 772}, "geometry": {"type": "Polygon", "coordinates": [[[15.7736206, -4.1615278, 0.0], [15.7791138, -4.1615278, 0.0], [15.7791138, -4.1560491, 0.0], [15.7736206, -4.1560491, 0.0], [15.7736206, -4.1615278, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 802}, "geometry": {"type": "Polygon", "coordinates": [[[15.7804871, -4.1574188, 0.0], [15.7818604, -4.1574188, 0.0], [15.7818604, -4.1560491, 0.0], [15.7804871, -4.1560491, 0.0], [15.7804871, -4.1574188, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 826}, "geometry": {"type": "Polygon", "coordinates": [[[15.7859802, -4.1574188, 0.0], [15.7887268, -4.1574188, 0.0], [15.7887268, -4.1546794, 0.0], [15.7859802, -4.1546794, 0.0], [15.7859802, -4.1574188, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 973}, "geometry": {"type": "Polygon", "coordinates": [[[15.8161926, -4.1642672, 0.0], [15.8203125, -4.1642672, 0.0], [15.8203125, -4.1560491, 0.0], [15.8161926, -4.1560491, 0.0], [15.8161926, -4.1642672, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1224}, "geometry": {"type": "Polygon", "coordinates": [[[15.8656311, -4.1546794, 0.0], [15.8670044, -4.1546794, 0.0], [15.8670044, -4.1533098, 0.0], [15.8656311, -4.1533098, 0.0], [15.8656311, -4.1546794, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1355}, "geometry": {"type": "Polygon", "coordinates": [[[15.8889771, -4.1546794, 0.0], [15.8903503, -4.1546794, 0.0], [15.8903503, -4.1533098, 0.0], [15.8889771, -4.1533098, 0.0], [15.8889771, -4.1546794, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 6}, "geometry": {"type": "Polygon", "coordinates": [[[15.5236816, -4.1601582, 0.0], [15.5264282, -4.1601582, 0.0], [15.5264282, -4.1574188, 0.0], [15.5236816, -4.1574188, 0.0], [15.5236816, -4.1601582, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 8}, "geometry": {"type": "Polygon", "coordinates": [[[15.5291748, -4.1615278, 0.0], [15.5305481, -4.1615278, 0.0], [15.5305481, -4.1601582, 0.0], [15.5291748, -4.1601582, 0.0], [15.5291748, -4.1615278, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 38}, "geometry": {"type": "Polygon", "coordinates": [[[15.5635071, -4.1615278, 0.0], [15.567627, -4.1615278, 0.0], [15.567627, -4.1587885, 0.0], [15.5635071, -4.1587885, 0.0], [15.5635071, -4.1615278, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 97}, "geometry": {"type": "Polygon", "coordinates": [[[15.6143188, -4.1615278, 0.0], [15.6156921, -4.1615278, 0.0], [15.6156921, -4.1601582, 0.0], [15.6143188, -4.1601582, 0.0], [15.6143188, -4.1615278, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 329}, "geometry": {"type": "Polygon", "coordinates": [[[15.6967163, -4.1601582, 0.0], [15.7008362, -4.1601582, 0.0], [15.7008362, -4.1574188, 0.0], [15.6967163, -4.1574188, 0.0], [15.6967163, -4.1601582, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 441}, "geometry": {"type": "Polygon", "coordinates": [[[15.718689, -4.1601582, 0.0], [15.7200623, -4.1601582, 0.0], [15.7200623, -4.1587885, 0.0], [15.718689, -4.1587885, 0.0], [15.718689, -4.1601582, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 487}, "geometry": {"type": "Polygon", "coordinates": [[[15.728302, -4.1615278, 0.0], [15.7337952, -4.1615278, 0.0], [15.7337952, -4.1587885, 0.0], [15.728302, -4.1587885, 0.0], [15.728302, -4.1615278, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 5}, "geometry": {"type": "Polygon", "coordinates": [[[15.5223083, -4.1656368, 0.0], [15.5236816, -4.1656368, 0.0], [15.5236816, -4.1642672, 0.0], [15.5223083, -4.1642672, 0.0], [15.5223083, -4.1656368, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 39}, "geometry": {"type": "Polygon", "coordinates": [[[15.5635071, -4.1656368, 0.0], [15.5648804, -4.1656368, 0.0], [15.5648804, -4.1642672, 0.0], [15.5635071, -4.1642672, 0.0], [15.5635071, -4.1656368, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 76}, "geometry": {"type": "Polygon", "coordinates": [[[15.6033325, -4.1656368, 0.0], [15.6060791, -4.1656368, 0.0], [15.6060791, -4.1628975, 0.0], [15.6033325, -4.1628975, 0.0], [15.6033325, -4.1656368, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 123}, "geometry": {"type": "Polygon", "coordinates": [[[15.6253052, -4.1656368, 0.0], [15.629425, -4.1656368, 0.0], [15.629425, -4.1628975, 0.0], [15.6253052, -4.1628975, 0.0], [15.6253052, -4.1656368, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 148}, "geometry": {"type": "Polygon", "coordinates": [[[15.6349182, -4.1628975, 0.0], [15.6362915, -4.1628975, 0.0], [15.6362915, -4.1615278, 0.0], [15.6349182, -4.1615278, 0.0], [15.6349182, -4.1628975, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 320}, "geometry": {"type": "Polygon", "coordinates": [[[15.6939697, -4.1683761, 0.0], [15.6980896, -4.1683761, 0.0], [15.6980896, -4.1628975, 0.0], [15.6939697, -4.1628975, 0.0], [15.6939697, -4.1683761, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 423}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.1656368, 0.0], [15.718689, -4.1656368, 0.0], [15.718689, -4.1628975, 0.0], [15.7173157, -4.1628975, 0.0], [15.7173157, -4.1656368, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 464}, "geometry": {"type": "Polygon", "coordinates": [[[15.7228088, -4.1656368, 0.0], [15.7255554, -4.1656368, 0.0], [15.7255554, -4.1642672, 0.0], [15.7228088, -4.1642672, 0.0], [15.7228088, -4.1656368, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 722}, "geometry": {"type": "Polygon", "coordinates": [[[15.7640076, -4.1642672, 0.0], [15.7653809, -4.1642672, 0.0], [15.7653809, -4.1628975, 0.0], [15.7640076, -4.1628975, 0.0], [15.7640076, -4.1642672, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 877}, "geometry": {"type": "Polygon", "coordinates": [[[15.79422, -4.1724851, 0.0], [15.8010864, -4.1724851, 0.0], [15.8010864, -4.1642672, 0.0], [15.79422, -4.1642672, 0.0], [15.79422, -4.1724851, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 143}, "geometry": {"type": "Polygon", "coordinates": [[[15.6321716, -4.1697458, 0.0], [15.6335449, -4.1697458, 0.0], [15.6335449, -4.1683761, 0.0], [15.6321716, -4.1683761, 0.0], [15.6321716, -4.1697458, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 340}, "geometry": {"type": "Polygon", "coordinates": [[[15.6994629, -4.1724851, 0.0], [15.7049561, -4.1724851, 0.0], [15.7049561, -4.1656368, 0.0], [15.6994629, -4.1656368, 0.0], [15.6994629, -4.1724851, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 424}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.1697458, 0.0], [15.718689, -4.1697458, 0.0], [15.718689, -4.1683761, 0.0], [15.7173157, -4.1683761, 0.0], [15.7173157, -4.1697458, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 665}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.1711155, 0.0], [15.7598877, -4.1711155, 0.0], [15.7598877, -4.1656368, 0.0], [15.7557678, -4.1656368, 0.0], [15.7557678, -4.1711155, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 89}, "geometry": {"type": "Polygon", "coordinates": [[[15.6129456, -4.1724851, 0.0], [15.6143188, -4.1724851, 0.0], [15.6143188, -4.1711155, 0.0], [15.6129456, -4.1711155, 0.0], [15.6129456, -4.1724851, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 404}, "geometry": {"type": "Polygon", "coordinates": [[[15.7118225, -4.1779637, 0.0], [15.7173157, -4.1779637, 0.0], [15.7173157, -4.1724851, 0.0], [15.7118225, -4.1724851, 0.0], [15.7118225, -4.1779637, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 538}, "geometry": {"type": "Polygon", "coordinates": [[[15.737915, -4.1738548, 0.0], [15.7392883, -4.1738548, 0.0], [15.7392883, -4.1711155, 0.0], [15.737915, -4.1711155, 0.0], [15.737915, -4.1738548, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 608}, "geometry": {"type": "Polygon", "coordinates": [[[15.7489014, -4.176594, 0.0], [15.7530212, -4.176594, 0.0], [15.7530212, -4.1724851, 0.0], [15.7489014, -4.1724851, 0.0], [15.7489014, -4.176594, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 737}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.1738548, 0.0], [15.7681274, -4.1738548, 0.0], [15.7681274, -4.1711155, 0.0], [15.7667542, -4.1711155, 0.0], [15.7667542, -4.1738548, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 827}, "geometry": {"type": "Polygon", "coordinates": [[[15.7859802, -4.1738548, 0.0], [15.7873535, -4.1738548, 0.0], [15.7873535, -4.1724851, 0.0], [15.7859802, -4.1724851, 0.0], [15.7859802, -4.1738548, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1252}, "geometry": {"type": "Polygon", "coordinates": [[[15.869751, -4.1724851, 0.0], [15.8711243, -4.1724851, 0.0], [15.8711243, -4.1697458, 0.0], [15.869751, -4.1697458, 0.0], [15.869751, -4.1724851, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1328}, "geometry": {"type": "Polygon", "coordinates": [[[15.8834839, -4.1738548, 0.0], [15.8848572, -4.1738548, 0.0], [15.8848572, -4.1724851, 0.0], [15.8834839, -4.1724851, 0.0], [15.8834839, -4.1738548, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 98}, "geometry": {"type": "Polygon", "coordinates": [[[15.6156921, -4.176594, 0.0], [15.6170654, -4.176594, 0.0], [15.6170654, -4.1752244, 0.0], [15.6156921, -4.1752244, 0.0], [15.6156921, -4.176594, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 244}, "geometry": {"type": "Polygon", "coordinates": [[[15.6747437, -4.1752244, 0.0], [15.6761169, -4.1752244, 0.0], [15.6761169, -4.1738548, 0.0], [15.6747437, -4.1738548, 0.0], [15.6747437, -4.1752244, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 942}, "geometry": {"type": "Polygon", "coordinates": [[[15.8079529, -4.1793333, 0.0], [15.8120728, -4.1793333, 0.0], [15.8120728, -4.176594, 0.0], [15.8079529, -4.176594, 0.0], [15.8079529, -4.1793333, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 77}, "geometry": {"type": "Polygon", "coordinates": [[[15.6033325, -4.180703, 0.0], [15.6047058, -4.180703, 0.0], [15.6047058, -4.1793333, 0.0], [15.6033325, -4.1793333, 0.0], [15.6033325, -4.180703, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 86}, "geometry": {"type": "Polygon", "coordinates": [[[15.6115723, -4.180703, 0.0], [15.6129456, -4.180703, 0.0], [15.6129456, -4.1793333, 0.0], [15.6115723, -4.1793333, 0.0], [15.6115723, -4.180703, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 120}, "geometry": {"type": "Polygon", "coordinates": [[[15.6239319, -4.180703, 0.0], [15.6253052, -4.180703, 0.0], [15.6253052, -4.1793333, 0.0], [15.6239319, -4.1793333, 0.0], [15.6239319, -4.180703, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 144}, "geometry": {"type": "Polygon", "coordinates": [[[15.6321716, -4.1861815, 0.0], [15.6390381, -4.1861815, 0.0], [15.6390381, -4.1793333, 0.0], [15.6321716, -4.1793333, 0.0], [15.6321716, -4.1861815, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 711}, "geometry": {"type": "Polygon", "coordinates": [[[15.7626343, -4.180703, 0.0], [15.7653809, -4.180703, 0.0], [15.7653809, -4.1793333, 0.0], [15.7626343, -4.1793333, 0.0], [15.7626343, -4.180703, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 798}, "geometry": {"type": "Polygon", "coordinates": [[[15.7791138, -4.1820726, 0.0], [15.7818604, -4.1820726, 0.0], [15.7818604, -4.1793333, 0.0], [15.7791138, -4.1793333, 0.0], [15.7791138, -4.1820726, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1145}, "geometry": {"type": "Polygon", "coordinates": [[[15.8518982, -4.180703, 0.0], [15.8532715, -4.180703, 0.0], [15.8532715, -4.1793333, 0.0], [15.8518982, -4.1793333, 0.0], [15.8518982, -4.180703, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1201}, "geometry": {"type": "Polygon", "coordinates": [[[15.8615112, -4.1820726, 0.0], [15.8628845, -4.1820726, 0.0], [15.8628845, -4.180703, 0.0], [15.8615112, -4.180703, 0.0], [15.8615112, -4.1820726, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1267}, "geometry": {"type": "Polygon", "coordinates": [[[15.8738708, -4.180703, 0.0], [15.8766174, -4.180703, 0.0], [15.8766174, -4.1779637, 0.0], [15.8738708, -4.1779637, 0.0], [15.8738708, -4.180703, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 90}, "geometry": {"type": "Polygon", "coordinates": [[[15.6129456, -4.1861815, 0.0], [15.6156921, -4.1861815, 0.0], [15.6156921, -4.1834422, 0.0], [15.6129456, -4.1834422, 0.0], [15.6129456, -4.1861815, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 121}, "geometry": {"type": "Polygon", "coordinates": [[[15.6239319, -4.1861815, 0.0], [15.6280518, -4.1861815, 0.0], [15.6280518, -4.1848119, 0.0], [15.6239319, -4.1848119, 0.0], [15.6239319, -4.1861815, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 174}, "geometry": {"type": "Polygon", "coordinates": [[[15.6472778, -4.1848119, 0.0], [15.6486511, -4.1848119, 0.0], [15.6486511, -4.1834422, 0.0], [15.6472778, -4.1834422, 0.0], [15.6472778, -4.1848119, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 712}, "geometry": {"type": "Polygon", "coordinates": [[[15.7626343, -4.1875511, 0.0], [15.7653809, -4.1875511, 0.0], [15.7653809, -4.1848119, 0.0], [15.7626343, -4.1848119, 0.0], [15.7626343, -4.1875511, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 792}, "geometry": {"type": "Polygon", "coordinates": [[[15.7777405, -4.1875511, 0.0], [15.7791138, -4.1875511, 0.0], [15.7791138, -4.1848119, 0.0], [15.7777405, -4.1848119, 0.0], [15.7777405, -4.1875511, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 974}, "geometry": {"type": "Polygon", "coordinates": [[[15.8161926, -4.1848119, 0.0], [15.8175659, -4.1848119, 0.0], [15.8175659, -4.1820726, 0.0], [15.8161926, -4.1820726, 0.0], [15.8161926, -4.1848119, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 161}, "geometry": {"type": "Polygon", "coordinates": [[[15.6417847, -4.1889207, 0.0], [15.6445312, -4.1889207, 0.0], [15.6445312, -4.1875511, 0.0], [15.6417847, -4.1875511, 0.0], [15.6417847, -4.1889207, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 175}, "geometry": {"type": "Polygon", "coordinates": [[[15.6472778, -4.1889207, 0.0], [15.6486511, -4.1889207, 0.0], [15.6486511, -4.1875511, 0.0], [15.6472778, -4.1875511, 0.0], [15.6472778, -4.1889207, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 189}, "geometry": {"type": "Polygon", "coordinates": [[[15.6513977, -4.1875511, 0.0], [15.652771, -4.1875511, 0.0], [15.652771, -4.1861815, 0.0], [15.6513977, -4.1861815, 0.0], [15.6513977, -4.1875511, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 495}, "geometry": {"type": "Polygon", "coordinates": [[[15.7296753, -4.1889207, 0.0], [15.7310486, -4.1889207, 0.0], [15.7310486, -4.1875511, 0.0], [15.7296753, -4.1875511, 0.0], [15.7296753, -4.1889207, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1123}, "geometry": {"type": "Polygon", "coordinates": [[[15.8477783, -4.1889207, 0.0], [15.8505249, -4.1889207, 0.0], [15.8505249, -4.1875511, 0.0], [15.8477783, -4.1875511, 0.0], [15.8477783, -4.1889207, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1172}, "geometry": {"type": "Polygon", "coordinates": [[[15.8560181, -4.1875511, 0.0], [15.8573914, -4.1875511, 0.0], [15.8573914, -4.1861815, 0.0], [15.8560181, -4.1861815, 0.0], [15.8560181, -4.1875511, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1225}, "geometry": {"type": "Polygon", "coordinates": [[[15.8656311, -4.1902904, 0.0], [15.8670044, -4.1902904, 0.0], [15.8670044, -4.1889207, 0.0], [15.8656311, -4.1889207, 0.0], [15.8656311, -4.1902904, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1268}, "geometry": {"type": "Polygon", "coordinates": [[[15.8738708, -4.1971384, 0.0], [15.879364, -4.1971384, 0.0], [15.879364, -4.1889207, 0.0], [15.8738708, -4.1889207, 0.0], [15.8738708, -4.1971384, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 107}, "geometry": {"type": "Polygon", "coordinates": [[[15.619812, -4.19166, 0.0], [15.6211853, -4.19166, 0.0], [15.6211853, -4.1902904, 0.0], [15.619812, -4.1902904, 0.0], [15.619812, -4.19166, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 124}, "geometry": {"type": "Polygon", "coordinates": [[[15.6253052, -4.1930296, 0.0], [15.6266785, -4.1930296, 0.0], [15.6266785, -4.1902904, 0.0], [15.6253052, -4.1902904, 0.0], [15.6253052, -4.1930296, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 202}, "geometry": {"type": "Polygon", "coordinates": [[[15.6582642, -4.1930296, 0.0], [15.6610107, -4.1930296, 0.0], [15.6610107, -4.1902904, 0.0], [15.6582642, -4.1902904, 0.0], [15.6582642, -4.1930296, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 723}, "geometry": {"type": "Polygon", "coordinates": [[[15.7640076, -4.1943992, 0.0], [15.7653809, -4.1943992, 0.0], [15.7653809, -4.1930296, 0.0], [15.7640076, -4.1930296, 0.0], [15.7640076, -4.1943992, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1012}, "geometry": {"type": "Polygon", "coordinates": [[[15.8230591, -4.19166, 0.0], [15.8244324, -4.19166, 0.0], [15.8244324, -4.1902904, 0.0], [15.8230591, -4.1902904, 0.0], [15.8230591, -4.19166, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1146}, "geometry": {"type": "Polygon", "coordinates": [[[15.8518982, -4.1930296, 0.0], [15.8560181, -4.1930296, 0.0], [15.8560181, -4.1902904, 0.0], [15.8518982, -4.1902904, 0.0], [15.8518982, -4.1930296, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1348}, "geometry": {"type": "Polygon", "coordinates": [[[15.8876038, -4.1930296, 0.0], [15.8889771, -4.1930296, 0.0], [15.8889771, -4.19166, 0.0], [15.8876038, -4.19166, 0.0], [15.8876038, -4.1930296, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 156}, "geometry": {"type": "Polygon", "coordinates": [[[15.6404114, -4.2012473, 0.0], [15.6445312, -4.2012473, 0.0], [15.6445312, -4.1957688, 0.0], [15.6404114, -4.1957688, 0.0], [15.6404114, -4.2012473, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 738}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.198508, 0.0], [15.7695007, -4.198508, 0.0], [15.7695007, -4.1943992, 0.0], [15.7667542, -4.1943992, 0.0], [15.7667542, -4.198508, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 994}, "geometry": {"type": "Polygon", "coordinates": [[[15.8189392, -4.2026169, 0.0], [15.8203125, -4.2026169, 0.0], [15.8203125, -4.1957688, 0.0], [15.8189392, -4.1957688, 0.0], [15.8189392, -4.2026169, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1085}, "geometry": {"type": "Polygon", "coordinates": [[[15.8381653, -4.1957688, 0.0], [15.8395386, -4.1957688, 0.0], [15.8395386, -4.1943992, 0.0], [15.8381653, -4.1943992, 0.0], [15.8381653, -4.1957688, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1138}, "geometry": {"type": "Polygon", "coordinates": [[[15.8505249, -4.1971384, 0.0], [15.8518982, -4.1971384, 0.0], [15.8518982, -4.1957688, 0.0], [15.8505249, -4.1957688, 0.0], [15.8505249, -4.1971384, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1186}, "geometry": {"type": "Polygon", "coordinates": [[[15.8573914, -4.2012473, 0.0], [15.8670044, -4.2012473, 0.0], [15.8670044, -4.1957688, 0.0], [15.8573914, -4.1957688, 0.0], [15.8573914, -4.2012473, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 91}, "geometry": {"type": "Polygon", "coordinates": [[[15.6129456, -4.1998777, 0.0], [15.6143188, -4.1998777, 0.0], [15.6143188, -4.198508, 0.0], [15.6129456, -4.198508, 0.0], [15.6129456, -4.1998777, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 230}, "geometry": {"type": "Polygon", "coordinates": [[[15.6719971, -4.2026169, 0.0], [15.6733704, -4.2026169, 0.0], [15.6733704, -4.2012473, 0.0], [15.6719971, -4.2012473, 0.0], [15.6719971, -4.2026169, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1278}, "geometry": {"type": "Polygon", "coordinates": [[[15.8752441, -4.2026169, 0.0], [15.8766174, -4.2026169, 0.0], [15.8766174, -4.2012473, 0.0], [15.8752441, -4.2012473, 0.0], [15.8752441, -4.2026169, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 168}, "geometry": {"type": "Polygon", "coordinates": [[[15.6445312, -4.205356, 0.0], [15.6459045, -4.205356, 0.0], [15.6459045, -4.2039865, 0.0], [15.6445312, -4.2039865, 0.0], [15.6445312, -4.205356, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 666}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.2067256, 0.0], [15.7585144, -4.2067256, 0.0], [15.7585144, -4.205356, 0.0], [15.7557678, -4.205356, 0.0], [15.7557678, -4.2067256, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 755}, "geometry": {"type": "Polygon", "coordinates": [[[15.7695007, -4.2067256, 0.0], [15.770874, -4.2067256, 0.0], [15.770874, -4.205356, 0.0], [15.7695007, -4.205356, 0.0], [15.7695007, -4.2067256, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 799}, "geometry": {"type": "Polygon", "coordinates": [[[15.7791138, -4.205356, 0.0], [15.7818604, -4.205356, 0.0], [15.7818604, -4.2039865, 0.0], [15.7791138, -4.2039865, 0.0], [15.7791138, -4.205356, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 836}, "geometry": {"type": "Polygon", "coordinates": [[[15.7873535, -4.2067256, 0.0], [15.7887268, -4.2067256, 0.0], [15.7887268, -4.205356, 0.0], [15.7873535, -4.205356, 0.0], [15.7873535, -4.2067256, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1147}, "geometry": {"type": "Polygon", "coordinates": [[[15.8518982, -4.2039865, 0.0], [15.8546448, -4.2039865, 0.0], [15.8546448, -4.2026169, 0.0], [15.8518982, -4.2026169, 0.0], [15.8518982, -4.2039865, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1217}, "geometry": {"type": "Polygon", "coordinates": [[[15.8642578, -4.2067256, 0.0], [15.8670044, -4.2067256, 0.0], [15.8670044, -4.205356, 0.0], [15.8642578, -4.205356, 0.0], [15.8642578, -4.2067256, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 157}, "geometry": {"type": "Polygon", "coordinates": [[[15.6404114, -4.2094648, 0.0], [15.6417847, -4.2094648, 0.0], [15.6417847, -4.2067256, 0.0], [15.6404114, -4.2067256, 0.0], [15.6404114, -4.2094648, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 425}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.212204, 0.0], [15.7214355, -4.212204, 0.0], [15.7214355, -4.2094648, 0.0], [15.7173157, -4.2094648, 0.0], [15.7173157, -4.212204, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 539}, "geometry": {"type": "Polygon", "coordinates": [[[15.737915, -4.2094648, 0.0], [15.7392883, -4.2094648, 0.0], [15.7392883, -4.2080952, 0.0], [15.737915, -4.2080952, 0.0], [15.737915, -4.2094648, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 773}, "geometry": {"type": "Polygon", "coordinates": [[[15.7736206, -4.2094648, 0.0], [15.7749939, -4.2094648, 0.0], [15.7749939, -4.2080952, 0.0], [15.7736206, -4.2080952, 0.0], [15.7736206, -4.2094648, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1070}, "geometry": {"type": "Polygon", "coordinates": [[[15.8340454, -4.2149431, 0.0], [15.8395386, -4.2149431, 0.0], [15.8395386, -4.2094648, 0.0], [15.8340454, -4.2094648, 0.0], [15.8340454, -4.2149431, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1158}, "geometry": {"type": "Polygon", "coordinates": [[[15.8532715, -4.2108344, 0.0], [15.8546448, -4.2108344, 0.0], [15.8546448, -4.2094648, 0.0], [15.8532715, -4.2094648, 0.0], [15.8532715, -4.2108344, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1253}, "geometry": {"type": "Polygon", "coordinates": [[[15.869751, -4.2094648, 0.0], [15.8711243, -4.2094648, 0.0], [15.8711243, -4.2067256, 0.0], [15.869751, -4.2067256, 0.0], [15.869751, -4.2094648, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1286}, "geometry": {"type": "Polygon", "coordinates": [[[15.8766174, -4.2080952, 0.0], [15.8807373, -4.2080952, 0.0], [15.8807373, -4.2067256, 0.0], [15.8766174, -4.2067256, 0.0], [15.8766174, -4.2080952, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 68}, "geometry": {"type": "Polygon", "coordinates": [[[15.5950928, -4.221791, 0.0], [15.5992126, -4.221791, 0.0], [15.5992126, -4.2135736, 0.0], [15.5950928, -4.2135736, 0.0], [15.5950928, -4.221791, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 150}, "geometry": {"type": "Polygon", "coordinates": [[[15.6362915, -4.2135736, 0.0], [15.6376648, -4.2135736, 0.0], [15.6376648, -4.2108344, 0.0], [15.6362915, -4.2108344, 0.0], [15.6362915, -4.2135736, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 162}, "geometry": {"type": "Polygon", "coordinates": [[[15.6417847, -4.2135736, 0.0], [15.6486511, -4.2135736, 0.0], [15.6486511, -4.212204, 0.0], [15.6417847, -4.212204, 0.0], [15.6417847, -4.2135736, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 212}, "geometry": {"type": "Polygon", "coordinates": [[[15.6637573, -4.2149431, 0.0], [15.6665039, -4.2149431, 0.0], [15.6665039, -4.2135736, 0.0], [15.6637573, -4.2135736, 0.0], [15.6637573, -4.2149431, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 458}, "geometry": {"type": "Polygon", "coordinates": [[[15.7214355, -4.2176823, 0.0], [15.7269287, -4.2176823, 0.0], [15.7269287, -4.2135736, 0.0], [15.7214355, -4.2135736, 0.0], [15.7214355, -4.2176823, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 776}, "geometry": {"type": "Polygon", "coordinates": [[[15.7749939, -4.2135736, 0.0], [15.7763672, -4.2135736, 0.0], [15.7763672, -4.212204, 0.0], [15.7749939, -4.212204, 0.0], [15.7749939, -4.2135736, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 803}, "geometry": {"type": "Polygon", "coordinates": [[[15.7804871, -4.2149431, 0.0], [15.7818604, -4.2149431, 0.0], [15.7818604, -4.212204, 0.0], [15.7804871, -4.212204, 0.0], [15.7804871, -4.2149431, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 888}, "geometry": {"type": "Polygon", "coordinates": [[[15.7969666, -4.2135736, 0.0], [15.7983398, -4.2135736, 0.0], [15.7983398, -4.212204, 0.0], [15.7969666, -4.212204, 0.0], [15.7969666, -4.2135736, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 966}, "geometry": {"type": "Polygon", "coordinates": [[[15.8148193, -4.2149431, 0.0], [15.8161926, -4.2149431, 0.0], [15.8161926, -4.2135736, 0.0], [15.8148193, -4.2135736, 0.0], [15.8148193, -4.2149431, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 995}, "geometry": {"type": "Polygon", "coordinates": [[[15.8189392, -4.2135736, 0.0], [15.8203125, -4.2135736, 0.0], [15.8203125, -4.212204, 0.0], [15.8189392, -4.212204, 0.0], [15.8189392, -4.2135736, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1103}, "geometry": {"type": "Polygon", "coordinates": [[[15.8422852, -4.2163127, 0.0], [15.846405, -4.2163127, 0.0], [15.846405, -4.2135736, 0.0], [15.8422852, -4.2135736, 0.0], [15.8422852, -4.2163127, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1218}, "geometry": {"type": "Polygon", "coordinates": [[[15.8642578, -4.2149431, 0.0], [15.8683777, -4.2149431, 0.0], [15.8683777, -4.2108344, 0.0], [15.8642578, -4.2108344, 0.0], [15.8642578, -4.2149431, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1298}, "geometry": {"type": "Polygon", "coordinates": [[[15.879364, -4.212204, 0.0], [15.8807373, -4.212204, 0.0], [15.8807373, -4.2108344, 0.0], [15.879364, -4.2108344, 0.0], [15.879364, -4.212204, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1417}, "geometry": {"type": "Polygon", "coordinates": [[[15.9013367, -4.2149431, 0.0], [15.90271, -4.2149431, 0.0], [15.90271, -4.2135736, 0.0], [15.9013367, -4.2135736, 0.0], [15.9013367, -4.2149431, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 310}, "geometry": {"type": "Polygon", "coordinates": [[[15.6925964, -4.2176823, 0.0], [15.695343, -4.2176823, 0.0], [15.695343, -4.2149431, 0.0], [15.6925964, -4.2149431, 0.0], [15.6925964, -4.2176823, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 426}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.2176823, 0.0], [15.718689, -4.2176823, 0.0], [15.718689, -4.2163127, 0.0], [15.7173157, -4.2163127, 0.0], [15.7173157, -4.2176823, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 600}, "geometry": {"type": "Polygon", "coordinates": [[[15.7475281, -4.2204214, 0.0], [15.7489014, -4.2204214, 0.0], [15.7489014, -4.2176823, 0.0], [15.7475281, -4.2176823, 0.0], [15.7475281, -4.2204214, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 667}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.2204214, 0.0], [15.7640076, -4.2204214, 0.0], [15.7640076, -4.2149431, 0.0], [15.7557678, -4.2149431, 0.0], [15.7557678, -4.2204214, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 828}, "geometry": {"type": "Polygon", "coordinates": [[[15.7859802, -4.2176823, 0.0], [15.7873535, -4.2176823, 0.0], [15.7873535, -4.2163127, 0.0], [15.7859802, -4.2163127, 0.0], [15.7859802, -4.2176823, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 943}, "geometry": {"type": "Polygon", "coordinates": [[[15.8079529, -4.2190519, 0.0], [15.8093262, -4.2190519, 0.0], [15.8093262, -4.2163127, 0.0], [15.8079529, -4.2163127, 0.0], [15.8079529, -4.2190519, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1081}, "geometry": {"type": "Polygon", "coordinates": [[[15.836792, -4.2190519, 0.0], [15.8381653, -4.2190519, 0.0], [15.8381653, -4.2176823, 0.0], [15.836792, -4.2176823, 0.0], [15.836792, -4.2190519, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 104}, "geometry": {"type": "Polygon", "coordinates": [[[15.6184387, -4.2231606, 0.0], [15.619812, -4.2231606, 0.0], [15.619812, -4.221791, 0.0], [15.6184387, -4.221791, 0.0], [15.6184387, -4.2231606, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 199}, "geometry": {"type": "Polygon", "coordinates": [[[15.6568909, -4.2204214, 0.0], [15.6582642, -4.2204214, 0.0], [15.6582642, -4.2190519, 0.0], [15.6568909, -4.2190519, 0.0], [15.6568909, -4.2204214, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 739}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.221791, 0.0], [15.7681274, -4.221791, 0.0], [15.7681274, -4.2204214, 0.0], [15.7667542, -4.2204214, 0.0], [15.7667542, -4.221791, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1208}, "geometry": {"type": "Polygon", "coordinates": [[[15.8628845, -4.2204214, 0.0], [15.8642578, -4.2204214, 0.0], [15.8642578, -4.2190519, 0.0], [15.8628845, -4.2190519, 0.0], [15.8628845, -4.2204214, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1241}, "geometry": {"type": "Polygon", "coordinates": [[[15.8683777, -4.2258997, 0.0], [15.8724976, -4.2258997, 0.0], [15.8724976, -4.221791, 0.0], [15.8683777, -4.221791, 0.0], [15.8683777, -4.2258997, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1279}, "geometry": {"type": "Polygon", "coordinates": [[[15.8752441, -4.221791, 0.0], [15.8766174, -4.221791, 0.0], [15.8766174, -4.2204214, 0.0], [15.8752441, -4.2204214, 0.0], [15.8752441, -4.221791, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1349}, "geometry": {"type": "Polygon", "coordinates": [[[15.8876038, -4.2245301, 0.0], [15.8930969, -4.2245301, 0.0], [15.8930969, -4.2204214, 0.0], [15.8876038, -4.2204214, 0.0], [15.8876038, -4.2245301, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1396}, "geometry": {"type": "Polygon", "coordinates": [[[15.8958435, -4.2231606, 0.0], [15.8999634, -4.2231606, 0.0], [15.8999634, -4.2204214, 0.0], [15.8958435, -4.2204214, 0.0], [15.8958435, -4.2231606, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 66}, "geometry": {"type": "Polygon", "coordinates": [[[15.5909729, -4.2272692, 0.0], [15.5950928, -4.2272692, 0.0], [15.5950928, -4.2258997, 0.0], [15.5909729, -4.2258997, 0.0], [15.5909729, -4.2272692, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 79}, "geometry": {"type": "Polygon", "coordinates": [[[15.6047058, -4.2245301, 0.0], [15.6074524, -4.2245301, 0.0], [15.6074524, -4.2231606, 0.0], [15.6047058, -4.2231606, 0.0], [15.6047058, -4.2245301, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 85}, "geometry": {"type": "Polygon", "coordinates": [[[15.610199, -4.2272692, 0.0], [15.6115723, -4.2272692, 0.0], [15.6115723, -4.2258997, 0.0], [15.610199, -4.2258997, 0.0], [15.610199, -4.2272692, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 427}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.2272692, 0.0], [15.7228088, -4.2272692, 0.0], [15.7228088, -4.2231606, 0.0], [15.7173157, -4.2231606, 0.0], [15.7173157, -4.2272692, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 488}, "geometry": {"type": "Polygon", "coordinates": [[[15.728302, -4.2258997, 0.0], [15.7310486, -4.2258997, 0.0], [15.7310486, -4.2231606, 0.0], [15.728302, -4.2231606, 0.0], [15.728302, -4.2258997, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 956}, "geometry": {"type": "Polygon", "coordinates": [[[15.8120728, -4.2272692, 0.0], [15.813446, -4.2272692, 0.0], [15.813446, -4.2231606, 0.0], [15.8120728, -4.2231606, 0.0], [15.8120728, -4.2272692, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 996}, "geometry": {"type": "Polygon", "coordinates": [[[15.8189392, -4.2245301, 0.0], [15.8203125, -4.2245301, 0.0], [15.8203125, -4.2231606, 0.0], [15.8189392, -4.2231606, 0.0], [15.8189392, -4.2245301, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1434}, "geometry": {"type": "Polygon", "coordinates": [[[15.9054565, -4.2286388, 0.0], [15.9095764, -4.2286388, 0.0], [15.9095764, -4.2245301, 0.0], [15.9054565, -4.2245301, 0.0], [15.9054565, -4.2286388, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 99}, "geometry": {"type": "Polygon", "coordinates": [[[15.6156921, -4.2327474, 0.0], [15.6184387, -4.2327474, 0.0], [15.6184387, -4.2272692, 0.0], [15.6156921, -4.2272692, 0.0], [15.6156921, -4.2327474, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 163}, "geometry": {"type": "Polygon", "coordinates": [[[15.6417847, -4.2313779, 0.0], [15.643158, -4.2313779, 0.0], [15.643158, -4.2272692, 0.0], [15.6417847, -4.2272692, 0.0], [15.6417847, -4.2313779, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 583}, "geometry": {"type": "Polygon", "coordinates": [[[15.7447815, -4.2313779, 0.0], [15.7475281, -4.2313779, 0.0], [15.7475281, -4.2286388, 0.0], [15.7447815, -4.2286388, 0.0], [15.7447815, -4.2313779, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 658}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -4.2368561, 0.0], [15.7557678, -4.2368561, 0.0], [15.7557678, -4.2300083, 0.0], [15.7530212, -4.2300083, 0.0], [15.7530212, -4.2368561, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 860}, "geometry": {"type": "Polygon", "coordinates": [[[15.7914734, -4.2354865, 0.0], [15.7997131, -4.2354865, 0.0], [15.7997131, -4.2272692, 0.0], [15.7914734, -4.2272692, 0.0], [15.7914734, -4.2354865, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1132}, "geometry": {"type": "Polygon", "coordinates": [[[15.8491516, -4.2313779, 0.0], [15.8505249, -4.2313779, 0.0], [15.8505249, -4.2300083, 0.0], [15.8491516, -4.2300083, 0.0], [15.8491516, -4.2313779, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1270}, "geometry": {"type": "Polygon", "coordinates": [[[15.8738708, -4.2286388, 0.0], [15.8766174, -4.2286388, 0.0], [15.8766174, -4.2272692, 0.0], [15.8738708, -4.2272692, 0.0], [15.8738708, -4.2286388, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1527}, "geometry": {"type": "Polygon", "coordinates": [[[15.9301758, -4.2313779, 0.0], [15.9315491, -4.2313779, 0.0], [15.9315491, -4.2300083, 0.0], [15.9301758, -4.2300083, 0.0], [15.9301758, -4.2313779, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 32}, "geometry": {"type": "Polygon", "coordinates": [[[15.5552673, -4.234117, 0.0], [15.5593872, -4.234117, 0.0], [15.5593872, -4.2313779, 0.0], [15.5552673, -4.2313779, 0.0], [15.5552673, -4.234117, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 112}, "geometry": {"type": "Polygon", "coordinates": [[[15.6211853, -4.2368561, 0.0], [15.6253052, -4.2368561, 0.0], [15.6253052, -4.2327474, 0.0], [15.6211853, -4.2327474, 0.0], [15.6211853, -4.2368561, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 405}, "geometry": {"type": "Polygon", "coordinates": [[[15.7118225, -4.2354865, 0.0], [15.7145691, -4.2354865, 0.0], [15.7145691, -4.234117, 0.0], [15.7118225, -4.234117, 0.0], [15.7118225, -4.2354865, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 428}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.2354865, 0.0], [15.718689, -4.2354865, 0.0], [15.718689, -4.2327474, 0.0], [15.7173157, -4.2327474, 0.0], [15.7173157, -4.2354865, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 740}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.2327474, 0.0], [15.7681274, -4.2327474, 0.0], [15.7681274, -4.2313779, 0.0], [15.7667542, -4.2313779, 0.0], [15.7667542, -4.2327474, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 821}, "geometry": {"type": "Polygon", "coordinates": [[[15.7846069, -4.2368561, 0.0], [15.7887268, -4.2368561, 0.0], [15.7887268, -4.234117, 0.0], [15.7846069, -4.234117, 0.0], [15.7846069, -4.2368561, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1057}, "geometry": {"type": "Polygon", "coordinates": [[[15.8312988, -4.2368561, 0.0], [15.8354187, -4.2368561, 0.0], [15.8354187, -4.2313779, 0.0], [15.8312988, -4.2313779, 0.0], [15.8312988, -4.2368561, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1104}, "geometry": {"type": "Polygon", "coordinates": [[[15.8422852, -4.234117, 0.0], [15.8450317, -4.234117, 0.0], [15.8450317, -4.2327474, 0.0], [15.8422852, -4.2327474, 0.0], [15.8422852, -4.234117, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1173}, "geometry": {"type": "Polygon", "coordinates": [[[15.8560181, -4.234117, 0.0], [15.8573914, -4.234117, 0.0], [15.8573914, -4.2313779, 0.0], [15.8560181, -4.2313779, 0.0], [15.8560181, -4.234117, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 364}, "geometry": {"type": "Polygon", "coordinates": [[[15.7049561, -4.2382256, 0.0], [15.7063293, -4.2382256, 0.0], [15.7063293, -4.2368561, 0.0], [15.7049561, -4.2368561, 0.0], [15.7049561, -4.2382256, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 590}, "geometry": {"type": "Polygon", "coordinates": [[[15.7461548, -4.2437037, 0.0], [15.7489014, -4.2437037, 0.0], [15.7489014, -4.2382256, 0.0], [15.7461548, -4.2382256, 0.0], [15.7461548, -4.2437037, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 732}, "geometry": {"type": "Polygon", "coordinates": [[[15.7653809, -4.2423342, 0.0], [15.7695007, -4.2423342, 0.0], [15.7695007, -4.2368561, 0.0], [15.7653809, -4.2368561, 0.0], [15.7653809, -4.2423342, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 852}, "geometry": {"type": "Polygon", "coordinates": [[[15.7901001, -4.2423342, 0.0], [15.79422, -4.2423342, 0.0], [15.79422, -4.2382256, 0.0], [15.7901001, -4.2382256, 0.0], [15.7901001, -4.2423342, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1037}, "geometry": {"type": "Polygon", "coordinates": [[[15.827179, -4.2395951, 0.0], [15.8312988, -4.2395951, 0.0], [15.8312988, -4.2354865, 0.0], [15.827179, -4.2354865, 0.0], [15.827179, -4.2395951, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1258}, "geometry": {"type": "Polygon", "coordinates": [[[15.8711243, -4.2395951, 0.0], [15.8766174, -4.2395951, 0.0], [15.8766174, -4.2354865, 0.0], [15.8711243, -4.2354865, 0.0], [15.8711243, -4.2395951, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1515}, "geometry": {"type": "Polygon", "coordinates": [[[15.9274292, -4.2382256, 0.0], [15.9288025, -4.2382256, 0.0], [15.9288025, -4.2368561, 0.0], [15.9274292, -4.2368561, 0.0], [15.9274292, -4.2382256, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1553}, "geometry": {"type": "Polygon", "coordinates": [[[15.9411621, -4.2368561, 0.0], [15.9425354, -4.2368561, 0.0], [15.9425354, -4.2354865, 0.0], [15.9411621, -4.2354865, 0.0], [15.9411621, -4.2368561, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 394}, "geometry": {"type": "Polygon", "coordinates": [[[15.7104492, -4.2423342, 0.0], [15.7118225, -4.2423342, 0.0], [15.7118225, -4.2409647, 0.0], [15.7104492, -4.2409647, 0.0], [15.7104492, -4.2423342, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 800}, "geometry": {"type": "Polygon", "coordinates": [[[15.7791138, -4.2437037, 0.0], [15.7804871, -4.2437037, 0.0], [15.7804871, -4.2423342, 0.0], [15.7791138, -4.2423342, 0.0], [15.7791138, -4.2437037, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 889}, "geometry": {"type": "Polygon", "coordinates": [[[15.7969666, -4.2409647, 0.0], [15.7983398, -4.2409647, 0.0], [15.7983398, -4.2395951, 0.0], [15.7969666, -4.2395951, 0.0], [15.7969666, -4.2409647, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1187}, "geometry": {"type": "Polygon", "coordinates": [[[15.8587646, -4.2437037, 0.0], [15.8601379, -4.2437037, 0.0], [15.8601379, -4.2423342, 0.0], [15.8587646, -4.2423342, 0.0], [15.8587646, -4.2437037, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1529}, "geometry": {"type": "Polygon", "coordinates": [[[15.9315491, -4.2437037, 0.0], [15.9329224, -4.2437037, 0.0], [15.9329224, -4.2423342, 0.0], [15.9315491, -4.2423342, 0.0], [15.9315491, -4.2437037, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 176}, "geometry": {"type": "Polygon", "coordinates": [[[15.6472778, -4.2464428, 0.0], [15.6486511, -4.2464428, 0.0], [15.6486511, -4.2450732, 0.0], [15.6472778, -4.2450732, 0.0], [15.6472778, -4.2464428, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 347}, "geometry": {"type": "Polygon", "coordinates": [[[15.7008362, -4.2464428, 0.0], [15.7035828, -4.2464428, 0.0], [15.7035828, -4.2437037, 0.0], [15.7008362, -4.2437037, 0.0], [15.7008362, -4.2464428, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 372}, "geometry": {"type": "Polygon", "coordinates": [[[15.7063293, -4.2478123, 0.0], [15.7077026, -4.2478123, 0.0], [15.7077026, -4.2464428, 0.0], [15.7063293, -4.2464428, 0.0], [15.7063293, -4.2478123, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 442}, "geometry": {"type": "Polygon", "coordinates": [[[15.718689, -4.2532903, 0.0], [15.7255554, -4.2532903, 0.0], [15.7255554, -4.2437037, 0.0], [15.718689, -4.2437037, 0.0], [15.718689, -4.2532903, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 514}, "geometry": {"type": "Polygon", "coordinates": [[[15.7337952, -4.2478123, 0.0], [15.7351685, -4.2478123, 0.0], [15.7351685, -4.2464428, 0.0], [15.7337952, -4.2464428, 0.0], [15.7337952, -4.2478123, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 713}, "geometry": {"type": "Polygon", "coordinates": [[[15.7626343, -4.2491818, 0.0], [15.7653809, -4.2491818, 0.0], [15.7653809, -4.2464428, 0.0], [15.7626343, -4.2464428, 0.0], [15.7626343, -4.2491818, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 853}, "geometry": {"type": "Polygon", "coordinates": [[[15.7901001, -4.2464428, 0.0], [15.7914734, -4.2464428, 0.0], [15.7914734, -4.2450732, 0.0], [15.7901001, -4.2450732, 0.0], [15.7901001, -4.2464428, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 890}, "geometry": {"type": "Polygon", "coordinates": [[[15.7969666, -4.2450732, 0.0], [15.8010864, -4.2450732, 0.0], [15.8010864, -4.2437037, 0.0], [15.7969666, -4.2437037, 0.0], [15.7969666, -4.2450732, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1006}, "geometry": {"type": "Polygon", "coordinates": [[[15.8216858, -4.2491818, 0.0], [15.8244324, -4.2491818, 0.0], [15.8244324, -4.2464428, 0.0], [15.8216858, -4.2464428, 0.0], [15.8216858, -4.2491818, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1308}, "geometry": {"type": "Polygon", "coordinates": [[[15.8807373, -4.2450732, 0.0], [15.8821106, -4.2450732, 0.0], [15.8821106, -4.2437037, 0.0], [15.8807373, -4.2437037, 0.0], [15.8807373, -4.2450732, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1435}, "geometry": {"type": "Polygon", "coordinates": [[[15.9054565, -4.2464428, 0.0], [15.9068298, -4.2464428, 0.0], [15.9068298, -4.2450732, 0.0], [15.9054565, -4.2450732, 0.0], [15.9054565, -4.2464428, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1472}, "geometry": {"type": "Polygon", "coordinates": [[[15.9164429, -4.2478123, 0.0], [15.9178162, -4.2478123, 0.0], [15.9178162, -4.2464428, 0.0], [15.9164429, -4.2464428, 0.0], [15.9164429, -4.2478123, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1548}, "geometry": {"type": "Polygon", "coordinates": [[[15.9384155, -4.2450732, 0.0], [15.9397888, -4.2450732, 0.0], [15.9397888, -4.2437037, 0.0], [15.9384155, -4.2437037, 0.0], [15.9384155, -4.2450732, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 180}, "geometry": {"type": "Polygon", "coordinates": [[[15.6486511, -4.2519208, 0.0], [15.6500244, -4.2519208, 0.0], [15.6500244, -4.2505513, 0.0], [15.6486511, -4.2505513, 0.0], [15.6486511, -4.2519208, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 572}, "geometry": {"type": "Polygon", "coordinates": [[[15.7434082, -4.2519208, 0.0], [15.7447815, -4.2519208, 0.0], [15.7447815, -4.2505513, 0.0], [15.7434082, -4.2505513, 0.0], [15.7434082, -4.2519208, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 609}, "geometry": {"type": "Polygon", "coordinates": [[[15.7489014, -4.2532903, 0.0], [15.7543945, -4.2532903, 0.0], [15.7543945, -4.2505513, 0.0], [15.7489014, -4.2505513, 0.0], [15.7489014, -4.2532903, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 777}, "geometry": {"type": "Polygon", "coordinates": [[[15.7749939, -4.2491818, 0.0], [15.7763672, -4.2491818, 0.0], [15.7763672, -4.2478123, 0.0], [15.7749939, -4.2478123, 0.0], [15.7749939, -4.2491818, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 869}, "geometry": {"type": "Polygon", "coordinates": [[[15.7928467, -4.2519208, 0.0], [15.7969666, -4.2519208, 0.0], [15.7969666, -4.2491818, 0.0], [15.7928467, -4.2491818, 0.0], [15.7928467, -4.2519208, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1209}, "geometry": {"type": "Polygon", "coordinates": [[[15.8628845, -4.2505513, 0.0], [15.8642578, -4.2505513, 0.0], [15.8642578, -4.2491818, 0.0], [15.8628845, -4.2491818, 0.0], [15.8628845, -4.2505513, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1384}, "geometry": {"type": "Polygon", "coordinates": [[[15.8930969, -4.2491818, 0.0], [15.8958435, -4.2491818, 0.0], [15.8958435, -4.2478123, 0.0], [15.8930969, -4.2478123, 0.0], [15.8930969, -4.2491818, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1477}, "geometry": {"type": "Polygon", "coordinates": [[[15.9178162, -4.2519208, 0.0], [15.921936, -4.2519208, 0.0], [15.921936, -4.2505513, 0.0], [15.9178162, -4.2505513, 0.0], [15.9178162, -4.2519208, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1523}, "geometry": {"type": "Polygon", "coordinates": [[[15.9288025, -4.2505513, 0.0], [15.9301758, -4.2505513, 0.0], [15.9301758, -4.2491818, 0.0], [15.9288025, -4.2491818, 0.0], [15.9288025, -4.2505513, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1532}, "geometry": {"type": "Polygon", "coordinates": [[[15.9329224, -4.2505513, 0.0], [15.9370422, -4.2505513, 0.0], [15.9370422, -4.2491818, 0.0], [15.9329224, -4.2491818, 0.0], [15.9329224, -4.2505513, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 35}, "geometry": {"type": "Polygon", "coordinates": [[[15.5566406, -4.2560294, 0.0], [15.5580139, -4.2560294, 0.0], [15.5580139, -4.2532903, 0.0], [15.5566406, -4.2532903, 0.0], [15.5566406, -4.2560294, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 72}, "geometry": {"type": "Polygon", "coordinates": [[[15.5978394, -4.2628768, 0.0], [15.6088257, -4.2628768, 0.0], [15.6088257, -4.2519208, 0.0], [15.5978394, -4.2519208, 0.0], [15.5978394, -4.2628768, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 128}, "geometry": {"type": "Polygon", "coordinates": [[[15.6266785, -4.2587684, 0.0], [15.6349182, -4.2587684, 0.0], [15.6349182, -4.2546598, 0.0], [15.6266785, -4.2546598, 0.0], [15.6266785, -4.2587684, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 687}, "geometry": {"type": "Polygon", "coordinates": [[[15.7585144, -4.2587684, 0.0], [15.7640076, -4.2587684, 0.0], [15.7640076, -4.2546598, 0.0], [15.7585144, -4.2546598, 0.0], [15.7585144, -4.2587684, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 975}, "geometry": {"type": "Polygon", "coordinates": [[[15.8161926, -4.2573989, 0.0], [15.8189392, -4.2573989, 0.0], [15.8189392, -4.2546598, 0.0], [15.8161926, -4.2546598, 0.0], [15.8161926, -4.2573989, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1052}, "geometry": {"type": "Polygon", "coordinates": [[[15.8299255, -4.2560294, 0.0], [15.8312988, -4.2560294, 0.0], [15.8312988, -4.2546598, 0.0], [15.8299255, -4.2546598, 0.0], [15.8299255, -4.2560294, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1480}, "geometry": {"type": "Polygon", "coordinates": [[[15.9191895, -4.2560294, 0.0], [15.9205627, -4.2560294, 0.0], [15.9205627, -4.2546598, 0.0], [15.9191895, -4.2546598, 0.0], [15.9191895, -4.2560294, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 763}, "geometry": {"type": "Polygon", "coordinates": [[[15.770874, -4.2573989, 0.0], [15.7736206, -4.2573989, 0.0], [15.7736206, -4.2560294, 0.0], [15.770874, -4.2560294, 0.0], [15.770874, -4.2573989, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 801}, "geometry": {"type": "Polygon", "coordinates": [[[15.7791138, -4.2601379, 0.0], [15.7873535, -4.2601379, 0.0], [15.7873535, -4.2560294, 0.0], [15.7791138, -4.2560294, 0.0], [15.7791138, -4.2601379, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 870}, "geometry": {"type": "Polygon", "coordinates": [[[15.7928467, -4.2587684, 0.0], [15.79422, -4.2587684, 0.0], [15.79422, -4.2573989, 0.0], [15.7928467, -4.2573989, 0.0], [15.7928467, -4.2587684, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1113}, "geometry": {"type": "Polygon", "coordinates": [[[15.8450317, -4.2587684, 0.0], [15.846405, -4.2587684, 0.0], [15.846405, -4.2573989, 0.0], [15.8450317, -4.2573989, 0.0], [15.8450317, -4.2587684, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1133}, "geometry": {"type": "Polygon", "coordinates": [[[15.8491516, -4.2628768, 0.0], [15.8532715, -4.2628768, 0.0], [15.8532715, -4.2587684, 0.0], [15.8491516, -4.2587684, 0.0], [15.8491516, -4.2628768, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1496}, "geometry": {"type": "Polygon", "coordinates": [[[15.9233093, -4.2601379, 0.0], [15.9260559, -4.2601379, 0.0], [15.9260559, -4.2573989, 0.0], [15.9233093, -4.2573989, 0.0], [15.9233093, -4.2601379, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 133}, "geometry": {"type": "Polygon", "coordinates": [[[15.6280518, -4.2642463, 0.0], [15.629425, -4.2642463, 0.0], [15.629425, -4.2628768, 0.0], [15.6280518, -4.2628768, 0.0], [15.6280518, -4.2642463, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 153}, "geometry": {"type": "Polygon", "coordinates": [[[15.6390381, -4.2628768, 0.0], [15.6445312, -4.2628768, 0.0], [15.6445312, -4.2601379, 0.0], [15.6390381, -4.2601379, 0.0], [15.6390381, -4.2628768, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 682}, "geometry": {"type": "Polygon", "coordinates": [[[15.7571411, -4.2642463, 0.0], [15.7598877, -4.2642463, 0.0], [15.7598877, -4.2615074, 0.0], [15.7571411, -4.2615074, 0.0], [15.7571411, -4.2642463, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 756}, "geometry": {"type": "Polygon", "coordinates": [[[15.7695007, -4.2642463, 0.0], [15.7722473, -4.2642463, 0.0], [15.7722473, -4.2601379, 0.0], [15.7695007, -4.2601379, 0.0], [15.7695007, -4.2642463, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1028}, "geometry": {"type": "Polygon", "coordinates": [[[15.8258057, -4.2642463, 0.0], [15.8285522, -4.2642463, 0.0], [15.8285522, -4.2628768, 0.0], [15.8258057, -4.2628768, 0.0], [15.8258057, -4.2642463, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1072}, "geometry": {"type": "Polygon", "coordinates": [[[15.8340454, -4.2615074, 0.0], [15.8354187, -4.2615074, 0.0], [15.8354187, -4.2601379, 0.0], [15.8340454, -4.2601379, 0.0], [15.8340454, -4.2615074, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1538}, "geometry": {"type": "Polygon", "coordinates": [[[15.9342957, -4.2615074, 0.0], [15.9356689, -4.2615074, 0.0], [15.9356689, -4.2601379, 0.0], [15.9342957, -4.2601379, 0.0], [15.9342957, -4.2615074, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1549}, "geometry": {"type": "Polygon", "coordinates": [[[15.9384155, -4.2628768, 0.0], [15.9397888, -4.2628768, 0.0], [15.9397888, -4.2615074, 0.0], [15.9384155, -4.2615074, 0.0], [15.9384155, -4.2628768, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 122}, "geometry": {"type": "Polygon", "coordinates": [[[15.6239319, -4.2683548, 0.0], [15.6253052, -4.2683548, 0.0], [15.6253052, -4.2669853, 0.0], [15.6239319, -4.2669853, 0.0], [15.6239319, -4.2683548, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 193}, "geometry": {"type": "Polygon", "coordinates": [[[15.652771, -4.2683548, 0.0], [15.6555176, -4.2683548, 0.0], [15.6555176, -4.2669853, 0.0], [15.652771, -4.2669853, 0.0], [15.652771, -4.2683548, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 610}, "geometry": {"type": "Polygon", "coordinates": [[[15.7489014, -4.2669853, 0.0], [15.7516479, -4.2669853, 0.0], [15.7516479, -4.2642463, 0.0], [15.7489014, -4.2642463, 0.0], [15.7489014, -4.2669853, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 785}, "geometry": {"type": "Polygon", "coordinates": [[[15.7763672, -4.2697243, 0.0], [15.7777405, -4.2697243, 0.0], [15.7777405, -4.2656158, 0.0], [15.7763672, -4.2656158, 0.0], [15.7763672, -4.2697243, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 817}, "geometry": {"type": "Polygon", "coordinates": [[[15.7832336, -4.2656158, 0.0], [15.7846069, -4.2656158, 0.0], [15.7846069, -4.2642463, 0.0], [15.7832336, -4.2642463, 0.0], [15.7832336, -4.2656158, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 957}, "geometry": {"type": "Polygon", "coordinates": [[[15.8120728, -4.2669853, 0.0], [15.813446, -4.2669853, 0.0], [15.813446, -4.2656158, 0.0], [15.8120728, -4.2656158, 0.0], [15.8120728, -4.2669853, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1111}, "geometry": {"type": "Polygon", "coordinates": [[[15.8436584, -4.2669853, 0.0], [15.8450317, -4.2669853, 0.0], [15.8450317, -4.2656158, 0.0], [15.8436584, -4.2656158, 0.0], [15.8436584, -4.2669853, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1202}, "geometry": {"type": "Polygon", "coordinates": [[[15.8615112, -4.2683548, 0.0], [15.8670044, -4.2683548, 0.0], [15.8670044, -4.2642463, 0.0], [15.8615112, -4.2642463, 0.0], [15.8615112, -4.2683548, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1291}, "geometry": {"type": "Polygon", "coordinates": [[[15.8779907, -4.2724632, 0.0], [15.8821106, -4.2724632, 0.0], [15.8821106, -4.2642463, 0.0], [15.8779907, -4.2642463, 0.0], [15.8779907, -4.2724632, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1550}, "geometry": {"type": "Polygon", "coordinates": [[[15.9397888, -4.2669853, 0.0], [15.9411621, -4.2669853, 0.0], [15.9411621, -4.2656158, 0.0], [15.9397888, -4.2656158, 0.0], [15.9397888, -4.2669853, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 177}, "geometry": {"type": "Polygon", "coordinates": [[[15.6472778, -4.2724632, 0.0], [15.6486511, -4.2724632, 0.0], [15.6486511, -4.2710938, 0.0], [15.6472778, -4.2710938, 0.0], [15.6472778, -4.2724632, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 551}, "geometry": {"type": "Polygon", "coordinates": [[[15.7392883, -4.2724632, 0.0], [15.7406616, -4.2724632, 0.0], [15.7406616, -4.2710938, 0.0], [15.7392883, -4.2710938, 0.0], [15.7392883, -4.2724632, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 703}, "geometry": {"type": "Polygon", "coordinates": [[[15.761261, -4.2724632, 0.0], [15.7640076, -4.2724632, 0.0], [15.7640076, -4.2710938, 0.0], [15.761261, -4.2710938, 0.0], [15.761261, -4.2724632, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 811}, "geometry": {"type": "Polygon", "coordinates": [[[15.7818604, -4.2724632, 0.0], [15.7873535, -4.2724632, 0.0], [15.7873535, -4.2683548, 0.0], [15.7818604, -4.2683548, 0.0], [15.7818604, -4.2724632, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 922}, "geometry": {"type": "Polygon", "coordinates": [[[15.8052063, -4.2724632, 0.0], [15.8065796, -4.2724632, 0.0], [15.8065796, -4.2710938, 0.0], [15.8052063, -4.2710938, 0.0], [15.8052063, -4.2724632, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1062}, "geometry": {"type": "Polygon", "coordinates": [[[15.8326721, -4.2697243, 0.0], [15.8340454, -4.2697243, 0.0], [15.8340454, -4.2683548, 0.0], [15.8326721, -4.2683548, 0.0], [15.8326721, -4.2697243, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1271}, "geometry": {"type": "Polygon", "coordinates": [[[15.8738708, -4.2710938, 0.0], [15.8752441, -4.2710938, 0.0], [15.8752441, -4.2697243, 0.0], [15.8738708, -4.2697243, 0.0], [15.8738708, -4.2710938, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 623}, "geometry": {"type": "Polygon", "coordinates": [[[15.7502747, -4.2765716, 0.0], [15.7516479, -4.2765716, 0.0], [15.7516479, -4.2752022, 0.0], [15.7502747, -4.2752022, 0.0], [15.7502747, -4.2765716, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 724}, "geometry": {"type": "Polygon", "coordinates": [[[15.7640076, -4.2779411, 0.0], [15.7681274, -4.2779411, 0.0], [15.7681274, -4.2752022, 0.0], [15.7640076, -4.2752022, 0.0], [15.7640076, -4.2779411, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 750}, "geometry": {"type": "Polygon", "coordinates": [[[15.7681274, -4.2834189, 0.0], [15.7749939, -4.2834189, 0.0], [15.7749939, -4.2752022, 0.0], [15.7681274, -4.2752022, 0.0], [15.7681274, -4.2834189, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1090}, "geometry": {"type": "Polygon", "coordinates": [[[15.8395386, -4.2765716, 0.0], [15.8436584, -4.2765716, 0.0], [15.8436584, -4.2724632, 0.0], [15.8395386, -4.2724632, 0.0], [15.8395386, -4.2765716, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1148}, "geometry": {"type": "Polygon", "coordinates": [[[15.8518982, -4.2738327, 0.0], [15.8532715, -4.2738327, 0.0], [15.8532715, -4.2724632, 0.0], [15.8518982, -4.2724632, 0.0], [15.8518982, -4.2738327, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1219}, "geometry": {"type": "Polygon", "coordinates": [[[15.8642578, -4.2752022, 0.0], [15.8683777, -4.2752022, 0.0], [15.8683777, -4.2738327, 0.0], [15.8642578, -4.2738327, 0.0], [15.8642578, -4.2752022, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1318}, "geometry": {"type": "Polygon", "coordinates": [[[15.8821106, -4.2765716, 0.0], [15.8834839, -4.2765716, 0.0], [15.8834839, -4.2752022, 0.0], [15.8821106, -4.2752022, 0.0], [15.8821106, -4.2765716, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1342}, "geometry": {"type": "Polygon", "coordinates": [[[15.8862305, -4.2765716, 0.0], [15.8876038, -4.2765716, 0.0], [15.8876038, -4.2738327, 0.0], [15.8862305, -4.2738327, 0.0], [15.8862305, -4.2765716, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1481}, "geometry": {"type": "Polygon", "coordinates": [[[15.9191895, -4.2752022, 0.0], [15.9205627, -4.2752022, 0.0], [15.9205627, -4.2738327, 0.0], [15.9191895, -4.2738327, 0.0], [15.9191895, -4.2752022, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1533}, "geometry": {"type": "Polygon", "coordinates": [[[15.9329224, -4.2765716, 0.0], [15.9342957, -4.2765716, 0.0], [15.9342957, -4.2752022, 0.0], [15.9329224, -4.2752022, 0.0], [15.9329224, -4.2765716, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 525}, "geometry": {"type": "Polygon", "coordinates": [[[15.7351685, -4.2847884, 0.0], [15.7461548, -4.2847884, 0.0], [15.7461548, -4.2779411, 0.0], [15.7351685, -4.2779411, 0.0], [15.7351685, -4.2847884, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 804}, "geometry": {"type": "Polygon", "coordinates": [[[15.7804871, -4.28068, 0.0], [15.7846069, -4.28068, 0.0], [15.7846069, -4.2765716, 0.0], [15.7804871, -4.2765716, 0.0], [15.7804871, -4.28068, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 929}, "geometry": {"type": "Polygon", "coordinates": [[[15.8065796, -4.28068, 0.0], [15.8079529, -4.28068, 0.0], [15.8079529, -4.2793106, 0.0], [15.8065796, -4.2793106, 0.0], [15.8065796, -4.28068, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 958}, "geometry": {"type": "Polygon", "coordinates": [[[15.8120728, -4.2793106, 0.0], [15.8148193, -4.2793106, 0.0], [15.8148193, -4.2765716, 0.0], [15.8120728, -4.2765716, 0.0], [15.8120728, -4.2793106, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1428}, "geometry": {"type": "Polygon", "coordinates": [[[15.9040833, -4.2793106, 0.0], [15.9054565, -4.2793106, 0.0], [15.9054565, -4.2765716, 0.0], [15.9040833, -4.2765716, 0.0], [15.9040833, -4.2793106, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1568}, "geometry": {"type": "Polygon", "coordinates": [[[15.9480286, -4.28068, 0.0], [15.9494019, -4.28068, 0.0], [15.9494019, -4.2779411, 0.0], [15.9480286, -4.2779411, 0.0], [15.9480286, -4.28068, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1589}, "geometry": {"type": "Polygon", "coordinates": [[[15.9603882, -4.2793106, 0.0], [15.9617615, -4.2793106, 0.0], [15.9617615, -4.2779411, 0.0], [15.9603882, -4.2779411, 0.0], [15.9603882, -4.2793106, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1596}, "geometry": {"type": "Polygon", "coordinates": [[[15.9672546, -4.28068, 0.0], [15.9727478, -4.28068, 0.0], [15.9727478, -4.2765716, 0.0], [15.9672546, -4.2765716, 0.0], [15.9672546, -4.28068, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 601}, "geometry": {"type": "Polygon", "coordinates": [[[15.7475281, -4.2902662, 0.0], [15.7543945, -4.2902662, 0.0], [15.7543945, -4.2820495, 0.0], [15.7475281, -4.2820495, 0.0], [15.7475281, -4.2902662, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 714}, "geometry": {"type": "Polygon", "coordinates": [[[15.7626343, -4.2820495, 0.0], [15.7640076, -4.2820495, 0.0], [15.7640076, -4.28068, 0.0], [15.7626343, -4.28068, 0.0], [15.7626343, -4.2820495, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 793}, "geometry": {"type": "Polygon", "coordinates": [[[15.7777405, -4.2847884, 0.0], [15.7791138, -4.2847884, 0.0], [15.7791138, -4.2834189, 0.0], [15.7777405, -4.2834189, 0.0], [15.7777405, -4.2847884, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 861}, "geometry": {"type": "Polygon", "coordinates": [[[15.7914734, -4.2861579, 0.0], [15.79422, -4.2861579, 0.0], [15.79422, -4.2834189, 0.0], [15.7914734, -4.2834189, 0.0], [15.7914734, -4.2861579, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 951}, "geometry": {"type": "Polygon", "coordinates": [[[15.8106995, -4.2847884, 0.0], [15.8120728, -4.2847884, 0.0], [15.8120728, -4.2834189, 0.0], [15.8106995, -4.2834189, 0.0], [15.8106995, -4.2847884, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1046}, "geometry": {"type": "Polygon", "coordinates": [[[15.8285522, -4.2847884, 0.0], [15.8299255, -4.2847884, 0.0], [15.8299255, -4.2820495, 0.0], [15.8285522, -4.2820495, 0.0], [15.8285522, -4.2847884, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1079}, "geometry": {"type": "Polygon", "coordinates": [[[15.8354187, -4.2916356, 0.0], [15.8436584, -4.2916356, 0.0], [15.8436584, -4.28068, 0.0], [15.8354187, -4.28068, 0.0], [15.8354187, -4.2916356, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1134}, "geometry": {"type": "Polygon", "coordinates": [[[15.8491516, -4.2847884, 0.0], [15.8518982, -4.2847884, 0.0], [15.8518982, -4.2820495, 0.0], [15.8491516, -4.2820495, 0.0], [15.8491516, -4.2847884, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1188}, "geometry": {"type": "Polygon", "coordinates": [[[15.8587646, -4.2847884, 0.0], [15.8601379, -4.2847884, 0.0], [15.8601379, -4.2834189, 0.0], [15.8587646, -4.2834189, 0.0], [15.8587646, -4.2847884, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1564}, "geometry": {"type": "Polygon", "coordinates": [[[15.945282, -4.2916356, 0.0], [15.954895, -4.2916356, 0.0], [15.954895, -4.2834189, 0.0], [15.945282, -4.2834189, 0.0], [15.945282, -4.2916356, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 767}, "geometry": {"type": "Polygon", "coordinates": [[[15.7722473, -4.2916356, 0.0], [15.7763672, -4.2916356, 0.0], [15.7763672, -4.2875273, 0.0], [15.7722473, -4.2875273, 0.0], [15.7722473, -4.2916356, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 984}, "geometry": {"type": "Polygon", "coordinates": [[[15.8175659, -4.2875273, 0.0], [15.8189392, -4.2875273, 0.0], [15.8189392, -4.2861579, 0.0], [15.8175659, -4.2861579, 0.0], [15.8175659, -4.2875273, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1210}, "geometry": {"type": "Polygon", "coordinates": [[[15.8628845, -4.2888967, 0.0], [15.8683777, -4.2888967, 0.0], [15.8683777, -4.2847884, 0.0], [15.8628845, -4.2847884, 0.0], [15.8628845, -4.2888967, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1259}, "geometry": {"type": "Polygon", "coordinates": [[[15.8711243, -4.2888967, 0.0], [15.8724976, -4.2888967, 0.0], [15.8724976, -4.2875273, 0.0], [15.8711243, -4.2875273, 0.0], [15.8711243, -4.2888967, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1601}, "geometry": {"type": "Polygon", "coordinates": [[[15.9713745, -4.2888967, 0.0], [15.9741211, -4.2888967, 0.0], [15.9741211, -4.2847884, 0.0], [15.9713745, -4.2847884, 0.0], [15.9713745, -4.2888967, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 591}, "geometry": {"type": "Polygon", "coordinates": [[[15.7461548, -4.2930051, 0.0], [15.7475281, -4.2930051, 0.0], [15.7475281, -4.2902662, 0.0], [15.7461548, -4.2902662, 0.0], [15.7461548, -4.2930051, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 923}, "geometry": {"type": "Polygon", "coordinates": [[[15.8052063, -4.2916356, 0.0], [15.8065796, -4.2916356, 0.0], [15.8065796, -4.2888967, 0.0], [15.8052063, -4.2888967, 0.0], [15.8052063, -4.2916356, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1174}, "geometry": {"type": "Polygon", "coordinates": [[[15.8560181, -4.2902662, 0.0], [15.8587646, -4.2902662, 0.0], [15.8587646, -4.2888967, 0.0], [15.8560181, -4.2888967, 0.0], [15.8560181, -4.2902662, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1319}, "geometry": {"type": "Polygon", "coordinates": [[[15.8821106, -4.2930051, 0.0], [15.8834839, -4.2930051, 0.0], [15.8834839, -4.2916356, 0.0], [15.8821106, -4.2916356, 0.0], [15.8821106, -4.2930051, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1410}, "geometry": {"type": "Polygon", "coordinates": [[[15.8999634, -4.2957439, 0.0], [15.9095764, -4.2957439, 0.0], [15.9095764, -4.2902662, 0.0], [15.8999634, -4.2902662, 0.0], [15.8999634, -4.2957439, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 287}, "geometry": {"type": "Polygon", "coordinates": [[[15.6871033, -4.2984828, 0.0], [15.6939697, -4.2984828, 0.0], [15.6939697, -4.2930051, 0.0], [15.6871033, -4.2930051, 0.0], [15.6871033, -4.2984828, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1105}, "geometry": {"type": "Polygon", "coordinates": [[[15.8422852, -4.2957439, 0.0], [15.8450317, -4.2957439, 0.0], [15.8450317, -4.2943745, 0.0], [15.8422852, -4.2943745, 0.0], [15.8422852, -4.2957439, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1165}, "geometry": {"type": "Polygon", "coordinates": [[[15.8546448, -4.2971134, 0.0], [15.8587646, -4.2971134, 0.0], [15.8587646, -4.2930051, 0.0], [15.8546448, -4.2930051, 0.0], [15.8546448, -4.2971134, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1260}, "geometry": {"type": "Polygon", "coordinates": [[[15.8711243, -4.2943745, 0.0], [15.8724976, -4.2943745, 0.0], [15.8724976, -4.2930051, 0.0], [15.8711243, -4.2930051, 0.0], [15.8711243, -4.2943745, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 878}, "geometry": {"type": "Polygon", "coordinates": [[[15.79422, -4.2998522, 0.0], [15.7969666, -4.2998522, 0.0], [15.7969666, -4.2971134, 0.0], [15.79422, -4.2971134, 0.0], [15.79422, -4.2998522, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 892}, "geometry": {"type": "Polygon", "coordinates": [[[15.7969666, -4.3066993, 0.0], [15.8079529, -4.3066993, 0.0], [15.8079529, -4.2984828, 0.0], [15.7969666, -4.2984828, 0.0], [15.7969666, -4.3066993, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 967}, "geometry": {"type": "Polygon", "coordinates": [[[15.8148193, -4.2984828, 0.0], [15.8161926, -4.2984828, 0.0], [15.8161926, -4.2971134, 0.0], [15.8148193, -4.2971134, 0.0], [15.8148193, -4.2984828, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1226}, "geometry": {"type": "Polygon", "coordinates": [[[15.8656311, -4.2998522, 0.0], [15.8670044, -4.2998522, 0.0], [15.8670044, -4.2971134, 0.0], [15.8656311, -4.2971134, 0.0], [15.8656311, -4.2998522, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1309}, "geometry": {"type": "Polygon", "coordinates": [[[15.8807373, -4.2998522, 0.0], [15.8821106, -4.2998522, 0.0], [15.8821106, -4.2984828, 0.0], [15.8807373, -4.2984828, 0.0], [15.8807373, -4.2998522, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1411}, "geometry": {"type": "Polygon", "coordinates": [[[15.8999634, -4.3025911, 0.0], [15.9013367, -4.3025911, 0.0], [15.9013367, -4.2998522, 0.0], [15.8999634, -4.2998522, 0.0], [15.8999634, -4.3025911, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1558}, "geometry": {"type": "Polygon", "coordinates": [[[15.9425354, -4.3025911, 0.0], [15.945282, -4.3025911, 0.0], [15.945282, -4.2998522, 0.0], [15.9425354, -4.2998522, 0.0], [15.9425354, -4.3025911, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1573}, "geometry": {"type": "Polygon", "coordinates": [[[15.9507751, -4.3012217, 0.0], [15.9521484, -4.3012217, 0.0], [15.9521484, -4.2998522, 0.0], [15.9507751, -4.2998522, 0.0], [15.9507751, -4.3012217, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 281}, "geometry": {"type": "Polygon", "coordinates": [[[15.68573, -4.3025911, 0.0], [15.6871033, -4.3025911, 0.0], [15.6871033, -4.3012217, 0.0], [15.68573, -4.3012217, 0.0], [15.68573, -4.3025911, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 350}, "geometry": {"type": "Polygon", "coordinates": [[[15.7022095, -4.3039605, 0.0], [15.7035828, -4.3039605, 0.0], [15.7035828, -4.3025911, 0.0], [15.7022095, -4.3025911, 0.0], [15.7022095, -4.3039605, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 959}, "geometry": {"type": "Polygon", "coordinates": [[[15.8120728, -4.3039605, 0.0], [15.8189392, -4.3039605, 0.0], [15.8189392, -4.3012217, 0.0], [15.8120728, -4.3012217, 0.0], [15.8120728, -4.3039605, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1233}, "geometry": {"type": "Polygon", "coordinates": [[[15.8670044, -4.3066993, 0.0], [15.869751, -4.3066993, 0.0], [15.869751, -4.3025911, 0.0], [15.8670044, -4.3025911, 0.0], [15.8670044, -4.3066993, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1593}, "geometry": {"type": "Polygon", "coordinates": [[[15.9658813, -4.3039605, 0.0], [15.9672546, -4.3039605, 0.0], [15.9672546, -4.3025911, 0.0], [15.9658813, -4.3025911, 0.0], [15.9658813, -4.3039605, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1603}, "geometry": {"type": "Polygon", "coordinates": [[[15.9727478, -4.3039605, 0.0], [15.9741211, -4.3039605, 0.0], [15.9741211, -4.3012217, 0.0], [15.9727478, -4.3012217, 0.0], [15.9727478, -4.3039605, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1620}, "geometry": {"type": "Polygon", "coordinates": [[[15.9892273, -4.3025911, 0.0], [15.9906006, -4.3025911, 0.0], [15.9906006, -4.3012217, 0.0], [15.9892273, -4.3012217, 0.0], [15.9892273, -4.3025911, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 872}, "geometry": {"type": "Polygon", "coordinates": [[[15.7928467, -4.3066993, 0.0], [15.79422, -4.3066993, 0.0], [15.79422, -4.3053299, 0.0], [15.7928467, -4.3053299, 0.0], [15.7928467, -4.3066993, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1063}, "geometry": {"type": "Polygon", "coordinates": [[[15.8326721, -4.3080687, 0.0], [15.8340454, -4.3080687, 0.0], [15.8340454, -4.3066993, 0.0], [15.8326721, -4.3066993, 0.0], [15.8326721, -4.3080687, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1106}, "geometry": {"type": "Polygon", "coordinates": [[[15.8422852, -4.3080687, 0.0], [15.8436584, -4.3080687, 0.0], [15.8436584, -4.3066993, 0.0], [15.8422852, -4.3066993, 0.0], [15.8422852, -4.3080687, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1166}, "geometry": {"type": "Polygon", "coordinates": [[[15.8546448, -4.3094381, 0.0], [15.8573914, -4.3094381, 0.0], [15.8573914, -4.3053299, 0.0], [15.8546448, -4.3053299, 0.0], [15.8546448, -4.3094381, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1211}, "geometry": {"type": "Polygon", "coordinates": [[[15.8628845, -4.3080687, 0.0], [15.8642578, -4.3080687, 0.0], [15.8642578, -4.3053299, 0.0], [15.8628845, -4.3053299, 0.0], [15.8628845, -4.3080687, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1265}, "geometry": {"type": "Polygon", "coordinates": [[[15.8724976, -4.3080687, 0.0], [15.8738708, -4.3080687, 0.0], [15.8738708, -4.3053299, 0.0], [15.8724976, -4.3053299, 0.0], [15.8724976, -4.3080687, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1606}, "geometry": {"type": "Polygon", "coordinates": [[[15.9768677, -4.3094381, 0.0], [15.978241, -4.3094381, 0.0], [15.978241, -4.3080687, 0.0], [15.9768677, -4.3080687, 0.0], [15.9768677, -4.3094381, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 552}, "geometry": {"type": "Polygon", "coordinates": [[[15.7392883, -4.3135464, 0.0], [15.7406616, -4.3135464, 0.0], [15.7406616, -4.3108076, 0.0], [15.7392883, -4.3108076, 0.0], [15.7392883, -4.3135464, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 931}, "geometry": {"type": "Polygon", "coordinates": [[[15.8065796, -4.3176546, 0.0], [15.8106995, -4.3176546, 0.0], [15.8106995, -4.3108076, 0.0], [15.8065796, -4.3108076, 0.0], [15.8065796, -4.3176546, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1242}, "geometry": {"type": "Polygon", "coordinates": [[[15.8683777, -4.3135464, 0.0], [15.869751, -4.3135464, 0.0], [15.869751, -4.312177, 0.0], [15.8683777, -4.312177, 0.0], [15.8683777, -4.3135464, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1473}, "geometry": {"type": "Polygon", "coordinates": [[[15.9164429, -4.3108076, 0.0], [15.9178162, -4.3108076, 0.0], [15.9178162, -4.3094381, 0.0], [15.9164429, -4.3094381, 0.0], [15.9164429, -4.3108076, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1598}, "geometry": {"type": "Polygon", "coordinates": [[[15.9686279, -4.312177, 0.0], [15.9700012, -4.312177, 0.0], [15.9700012, -4.3108076, 0.0], [15.9686279, -4.3108076, 0.0], [15.9686279, -4.312177, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 351}, "geometry": {"type": "Polygon", "coordinates": [[[15.7022095, -4.3176546, 0.0], [15.7035828, -4.3176546, 0.0], [15.7035828, -4.3162852, 0.0], [15.7022095, -4.3162852, 0.0], [15.7022095, -4.3176546, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 378}, "geometry": {"type": "Polygon", "coordinates": [[[15.7077026, -4.3162852, 0.0], [15.7104492, -4.3162852, 0.0], [15.7104492, -4.3149158, 0.0], [15.7077026, -4.3149158, 0.0], [15.7077026, -4.3162852, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 602}, "geometry": {"type": "Polygon", "coordinates": [[[15.7475281, -4.3149158, 0.0], [15.7489014, -4.3149158, 0.0], [15.7489014, -4.3135464, 0.0], [15.7475281, -4.3135464, 0.0], [15.7475281, -4.3149158, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 908}, "geometry": {"type": "Polygon", "coordinates": [[[15.8010864, -4.3162852, 0.0], [15.803833, -4.3162852, 0.0], [15.803833, -4.3135464, 0.0], [15.8010864, -4.3135464, 0.0], [15.8010864, -4.3162852, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 960}, "geometry": {"type": "Polygon", "coordinates": [[[15.8120728, -4.3162852, 0.0], [15.813446, -4.3162852, 0.0], [15.813446, -4.3149158, 0.0], [15.8120728, -4.3149158, 0.0], [15.8120728, -4.3162852, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1082}, "geometry": {"type": "Polygon", "coordinates": [[[15.836792, -4.3162852, 0.0], [15.8381653, -4.3162852, 0.0], [15.8381653, -4.3149158, 0.0], [15.836792, -4.3149158, 0.0], [15.836792, -4.3162852, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1167}, "geometry": {"type": "Polygon", "coordinates": [[[15.8518982, -4.3368258, 0.0], [15.8601379, -4.3368258, 0.0], [15.8601379, -4.3162852, 0.0], [15.8518982, -4.3162852, 0.0], [15.8518982, -4.3368258, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1372}, "geometry": {"type": "Polygon", "coordinates": [[[15.8917236, -4.3162852, 0.0], [15.8930969, -4.3162852, 0.0], [15.8930969, -4.3135464, 0.0], [15.8917236, -4.3135464, 0.0], [15.8917236, -4.3162852, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1364}, "geometry": {"type": "Polygon", "coordinates": [[[15.8903503, -4.3231321, 0.0], [15.9040833, -4.3231321, 0.0], [15.9040833, -4.3149158, 0.0], [15.8903503, -4.3149158, 0.0], [15.8903503, -4.3231321, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 312}, "geometry": {"type": "Polygon", "coordinates": [[[15.6925964, -4.3217627, 0.0], [15.695343, -4.3217627, 0.0], [15.695343, -4.3190239, 0.0], [15.6925964, -4.3190239, 0.0], [15.6925964, -4.3217627, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 452}, "geometry": {"type": "Polygon", "coordinates": [[[15.7200623, -4.3190239, 0.0], [15.7228088, -4.3190239, 0.0], [15.7228088, -4.3176546, 0.0], [15.7200623, -4.3176546, 0.0], [15.7200623, -4.3190239, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 496}, "geometry": {"type": "Polygon", "coordinates": [[[15.7296753, -4.3203933, 0.0], [15.7310486, -4.3203933, 0.0], [15.7310486, -4.3176546, 0.0], [15.7296753, -4.3176546, 0.0], [15.7296753, -4.3203933, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 924}, "geometry": {"type": "Polygon", "coordinates": [[[15.8052063, -4.3231321, 0.0], [15.8093262, -4.3231321, 0.0], [15.8093262, -4.3203933, 0.0], [15.8052063, -4.3203933, 0.0], [15.8052063, -4.3231321, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1429}, "geometry": {"type": "Polygon", "coordinates": [[[15.9040833, -4.3217627, 0.0], [15.9054565, -4.3217627, 0.0], [15.9054565, -4.3203933, 0.0], [15.9040833, -4.3203933, 0.0], [15.9040833, -4.3217627, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1460}, "geometry": {"type": "Polygon", "coordinates": [[[15.9136963, -4.3190239, 0.0], [15.9150696, -4.3190239, 0.0], [15.9150696, -4.3176546, 0.0], [15.9136963, -4.3176546, 0.0], [15.9136963, -4.3190239, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1617}, "geometry": {"type": "Polygon", "coordinates": [[[15.9864807, -4.3217627, 0.0], [15.987854, -4.3217627, 0.0], [15.987854, -4.3203933, 0.0], [15.9864807, -4.3203933, 0.0], [15.9864807, -4.3217627, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 961}, "geometry": {"type": "Polygon", "coordinates": [[[15.8120728, -4.3258709, 0.0], [15.813446, -4.3258709, 0.0], [15.813446, -4.3245015, 0.0], [15.8120728, -4.3245015, 0.0], [15.8120728, -4.3258709, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1092}, "geometry": {"type": "Polygon", "coordinates": [[[15.8395386, -4.3258709, 0.0], [15.8409119, -4.3258709, 0.0], [15.8409119, -4.3245015, 0.0], [15.8395386, -4.3245015, 0.0], [15.8395386, -4.3258709, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1310}, "geometry": {"type": "Polygon", "coordinates": [[[15.8807373, -4.3245015, 0.0], [15.8821106, -4.3245015, 0.0], [15.8821106, -4.3231321, 0.0], [15.8807373, -4.3231321, 0.0], [15.8807373, -4.3245015, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1610}, "geometry": {"type": "Polygon", "coordinates": [[[15.978241, -4.3272403, 0.0], [15.9809875, -4.3272403, 0.0], [15.9809875, -4.3231321, 0.0], [15.978241, -4.3231321, 0.0], [15.978241, -4.3272403, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 361}, "geometry": {"type": "Polygon", "coordinates": [[[15.7035828, -4.329979, 0.0], [15.7049561, -4.329979, 0.0], [15.7049561, -4.3286096, 0.0], [15.7035828, -4.3286096, 0.0], [15.7035828, -4.329979, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 932}, "geometry": {"type": "Polygon", "coordinates": [[[15.8065796, -4.3327177, 0.0], [15.8093262, -4.3327177, 0.0], [15.8093262, -4.3286096, 0.0], [15.8065796, -4.3286096, 0.0], [15.8065796, -4.3327177, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 977}, "geometry": {"type": "Polygon", "coordinates": [[[15.8161926, -4.329979, 0.0], [15.8175659, -4.329979, 0.0], [15.8175659, -4.3286096, 0.0], [15.8161926, -4.3286096, 0.0], [15.8161926, -4.329979, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1007}, "geometry": {"type": "Polygon", "coordinates": [[[15.8216858, -4.3313484, 0.0], [15.8285522, -4.3313484, 0.0], [15.8285522, -4.3272403, 0.0], [15.8216858, -4.3272403, 0.0], [15.8216858, -4.3313484, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1139}, "geometry": {"type": "Polygon", "coordinates": [[[15.8505249, -4.329979, 0.0], [15.8518982, -4.329979, 0.0], [15.8518982, -4.3286096, 0.0], [15.8505249, -4.3286096, 0.0], [15.8505249, -4.329979, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1365}, "geometry": {"type": "Polygon", "coordinates": [[[15.8903503, -4.3313484, 0.0], [15.8930969, -4.3313484, 0.0], [15.8930969, -4.3272403, 0.0], [15.8903503, -4.3272403, 0.0], [15.8903503, -4.3313484, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1445}, "geometry": {"type": "Polygon", "coordinates": [[[15.9082031, -4.329979, 0.0], [15.912323, -4.329979, 0.0], [15.912323, -4.3258709, 0.0], [15.9082031, -4.3258709, 0.0], [15.9082031, -4.329979, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1524}, "geometry": {"type": "Polygon", "coordinates": [[[15.9288025, -4.329979, 0.0], [15.9301758, -4.329979, 0.0], [15.9301758, -4.3272403, 0.0], [15.9288025, -4.3272403, 0.0], [15.9288025, -4.329979, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1541}, "geometry": {"type": "Polygon", "coordinates": [[[15.9356689, -4.3286096, 0.0], [15.9370422, -4.3286096, 0.0], [15.9370422, -4.3272403, 0.0], [15.9356689, -4.3272403, 0.0], [15.9356689, -4.3286096, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1570}, "geometry": {"type": "Polygon", "coordinates": [[[15.9480286, -4.3286096, 0.0], [15.9494019, -4.3286096, 0.0], [15.9494019, -4.3272403, 0.0], [15.9480286, -4.3272403, 0.0], [15.9480286, -4.3286096, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 742}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.3340871, 0.0], [15.7695007, -4.3340871, 0.0], [15.7695007, -4.329979, 0.0], [15.7667542, -4.329979, 0.0], [15.7667542, -4.3340871, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 873}, "geometry": {"type": "Polygon", "coordinates": [[[15.7928467, -4.3340871, 0.0], [15.7955933, -4.3340871, 0.0], [15.7955933, -4.329979, 0.0], [15.7928467, -4.329979, 0.0], [15.7928467, -4.3340871, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1293}, "geometry": {"type": "Polygon", "coordinates": [[[15.8779907, -4.3313484, 0.0], [15.879364, -4.3313484, 0.0], [15.879364, -4.329979, 0.0], [15.8779907, -4.329979, 0.0], [15.8779907, -4.3313484, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 573}, "geometry": {"type": "Polygon", "coordinates": [[[15.7434082, -4.3409339, 0.0], [15.7461548, -4.3409339, 0.0], [15.7461548, -4.3368258, 0.0], [15.7434082, -4.3368258, 0.0], [15.7434082, -4.3409339, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 696}, "geometry": {"type": "Polygon", "coordinates": [[[15.7598877, -4.3354565, 0.0], [15.7626343, -4.3354565, 0.0], [15.7626343, -4.3340871, 0.0], [15.7598877, -4.3340871, 0.0], [15.7598877, -4.3354565, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 978}, "geometry": {"type": "Polygon", "coordinates": [[[15.8161926, -4.3381952, 0.0], [15.8175659, -4.3381952, 0.0], [15.8175659, -4.3354565, 0.0], [15.8161926, -4.3354565, 0.0], [15.8161926, -4.3381952, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1014}, "geometry": {"type": "Polygon", "coordinates": [[[15.8230591, -4.3381952, 0.0], [15.8244324, -4.3381952, 0.0], [15.8244324, -4.3368258, 0.0], [15.8230591, -4.3368258, 0.0], [15.8230591, -4.3381952, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1038}, "geometry": {"type": "Polygon", "coordinates": [[[15.827179, -4.3368258, 0.0], [15.8285522, -4.3368258, 0.0], [15.8285522, -4.3354565, 0.0], [15.827179, -4.3354565, 0.0], [15.827179, -4.3368258, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1124}, "geometry": {"type": "Polygon", "coordinates": [[[15.8477783, -4.3409339, 0.0], [15.8491516, -4.3409339, 0.0], [15.8491516, -4.3368258, 0.0], [15.8477783, -4.3368258, 0.0], [15.8477783, -4.3409339, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1300}, "geometry": {"type": "Polygon", "coordinates": [[[15.879364, -4.3381952, 0.0], [15.8807373, -4.3381952, 0.0], [15.8807373, -4.3354565, 0.0], [15.879364, -4.3354565, 0.0], [15.879364, -4.3381952, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1403}, "geometry": {"type": "Polygon", "coordinates": [[[15.8972168, -4.3354565, 0.0], [15.8985901, -4.3354565, 0.0], [15.8985901, -4.3340871, 0.0], [15.8972168, -4.3340871, 0.0], [15.8972168, -4.3354565, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1545}, "geometry": {"type": "Polygon", "coordinates": [[[15.9370422, -4.3381952, 0.0], [15.9384155, -4.3381952, 0.0], [15.9384155, -4.3368258, 0.0], [15.9370422, -4.3368258, 0.0], [15.9370422, -4.3381952, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1581}, "geometry": {"type": "Polygon", "coordinates": [[[15.9562683, -4.3381952, 0.0], [15.9617615, -4.3381952, 0.0], [15.9617615, -4.3340871, 0.0], [15.9562683, -4.3340871, 0.0], [15.9562683, -4.3381952, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1592}, "geometry": {"type": "Polygon", "coordinates": [[[15.9645081, -4.3381952, 0.0], [15.9658813, -4.3381952, 0.0], [15.9658813, -4.3354565, 0.0], [15.9645081, -4.3354565, 0.0], [15.9645081, -4.3381952, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 743}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.3450419, 0.0], [15.770874, -4.3450419, 0.0], [15.770874, -4.3409339, 0.0], [15.7667542, -4.3409339, 0.0], [15.7667542, -4.3450419, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 854}, "geometry": {"type": "Polygon", "coordinates": [[[15.7901001, -4.3423032, 0.0], [15.7914734, -4.3423032, 0.0], [15.7914734, -4.3381952, 0.0], [15.7901001, -4.3381952, 0.0], [15.7901001, -4.3423032, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1169}, "geometry": {"type": "Polygon", "coordinates": [[[15.8546448, -4.3409339, 0.0], [15.8560181, -4.3409339, 0.0], [15.8560181, -4.3395645, 0.0], [15.8546448, -4.3395645, 0.0], [15.8546448, -4.3409339, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1356}, "geometry": {"type": "Polygon", "coordinates": [[[15.8889771, -4.3409339, 0.0], [15.8930969, -4.3409339, 0.0], [15.8930969, -4.3381952, 0.0], [15.8889771, -4.3381952, 0.0], [15.8889771, -4.3409339, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1490}, "geometry": {"type": "Polygon", "coordinates": [[[15.921936, -4.3436726, 0.0], [15.9260559, -4.3436726, 0.0], [15.9260559, -4.3395645, 0.0], [15.921936, -4.3395645, 0.0], [15.921936, -4.3436726, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 386}, "geometry": {"type": "Polygon", "coordinates": [[[15.7090759, -4.3505193, 0.0], [15.7159424, -4.3505193, 0.0], [15.7159424, -4.3436726, 0.0], [15.7090759, -4.3436726, 0.0], [15.7090759, -4.3505193, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 779}, "geometry": {"type": "Polygon", "coordinates": [[[15.7749939, -4.3464113, 0.0], [15.7763672, -4.3464113, 0.0], [15.7763672, -4.3436726, 0.0], [15.7749939, -4.3436726, 0.0], [15.7749939, -4.3464113, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 986}, "geometry": {"type": "Polygon", "coordinates": [[[15.8175659, -4.3436726, 0.0], [15.8189392, -4.3436726, 0.0], [15.8189392, -4.3423032, 0.0], [15.8175659, -4.3423032, 0.0], [15.8175659, -4.3436726, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1413}, "geometry": {"type": "Polygon", "coordinates": [[[15.8999634, -4.3464113, 0.0], [15.9013367, -4.3464113, 0.0], [15.9013367, -4.3450419, 0.0], [15.8999634, -4.3450419, 0.0], [15.8999634, -4.3464113, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1567}, "geometry": {"type": "Polygon", "coordinates": [[[15.9466553, -4.3450419, 0.0], [15.9480286, -4.3450419, 0.0], [15.9480286, -4.3436726, 0.0], [15.9466553, -4.3436726, 0.0], [15.9466553, -4.3450419, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1580}, "geometry": {"type": "Polygon", "coordinates": [[[15.954895, -4.3450419, 0.0], [15.9562683, -4.3450419, 0.0], [15.9562683, -4.3436726, 0.0], [15.954895, -4.3436726, 0.0], [15.954895, -4.3450419, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1586}, "geometry": {"type": "Polygon", "coordinates": [[[15.9590149, -4.3464113, 0.0], [15.9603882, -4.3464113, 0.0], [15.9603882, -4.3450419, 0.0], [15.9590149, -4.3450419, 0.0], [15.9590149, -4.3464113, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1594}, "geometry": {"type": "Polygon", "coordinates": [[[15.9658813, -4.3464113, 0.0], [15.9672546, -4.3464113, 0.0], [15.9672546, -4.3450419, 0.0], [15.9658813, -4.3450419, 0.0], [15.9658813, -4.3464113, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1611}, "geometry": {"type": "Polygon", "coordinates": [[[15.9823608, -4.3464113, 0.0], [15.9837341, -4.3464113, 0.0], [15.9837341, -4.3450419, 0.0], [15.9823608, -4.3450419, 0.0], [15.9823608, -4.3464113, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 516}, "geometry": {"type": "Polygon", "coordinates": [[[15.7337952, -4.3505193, 0.0], [15.7392883, -4.3505193, 0.0], [15.7392883, -4.34915, 0.0], [15.7337952, -4.34915, 0.0], [15.7337952, -4.3505193, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 574}, "geometry": {"type": "Polygon", "coordinates": [[[15.7434082, -4.3573659, 0.0], [15.7475281, -4.3573659, 0.0], [15.7475281, -4.3464113, 0.0], [15.7434082, -4.3464113, 0.0], [15.7434082, -4.3573659, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 874}, "geometry": {"type": "Polygon", "coordinates": [[[15.7901001, -4.3573659, 0.0], [15.7969666, -4.3573659, 0.0], [15.7969666, -4.3477806, 0.0], [15.7901001, -4.3477806, 0.0], [15.7901001, -4.3573659, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1083}, "geometry": {"type": "Polygon", "coordinates": [[[15.836792, -4.3477806, 0.0], [15.8395386, -4.3477806, 0.0], [15.8395386, -4.3464113, 0.0], [15.836792, -4.3464113, 0.0], [15.836792, -4.3477806, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1107}, "geometry": {"type": "Polygon", "coordinates": [[[15.8422852, -4.3546273, 0.0], [15.8546448, -4.3546273, 0.0], [15.8546448, -4.3477806, 0.0], [15.8422852, -4.3477806, 0.0], [15.8422852, -4.3546273, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1220}, "geometry": {"type": "Polygon", "coordinates": [[[15.8642578, -4.34915, 0.0], [15.8656311, -4.34915, 0.0], [15.8656311, -4.3464113, 0.0], [15.8642578, -4.3464113, 0.0], [15.8642578, -4.34915, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1254}, "geometry": {"type": "Polygon", "coordinates": [[[15.869751, -4.3546273, 0.0], [15.8766174, -4.3546273, 0.0], [15.8766174, -4.3477806, 0.0], [15.869751, -4.3477806, 0.0], [15.869751, -4.3546273, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1320}, "geometry": {"type": "Polygon", "coordinates": [[[15.8821106, -4.3477806, 0.0], [15.8834839, -4.3477806, 0.0], [15.8834839, -4.3464113, 0.0], [15.8821106, -4.3464113, 0.0], [15.8821106, -4.3477806, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1385}, "geometry": {"type": "Polygon", "coordinates": [[[15.8930969, -4.353258, 0.0], [15.8999634, -4.353258, 0.0], [15.8999634, -4.3464113, 0.0], [15.8930969, -4.3464113, 0.0], [15.8930969, -4.353258, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1605}, "geometry": {"type": "Polygon", "coordinates": [[[15.9741211, -4.34915, 0.0], [15.9768677, -4.34915, 0.0], [15.9768677, -4.3477806, 0.0], [15.9741211, -4.3477806, 0.0], [15.9741211, -4.34915, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 443}, "geometry": {"type": "Polygon", "coordinates": [[[15.718689, -4.3559966, 0.0], [15.7214355, -4.3559966, 0.0], [15.7214355, -4.3518886, 0.0], [15.718689, -4.3518886, 0.0], [15.718689, -4.3559966, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 780}, "geometry": {"type": "Polygon", "coordinates": [[[15.7749939, -4.3559966, 0.0], [15.7804871, -4.3559966, 0.0], [15.7804871, -4.3518886, 0.0], [15.7749939, -4.3518886, 0.0], [15.7749939, -4.3559966, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1039}, "geometry": {"type": "Polygon", "coordinates": [[[15.827179, -4.3559966, 0.0], [15.8285522, -4.3559966, 0.0], [15.8285522, -4.353258, 0.0], [15.827179, -4.353258, 0.0], [15.827179, -4.3559966, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1203}, "geometry": {"type": "Polygon", "coordinates": [[[15.8615112, -4.353258, 0.0], [15.8628845, -4.353258, 0.0], [15.8628845, -4.3518886, 0.0], [15.8615112, -4.3518886, 0.0], [15.8615112, -4.353258, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1336}, "geometry": {"type": "Polygon", "coordinates": [[[15.8848572, -4.353258, 0.0], [15.8862305, -4.353258, 0.0], [15.8862305, -4.3518886, 0.0], [15.8848572, -4.3518886, 0.0], [15.8848572, -4.353258, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1498}, "geometry": {"type": "Polygon", "coordinates": [[[15.9233093, -4.353258, 0.0], [15.9246826, -4.353258, 0.0], [15.9246826, -4.3518886, 0.0], [15.9233093, -4.3518886, 0.0], [15.9233093, -4.353258, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1525}, "geometry": {"type": "Polygon", "coordinates": [[[15.9288025, -4.3546273, 0.0], [15.9301758, -4.3546273, 0.0], [15.9301758, -4.353258, 0.0], [15.9288025, -4.353258, 0.0], [15.9288025, -4.3546273, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1582}, "geometry": {"type": "Polygon", "coordinates": [[[15.9562683, -4.353258, 0.0], [15.9576416, -4.353258, 0.0], [15.9576416, -4.3518886, 0.0], [15.9562683, -4.3518886, 0.0], [15.9562683, -4.353258, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 414}, "geometry": {"type": "Polygon", "coordinates": [[[15.7145691, -4.3573659, 0.0], [15.7159424, -4.3573659, 0.0], [15.7159424, -4.3559966, 0.0], [15.7145691, -4.3559966, 0.0], [15.7145691, -4.3573659, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1093}, "geometry": {"type": "Polygon", "coordinates": [[[15.8395386, -4.3601046, 0.0], [15.8409119, -4.3601046, 0.0], [15.8409119, -4.3559966, 0.0], [15.8395386, -4.3559966, 0.0], [15.8395386, -4.3601046, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1422}, "geometry": {"type": "Polygon", "coordinates": [[[15.90271, -4.3601046, 0.0], [15.9109497, -4.3601046, 0.0], [15.9109497, -4.3546273, 0.0], [15.90271, -4.3546273, 0.0], [15.90271, -4.3601046, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1467}, "geometry": {"type": "Polygon", "coordinates": [[[15.9150696, -4.3559966, 0.0], [15.9164429, -4.3559966, 0.0], [15.9164429, -4.3546273, 0.0], [15.9150696, -4.3546273, 0.0], [15.9150696, -4.3559966, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1499}, "geometry": {"type": "Polygon", "coordinates": [[[15.9233093, -4.3628432, 0.0], [15.9274292, -4.3628432, 0.0], [15.9274292, -4.3573659, 0.0], [15.9233093, -4.3573659, 0.0], [15.9233093, -4.3628432, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1599}, "geometry": {"type": "Polygon", "coordinates": [[[15.9686279, -4.3601046, 0.0], [15.9713745, -4.3601046, 0.0], [15.9713745, -4.3559966, 0.0], [15.9686279, -4.3559966, 0.0], [15.9686279, -4.3601046, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 395}, "geometry": {"type": "Polygon", "coordinates": [[[15.7104492, -4.3642125, 0.0], [15.7173157, -4.3642125, 0.0], [15.7173157, -4.3601046, 0.0], [15.7104492, -4.3601046, 0.0], [15.7104492, -4.3642125, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1001}, "geometry": {"type": "Polygon", "coordinates": [[[15.8203125, -4.3601046, 0.0], [15.8216858, -4.3601046, 0.0], [15.8216858, -4.3587352, 0.0], [15.8203125, -4.3587352, 0.0], [15.8203125, -4.3601046, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1021}, "geometry": {"type": "Polygon", "coordinates": [[[15.8244324, -4.3628432, 0.0], [15.8312988, -4.3628432, 0.0], [15.8312988, -4.3587352, 0.0], [15.8244324, -4.3587352, 0.0], [15.8244324, -4.3628432, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1227}, "geometry": {"type": "Polygon", "coordinates": [[[15.8656311, -4.3614739, 0.0], [15.8670044, -4.3614739, 0.0], [15.8670044, -4.3601046, 0.0], [15.8656311, -4.3601046, 0.0], [15.8656311, -4.3614739, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1261}, "geometry": {"type": "Polygon", "coordinates": [[[15.8711243, -4.3628432, 0.0], [15.8752441, -4.3628432, 0.0], [15.8752441, -4.3614739, 0.0], [15.8711243, -4.3614739, 0.0], [15.8711243, -4.3628432, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1482}, "geometry": {"type": "Polygon", "coordinates": [[[15.9191895, -4.3601046, 0.0], [15.9205627, -4.3601046, 0.0], [15.9205627, -4.3587352, 0.0], [15.9191895, -4.3587352, 0.0], [15.9191895, -4.3601046, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1587}, "geometry": {"type": "Polygon", "coordinates": [[[15.9590149, -4.3683204, 0.0], [15.9658813, -4.3683204, 0.0], [15.9658813, -4.3614739, 0.0], [15.9590149, -4.3614739, 0.0], [15.9590149, -4.3683204, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1604}, "geometry": {"type": "Polygon", "coordinates": [[[15.9727478, -4.3628432, 0.0], [15.9741211, -4.3628432, 0.0], [15.9741211, -4.3614739, 0.0], [15.9727478, -4.3614739, 0.0], [15.9727478, -4.3628432, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1607}, "geometry": {"type": "Polygon", "coordinates": [[[15.9768677, -4.3614739, 0.0], [15.978241, -4.3614739, 0.0], [15.978241, -4.3601046, 0.0], [15.9768677, -4.3601046, 0.0], [15.9768677, -4.3614739, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1614}, "geometry": {"type": "Polygon", "coordinates": [[[15.9837341, -4.3642125, 0.0], [15.9892273, -4.3642125, 0.0], [15.9892273, -4.3601046, 0.0], [15.9837341, -4.3601046, 0.0], [15.9837341, -4.3642125, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 517}, "geometry": {"type": "Polygon", "coordinates": [[[15.7337952, -4.3642125, 0.0], [15.7351685, -4.3642125, 0.0], [15.7351685, -4.3628432, 0.0], [15.7337952, -4.3628432, 0.0], [15.7337952, -4.3642125, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1040}, "geometry": {"type": "Polygon", "coordinates": [[[15.827179, -4.3737976, 0.0], [15.836792, -4.3737976, 0.0], [15.836792, -4.3655818, 0.0], [15.827179, -4.3655818, 0.0], [15.827179, -4.3737976, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1287}, "geometry": {"type": "Polygon", "coordinates": [[[15.8766174, -4.3683204, 0.0], [15.8834839, -4.3683204, 0.0], [15.8834839, -4.3628432, 0.0], [15.8766174, -4.3628432, 0.0], [15.8766174, -4.3683204, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1418}, "geometry": {"type": "Polygon", "coordinates": [[[15.9013367, -4.3669511, 0.0], [15.9040833, -4.3669511, 0.0], [15.9040833, -4.3628432, 0.0], [15.9013367, -4.3628432, 0.0], [15.9013367, -4.3669511, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1441}, "geometry": {"type": "Polygon", "coordinates": [[[15.9068298, -4.3655818, 0.0], [15.9082031, -4.3655818, 0.0], [15.9082031, -4.3628432, 0.0], [15.9068298, -4.3628432, 0.0], [15.9068298, -4.3655818, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1228}, "geometry": {"type": "Polygon", "coordinates": [[[15.8656311, -4.3779055, 0.0], [15.8738708, -4.3779055, 0.0], [15.8738708, -4.3696897, 0.0], [15.8656311, -4.3696897, 0.0], [15.8656311, -4.3779055, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1505}, "geometry": {"type": "Polygon", "coordinates": [[[15.9246826, -4.3683204, 0.0], [15.9260559, -4.3683204, 0.0], [15.9260559, -4.3669511, 0.0], [15.9246826, -4.3669511, 0.0], [15.9246826, -4.3683204, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 944}, "geometry": {"type": "Polygon", "coordinates": [[[15.8052063, -4.380644, 0.0], [15.8093262, -4.380644, 0.0], [15.8093262, -4.3737976, 0.0], [15.8052063, -4.3737976, 0.0], [15.8052063, -4.380644, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 987}, "geometry": {"type": "Polygon", "coordinates": [[[15.8175659, -4.3724283, 0.0], [15.8216858, -4.3724283, 0.0], [15.8216858, -4.371059, 0.0], [15.8175659, -4.371059, 0.0], [15.8175659, -4.3724283, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1176}, "geometry": {"type": "Polygon", "coordinates": [[[15.8560181, -4.3751669, 0.0], [15.8573914, -4.3751669, 0.0], [15.8573914, -4.3737976, 0.0], [15.8560181, -4.3737976, 0.0], [15.8560181, -4.3751669, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1329}, "geometry": {"type": "Polygon", "coordinates": [[[15.8834839, -4.3737976, 0.0], [15.8848572, -4.3737976, 0.0], [15.8848572, -4.3724283, 0.0], [15.8834839, -4.3724283, 0.0], [15.8834839, -4.3737976, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1446}, "geometry": {"type": "Polygon", "coordinates": [[[15.9082031, -4.3779055, 0.0], [15.9164429, -4.3779055, 0.0], [15.9164429, -4.371059, 0.0], [15.9082031, -4.371059, 0.0], [15.9082031, -4.3779055, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1491}, "geometry": {"type": "Polygon", "coordinates": [[[15.921936, -4.3724283, 0.0], [15.9233093, -4.3724283, 0.0], [15.9233093, -4.371059, 0.0], [15.921936, -4.371059, 0.0], [15.921936, -4.3724283, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1511}, "geometry": {"type": "Polygon", "coordinates": [[[15.9260559, -4.3724283, 0.0], [15.9274292, -4.3724283, 0.0], [15.9274292, -4.371059, 0.0], [15.9260559, -4.371059, 0.0], [15.9260559, -4.3724283, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1546}, "geometry": {"type": "Polygon", "coordinates": [[[15.9370422, -4.3847519, 0.0], [15.9494019, -4.3847519, 0.0], [15.9494019, -4.3737976, 0.0], [15.9370422, -4.3737976, 0.0], [15.9370422, -4.3847519, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1612}, "geometry": {"type": "Polygon", "coordinates": [[[15.9823608, -4.3751669, 0.0], [15.9837341, -4.3751669, 0.0], [15.9837341, -4.3737976, 0.0], [15.9823608, -4.3737976, 0.0], [15.9823608, -4.3751669, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1030}, "geometry": {"type": "Polygon", "coordinates": [[[15.8258057, -4.380644, 0.0], [15.8312988, -4.380644, 0.0], [15.8312988, -4.3765362, 0.0], [15.8258057, -4.3765362, 0.0], [15.8258057, -4.380644, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1073}, "geometry": {"type": "Polygon", "coordinates": [[[15.8340454, -4.3779055, 0.0], [15.8354187, -4.3779055, 0.0], [15.8354187, -4.3765362, 0.0], [15.8340454, -4.3765362, 0.0], [15.8340454, -4.3779055, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1182}, "geometry": {"type": "Polygon", "coordinates": [[[15.8573914, -4.3792748, 0.0], [15.8587646, -4.3792748, 0.0], [15.8587646, -4.3779055, 0.0], [15.8573914, -4.3779055, 0.0], [15.8573914, -4.3792748, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1419}, "geometry": {"type": "Polygon", "coordinates": [[[15.9013367, -4.3779055, 0.0], [15.9054565, -4.3779055, 0.0], [15.9054565, -4.3751669, 0.0], [15.9013367, -4.3751669, 0.0], [15.9013367, -4.3779055, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1500}, "geometry": {"type": "Polygon", "coordinates": [[[15.9233093, -4.3792748, 0.0], [15.9246826, -4.3792748, 0.0], [15.9246826, -4.3765362, 0.0], [15.9233093, -4.3765362, 0.0], [15.9233093, -4.3792748, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1542}, "geometry": {"type": "Polygon", "coordinates": [[[15.9356689, -4.3765362, 0.0], [15.9370422, -4.3765362, 0.0], [15.9370422, -4.3751669, 0.0], [15.9356689, -4.3751669, 0.0], [15.9356689, -4.3765362, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1613}, "geometry": {"type": "Polygon", "coordinates": [[[15.9823608, -4.380644, 0.0], [15.987854, -4.380644, 0.0], [15.987854, -4.3765362, 0.0], [15.9823608, -4.3765362, 0.0], [15.9823608, -4.380644, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 518}, "geometry": {"type": "Polygon", "coordinates": [[[15.7337952, -4.380644, 0.0], [15.7351685, -4.380644, 0.0], [15.7351685, -4.3792748, 0.0], [15.7337952, -4.3792748, 0.0], [15.7337952, -4.380644, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 705}, "geometry": {"type": "Polygon", "coordinates": [[[15.761261, -4.3861211, 0.0], [15.7667542, -4.3861211, 0.0], [15.7667542, -4.3820133, 0.0], [15.761261, -4.3820133, 0.0], [15.761261, -4.3861211, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 997}, "geometry": {"type": "Polygon", "coordinates": [[[15.8189392, -4.3833826, 0.0], [15.8230591, -4.3833826, 0.0], [15.8230591, -4.3792748, 0.0], [15.8189392, -4.3792748, 0.0], [15.8189392, -4.3833826, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1159}, "geometry": {"type": "Polygon", "coordinates": [[[15.8532715, -4.380644, 0.0], [15.8546448, -4.380644, 0.0], [15.8546448, -4.3792748, 0.0], [15.8532715, -4.3792748, 0.0], [15.8532715, -4.380644, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1212}, "geometry": {"type": "Polygon", "coordinates": [[[15.8628845, -4.3833826, 0.0], [15.8724976, -4.3833826, 0.0], [15.8724976, -4.3792748, 0.0], [15.8628845, -4.3792748, 0.0], [15.8628845, -4.3833826, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1272}, "geometry": {"type": "Polygon", "coordinates": [[[15.8738708, -4.3874904, 0.0], [15.8834839, -4.3874904, 0.0], [15.8834839, -4.3792748, 0.0], [15.8738708, -4.3792748, 0.0], [15.8738708, -4.3874904, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1534}, "geometry": {"type": "Polygon", "coordinates": [[[15.9329224, -4.3820133, 0.0], [15.9342957, -4.3820133, 0.0], [15.9342957, -4.380644, 0.0], [15.9329224, -4.380644, 0.0], [15.9329224, -4.3820133, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1608}, "geometry": {"type": "Polygon", "coordinates": [[[15.9768677, -4.3820133, 0.0], [15.978241, -4.3820133, 0.0], [15.978241, -4.380644, 0.0], [15.9768677, -4.380644, 0.0], [15.9768677, -4.3820133, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 933}, "geometry": {"type": "Polygon", "coordinates": [[[15.8065796, -4.3902289, 0.0], [15.8148193, -4.3902289, 0.0], [15.8148193, -4.3847519, 0.0], [15.8065796, -4.3847519, 0.0], [15.8065796, -4.3902289, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1150}, "geometry": {"type": "Polygon", "coordinates": [[[15.8518982, -4.3874904, 0.0], [15.8532715, -4.3874904, 0.0], [15.8532715, -4.3861211, 0.0], [15.8518982, -4.3861211, 0.0], [15.8518982, -4.3874904, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1183}, "geometry": {"type": "Polygon", "coordinates": [[[15.8573914, -4.3915982, 0.0], [15.8642578, -4.3915982, 0.0], [15.8642578, -4.3833826, 0.0], [15.8573914, -4.3833826, 0.0], [15.8573914, -4.3915982, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1390}, "geometry": {"type": "Polygon", "coordinates": [[[15.8944702, -4.3902289, 0.0], [15.8972168, -4.3902289, 0.0], [15.8972168, -4.3861211, 0.0], [15.8944702, -4.3861211, 0.0], [15.8944702, -4.3902289, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1437}, "geometry": {"type": "Polygon", "coordinates": [[[15.9054565, -4.3861211, 0.0], [15.9068298, -4.3861211, 0.0], [15.9068298, -4.3847519, 0.0], [15.9054565, -4.3847519, 0.0], [15.9054565, -4.3861211, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1461}, "geometry": {"type": "Polygon", "coordinates": [[[15.9136963, -4.3847519, 0.0], [15.9150696, -4.3847519, 0.0], [15.9150696, -4.3833826, 0.0], [15.9136963, -4.3833826, 0.0], [15.9136963, -4.3847519, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1501}, "geometry": {"type": "Polygon", "coordinates": [[[15.9233093, -4.3874904, 0.0], [15.9246826, -4.3874904, 0.0], [15.9246826, -4.3861211, 0.0], [15.9233093, -4.3861211, 0.0], [15.9233093, -4.3874904, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1516}, "geometry": {"type": "Polygon", "coordinates": [[[15.9274292, -4.3861211, 0.0], [15.9315491, -4.3861211, 0.0], [15.9315491, -4.3847519, 0.0], [15.9274292, -4.3847519, 0.0], [15.9274292, -4.3861211, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1575}, "geometry": {"type": "Polygon", "coordinates": [[[15.9521484, -4.3861211, 0.0], [15.9535217, -4.3861211, 0.0], [15.9535217, -4.3847519, 0.0], [15.9521484, -4.3847519, 0.0], [15.9521484, -4.3861211, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1618}, "geometry": {"type": "Polygon", "coordinates": [[[15.9864807, -4.3902289, 0.0], [15.9906006, -4.3902289, 0.0], [15.9906006, -4.3847519, 0.0], [15.9864807, -4.3847519, 0.0], [15.9864807, -4.3902289, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1622}, "geometry": {"type": "Polygon", "coordinates": [[[15.9906006, -4.3847519, 0.0], [15.9919739, -4.3847519, 0.0], [15.9919739, -4.3833826, 0.0], [15.9906006, -4.3833826, 0.0], [15.9906006, -4.3847519, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 373}, "geometry": {"type": "Polygon", "coordinates": [[[15.7063293, -4.3888597, 0.0], [15.7077026, -4.3888597, 0.0], [15.7077026, -4.3874904, 0.0], [15.7063293, -4.3874904, 0.0], [15.7063293, -4.3888597, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 453}, "geometry": {"type": "Polygon", "coordinates": [[[15.7200623, -4.3902289, 0.0], [15.7241821, -4.3902289, 0.0], [15.7241821, -4.3874904, 0.0], [15.7200623, -4.3874904, 0.0], [15.7200623, -4.3902289, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 794}, "geometry": {"type": "Polygon", "coordinates": [[[15.7777405, -4.395706, 0.0], [15.7804871, -4.395706, 0.0], [15.7804871, -4.3888597, 0.0], [15.7777405, -4.3888597, 0.0], [15.7777405, -4.395706, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 894}, "geometry": {"type": "Polygon", "coordinates": [[[15.7969666, -4.3915982, 0.0], [15.7983398, -4.3915982, 0.0], [15.7983398, -4.3902289, 0.0], [15.7969666, -4.3902289, 0.0], [15.7969666, -4.3915982, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 913}, "geometry": {"type": "Polygon", "coordinates": [[[15.8024597, -4.3929674, 0.0], [15.8079529, -4.3929674, 0.0], [15.8079529, -4.3888597, 0.0], [15.8024597, -4.3888597, 0.0], [15.8024597, -4.3929674, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 988}, "geometry": {"type": "Polygon", "coordinates": [[[15.8175659, -4.3888597, 0.0], [15.8216858, -4.3888597, 0.0], [15.8216858, -4.3874904, 0.0], [15.8175659, -4.3874904, 0.0], [15.8175659, -4.3888597, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1423}, "geometry": {"type": "Polygon", "coordinates": [[[15.9013367, -4.3943367, 0.0], [15.9054565, -4.3943367, 0.0], [15.9054565, -4.3888597, 0.0], [15.9013367, -4.3888597, 0.0], [15.9013367, -4.3943367, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1543}, "geometry": {"type": "Polygon", "coordinates": [[[15.9356689, -4.3888597, 0.0], [15.9370422, -4.3888597, 0.0], [15.9370422, -4.3874904, 0.0], [15.9356689, -4.3874904, 0.0], [15.9356689, -4.3888597, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 406}, "geometry": {"type": "Polygon", "coordinates": [[[15.7118225, -4.3929674, 0.0], [15.7131958, -4.3929674, 0.0], [15.7131958, -4.3915982, 0.0], [15.7118225, -4.3915982, 0.0], [15.7118225, -4.3929674, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 818}, "geometry": {"type": "Polygon", "coordinates": [[[15.7832336, -4.3929674, 0.0], [15.7846069, -4.3929674, 0.0], [15.7846069, -4.3915982, 0.0], [15.7832336, -4.3915982, 0.0], [15.7832336, -4.3929674, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1031}, "geometry": {"type": "Polygon", "coordinates": [[[15.8258057, -4.3943367, 0.0], [15.827179, -4.3943367, 0.0], [15.827179, -4.3929674, 0.0], [15.8258057, -4.3929674, 0.0], [15.8258057, -4.3943367, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1151}, "geometry": {"type": "Polygon", "coordinates": [[[15.8518982, -4.3998137, 0.0], [15.8656311, -4.3998137, 0.0], [15.8656311, -4.3943367, 0.0], [15.8518982, -4.3943367, 0.0], [15.8518982, -4.3998137, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1374}, "geometry": {"type": "Polygon", "coordinates": [[[15.8917236, -4.3943367, 0.0], [15.8930969, -4.3943367, 0.0], [15.8930969, -4.3929674, 0.0], [15.8917236, -4.3929674, 0.0], [15.8917236, -4.3943367, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1398}, "geometry": {"type": "Polygon", "coordinates": [[[15.8958435, -4.3984445, 0.0], [15.8985901, -4.3984445, 0.0], [15.8985901, -4.3929674, 0.0], [15.8958435, -4.3929674, 0.0], [15.8958435, -4.3984445, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1468}, "geometry": {"type": "Polygon", "coordinates": [[[15.9150696, -4.3943367, 0.0], [15.9164429, -4.3943367, 0.0], [15.9164429, -4.3929674, 0.0], [15.9150696, -4.3929674, 0.0], [15.9150696, -4.3943367, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1624}, "geometry": {"type": "Polygon", "coordinates": [[[15.9933472, -4.3943367, 0.0], [15.9947205, -4.3943367, 0.0], [15.9947205, -4.3929674, 0.0], [15.9933472, -4.3929674, 0.0], [15.9933472, -4.3943367, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 745}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.3984445, 0.0], [15.7681274, -4.3984445, 0.0], [15.7681274, -4.3970752, 0.0], [15.7667542, -4.3970752, 0.0], [15.7667542, -4.3984445, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 918}, "geometry": {"type": "Polygon", "coordinates": [[[15.803833, -4.3970752, 0.0], [15.8052063, -4.3970752, 0.0], [15.8052063, -4.395706, 0.0], [15.803833, -4.395706, 0.0], [15.803833, -4.3970752, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 946}, "geometry": {"type": "Polygon", "coordinates": [[[15.8093262, -4.3970752, 0.0], [15.8106995, -4.3970752, 0.0], [15.8106995, -4.395706, 0.0], [15.8093262, -4.395706, 0.0], [15.8093262, -4.3970752, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1262}, "geometry": {"type": "Polygon", "coordinates": [[[15.8711243, -4.4039214, 0.0], [15.8807373, -4.4039214, 0.0], [15.8807373, -4.3984445, 0.0], [15.8711243, -4.3984445, 0.0], [15.8711243, -4.4039214, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1455}, "geometry": {"type": "Polygon", "coordinates": [[[15.912323, -4.4011829, 0.0], [15.9136963, -4.4011829, 0.0], [15.9136963, -4.3984445, 0.0], [15.912323, -4.3984445, 0.0], [15.912323, -4.4011829, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1492}, "geometry": {"type": "Polygon", "coordinates": [[[15.921936, -4.3984445, 0.0], [15.9233093, -4.3984445, 0.0], [15.9233093, -4.3970752, 0.0], [15.921936, -4.3970752, 0.0], [15.921936, -4.3984445, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1535}, "geometry": {"type": "Polygon", "coordinates": [[[15.9329224, -4.3970752, 0.0], [15.9342957, -4.3970752, 0.0], [15.9342957, -4.395706, 0.0], [15.9329224, -4.395706, 0.0], [15.9329224, -4.3970752, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1619}, "geometry": {"type": "Polygon", "coordinates": [[[15.9864807, -4.3998137, 0.0], [15.9906006, -4.3998137, 0.0], [15.9906006, -4.395706, 0.0], [15.9864807, -4.395706, 0.0], [15.9864807, -4.3998137, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 379}, "geometry": {"type": "Polygon", "coordinates": [[[15.7077026, -4.4025522, 0.0], [15.7090759, -4.4025522, 0.0], [15.7090759, -4.4011829, 0.0], [15.7077026, -4.4011829, 0.0], [15.7077026, -4.4025522, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 914}, "geometry": {"type": "Polygon", "coordinates": [[[15.8024597, -4.4025522, 0.0], [15.8052063, -4.4025522, 0.0], [15.8052063, -4.3998137, 0.0], [15.8024597, -4.3998137, 0.0], [15.8024597, -4.4025522, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1022}, "geometry": {"type": "Polygon", "coordinates": [[[15.8244324, -4.4039214, 0.0], [15.8258057, -4.4039214, 0.0], [15.8258057, -4.4011829, 0.0], [15.8244324, -4.4011829, 0.0], [15.8244324, -4.4039214, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1189}, "geometry": {"type": "Polygon", "coordinates": [[[15.8587646, -4.4052907, 0.0], [15.8615112, -4.4052907, 0.0], [15.8615112, -4.4011829, 0.0], [15.8587646, -4.4011829, 0.0], [15.8587646, -4.4052907, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1221}, "geometry": {"type": "Polygon", "coordinates": [[[15.8642578, -4.4025522, 0.0], [15.8670044, -4.4025522, 0.0], [15.8670044, -4.4011829, 0.0], [15.8642578, -4.4011829, 0.0], [15.8642578, -4.4025522, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1431}, "geometry": {"type": "Polygon", "coordinates": [[[15.9040833, -4.4039214, 0.0], [15.9054565, -4.4039214, 0.0], [15.9054565, -4.4025522, 0.0], [15.9040833, -4.4025522, 0.0], [15.9040833, -4.4039214, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1530}, "geometry": {"type": "Polygon", "coordinates": [[[15.9315491, -4.4011829, 0.0], [15.9329224, -4.4011829, 0.0], [15.9329224, -4.3998137, 0.0], [15.9315491, -4.3998137, 0.0], [15.9315491, -4.4011829, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1547}, "geometry": {"type": "Polygon", "coordinates": [[[15.9370422, -4.4080291, 0.0], [15.9425354, -4.4080291, 0.0], [15.9425354, -4.4011829, 0.0], [15.9370422, -4.4011829, 0.0], [15.9370422, -4.4080291, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1571}, "geometry": {"type": "Polygon", "coordinates": [[[15.9480286, -4.4052907, 0.0], [15.9521484, -4.4052907, 0.0], [15.9521484, -4.4025522, 0.0], [15.9480286, -4.4025522, 0.0], [15.9480286, -4.4052907, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 429}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.4080291, 0.0], [15.718689, -4.4080291, 0.0], [15.718689, -4.4066599, 0.0], [15.7173157, -4.4066599, 0.0], [15.7173157, -4.4080291, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 715}, "geometry": {"type": "Polygon", "coordinates": [[[15.7626343, -4.4080291, 0.0], [15.7653809, -4.4080291, 0.0], [15.7653809, -4.4039214, 0.0], [15.7626343, -4.4039214, 0.0], [15.7626343, -4.4080291, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 805}, "geometry": {"type": "Polygon", "coordinates": [[[15.7804871, -4.4066599, 0.0], [15.7846069, -4.4066599, 0.0], [15.7846069, -4.4039214, 0.0], [15.7804871, -4.4039214, 0.0], [15.7804871, -4.4066599, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 953}, "geometry": {"type": "Polygon", "coordinates": [[[15.8106995, -4.4093983, 0.0], [15.8148193, -4.4093983, 0.0], [15.8148193, -4.4052907, 0.0], [15.8106995, -4.4052907, 0.0], [15.8106995, -4.4093983, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 989}, "geometry": {"type": "Polygon", "coordinates": [[[15.8175659, -4.4066599, 0.0], [15.8189392, -4.4066599, 0.0], [15.8189392, -4.4052907, 0.0], [15.8175659, -4.4052907, 0.0], [15.8175659, -4.4066599, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1125}, "geometry": {"type": "Polygon", "coordinates": [[[15.8477783, -4.413506, 0.0], [15.8505249, -4.413506, 0.0], [15.8505249, -4.4066599, 0.0], [15.8477783, -4.4066599, 0.0], [15.8477783, -4.413506, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1236}, "geometry": {"type": "Polygon", "coordinates": [[[15.8670044, -4.4203521, 0.0], [15.8779907, -4.4203521, 0.0], [15.8779907, -4.4052907, 0.0], [15.8670044, -4.4052907, 0.0], [15.8670044, -4.4203521, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1462}, "geometry": {"type": "Polygon", "coordinates": [[[15.9136963, -4.4052907, 0.0], [15.9150696, -4.4052907, 0.0], [15.9150696, -4.4039214, 0.0], [15.9136963, -4.4039214, 0.0], [15.9136963, -4.4052907, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1621}, "geometry": {"type": "Polygon", "coordinates": [[[15.9892273, -4.4107676, 0.0], [15.9919739, -4.4107676, 0.0], [15.9919739, -4.4039214, 0.0], [15.9892273, -4.4039214, 0.0], [15.9892273, -4.4107676, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 380}, "geometry": {"type": "Polygon", "coordinates": [[[15.7077026, -4.4093983, 0.0], [15.7090759, -4.4093983, 0.0], [15.7090759, -4.4080291, 0.0], [15.7077026, -4.4080291, 0.0], [15.7077026, -4.4093983, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 412}, "geometry": {"type": "Polygon", "coordinates": [[[15.7131958, -4.4093983, 0.0], [15.7145691, -4.4093983, 0.0], [15.7145691, -4.4080291, 0.0], [15.7131958, -4.4080291, 0.0], [15.7131958, -4.4093983, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 497}, "geometry": {"type": "Polygon", "coordinates": [[[15.7296753, -4.4107676, 0.0], [15.7310486, -4.4107676, 0.0], [15.7310486, -4.4093983, 0.0], [15.7296753, -4.4093983, 0.0], [15.7296753, -4.4107676, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1023}, "geometry": {"type": "Polygon", "coordinates": [[[15.8244324, -4.4148752, 0.0], [15.8354187, -4.4148752, 0.0], [15.8354187, -4.4093983, 0.0], [15.8244324, -4.4093983, 0.0], [15.8244324, -4.4148752, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1235}, "geometry": {"type": "Polygon", "coordinates": [[[15.8670044, -4.4093983, 0.0], [15.8683777, -4.4093983, 0.0], [15.8683777, -4.4080291, 0.0], [15.8670044, -4.4080291, 0.0], [15.8670044, -4.4093983, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1483}, "geometry": {"type": "Polygon", "coordinates": [[[15.9191895, -4.4107676, 0.0], [15.9205627, -4.4107676, 0.0], [15.9205627, -4.4093983, 0.0], [15.9191895, -4.4093983, 0.0], [15.9191895, -4.4107676, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1526}, "geometry": {"type": "Polygon", "coordinates": [[[15.9288025, -4.4093983, 0.0], [15.9301758, -4.4093983, 0.0], [15.9301758, -4.4080291, 0.0], [15.9288025, -4.4080291, 0.0], [15.9288025, -4.4093983, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1555}, "geometry": {"type": "Polygon", "coordinates": [[[15.9411621, -4.4121368, 0.0], [15.9425354, -4.4121368, 0.0], [15.9425354, -4.4107676, 0.0], [15.9411621, -4.4107676, 0.0], [15.9411621, -4.4121368, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 352}, "geometry": {"type": "Polygon", "coordinates": [[[15.7022095, -4.4148752, 0.0], [15.7035828, -4.4148752, 0.0], [15.7035828, -4.4121368, 0.0], [15.7022095, -4.4121368, 0.0], [15.7022095, -4.4148752, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 387}, "geometry": {"type": "Polygon", "coordinates": [[[15.7090759, -4.413506, 0.0], [15.7104492, -4.413506, 0.0], [15.7104492, -4.4121368, 0.0], [15.7090759, -4.4121368, 0.0], [15.7090759, -4.413506, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 415}, "geometry": {"type": "Polygon", "coordinates": [[[15.7145691, -4.4148752, 0.0], [15.7159424, -4.4148752, 0.0], [15.7159424, -4.413506, 0.0], [15.7145691, -4.413506, 0.0], [15.7145691, -4.4148752, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 534}, "geometry": {"type": "Polygon", "coordinates": [[[15.7365417, -4.413506, 0.0], [15.7420349, -4.413506, 0.0], [15.7420349, -4.4121368, 0.0], [15.7365417, -4.4121368, 0.0], [15.7365417, -4.413506, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 625}, "geometry": {"type": "Polygon", "coordinates": [[[15.7502747, -4.4148752, 0.0], [15.7516479, -4.4148752, 0.0], [15.7516479, -4.413506, 0.0], [15.7502747, -4.413506, 0.0], [15.7502747, -4.4148752, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 683}, "geometry": {"type": "Polygon", "coordinates": [[[15.7571411, -4.4148752, 0.0], [15.7585144, -4.4148752, 0.0], [15.7585144, -4.413506, 0.0], [15.7571411, -4.413506, 0.0], [15.7571411, -4.4148752, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 733}, "geometry": {"type": "Polygon", "coordinates": [[[15.7653809, -4.413506, 0.0], [15.7667542, -4.413506, 0.0], [15.7667542, -4.4121368, 0.0], [15.7653809, -4.4121368, 0.0], [15.7653809, -4.413506, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 774}, "geometry": {"type": "Polygon", "coordinates": [[[15.7736206, -4.4148752, 0.0], [15.7749939, -4.4148752, 0.0], [15.7749939, -4.413506, 0.0], [15.7736206, -4.413506, 0.0], [15.7736206, -4.4148752, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 795}, "geometry": {"type": "Polygon", "coordinates": [[[15.7777405, -4.4148752, 0.0], [15.7791138, -4.4148752, 0.0], [15.7791138, -4.413506, 0.0], [15.7777405, -4.413506, 0.0], [15.7777405, -4.4148752, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 813}, "geometry": {"type": "Polygon", "coordinates": [[[15.7818604, -4.4162444, 0.0], [15.7846069, -4.4162444, 0.0], [15.7846069, -4.413506, 0.0], [15.7818604, -4.413506, 0.0], [15.7818604, -4.4162444, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 962}, "geometry": {"type": "Polygon", "coordinates": [[[15.8120728, -4.4189829, 0.0], [15.8161926, -4.4189829, 0.0], [15.8161926, -4.4148752, 0.0], [15.8120728, -4.4148752, 0.0], [15.8120728, -4.4189829, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1301}, "geometry": {"type": "Polygon", "coordinates": [[[15.879364, -4.413506, 0.0], [15.8807373, -4.413506, 0.0], [15.8807373, -4.4121368, 0.0], [15.879364, -4.4121368, 0.0], [15.879364, -4.413506, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1302}, "geometry": {"type": "Polygon", "coordinates": [[[15.879364, -4.4217213, 0.0], [15.8862305, -4.4217213, 0.0], [15.8862305, -4.4148752, 0.0], [15.879364, -4.4148752, 0.0], [15.879364, -4.4217213, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1438}, "geometry": {"type": "Polygon", "coordinates": [[[15.9054565, -4.4148752, 0.0], [15.9082031, -4.4148752, 0.0], [15.9082031, -4.4121368, 0.0], [15.9054565, -4.4121368, 0.0], [15.9054565, -4.4148752, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 626}, "geometry": {"type": "Polygon", "coordinates": [[[15.7502747, -4.4203521, 0.0], [15.7516479, -4.4203521, 0.0], [15.7516479, -4.4189829, 0.0], [15.7502747, -4.4189829, 0.0], [15.7502747, -4.4203521, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 706}, "geometry": {"type": "Polygon", "coordinates": [[[15.761261, -4.4217213, 0.0], [15.7640076, -4.4217213, 0.0], [15.7640076, -4.4189829, 0.0], [15.761261, -4.4189829, 0.0], [15.761261, -4.4217213, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 775}, "geometry": {"type": "Polygon", "coordinates": [[[15.7736206, -4.4203521, 0.0], [15.7749939, -4.4203521, 0.0], [15.7749939, -4.4189829, 0.0], [15.7736206, -4.4189829, 0.0], [15.7736206, -4.4203521, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 829}, "geometry": {"type": "Polygon", "coordinates": [[[15.7859802, -4.4217213, 0.0], [15.7887268, -4.4217213, 0.0], [15.7887268, -4.4189829, 0.0], [15.7859802, -4.4189829, 0.0], [15.7859802, -4.4217213, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1074}, "geometry": {"type": "Polygon", "coordinates": [[[15.8340454, -4.4189829, 0.0], [15.8354187, -4.4189829, 0.0], [15.8354187, -4.4176137, 0.0], [15.8340454, -4.4176137, 0.0], [15.8340454, -4.4189829, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1376}, "geometry": {"type": "Polygon", "coordinates": [[[15.8917236, -4.4230905, 0.0], [15.90271, -4.4230905, 0.0], [15.90271, -4.4162444, 0.0], [15.8917236, -4.4162444, 0.0], [15.8917236, -4.4230905, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1484}, "geometry": {"type": "Polygon", "coordinates": [[[15.9205627, -4.4189829, 0.0], [15.921936, -4.4189829, 0.0], [15.921936, -4.4176137, 0.0], [15.9205627, -4.4176137, 0.0], [15.9205627, -4.4189829, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1517}, "geometry": {"type": "Polygon", "coordinates": [[[15.9274292, -4.4217213, 0.0], [15.9301758, -4.4217213, 0.0], [15.9301758, -4.4189829, 0.0], [15.9274292, -4.4189829, 0.0], [15.9274292, -4.4217213, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1602}, "geometry": {"type": "Polygon", "coordinates": [[[15.9713745, -4.4189829, 0.0], [15.9727478, -4.4189829, 0.0], [15.9727478, -4.4176137, 0.0], [15.9713745, -4.4176137, 0.0], [15.9713745, -4.4189829, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 563}, "geometry": {"type": "Polygon", "coordinates": [[[15.7420349, -4.4258289, 0.0], [15.7475281, -4.4258289, 0.0], [15.7475281, -4.4203521, 0.0], [15.7420349, -4.4203521, 0.0], [15.7420349, -4.4258289, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 806}, "geometry": {"type": "Polygon", "coordinates": [[[15.7777405, -4.4271981, 0.0], [15.7832336, -4.4271981, 0.0], [15.7832336, -4.4217213, 0.0], [15.7777405, -4.4217213, 0.0], [15.7777405, -4.4271981, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 934}, "geometry": {"type": "Polygon", "coordinates": [[[15.8065796, -4.4230905, 0.0], [15.8093262, -4.4230905, 0.0], [15.8093262, -4.4203521, 0.0], [15.8065796, -4.4203521, 0.0], [15.8065796, -4.4230905, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1015}, "geometry": {"type": "Polygon", "coordinates": [[[15.8230591, -4.4258289, 0.0], [15.8244324, -4.4258289, 0.0], [15.8244324, -4.4230905, 0.0], [15.8230591, -4.4230905, 0.0], [15.8230591, -4.4258289, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1190}, "geometry": {"type": "Polygon", "coordinates": [[[15.8587646, -4.4258289, 0.0], [15.8615112, -4.4258289, 0.0], [15.8615112, -4.4230905, 0.0], [15.8587646, -4.4230905, 0.0], [15.8587646, -4.4258289, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1273}, "geometry": {"type": "Polygon", "coordinates": [[[15.8738708, -4.4230905, 0.0], [15.8752441, -4.4230905, 0.0], [15.8752441, -4.4217213, 0.0], [15.8738708, -4.4217213, 0.0], [15.8738708, -4.4230905, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1357}, "geometry": {"type": "Polygon", "coordinates": [[[15.8889771, -4.4244597, 0.0], [15.8903503, -4.4244597, 0.0], [15.8903503, -4.4230905, 0.0], [15.8889771, -4.4230905, 0.0], [15.8889771, -4.4244597, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1439}, "geometry": {"type": "Polygon", "coordinates": [[[15.9054565, -4.4217213, 0.0], [15.9068298, -4.4217213, 0.0], [15.9068298, -4.4203521, 0.0], [15.9054565, -4.4203521, 0.0], [15.9054565, -4.4217213, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1450}, "geometry": {"type": "Polygon", "coordinates": [[[15.9095764, -4.4230905, 0.0], [15.9136963, -4.4230905, 0.0], [15.9136963, -4.4203521, 0.0], [15.9095764, -4.4203521, 0.0], [15.9095764, -4.4230905, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1565}, "geometry": {"type": "Polygon", "coordinates": [[[15.945282, -4.4258289, 0.0], [15.9480286, -4.4258289, 0.0], [15.9480286, -4.4217213, 0.0], [15.945282, -4.4217213, 0.0], [15.945282, -4.4258289, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 688}, "geometry": {"type": "Polygon", "coordinates": [[[15.7585144, -4.4271981, 0.0], [15.7598877, -4.4271981, 0.0], [15.7598877, -4.4258289, 0.0], [15.7585144, -4.4258289, 0.0], [15.7585144, -4.4271981, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 725}, "geometry": {"type": "Polygon", "coordinates": [[[15.7640076, -4.4258289, 0.0], [15.7653809, -4.4258289, 0.0], [15.7653809, -4.4244597, 0.0], [15.7640076, -4.4244597, 0.0], [15.7640076, -4.4258289, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 839}, "geometry": {"type": "Polygon", "coordinates": [[[15.7873535, -4.4258289, 0.0], [15.7887268, -4.4258289, 0.0], [15.7887268, -4.4244597, 0.0], [15.7873535, -4.4244597, 0.0], [15.7873535, -4.4258289, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1119}, "geometry": {"type": "Polygon", "coordinates": [[[15.846405, -4.4285673, 0.0], [15.8477783, -4.4285673, 0.0], [15.8477783, -4.4271981, 0.0], [15.846405, -4.4271981, 0.0], [15.846405, -4.4285673, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1152}, "geometry": {"type": "Polygon", "coordinates": [[[15.8518982, -4.4271981, 0.0], [15.8546448, -4.4271981, 0.0], [15.8546448, -4.4244597, 0.0], [15.8518982, -4.4244597, 0.0], [15.8518982, -4.4271981, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1243}, "geometry": {"type": "Polygon", "coordinates": [[[15.8670044, -4.434044, 0.0], [15.8711243, -4.434044, 0.0], [15.8711243, -4.4244597, 0.0], [15.8670044, -4.4244597, 0.0], [15.8670044, -4.434044, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1576}, "geometry": {"type": "Polygon", "coordinates": [[[15.9521484, -4.4271981, 0.0], [15.9535217, -4.4271981, 0.0], [15.9535217, -4.4258289, 0.0], [15.9521484, -4.4258289, 0.0], [15.9521484, -4.4271981, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 331}, "geometry": {"type": "Polygon", "coordinates": [[[15.6967163, -4.434044, 0.0], [15.7022095, -4.434044, 0.0], [15.7022095, -4.4313056, 0.0], [15.6967163, -4.4313056, 0.0], [15.6967163, -4.434044, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 416}, "geometry": {"type": "Polygon", "coordinates": [[[15.7145691, -4.4367824, 0.0], [15.7255554, -4.4367824, 0.0], [15.7255554, -4.4285673, 0.0], [15.7145691, -4.4285673, 0.0], [15.7145691, -4.4367824, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 553}, "geometry": {"type": "Polygon", "coordinates": [[[15.7392883, -4.4326748, 0.0], [15.7434082, -4.4326748, 0.0], [15.7434082, -4.4285673, 0.0], [15.7392883, -4.4285673, 0.0], [15.7392883, -4.4326748, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 633}, "geometry": {"type": "Polygon", "coordinates": [[[15.7516479, -4.4326748, 0.0], [15.7543945, -4.4326748, 0.0], [15.7543945, -4.4299365, 0.0], [15.7516479, -4.4299365, 0.0], [15.7516479, -4.4326748, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 963}, "geometry": {"type": "Polygon", "coordinates": [[[15.8120728, -4.4299365, 0.0], [15.813446, -4.4299365, 0.0], [15.813446, -4.4285673, 0.0], [15.8120728, -4.4285673, 0.0], [15.8120728, -4.4299365, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1352}, "geometry": {"type": "Polygon", "coordinates": [[[15.8876038, -4.4326748, 0.0], [15.8889771, -4.4326748, 0.0], [15.8889771, -4.4299365, 0.0], [15.8876038, -4.4299365, 0.0], [15.8876038, -4.4326748, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1404}, "geometry": {"type": "Polygon", "coordinates": [[[15.8972168, -4.4326748, 0.0], [15.8999634, -4.4326748, 0.0], [15.8999634, -4.4313056, 0.0], [15.8972168, -4.4313056, 0.0], [15.8972168, -4.4326748, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1463}, "geometry": {"type": "Polygon", "coordinates": [[[15.9136963, -4.4313056, 0.0], [15.9178162, -4.4313056, 0.0], [15.9178162, -4.4285673, 0.0], [15.9136963, -4.4285673, 0.0], [15.9136963, -4.4313056, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1559}, "geometry": {"type": "Polygon", "coordinates": [[[15.9425354, -4.4326748, 0.0], [15.9480286, -4.4326748, 0.0], [15.9480286, -4.4285673, 0.0], [15.9425354, -4.4285673, 0.0], [15.9425354, -4.4326748, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1597}, "geometry": {"type": "Polygon", "coordinates": [[[15.9672546, -4.4313056, 0.0], [15.9686279, -4.4313056, 0.0], [15.9686279, -4.4299365, 0.0], [15.9672546, -4.4299365, 0.0], [15.9672546, -4.4313056, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1616}, "geometry": {"type": "Polygon", "coordinates": [[[15.9851074, -4.4313056, 0.0], [15.9864807, -4.4313056, 0.0], [15.9864807, -4.4299365, 0.0], [15.9851074, -4.4299365, 0.0], [15.9851074, -4.4313056, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 365}, "geometry": {"type": "Polygon", "coordinates": [[[15.7049561, -4.4354132, 0.0], [15.7077026, -4.4354132, 0.0], [15.7077026, -4.4326748, 0.0], [15.7049561, -4.4326748, 0.0], [15.7049561, -4.4354132, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 535}, "geometry": {"type": "Polygon", "coordinates": [[[15.7365417, -4.434044, 0.0], [15.737915, -4.434044, 0.0], [15.737915, -4.4326748, 0.0], [15.7365417, -4.4326748, 0.0], [15.7365417, -4.434044, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 540}, "geometry": {"type": "Polygon", "coordinates": [[[15.737915, -4.4436282, 0.0], [15.7447815, -4.4436282, 0.0], [15.7447815, -4.4354132, 0.0], [15.737915, -4.4354132, 0.0], [15.737915, -4.4436282, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 726}, "geometry": {"type": "Polygon", "coordinates": [[[15.7640076, -4.4367824, 0.0], [15.7667542, -4.4367824, 0.0], [15.7667542, -4.434044, 0.0], [15.7640076, -4.434044, 0.0], [15.7640076, -4.4367824, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1447}, "geometry": {"type": "Polygon", "coordinates": [[[15.9082031, -4.4395207, 0.0], [15.9150696, -4.4395207, 0.0], [15.9150696, -4.4326748, 0.0], [15.9082031, -4.4326748, 0.0], [15.9082031, -4.4395207, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1493}, "geometry": {"type": "Polygon", "coordinates": [[[15.921936, -4.4395207, 0.0], [15.9233093, -4.4395207, 0.0], [15.9233093, -4.4354132, 0.0], [15.921936, -4.4354132, 0.0], [15.921936, -4.4395207, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1595}, "geometry": {"type": "Polygon", "coordinates": [[[15.9658813, -4.4354132, 0.0], [15.9672546, -4.4354132, 0.0], [15.9672546, -4.434044, 0.0], [15.9658813, -4.434044, 0.0], [15.9658813, -4.4354132, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1623}, "geometry": {"type": "Polygon", "coordinates": [[[15.9919739, -4.434044, 0.0], [15.9933472, -4.434044, 0.0], [15.9933472, -4.4326748, 0.0], [15.9919739, -4.4326748, 0.0], [15.9919739, -4.434044, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 612}, "geometry": {"type": "Polygon", "coordinates": [[[15.7489014, -4.4395207, 0.0], [15.7516479, -4.4395207, 0.0], [15.7516479, -4.4367824, 0.0], [15.7489014, -4.4367824, 0.0], [15.7489014, -4.4395207, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 788}, "geometry": {"type": "Polygon", "coordinates": [[[15.7763672, -4.4381515, 0.0], [15.7777405, -4.4381515, 0.0], [15.7777405, -4.4367824, 0.0], [15.7763672, -4.4367824, 0.0], [15.7763672, -4.4381515, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1229}, "geometry": {"type": "Polygon", "coordinates": [[[15.8656311, -4.4408899, 0.0], [15.8683777, -4.4408899, 0.0], [15.8683777, -4.4395207, 0.0], [15.8656311, -4.4395207, 0.0], [15.8656311, -4.4408899, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1556}, "geometry": {"type": "Polygon", "coordinates": [[[15.9411621, -4.4408899, 0.0], [15.9425354, -4.4408899, 0.0], [15.9425354, -4.4395207, 0.0], [15.9411621, -4.4395207, 0.0], [15.9411621, -4.4408899, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 282}, "geometry": {"type": "Polygon", "coordinates": [[[15.68573, -4.442259, 0.0], [15.6871033, -4.442259, 0.0], [15.6871033, -4.4408899, 0.0], [15.68573, -4.4408899, 0.0], [15.68573, -4.442259, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 396}, "geometry": {"type": "Polygon", "coordinates": [[[15.7104492, -4.450474, 0.0], [15.718689, -4.450474, 0.0], [15.718689, -4.4408899, 0.0], [15.7104492, -4.4408899, 0.0], [15.7104492, -4.450474, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 454}, "geometry": {"type": "Polygon", "coordinates": [[[15.7200623, -4.4436282, 0.0], [15.7228088, -4.4436282, 0.0], [15.7228088, -4.442259, 0.0], [15.7200623, -4.442259, 0.0], [15.7200623, -4.4436282, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 634}, "geometry": {"type": "Polygon", "coordinates": [[[15.7516479, -4.4463665, 0.0], [15.7557678, -4.4463665, 0.0], [15.7557678, -4.4408899, 0.0], [15.7516479, -4.4408899, 0.0], [15.7516479, -4.4463665, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1478}, "geometry": {"type": "Polygon", "coordinates": [[[15.9164429, -4.4477357, 0.0], [15.9246826, -4.4477357, 0.0], [15.9246826, -4.442259, 0.0], [15.9164429, -4.442259, 0.0], [15.9164429, -4.4477357, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1519}, "geometry": {"type": "Polygon", "coordinates": [[[15.9274292, -4.4449974, 0.0], [15.9288025, -4.4449974, 0.0], [15.9288025, -4.4436282, 0.0], [15.9274292, -4.4436282, 0.0], [15.9274292, -4.4449974, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1551}, "geometry": {"type": "Polygon", "coordinates": [[[15.9397888, -4.4449974, 0.0], [15.9411621, -4.4449974, 0.0], [15.9411621, -4.4436282, 0.0], [15.9397888, -4.4436282, 0.0], [15.9397888, -4.4449974, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 255}, "geometry": {"type": "Polygon", "coordinates": [[[15.6788635, -4.4491048, 0.0], [15.6802368, -4.4491048, 0.0], [15.6802368, -4.4477357, 0.0], [15.6788635, -4.4477357, 0.0], [15.6788635, -4.4491048, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 479}, "geometry": {"type": "Polygon", "coordinates": [[[15.7269287, -4.4518431, 0.0], [15.7324219, -4.4518431, 0.0], [15.7324219, -4.4477357, 0.0], [15.7269287, -4.4477357, 0.0], [15.7269287, -4.4518431, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 746}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.4463665, 0.0], [15.7681274, -4.4463665, 0.0], [15.7681274, -4.4449974, 0.0], [15.7667542, -4.4449974, 0.0], [15.7667542, -4.4463665, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 900}, "geometry": {"type": "Polygon", "coordinates": [[[15.7983398, -4.4477357, 0.0], [15.7997131, -4.4477357, 0.0], [15.7997131, -4.4463665, 0.0], [15.7983398, -4.4463665, 0.0], [15.7983398, -4.4477357, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 947}, "geometry": {"type": "Polygon", "coordinates": [[[15.8093262, -4.450474, 0.0], [15.813446, -4.450474, 0.0], [15.813446, -4.4477357, 0.0], [15.8093262, -4.4477357, 0.0], [15.8093262, -4.450474, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1506}, "geometry": {"type": "Polygon", "coordinates": [[[15.9246826, -4.4586888, 0.0], [15.9301758, -4.4586888, 0.0], [15.9301758, -4.4477357, 0.0], [15.9246826, -4.4477357, 0.0], [15.9246826, -4.4586888, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1557}, "geometry": {"type": "Polygon", "coordinates": [[[15.9411621, -4.4518431, 0.0], [15.945282, -4.4518431, 0.0], [15.945282, -4.4477357, 0.0], [15.9411621, -4.4477357, 0.0], [15.9411621, -4.4518431, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1590}, "geometry": {"type": "Polygon", "coordinates": [[[15.9617615, -4.4463665, 0.0], [15.9631348, -4.4463665, 0.0], [15.9631348, -4.4449974, 0.0], [15.9617615, -4.4449974, 0.0], [15.9617615, -4.4463665, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1177}, "geometry": {"type": "Polygon", "coordinates": [[[15.8560181, -4.450474, 0.0], [15.8573914, -4.450474, 0.0], [15.8573914, -4.4491048, 0.0], [15.8560181, -4.4491048, 0.0], [15.8560181, -4.450474, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1539}, "geometry": {"type": "Polygon", "coordinates": [[[15.9342957, -4.4518431, 0.0], [15.9356689, -4.4518431, 0.0], [15.9356689, -4.4491048, 0.0], [15.9342957, -4.4491048, 0.0], [15.9342957, -4.4518431, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1572}, "geometry": {"type": "Polygon", "coordinates": [[[15.9480286, -4.4518431, 0.0], [15.9494019, -4.4518431, 0.0], [15.9494019, -4.450474, 0.0], [15.9480286, -4.450474, 0.0], [15.9480286, -4.4518431, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1615}, "geometry": {"type": "Polygon", "coordinates": [[[15.9837341, -4.4518431, 0.0], [15.9851074, -4.4518431, 0.0], [15.9851074, -4.450474, 0.0], [15.9837341, -4.450474, 0.0], [15.9837341, -4.4518431, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 876}, "geometry": {"type": "Polygon", "coordinates": [[[15.7928467, -4.4545814, 0.0], [15.79422, -4.4545814, 0.0], [15.79422, -4.4532123, 0.0], [15.7928467, -4.4532123, 0.0], [15.7928467, -4.4545814, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 964}, "geometry": {"type": "Polygon", "coordinates": [[[15.8120728, -4.4614271, 0.0], [15.813446, -4.4614271, 0.0], [15.813446, -4.4559506, 0.0], [15.8120728, -4.4559506, 0.0], [15.8120728, -4.4614271, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 259}, "geometry": {"type": "Polygon", "coordinates": [[[15.6802368, -4.4641654, 0.0], [15.6843567, -4.4641654, 0.0], [15.6843567, -4.4573197, 0.0], [15.6802368, -4.4573197, 0.0], [15.6802368, -4.4641654, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 298}, "geometry": {"type": "Polygon", "coordinates": [[[15.6898499, -4.460058, 0.0], [15.6912231, -4.460058, 0.0], [15.6912231, -4.4586888, 0.0], [15.6898499, -4.4586888, 0.0], [15.6898499, -4.460058, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 526}, "geometry": {"type": "Polygon", "coordinates": [[[15.7351685, -4.4586888, 0.0], [15.7365417, -4.4586888, 0.0], [15.7365417, -4.4573197, 0.0], [15.7351685, -4.4573197, 0.0], [15.7351685, -4.4586888, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 559}, "geometry": {"type": "Polygon", "coordinates": [[[15.7406616, -4.4614271, 0.0], [15.7475281, -4.4614271, 0.0], [15.7475281, -4.4573197, 0.0], [15.7406616, -4.4573197, 0.0], [15.7406616, -4.4614271, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 647}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -4.4614271, 0.0], [15.7557678, -4.4614271, 0.0], [15.7557678, -4.4586888, 0.0], [15.7530212, -4.4586888, 0.0], [15.7530212, -4.4614271, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 768}, "geometry": {"type": "Polygon", "coordinates": [[[15.7722473, -4.4627962, 0.0], [15.7749939, -4.4627962, 0.0], [15.7749939, -4.4573197, 0.0], [15.7722473, -4.4573197, 0.0], [15.7722473, -4.4627962, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 901}, "geometry": {"type": "Polygon", "coordinates": [[[15.7983398, -4.4586888, 0.0], [15.7997131, -4.4586888, 0.0], [15.7997131, -4.4573197, 0.0], [15.7983398, -4.4573197, 0.0], [15.7983398, -4.4586888, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1222}, "geometry": {"type": "Polygon", "coordinates": [[[15.8642578, -4.4614271, 0.0], [15.8656311, -4.4614271, 0.0], [15.8656311, -4.460058, 0.0], [15.8642578, -4.460058, 0.0], [15.8642578, -4.4614271, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1513}, "geometry": {"type": "Polygon", "coordinates": [[[15.9260559, -4.4641654, 0.0], [15.9315491, -4.4641654, 0.0], [15.9315491, -4.4586888, 0.0], [15.9260559, -4.4586888, 0.0], [15.9260559, -4.4641654, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1588}, "geometry": {"type": "Polygon", "coordinates": [[[15.9590149, -4.4586888, 0.0], [15.9603882, -4.4586888, 0.0], [15.9603882, -4.4573197, 0.0], [15.9590149, -4.4573197, 0.0], [15.9590149, -4.4586888, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 342}, "geometry": {"type": "Polygon", "coordinates": [[[15.6994629, -4.4641654, 0.0], [15.7008362, -4.4641654, 0.0], [15.7008362, -4.4614271, 0.0], [15.6994629, -4.4614271, 0.0], [15.6994629, -4.4641654, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 507}, "geometry": {"type": "Polygon", "coordinates": [[[15.7324219, -4.4627962, 0.0], [15.7337952, -4.4627962, 0.0], [15.7337952, -4.4614271, 0.0], [15.7324219, -4.4614271, 0.0], [15.7324219, -4.4627962, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 830}, "geometry": {"type": "Polygon", "coordinates": [[[15.7859802, -4.4641654, 0.0], [15.7873535, -4.4641654, 0.0], [15.7873535, -4.4627962, 0.0], [15.7859802, -4.4627962, 0.0], [15.7859802, -4.4641654, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1064}, "geometry": {"type": "Polygon", "coordinates": [[[15.8326721, -4.4627962, 0.0], [15.8340454, -4.4627962, 0.0], [15.8340454, -4.4614271, 0.0], [15.8326721, -4.4614271, 0.0], [15.8326721, -4.4627962, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1153}, "geometry": {"type": "Polygon", "coordinates": [[[15.8518982, -4.4641654, 0.0], [15.8532715, -4.4641654, 0.0], [15.8532715, -4.4627962, 0.0], [15.8518982, -4.4627962, 0.0], [15.8518982, -4.4641654, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1244}, "geometry": {"type": "Polygon", "coordinates": [[[15.8683777, -4.4641654, 0.0], [15.8711243, -4.4641654, 0.0], [15.8711243, -4.4614271, 0.0], [15.8683777, -4.4614271, 0.0], [15.8683777, -4.4641654, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1343}, "geometry": {"type": "Polygon", "coordinates": [[[15.8862305, -4.4641654, 0.0], [15.8876038, -4.4641654, 0.0], [15.8876038, -4.4627962, 0.0], [15.8862305, -4.4627962, 0.0], [15.8862305, -4.4641654, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1485}, "geometry": {"type": "Polygon", "coordinates": [[[15.9205627, -4.4641654, 0.0], [15.9233093, -4.4641654, 0.0], [15.9233093, -4.4627962, 0.0], [15.9205627, -4.4627962, 0.0], [15.9205627, -4.4641654, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1562}, "geometry": {"type": "Polygon", "coordinates": [[[15.9439087, -4.4655345, 0.0], [15.9480286, -4.4655345, 0.0], [15.9480286, -4.4627962, 0.0], [15.9439087, -4.4627962, 0.0], [15.9439087, -4.4655345, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 480}, "geometry": {"type": "Polygon", "coordinates": [[[15.7269287, -4.4682727, 0.0], [15.728302, -4.4682727, 0.0], [15.728302, -4.4669036, 0.0], [15.7269287, -4.4669036, 0.0], [15.7269287, -4.4682727, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 554}, "geometry": {"type": "Polygon", "coordinates": [[[15.7392883, -4.4682727, 0.0], [15.7434082, -4.4682727, 0.0], [15.7434082, -4.4655345, 0.0], [15.7392883, -4.4655345, 0.0], [15.7392883, -4.4682727, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 727}, "geometry": {"type": "Polygon", "coordinates": [[[15.7640076, -4.471011, 0.0], [15.7681274, -4.471011, 0.0], [15.7681274, -4.4682727, 0.0], [15.7640076, -4.4682727, 0.0], [15.7640076, -4.471011, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 968}, "geometry": {"type": "Polygon", "coordinates": [[[15.8148193, -4.4751183, 0.0], [15.8244324, -4.4751183, 0.0], [15.8244324, -4.4682727, 0.0], [15.8148193, -4.4682727, 0.0], [15.8148193, -4.4751183, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1238}, "geometry": {"type": "Polygon", "coordinates": [[[15.8670044, -4.471011, 0.0], [15.8711243, -4.471011, 0.0], [15.8711243, -4.4669036, 0.0], [15.8670044, -4.4669036, 0.0], [15.8670044, -4.471011, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1311}, "geometry": {"type": "Polygon", "coordinates": [[[15.8807373, -4.4696418, 0.0], [15.8834839, -4.4696418, 0.0], [15.8834839, -4.4655345, 0.0], [15.8807373, -4.4655345, 0.0], [15.8807373, -4.4696418, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1486}, "geometry": {"type": "Polygon", "coordinates": [[[15.9205627, -4.4696418, 0.0], [15.921936, -4.4696418, 0.0], [15.921936, -4.4669036, 0.0], [15.9205627, -4.4669036, 0.0], [15.9205627, -4.4696418, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 232}, "geometry": {"type": "Polygon", "coordinates": [[[15.6719971, -4.4792256, 0.0], [15.6747437, -4.4792256, 0.0], [15.6747437, -4.4723801, 0.0], [15.6719971, -4.4723801, 0.0], [15.6719971, -4.4792256, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 489}, "geometry": {"type": "Polygon", "coordinates": [[[15.728302, -4.4723801, 0.0], [15.7296753, -4.4723801, 0.0], [15.7296753, -4.471011, 0.0], [15.728302, -4.471011, 0.0], [15.728302, -4.4723801, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 613}, "geometry": {"type": "Polygon", "coordinates": [[[15.7489014, -4.4723801, 0.0], [15.7502747, -4.4723801, 0.0], [15.7502747, -4.471011, 0.0], [15.7489014, -4.471011, 0.0], [15.7489014, -4.4723801, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1042}, "geometry": {"type": "Polygon", "coordinates": [[[15.827179, -4.4723801, 0.0], [15.8285522, -4.4723801, 0.0], [15.8285522, -4.471011, 0.0], [15.827179, -4.471011, 0.0], [15.827179, -4.4723801, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1344}, "geometry": {"type": "Polygon", "coordinates": [[[15.8862305, -4.471011, 0.0], [15.8876038, -4.471011, 0.0], [15.8876038, -4.4696418, 0.0], [15.8862305, -4.4696418, 0.0], [15.8862305, -4.471011, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1583}, "geometry": {"type": "Polygon", "coordinates": [[[15.9576416, -4.4723801, 0.0], [15.9590149, -4.4723801, 0.0], [15.9590149, -4.471011, 0.0], [15.9576416, -4.471011, 0.0], [15.9576416, -4.4723801, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 260}, "geometry": {"type": "Polygon", "coordinates": [[[15.6802368, -4.4751183, 0.0], [15.6816101, -4.4751183, 0.0], [15.6816101, -4.4737492, 0.0], [15.6802368, -4.4737492, 0.0], [15.6802368, -4.4751183, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 288}, "geometry": {"type": "Polygon", "coordinates": [[[15.6871033, -4.4819638, 0.0], [15.6967163, -4.4819638, 0.0], [15.6967163, -4.4737492, 0.0], [15.6871033, -4.4737492, 0.0], [15.6871033, -4.4819638, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 397}, "geometry": {"type": "Polygon", "coordinates": [[[15.7104492, -4.4764874, 0.0], [15.7118225, -4.4764874, 0.0], [15.7118225, -4.4737492, 0.0], [15.7104492, -4.4737492, 0.0], [15.7104492, -4.4764874, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 498}, "geometry": {"type": "Polygon", "coordinates": [[[15.7296753, -4.4764874, 0.0], [15.7310486, -4.4764874, 0.0], [15.7310486, -4.4751183, 0.0], [15.7296753, -4.4751183, 0.0], [15.7296753, -4.4764874, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 555}, "geometry": {"type": "Polygon", "coordinates": [[[15.7392883, -4.4874401, 0.0], [15.7502747, -4.4874401, 0.0], [15.7502747, -4.4764874, 0.0], [15.7392883, -4.4764874, 0.0], [15.7392883, -4.4874401, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 648}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -4.4805947, 0.0], [15.7598877, -4.4805947, 0.0], [15.7598877, -4.4737492, 0.0], [15.7530212, -4.4737492, 0.0], [15.7530212, -4.4805947, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 716}, "geometry": {"type": "Polygon", "coordinates": [[[15.7626343, -4.4764874, 0.0], [15.7667542, -4.4764874, 0.0], [15.7667542, -4.4737492, 0.0], [15.7626343, -4.4737492, 0.0], [15.7626343, -4.4764874, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1191}, "geometry": {"type": "Polygon", "coordinates": [[[15.8587646, -4.4778565, 0.0], [15.8601379, -4.4778565, 0.0], [15.8601379, -4.4764874, 0.0], [15.8587646, -4.4764874, 0.0], [15.8587646, -4.4778565, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1432}, "geometry": {"type": "Polygon", "coordinates": [[[15.9040833, -4.4778565, 0.0], [15.9082031, -4.4778565, 0.0], [15.9082031, -4.4751183, 0.0], [15.9040833, -4.4751183, 0.0], [15.9040833, -4.4778565, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1469}, "geometry": {"type": "Polygon", "coordinates": [[[15.9150696, -4.4778565, 0.0], [15.9164429, -4.4778565, 0.0], [15.9164429, -4.4764874, 0.0], [15.9150696, -4.4764874, 0.0], [15.9150696, -4.4778565, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1502}, "geometry": {"type": "Polygon", "coordinates": [[[15.9233093, -4.4778565, 0.0], [15.9288025, -4.4778565, 0.0], [15.9288025, -4.4737492, 0.0], [15.9233093, -4.4737492, 0.0], [15.9233093, -4.4778565, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1577}, "geometry": {"type": "Polygon", "coordinates": [[[15.9521484, -4.4751183, 0.0], [15.9535217, -4.4751183, 0.0], [15.9535217, -4.4737492, 0.0], [15.9521484, -4.4737492, 0.0], [15.9521484, -4.4751183, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 250}, "geometry": {"type": "Polygon", "coordinates": [[[15.6774902, -4.4833329, 0.0], [15.6788635, -4.4833329, 0.0], [15.6788635, -4.4792256, 0.0], [15.6774902, -4.4792256, 0.0], [15.6774902, -4.4833329, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 348}, "geometry": {"type": "Polygon", "coordinates": [[[15.7008362, -4.4819638, 0.0], [15.7022095, -4.4819638, 0.0], [15.7022095, -4.4805947, 0.0], [15.7008362, -4.4805947, 0.0], [15.7008362, -4.4819638, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 431}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.4819638, 0.0], [15.7228088, -4.4819638, 0.0], [15.7228088, -4.4778565, 0.0], [15.7173157, -4.4778565, 0.0], [15.7173157, -4.4819638, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 846}, "geometry": {"type": "Polygon", "coordinates": [[[15.7887268, -4.4805947, 0.0], [15.7914734, -4.4805947, 0.0], [15.7914734, -4.4792256, 0.0], [15.7887268, -4.4792256, 0.0], [15.7887268, -4.4805947, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1464}, "geometry": {"type": "Polygon", "coordinates": [[[15.9136963, -4.4819638, 0.0], [15.9150696, -4.4819638, 0.0], [15.9150696, -4.4805947, 0.0], [15.9136963, -4.4805947, 0.0], [15.9136963, -4.4819638, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1591}, "geometry": {"type": "Polygon", "coordinates": [[[15.9631348, -4.4805947, 0.0], [15.9645081, -4.4805947, 0.0], [15.9645081, -4.4792256, 0.0], [15.9631348, -4.4792256, 0.0], [15.9631348, -4.4805947, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 343}, "geometry": {"type": "Polygon", "coordinates": [[[15.6994629, -4.486071, 0.0], [15.7008362, -4.486071, 0.0], [15.7008362, -4.4847019, 0.0], [15.6994629, -4.4847019, 0.0], [15.6994629, -4.486071, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 880}, "geometry": {"type": "Polygon", "coordinates": [[[15.79422, -4.486071, 0.0], [15.7983398, -4.486071, 0.0], [15.7983398, -4.4847019, 0.0], [15.79422, -4.4847019, 0.0], [15.79422, -4.486071, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1170}, "geometry": {"type": "Polygon", "coordinates": [[[15.8546448, -4.4847019, 0.0], [15.8560181, -4.4847019, 0.0], [15.8560181, -4.4833329, 0.0], [15.8546448, -4.4833329, 0.0], [15.8546448, -4.4847019, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1288}, "geometry": {"type": "Polygon", "coordinates": [[[15.8766174, -4.486071, 0.0], [15.8779907, -4.486071, 0.0], [15.8779907, -4.4847019, 0.0], [15.8766174, -4.4847019, 0.0], [15.8766174, -4.486071, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1414}, "geometry": {"type": "Polygon", "coordinates": [[[15.8999634, -4.486071, 0.0], [15.9013367, -4.486071, 0.0], [15.9013367, -4.4833329, 0.0], [15.8999634, -4.4833329, 0.0], [15.8999634, -4.486071, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 245}, "geometry": {"type": "Polygon", "coordinates": [[[15.6747437, -4.4901783, 0.0], [15.6788635, -4.4901783, 0.0], [15.6788635, -4.486071, 0.0], [15.6747437, -4.486071, 0.0], [15.6747437, -4.4901783, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 519}, "geometry": {"type": "Polygon", "coordinates": [[[15.7337952, -4.4901783, 0.0], [15.7365417, -4.4901783, 0.0], [15.7365417, -4.486071, 0.0], [15.7337952, -4.486071, 0.0], [15.7337952, -4.4901783, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 556}, "geometry": {"type": "Polygon", "coordinates": [[[15.7392883, -4.4901783, 0.0], [15.7447815, -4.4901783, 0.0], [15.7447815, -4.4888092, 0.0], [15.7392883, -4.4888092, 0.0], [15.7392883, -4.4901783, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 915}, "geometry": {"type": "Polygon", "coordinates": [[[15.8024597, -4.4901783, 0.0], [15.8065796, -4.4901783, 0.0], [15.8065796, -4.486071, 0.0], [15.8024597, -4.486071, 0.0], [15.8024597, -4.4901783, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1003}, "geometry": {"type": "Polygon", "coordinates": [[[15.8203125, -4.4901783, 0.0], [15.8230591, -4.4901783, 0.0], [15.8230591, -4.4888092, 0.0], [15.8203125, -4.4888092, 0.0], [15.8203125, -4.4901783, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1454}, "geometry": {"type": "Polygon", "coordinates": [[[15.9109497, -4.4874401, 0.0], [15.9136963, -4.4874401, 0.0], [15.9136963, -4.486071, 0.0], [15.9109497, -4.486071, 0.0], [15.9109497, -4.4874401, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1578}, "geometry": {"type": "Polygon", "coordinates": [[[15.9521484, -4.4874401, 0.0], [15.9535217, -4.4874401, 0.0], [15.9535217, -4.486071, 0.0], [15.9521484, -4.486071, 0.0], [15.9521484, -4.4874401, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1600}, "geometry": {"type": "Polygon", "coordinates": [[[15.9700012, -4.4874401, 0.0], [15.9713745, -4.4874401, 0.0], [15.9713745, -4.486071, 0.0], [15.9700012, -4.486071, 0.0], [15.9700012, -4.4874401, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1609}, "geometry": {"type": "Polygon", "coordinates": [[[15.9768677, -4.4874401, 0.0], [15.978241, -4.4874401, 0.0], [15.978241, -4.486071, 0.0], [15.9768677, -4.486071, 0.0], [15.9768677, -4.4874401, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 270}, "geometry": {"type": "Polygon", "coordinates": [[[15.6829834, -4.4929164, 0.0], [15.6912231, -4.4929164, 0.0], [15.6912231, -4.4901783, 0.0], [15.6829834, -4.4901783, 0.0], [15.6829834, -4.4929164, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 481}, "geometry": {"type": "Polygon", "coordinates": [[[15.7269287, -4.4915473, 0.0], [15.728302, -4.4915473, 0.0], [15.728302, -4.4901783, 0.0], [15.7269287, -4.4901783, 0.0], [15.7269287, -4.4915473, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 911}, "geometry": {"type": "Polygon", "coordinates": [[[15.8010864, -4.4915473, 0.0], [15.8024597, -4.4915473, 0.0], [15.8024597, -4.4901783, 0.0], [15.8010864, -4.4901783, 0.0], [15.8010864, -4.4915473, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1140}, "geometry": {"type": "Polygon", "coordinates": [[[15.8505249, -4.4929164, 0.0], [15.8518982, -4.4929164, 0.0], [15.8518982, -4.4915473, 0.0], [15.8505249, -4.4915473, 0.0], [15.8505249, -4.4929164, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1391}, "geometry": {"type": "Polygon", "coordinates": [[[15.8944702, -4.4942855, 0.0], [15.8958435, -4.4942855, 0.0], [15.8958435, -4.4929164, 0.0], [15.8944702, -4.4929164, 0.0], [15.8944702, -4.4942855, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1470}, "geometry": {"type": "Polygon", "coordinates": [[[15.9150696, -4.4942855, 0.0], [15.9178162, -4.4942855, 0.0], [15.9178162, -4.4929164, 0.0], [15.9150696, -4.4929164, 0.0], [15.9150696, -4.4942855, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1584}, "geometry": {"type": "Polygon", "coordinates": [[[15.9576416, -4.4929164, 0.0], [15.9603882, -4.4929164, 0.0], [15.9603882, -4.4915473, 0.0], [15.9576416, -4.4915473, 0.0], [15.9576416, -4.4929164, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 303}, "geometry": {"type": "Polygon", "coordinates": [[[15.6912231, -4.4970236, 0.0], [15.6925964, -4.4970236, 0.0], [15.6925964, -4.4956546, 0.0], [15.6912231, -4.4956546, 0.0], [15.6912231, -4.4970236, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 344}, "geometry": {"type": "Polygon", "coordinates": [[[15.6994629, -4.4983927, 0.0], [15.7008362, -4.4983927, 0.0], [15.7008362, -4.4970236, 0.0], [15.6994629, -4.4970236, 0.0], [15.6994629, -4.4983927, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1016}, "geometry": {"type": "Polygon", "coordinates": [[[15.8230591, -4.4956546, 0.0], [15.8244324, -4.4956546, 0.0], [15.8244324, -4.4942855, 0.0], [15.8230591, -4.4942855, 0.0], [15.8230591, -4.4956546, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1560}, "geometry": {"type": "Polygon", "coordinates": [[[15.9425354, -4.4983927, 0.0], [15.9439087, -4.4983927, 0.0], [15.9439087, -4.4970236, 0.0], [15.9425354, -4.4970236, 0.0], [15.9425354, -4.4983927, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 275}, "geometry": {"type": "Polygon", "coordinates": [[[15.6843567, -4.5024999, 0.0], [15.68573, -4.5024999, 0.0], [15.68573, -4.5011308, 0.0], [15.6843567, -4.5011308, 0.0], [15.6843567, -4.5024999, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 313}, "geometry": {"type": "Polygon", "coordinates": [[[15.6925964, -4.5011308, 0.0], [15.6939697, -4.5011308, 0.0], [15.6939697, -4.4997617, 0.0], [15.6925964, -4.4997617, 0.0], [15.6925964, -4.5011308, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 366}, "geometry": {"type": "Polygon", "coordinates": [[[15.7022095, -4.5038689, 0.0], [15.7063293, -4.5038689, 0.0], [15.7063293, -4.4983927, 0.0], [15.7022095, -4.4983927, 0.0], [15.7022095, -4.5038689, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 398}, "geometry": {"type": "Polygon", "coordinates": [[[15.7104492, -4.5024999, 0.0], [15.718689, -4.5024999, 0.0], [15.718689, -4.4983927, 0.0], [15.7104492, -4.4983927, 0.0], [15.7104492, -4.5024999, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 541}, "geometry": {"type": "Polygon", "coordinates": [[[15.737915, -4.5024999, 0.0], [15.7475281, -4.5024999, 0.0], [15.7475281, -4.4983927, 0.0], [15.737915, -4.4983927, 0.0], [15.737915, -4.5024999, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 980}, "geometry": {"type": "Polygon", "coordinates": [[[15.8161926, -4.4997617, 0.0], [15.8175659, -4.4997617, 0.0], [15.8175659, -4.4983927, 0.0], [15.8161926, -4.4983927, 0.0], [15.8161926, -4.4997617, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1358}, "geometry": {"type": "Polygon", "coordinates": [[[15.8889771, -4.5011308, 0.0], [15.8903503, -4.5011308, 0.0], [15.8903503, -4.4997617, 0.0], [15.8889771, -4.4997617, 0.0], [15.8889771, -4.5011308, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1579}, "geometry": {"type": "Polygon", "coordinates": [[[15.9521484, -4.4997617, 0.0], [15.954895, -4.4997617, 0.0], [15.954895, -4.4983927, 0.0], [15.9521484, -4.4983927, 0.0], [15.9521484, -4.4997617, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 969}, "geometry": {"type": "Polygon", "coordinates": [[[15.8148193, -4.506607, 0.0], [15.8161926, -4.506607, 0.0], [15.8161926, -4.505238, 0.0], [15.8148193, -4.505238, 0.0], [15.8148193, -4.506607, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1424}, "geometry": {"type": "Polygon", "coordinates": [[[15.90271, -4.5134522, 0.0], [15.9109497, -4.5134522, 0.0], [15.9109497, -4.5038689, 0.0], [15.90271, -4.5038689, 0.0], [15.90271, -4.5134522, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1456}, "geometry": {"type": "Polygon", "coordinates": [[[15.912323, -4.505238, 0.0], [15.9136963, -4.505238, 0.0], [15.9136963, -4.5038689, 0.0], [15.912323, -4.5038689, 0.0], [15.912323, -4.505238, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 527}, "geometry": {"type": "Polygon", "coordinates": [[[15.7351685, -4.5161903, 0.0], [15.7447815, -4.5161903, 0.0], [15.7447815, -4.507976, 0.0], [15.7351685, -4.507976, 0.0], [15.7351685, -4.5161903, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 831}, "geometry": {"type": "Polygon", "coordinates": [[[15.7859802, -4.5134522, 0.0], [15.7955933, -4.5134522, 0.0], [15.7955933, -4.5093451, 0.0], [15.7859802, -4.5093451, 0.0], [15.7859802, -4.5134522, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1154}, "geometry": {"type": "Polygon", "coordinates": [[[15.8518982, -4.5107141, 0.0], [15.8532715, -4.5107141, 0.0], [15.8532715, -4.5093451, 0.0], [15.8518982, -4.5093451, 0.0], [15.8518982, -4.5107141, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1521}, "geometry": {"type": "Polygon", "coordinates": [[[15.9274292, -4.5093451, 0.0], [15.9288025, -4.5093451, 0.0], [15.9288025, -4.507976, 0.0], [15.9274292, -4.507976, 0.0], [15.9274292, -4.5093451, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1540}, "geometry": {"type": "Polygon", "coordinates": [[[15.9342957, -4.5093451, 0.0], [15.9356689, -4.5093451, 0.0], [15.9356689, -4.507976, 0.0], [15.9342957, -4.507976, 0.0], [15.9342957, -4.5093451, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1552}, "geometry": {"type": "Polygon", "coordinates": [[[15.9397888, -4.5202973, 0.0], [15.9480286, -4.5202973, 0.0], [15.9480286, -4.5093451, 0.0], [15.9397888, -4.5093451, 0.0], [15.9397888, -4.5202973, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 314}, "geometry": {"type": "Polygon", "coordinates": [[[15.6925964, -4.5134522, 0.0], [15.6939697, -4.5134522, 0.0], [15.6939697, -4.5120832, 0.0], [15.6925964, -4.5120832, 0.0], [15.6925964, -4.5134522, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 354}, "geometry": {"type": "Polygon", "coordinates": [[[15.7022095, -4.5134522, 0.0], [15.7035828, -4.5134522, 0.0], [15.7035828, -4.5120832, 0.0], [15.7022095, -4.5120832, 0.0], [15.7022095, -4.5134522, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 747}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.5148212, 0.0], [15.7681274, -4.5148212, 0.0], [15.7681274, -4.5134522, 0.0], [15.7667542, -4.5134522, 0.0], [15.7667542, -4.5148212, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 781}, "geometry": {"type": "Polygon", "coordinates": [[[15.7749939, -4.5148212, 0.0], [15.7763672, -4.5148212, 0.0], [15.7763672, -4.5134522, 0.0], [15.7749939, -4.5134522, 0.0], [15.7749939, -4.5148212, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1053}, "geometry": {"type": "Polygon", "coordinates": [[[15.8299255, -4.5120832, 0.0], [15.8312988, -4.5120832, 0.0], [15.8312988, -4.5107141, 0.0], [15.8299255, -4.5107141, 0.0], [15.8299255, -4.5120832, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1415}, "geometry": {"type": "Polygon", "coordinates": [[[15.8999634, -4.5148212, 0.0], [15.90271, -4.5148212, 0.0], [15.90271, -4.5120832, 0.0], [15.8999634, -4.5120832, 0.0], [15.8999634, -4.5148212, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1536}, "geometry": {"type": "Polygon", "coordinates": [[[15.9329224, -4.5148212, 0.0], [15.9342957, -4.5148212, 0.0], [15.9342957, -4.5134522, 0.0], [15.9329224, -4.5134522, 0.0], [15.9329224, -4.5148212, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1574}, "geometry": {"type": "Polygon", "coordinates": [[[15.9507751, -4.5134522, 0.0], [15.9521484, -4.5134522, 0.0], [15.9521484, -4.5120832, 0.0], [15.9507751, -4.5120832, 0.0], [15.9507751, -4.5134522, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 504}, "geometry": {"type": "Polygon", "coordinates": [[[15.7310486, -4.5189283, 0.0], [15.7337952, -4.5189283, 0.0], [15.7337952, -4.5175593, 0.0], [15.7310486, -4.5175593, 0.0], [15.7310486, -4.5189283, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 603}, "geometry": {"type": "Polygon", "coordinates": [[[15.7475281, -4.5189283, 0.0], [15.7502747, -4.5189283, 0.0], [15.7502747, -4.5175593, 0.0], [15.7475281, -4.5175593, 0.0], [15.7475281, -4.5189283, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 672}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.5161903, 0.0], [15.7571411, -4.5161903, 0.0], [15.7571411, -4.5148212, 0.0], [15.7557678, -4.5148212, 0.0], [15.7557678, -4.5161903, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1004}, "geometry": {"type": "Polygon", "coordinates": [[[15.8203125, -4.5189283, 0.0], [15.8216858, -4.5189283, 0.0], [15.8216858, -4.5175593, 0.0], [15.8203125, -4.5175593, 0.0], [15.8203125, -4.5189283, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1120}, "geometry": {"type": "Polygon", "coordinates": [[[15.846405, -4.5202973, 0.0], [15.8518982, -4.5202973, 0.0], [15.8518982, -4.5148212, 0.0], [15.846405, -4.5148212, 0.0], [15.846405, -4.5202973, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1442}, "geometry": {"type": "Polygon", "coordinates": [[[15.9068298, -4.5189283, 0.0], [15.9082031, -4.5189283, 0.0], [15.9082031, -4.5175593, 0.0], [15.9068298, -4.5175593, 0.0], [15.9068298, -4.5189283, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1503}, "geometry": {"type": "Polygon", "coordinates": [[[15.9233093, -4.5175593, 0.0], [15.9274292, -4.5175593, 0.0], [15.9274292, -4.5148212, 0.0], [15.9233093, -4.5148212, 0.0], [15.9233093, -4.5175593, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 528}, "geometry": {"type": "Polygon", "coordinates": [[[15.7351685, -4.5230354, 0.0], [15.737915, -4.5230354, 0.0], [15.737915, -4.5202973, 0.0], [15.7351685, -4.5202973, 0.0], [15.7351685, -4.5230354, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1487}, "geometry": {"type": "Polygon", "coordinates": [[[15.9205627, -4.5216663, 0.0], [15.921936, -4.5216663, 0.0], [15.921936, -4.5202973, 0.0], [15.9205627, -4.5202973, 0.0], [15.9205627, -4.5216663, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 355}, "geometry": {"type": "Polygon", "coordinates": [[[15.7022095, -4.5257734, 0.0], [15.7035828, -4.5257734, 0.0], [15.7035828, -4.5244044, 0.0], [15.7022095, -4.5244044, 0.0], [15.7022095, -4.5257734, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 797}, "geometry": {"type": "Polygon", "coordinates": [[[15.7777405, -4.5271424, 0.0], [15.7791138, -4.5271424, 0.0], [15.7791138, -4.5257734, 0.0], [15.7777405, -4.5257734, 0.0], [15.7777405, -4.5271424, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 822}, "geometry": {"type": "Polygon", "coordinates": [[[15.7846069, -4.5271424, 0.0], [15.7887268, -4.5271424, 0.0], [15.7887268, -4.5230354, 0.0], [15.7846069, -4.5230354, 0.0], [15.7846069, -4.5271424, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 926}, "geometry": {"type": "Polygon", "coordinates": [[[15.8052063, -4.5244044, 0.0], [15.8065796, -4.5244044, 0.0], [15.8065796, -4.5230354, 0.0], [15.8052063, -4.5230354, 0.0], [15.8052063, -4.5244044, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1017}, "geometry": {"type": "Polygon", "coordinates": [[[15.8230591, -4.5271424, 0.0], [15.827179, -4.5271424, 0.0], [15.827179, -4.5244044, 0.0], [15.8230591, -4.5244044, 0.0], [15.8230591, -4.5271424, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1331}, "geometry": {"type": "Polygon", "coordinates": [[[15.8834839, -4.5257734, 0.0], [15.8848572, -4.5257734, 0.0], [15.8848572, -4.5244044, 0.0], [15.8834839, -4.5244044, 0.0], [15.8834839, -4.5257734, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1494}, "geometry": {"type": "Polygon", "coordinates": [[[15.921936, -4.5271424, 0.0], [15.9233093, -4.5271424, 0.0], [15.9233093, -4.5257734, 0.0], [15.921936, -4.5257734, 0.0], [15.921936, -4.5271424, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 256}, "geometry": {"type": "Polygon", "coordinates": [[[15.6788635, -4.5353564, 0.0], [15.68573, -4.5353564, 0.0], [15.68573, -4.5298804, 0.0], [15.6788635, -4.5298804, 0.0], [15.6788635, -4.5353564, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 505}, "geometry": {"type": "Polygon", "coordinates": [[[15.728302, -4.5339874, 0.0], [15.7337952, -4.5339874, 0.0], [15.7337952, -4.5285114, 0.0], [15.728302, -4.5285114, 0.0], [15.728302, -4.5339874, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1054}, "geometry": {"type": "Polygon", "coordinates": [[[15.8299255, -4.5298804, 0.0], [15.8340454, -4.5298804, 0.0], [15.8340454, -4.5271424, 0.0], [15.8299255, -4.5271424, 0.0], [15.8299255, -4.5298804, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1135}, "geometry": {"type": "Polygon", "coordinates": [[[15.8491516, -4.5326184, 0.0], [15.8532715, -4.5326184, 0.0], [15.8532715, -4.5285114, 0.0], [15.8491516, -4.5285114, 0.0], [15.8491516, -4.5326184, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1321}, "geometry": {"type": "Polygon", "coordinates": [[[15.8821106, -4.5312494, 0.0], [15.8876038, -4.5312494, 0.0], [15.8876038, -4.5285114, 0.0], [15.8821106, -4.5285114, 0.0], [15.8821106, -4.5312494, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1416}, "geometry": {"type": "Polygon", "coordinates": [[[15.8999634, -4.5312494, 0.0], [15.90271, -4.5312494, 0.0], [15.90271, -4.5271424, 0.0], [15.8999634, -4.5271424, 0.0], [15.8999634, -4.5312494, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1531}, "geometry": {"type": "Polygon", "coordinates": [[[15.9315491, -4.5298804, 0.0], [15.9342957, -4.5298804, 0.0], [15.9342957, -4.5285114, 0.0], [15.9315491, -4.5285114, 0.0], [15.9315491, -4.5298804, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1563}, "geometry": {"type": "Polygon", "coordinates": [[[15.9439087, -4.5298804, 0.0], [15.945282, -4.5298804, 0.0], [15.945282, -4.5285114, 0.0], [15.9439087, -4.5285114, 0.0], [15.9439087, -4.5298804, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 432}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.5353564, 0.0], [15.718689, -4.5353564, 0.0], [15.718689, -4.5339874, 0.0], [15.7173157, -4.5339874, 0.0], [15.7173157, -4.5353564, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 471}, "geometry": {"type": "Polygon", "coordinates": [[[15.7241821, -4.5353564, 0.0], [15.7255554, -4.5353564, 0.0], [15.7255554, -4.5339874, 0.0], [15.7241821, -4.5339874, 0.0], [15.7241821, -4.5353564, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 789}, "geometry": {"type": "Polygon", "coordinates": [[[15.7763672, -4.5339874, 0.0], [15.7791138, -4.5339874, 0.0], [15.7791138, -4.5312494, 0.0], [15.7763672, -4.5312494, 0.0], [15.7763672, -4.5339874, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 814}, "geometry": {"type": "Polygon", "coordinates": [[[15.7818604, -4.5326184, 0.0], [15.7832336, -4.5326184, 0.0], [15.7832336, -4.5312494, 0.0], [15.7818604, -4.5312494, 0.0], [15.7818604, -4.5326184, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1160}, "geometry": {"type": "Polygon", "coordinates": [[[15.8532715, -4.5394633, 0.0], [15.8573914, -4.5394633, 0.0], [15.8573914, -4.5339874, 0.0], [15.8532715, -4.5339874, 0.0], [15.8532715, -4.5394633, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1282}, "geometry": {"type": "Polygon", "coordinates": [[[15.8752441, -4.5353564, 0.0], [15.8766174, -4.5353564, 0.0], [15.8766174, -4.5339874, 0.0], [15.8752441, -4.5339874, 0.0], [15.8752441, -4.5353564, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1312}, "geometry": {"type": "Polygon", "coordinates": [[[15.8807373, -4.5353564, 0.0], [15.8834839, -4.5353564, 0.0], [15.8834839, -4.5339874, 0.0], [15.8807373, -4.5339874, 0.0], [15.8807373, -4.5353564, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1392}, "geometry": {"type": "Polygon", "coordinates": [[[15.8944702, -4.5326184, 0.0], [15.8958435, -4.5326184, 0.0], [15.8958435, -4.5312494, 0.0], [15.8944702, -4.5312494, 0.0], [15.8944702, -4.5326184, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1522}, "geometry": {"type": "Polygon", "coordinates": [[[15.9274292, -4.5353564, 0.0], [15.9315491, -4.5353564, 0.0], [15.9315491, -4.5339874, 0.0], [15.9274292, -4.5339874, 0.0], [15.9274292, -4.5353564, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 238}, "geometry": {"type": "Polygon", "coordinates": [[[15.6733704, -4.5435703, 0.0], [15.6761169, -4.5435703, 0.0], [15.6761169, -4.5422013, 0.0], [15.6733704, -4.5422013, 0.0], [15.6733704, -4.5435703, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 323}, "geometry": {"type": "Polygon", "coordinates": [[[15.695343, -4.5422013, 0.0], [15.6967163, -4.5422013, 0.0], [15.6967163, -4.5408323, 0.0], [15.695343, -4.5408323, 0.0], [15.695343, -4.5422013, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 482}, "geometry": {"type": "Polygon", "coordinates": [[[15.7269287, -4.5435703, 0.0], [15.7296753, -4.5435703, 0.0], [15.7296753, -4.5394633, 0.0], [15.7269287, -4.5394633, 0.0], [15.7269287, -4.5435703, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 508}, "geometry": {"type": "Polygon", "coordinates": [[[15.7324219, -4.5435703, 0.0], [15.7337952, -4.5435703, 0.0], [15.7337952, -4.5422013, 0.0], [15.7324219, -4.5422013, 0.0], [15.7324219, -4.5435703, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 728}, "geometry": {"type": "Polygon", "coordinates": [[[15.7640076, -4.5422013, 0.0], [15.7653809, -4.5422013, 0.0], [15.7653809, -4.5408323, 0.0], [15.7640076, -4.5408323, 0.0], [15.7640076, -4.5422013, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 885}, "geometry": {"type": "Polygon", "coordinates": [[[15.7955933, -4.5449393, 0.0], [15.7983398, -4.5449393, 0.0], [15.7983398, -4.5408323, 0.0], [15.7955933, -4.5408323, 0.0], [15.7955933, -4.5449393, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 446}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.5504151, 0.0], [15.7228088, -4.5504151, 0.0], [15.7228088, -4.5449393, 0.0], [15.7173157, -4.5449393, 0.0], [15.7173157, -4.5504151, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 697}, "geometry": {"type": "Polygon", "coordinates": [[[15.7598877, -4.5463082, 0.0], [15.761261, -4.5463082, 0.0], [15.761261, -4.5449393, 0.0], [15.7598877, -4.5449393, 0.0], [15.7598877, -4.5463082, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 758}, "geometry": {"type": "Polygon", "coordinates": [[[15.7695007, -4.5517841, 0.0], [15.7763672, -4.5517841, 0.0], [15.7763672, -4.5449393, 0.0], [15.7695007, -4.5449393, 0.0], [15.7695007, -4.5517841, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1359}, "geometry": {"type": "Polygon", "coordinates": [[[15.8889771, -4.5449393, 0.0], [15.8903503, -4.5449393, 0.0], [15.8903503, -4.5435703, 0.0], [15.8889771, -4.5435703, 0.0], [15.8889771, -4.5449393, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1399}, "geometry": {"type": "Polygon", "coordinates": [[[15.8958435, -4.5476772, 0.0], [15.8972168, -4.5476772, 0.0], [15.8972168, -4.5449393, 0.0], [15.8958435, -4.5449393, 0.0], [15.8958435, -4.5476772, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 902}, "geometry": {"type": "Polygon", "coordinates": [[[15.7983398, -4.5490462, 0.0], [15.7997131, -4.5490462, 0.0], [15.7997131, -4.5476772, 0.0], [15.7983398, -4.5476772, 0.0], [15.7983398, -4.5490462, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1055}, "geometry": {"type": "Polygon", "coordinates": [[[15.8299255, -4.5517841, 0.0], [15.8312988, -4.5517841, 0.0], [15.8312988, -4.5504151, 0.0], [15.8299255, -4.5504151, 0.0], [15.8299255, -4.5517841, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1289}, "geometry": {"type": "Polygon", "coordinates": [[[15.8766174, -4.5490462, 0.0], [15.8779907, -4.5490462, 0.0], [15.8779907, -4.5476772, 0.0], [15.8766174, -4.5476772, 0.0], [15.8766174, -4.5490462, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1400}, "geometry": {"type": "Polygon", "coordinates": [[[15.8958435, -4.5517841, 0.0], [15.8972168, -4.5517841, 0.0], [15.8972168, -4.5504151, 0.0], [15.8958435, -4.5504151, 0.0], [15.8958435, -4.5517841, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 283}, "geometry": {"type": "Polygon", "coordinates": [[[15.68573, -4.555891, 0.0], [15.6884766, -4.555891, 0.0], [15.6884766, -4.554522, 0.0], [15.68573, -4.554522, 0.0], [15.68573, -4.555891, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 748}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.553153, 0.0], [15.7681274, -4.553153, 0.0], [15.7681274, -4.5517841, 0.0], [15.7667542, -4.5517841, 0.0], [15.7667542, -4.553153, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 388}, "geometry": {"type": "Polygon", "coordinates": [[[15.7090759, -4.5586289, 0.0], [15.7104492, -4.5586289, 0.0], [15.7104492, -4.5572599, 0.0], [15.7090759, -4.5572599, 0.0], [15.7090759, -4.5586289, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 509}, "geometry": {"type": "Polygon", "coordinates": [[[15.7324219, -4.5586289, 0.0], [15.7337952, -4.5586289, 0.0], [15.7337952, -4.5572599, 0.0], [15.7324219, -4.5572599, 0.0], [15.7324219, -4.5586289, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 847}, "geometry": {"type": "Polygon", "coordinates": [[[15.7887268, -4.5572599, 0.0], [15.7901001, -4.5572599, 0.0], [15.7901001, -4.555891, 0.0], [15.7887268, -4.555891, 0.0], [15.7887268, -4.5572599, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1192}, "geometry": {"type": "Polygon", "coordinates": [[[15.8587646, -4.5586289, 0.0], [15.8615112, -4.5586289, 0.0], [15.8615112, -4.5572599, 0.0], [15.8587646, -4.5572599, 0.0], [15.8587646, -4.5586289, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 223}, "geometry": {"type": "Polygon", "coordinates": [[[15.6692505, -4.5627357, 0.0], [15.6719971, -4.5627357, 0.0], [15.6719971, -4.5599978, 0.0], [15.6692505, -4.5599978, 0.0], [15.6692505, -4.5627357, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 399}, "geometry": {"type": "Polygon", "coordinates": [[[15.7104492, -4.5627357, 0.0], [15.7118225, -4.5627357, 0.0], [15.7118225, -4.5613667, 0.0], [15.7104492, -4.5613667, 0.0], [15.7104492, -4.5627357, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 459}, "geometry": {"type": "Polygon", "coordinates": [[[15.7214355, -4.5627357, 0.0], [15.7255554, -4.5627357, 0.0], [15.7255554, -4.5599978, 0.0], [15.7214355, -4.5599978, 0.0], [15.7214355, -4.5627357, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 636}, "geometry": {"type": "Polygon", "coordinates": [[[15.7516479, -4.5641046, 0.0], [15.7557678, -4.5641046, 0.0], [15.7557678, -4.5613667, 0.0], [15.7516479, -4.5613667, 0.0], [15.7516479, -4.5641046, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 970}, "geometry": {"type": "Polygon", "coordinates": [[[15.8148193, -4.5641046, 0.0], [15.8161926, -4.5641046, 0.0], [15.8161926, -4.5627357, 0.0], [15.8148193, -4.5627357, 0.0], [15.8148193, -4.5641046, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1193}, "geometry": {"type": "Polygon", "coordinates": [[[15.8587646, -4.5723182, 0.0], [15.8628845, -4.5723182, 0.0], [15.8628845, -4.5613667, 0.0], [15.8587646, -4.5613667, 0.0], [15.8587646, -4.5723182, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1245}, "geometry": {"type": "Polygon", "coordinates": [[[15.8683777, -4.5641046, 0.0], [15.8766174, -4.5641046, 0.0], [15.8766174, -4.5599978, 0.0], [15.8683777, -4.5599978, 0.0], [15.8683777, -4.5641046, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1360}, "geometry": {"type": "Polygon", "coordinates": [[[15.8889771, -4.5613667, 0.0], [15.8903503, -4.5613667, 0.0], [15.8903503, -4.5599978, 0.0], [15.8889771, -4.5599978, 0.0], [15.8889771, -4.5613667, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1449}, "geometry": {"type": "Polygon", "coordinates": [[[15.9082031, -4.5641046, 0.0], [15.9095764, -4.5641046, 0.0], [15.9095764, -4.5627357, 0.0], [15.9082031, -4.5627357, 0.0], [15.9082031, -4.5641046, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 261}, "geometry": {"type": "Polygon", "coordinates": [[[15.6802368, -4.5695803, 0.0], [15.6829834, -4.5695803, 0.0], [15.6829834, -4.5654736, 0.0], [15.6802368, -4.5654736, 0.0], [15.6802368, -4.5695803, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 356}, "geometry": {"type": "Polygon", "coordinates": [[[15.7022095, -4.5668425, 0.0], [15.7035828, -4.5668425, 0.0], [15.7035828, -4.5654736, 0.0], [15.7022095, -4.5654736, 0.0], [15.7022095, -4.5668425, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 673}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.5682114, 0.0], [15.7571411, -4.5682114, 0.0], [15.7571411, -4.5668425, 0.0], [15.7557678, -4.5668425, 0.0], [15.7557678, -4.5682114, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1246}, "geometry": {"type": "Polygon", "coordinates": [[[15.8683777, -4.5709493, 0.0], [15.8752441, -4.5709493, 0.0], [15.8752441, -4.5668425, 0.0], [15.8683777, -4.5668425, 0.0], [15.8683777, -4.5709493, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 226}, "geometry": {"type": "Polygon", "coordinates": [[[15.6706238, -4.5723182, 0.0], [15.6774902, -4.5723182, 0.0], [15.6774902, -4.5695803, 0.0], [15.6706238, -4.5695803, 0.0], [15.6706238, -4.5723182, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 374}, "geometry": {"type": "Polygon", "coordinates": [[[15.7063293, -4.5723182, 0.0], [15.7077026, -4.5723182, 0.0], [15.7077026, -4.5709493, 0.0], [15.7063293, -4.5709493, 0.0], [15.7063293, -4.5723182, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 407}, "geometry": {"type": "Polygon", "coordinates": [[[15.7118225, -4.5695803, 0.0], [15.7131958, -4.5695803, 0.0], [15.7131958, -4.5682114, 0.0], [15.7118225, -4.5682114, 0.0], [15.7118225, -4.5695803, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 483}, "geometry": {"type": "Polygon", "coordinates": [[[15.7269287, -4.5736871, 0.0], [15.728302, -4.5736871, 0.0], [15.728302, -4.5709493, 0.0], [15.7269287, -4.5709493, 0.0], [15.7269287, -4.5736871, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 576}, "geometry": {"type": "Polygon", "coordinates": [[[15.7434082, -4.5723182, 0.0], [15.7461548, -4.5723182, 0.0], [15.7461548, -4.5695803, 0.0], [15.7434082, -4.5695803, 0.0], [15.7434082, -4.5723182, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1141}, "geometry": {"type": "Polygon", "coordinates": [[[15.8505249, -4.5723182, 0.0], [15.8518982, -4.5723182, 0.0], [15.8518982, -4.5709493, 0.0], [15.8505249, -4.5709493, 0.0], [15.8505249, -4.5723182, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1294}, "geometry": {"type": "Polygon", "coordinates": [[[15.8779907, -4.5709493, 0.0], [15.879364, -4.5709493, 0.0], [15.879364, -4.5695803, 0.0], [15.8779907, -4.5695803, 0.0], [15.8779907, -4.5709493, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1475}, "geometry": {"type": "Polygon", "coordinates": [[[15.9150696, -4.5777938, 0.0], [15.9178162, -4.5777938, 0.0], [15.9178162, -4.5709493, 0.0], [15.9150696, -4.5709493, 0.0], [15.9150696, -4.5777938, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 262}, "geometry": {"type": "Polygon", "coordinates": [[[15.6802368, -4.575056, 0.0], [15.6816101, -4.575056, 0.0], [15.6816101, -4.5736871, 0.0], [15.6802368, -4.5736871, 0.0], [15.6802368, -4.575056, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 434}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.5736871, 0.0], [15.718689, -4.5736871, 0.0], [15.718689, -4.5723182, 0.0], [15.7173157, -4.5723182, 0.0], [15.7173157, -4.5736871, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 227}, "geometry": {"type": "Polygon", "coordinates": [[[15.6706238, -4.5873762, 0.0], [15.6747437, -4.5873762, 0.0], [15.6747437, -4.5791628, 0.0], [15.6706238, -4.5791628, 0.0], [15.6706238, -4.5873762, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 577}, "geometry": {"type": "Polygon", "coordinates": [[[15.7434082, -4.5777938, 0.0], [15.7447815, -4.5777938, 0.0], [15.7447815, -4.5764249, 0.0], [15.7434082, -4.5764249, 0.0], [15.7434082, -4.5777938, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 251}, "geometry": {"type": "Polygon", "coordinates": [[[15.6774902, -4.5832695, 0.0], [15.6788635, -4.5832695, 0.0], [15.6788635, -4.5819006, 0.0], [15.6774902, -4.5819006, 0.0], [15.6774902, -4.5832695, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 529}, "geometry": {"type": "Polygon", "coordinates": [[[15.7351685, -4.5901139, 0.0], [15.7392883, -4.5901139, 0.0], [15.7392883, -4.5805317, 0.0], [15.7351685, -4.5805317, 0.0], [15.7351685, -4.5901139, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 674}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.5846384, 0.0], [15.7571411, -4.5846384, 0.0], [15.7571411, -4.5832695, 0.0], [15.7557678, -4.5832695, 0.0], [15.7557678, -4.5846384, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1171}, "geometry": {"type": "Polygon", "coordinates": [[[15.8546448, -4.5873762, 0.0], [15.8573914, -4.5873762, 0.0], [15.8573914, -4.5846384, 0.0], [15.8546448, -4.5846384, 0.0], [15.8546448, -4.5873762, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 284}, "geometry": {"type": "Polygon", "coordinates": [[[15.68573, -4.5928517, 0.0], [15.6884766, -4.5928517, 0.0], [15.6884766, -4.5914828, 0.0], [15.68573, -4.5914828, 0.0], [15.68573, -4.5928517, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1405}, "geometry": {"type": "Polygon", "coordinates": [[[15.8972168, -4.5901139, 0.0], [15.8985901, -4.5901139, 0.0], [15.8985901, -4.588745, 0.0], [15.8972168, -4.588745, 0.0], [15.8972168, -4.5901139, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 649}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -4.5942206, 0.0], [15.7557678, -4.5942206, 0.0], [15.7557678, -4.5928517, 0.0], [15.7530212, -4.5928517, 0.0], [15.7530212, -4.5942206, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 769}, "geometry": {"type": "Polygon", "coordinates": [[[15.7722473, -4.6010649, 0.0], [15.7749939, -4.6010649, 0.0], [15.7749939, -4.5955895, 0.0], [15.7722473, -4.5955895, 0.0], [15.7722473, -4.6010649, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1313}, "geometry": {"type": "Polygon", "coordinates": [[[15.8807373, -4.5969583, 0.0], [15.8834839, -4.5969583, 0.0], [15.8834839, -4.5955895, 0.0], [15.8807373, -4.5955895, 0.0], [15.8807373, -4.5969583, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1121}, "geometry": {"type": "Polygon", "coordinates": [[[15.846405, -4.6010649, 0.0], [15.8477783, -4.6010649, 0.0], [15.8477783, -4.5996961, 0.0], [15.846405, -4.5996961, 0.0], [15.846405, -4.6010649, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 333}, "geometry": {"type": "Polygon", "coordinates": [[[15.6967163, -4.6051715, 0.0], [15.6980896, -4.6051715, 0.0], [15.6980896, -4.6024338, 0.0], [15.6967163, -4.6024338, 0.0], [15.6967163, -4.6051715, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 520}, "geometry": {"type": "Polygon", "coordinates": [[[15.7337952, -4.6038027, 0.0], [15.737915, -4.6038027, 0.0], [15.737915, -4.6010649, 0.0], [15.7337952, -4.6010649, 0.0], [15.7337952, -4.6038027, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1114}, "geometry": {"type": "Polygon", "coordinates": [[[15.8450317, -4.6065404, 0.0], [15.8477783, -4.6065404, 0.0], [15.8477783, -4.6038027, 0.0], [15.8450317, -4.6038027, 0.0], [15.8450317, -4.6065404, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1195}, "geometry": {"type": "Polygon", "coordinates": [[[15.8587646, -4.6038027, 0.0], [15.8601379, -4.6038027, 0.0], [15.8601379, -4.6024338, 0.0], [15.8587646, -4.6024338, 0.0], [15.8587646, -4.6038027, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1345}, "geometry": {"type": "Polygon", "coordinates": [[[15.8862305, -4.6024338, 0.0], [15.8903503, -4.6024338, 0.0], [15.8903503, -4.6010649, 0.0], [15.8862305, -4.6010649, 0.0], [15.8862305, -4.6024338, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 759}, "geometry": {"type": "Polygon", "coordinates": [[[15.7695007, -4.6079092, 0.0], [15.770874, -4.6079092, 0.0], [15.770874, -4.6065404, 0.0], [15.7695007, -4.6065404, 0.0], [15.7695007, -4.6079092, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 557}, "geometry": {"type": "Polygon", "coordinates": [[[15.7392883, -4.6147535, 0.0], [15.7406616, -4.6147535, 0.0], [15.7406616, -4.6133846, 0.0], [15.7392883, -4.6133846, 0.0], [15.7392883, -4.6147535, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1393}, "geometry": {"type": "Polygon", "coordinates": [[[15.8944702, -4.6147535, 0.0], [15.8958435, -4.6147535, 0.0], [15.8958435, -4.6133846, 0.0], [15.8944702, -4.6133846, 0.0], [15.8944702, -4.6147535, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1322}, "geometry": {"type": "Polygon", "coordinates": [[[15.8821106, -4.61886, 0.0], [15.8834839, -4.61886, 0.0], [15.8834839, -4.6174911, 0.0], [15.8821106, -4.6174911, 0.0], [15.8821106, -4.61886, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1377}, "geometry": {"type": "Polygon", "coordinates": [[[15.8917236, -4.61886, 0.0], [15.8944702, -4.61886, 0.0], [15.8944702, -4.6174911, 0.0], [15.8917236, -4.6174911, 0.0], [15.8917236, -4.61886, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 698}, "geometry": {"type": "Polygon", "coordinates": [[[15.7598877, -4.6243353, 0.0], [15.761261, -4.6243353, 0.0], [15.761261, -4.6229664, 0.0], [15.7598877, -4.6229664, 0.0], [15.7598877, -4.6243353, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 865}, "geometry": {"type": "Polygon", "coordinates": [[[15.7914734, -4.6270729, 0.0], [15.79422, -4.6270729, 0.0], [15.79422, -4.6229664, 0.0], [15.7914734, -4.6229664, 0.0], [15.7914734, -4.6270729, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1303}, "geometry": {"type": "Polygon", "coordinates": [[[15.879364, -4.6243353, 0.0], [15.8807373, -4.6243353, 0.0], [15.8807373, -4.6229664, 0.0], [15.879364, -4.6229664, 0.0], [15.879364, -4.6243353, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1353}, "geometry": {"type": "Polygon", "coordinates": [[[15.8876038, -4.6298105, 0.0], [15.8917236, -4.6298105, 0.0], [15.8917236, -4.6243353, 0.0], [15.8876038, -4.6243353, 0.0], [15.8876038, -4.6298105, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1421}, "geometry": {"type": "Polygon", "coordinates": [[[15.9013367, -4.6257041, 0.0], [15.9040833, -4.6257041, 0.0], [15.9040833, -4.6243353, 0.0], [15.9013367, -4.6243353, 0.0], [15.9013367, -4.6257041, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1406}, "geometry": {"type": "Polygon", "coordinates": [[[15.8972168, -4.6298105, 0.0], [15.8985901, -4.6298105, 0.0], [15.8985901, -4.6284417, 0.0], [15.8972168, -4.6284417, 0.0], [15.8972168, -4.6298105, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 578}, "geometry": {"type": "Polygon", "coordinates": [[[15.7434082, -4.6366545, 0.0], [15.7530212, -4.6366545, 0.0], [15.7530212, -4.6311793, 0.0], [15.7434082, -4.6311793, 0.0], [15.7434082, -4.6366545, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1084}, "geometry": {"type": "Polygon", "coordinates": [[[15.836792, -4.6339169, 0.0], [15.8381653, -4.6339169, 0.0], [15.8381653, -4.6311793, 0.0], [15.836792, -4.6311793, 0.0], [15.836792, -4.6339169, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1205}, "geometry": {"type": "Polygon", "coordinates": [[[15.8615112, -4.6311793, 0.0], [15.8642578, -4.6311793, 0.0], [15.8642578, -4.6298105, 0.0], [15.8615112, -4.6298105, 0.0], [15.8615112, -4.6311793, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1058}, "geometry": {"type": "Polygon", "coordinates": [[[15.8312988, -4.6366545, 0.0], [15.8326721, -4.6366545, 0.0], [15.8326721, -4.6352858, 0.0], [15.8312988, -4.6352858, 0.0], [15.8312988, -4.6366545, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1346}, "geometry": {"type": "Polygon", "coordinates": [[[15.8862305, -4.6380233, 0.0], [15.8876038, -4.6380233, 0.0], [15.8876038, -4.6366545, 0.0], [15.8862305, -4.6366545, 0.0], [15.8862305, -4.6380233, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1440}, "geometry": {"type": "Polygon", "coordinates": [[[15.9054565, -4.6421297, 0.0], [15.9082031, -4.6421297, 0.0], [15.9082031, -4.6352858, 0.0], [15.9054565, -4.6352858, 0.0], [15.9054565, -4.6421297, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 592}, "geometry": {"type": "Polygon", "coordinates": [[[15.7461548, -4.6434985, 0.0], [15.7502747, -4.6434985, 0.0], [15.7502747, -4.6393921, 0.0], [15.7461548, -4.6393921, 0.0], [15.7461548, -4.6434985, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1059}, "geometry": {"type": "Polygon", "coordinates": [[[15.8312988, -4.6434985, 0.0], [15.8326721, -4.6434985, 0.0], [15.8326721, -4.6421297, 0.0], [15.8312988, -4.6421297, 0.0], [15.8312988, -4.6434985, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1043}, "geometry": {"type": "Polygon", "coordinates": [[[15.827179, -4.6503424, 0.0], [15.8299255, -4.6503424, 0.0], [15.8299255, -4.6462361, 0.0], [15.827179, -4.6462361, 0.0], [15.827179, -4.6503424, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1425}, "geometry": {"type": "Polygon", "coordinates": [[[15.90271, -4.6489736, 0.0], [15.9040833, -4.6489736, 0.0], [15.9040833, -4.6462361, 0.0], [15.90271, -4.6462361, 0.0], [15.90271, -4.6489736, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 971}, "geometry": {"type": "Polygon", "coordinates": [[[15.8148193, -4.6558174, 0.0], [15.8203125, -4.6558174, 0.0], [15.8203125, -4.6517112, 0.0], [15.8148193, -4.6517112, 0.0], [15.8148193, -4.6558174, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 593}, "geometry": {"type": "Polygon", "coordinates": [[[15.7461548, -4.6571862, 0.0], [15.7489014, -4.6571862, 0.0], [15.7489014, -4.6558174, 0.0], [15.7461548, -4.6558174, 0.0], [15.7461548, -4.6571862, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 675}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.658555, 0.0], [15.7585144, -4.658555, 0.0], [15.7585144, -4.6544487, 0.0], [15.7557678, -4.6544487, 0.0], [15.7557678, -4.658555, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 760}, "geometry": {"type": "Polygon", "coordinates": [[[15.7695007, -4.658555, 0.0], [15.770874, -4.658555, 0.0], [15.770874, -4.6571862, 0.0], [15.7695007, -4.6571862, 0.0], [15.7695007, -4.658555, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 857}, "geometry": {"type": "Polygon", "coordinates": [[[15.7901001, -4.658555, 0.0], [15.7914734, -4.658555, 0.0], [15.7914734, -4.6571862, 0.0], [15.7901001, -4.6571862, 0.0], [15.7901001, -4.658555, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 906}, "geometry": {"type": "Polygon", "coordinates": [[[15.7997131, -4.658555, 0.0], [15.8010864, -4.658555, 0.0], [15.8010864, -4.6558174, 0.0], [15.7997131, -4.6558174, 0.0], [15.7997131, -4.658555, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 919}, "geometry": {"type": "Polygon", "coordinates": [[[15.803833, -4.6571862, 0.0], [15.8065796, -4.6571862, 0.0], [15.8065796, -4.6544487, 0.0], [15.803833, -4.6544487, 0.0], [15.803833, -4.6571862, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 627}, "geometry": {"type": "Polygon", "coordinates": [[[15.7502747, -4.6612925, 0.0], [15.7516479, -4.6612925, 0.0], [15.7516479, -4.6599237, 0.0], [15.7502747, -4.6599237, 0.0], [15.7502747, -4.6612925, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 998}, "geometry": {"type": "Polygon", "coordinates": [[[15.8189392, -4.6626612, 0.0], [15.8203125, -4.6626612, 0.0], [15.8203125, -4.6612925, 0.0], [15.8189392, -4.6612925, 0.0], [15.8189392, -4.6626612, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1033}, "geometry": {"type": "Polygon", "coordinates": [[[15.8258057, -4.6626612, 0.0], [15.8285522, -4.6626612, 0.0], [15.8285522, -4.658555, 0.0], [15.8258057, -4.658555, 0.0], [15.8258057, -4.6626612, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1401}, "geometry": {"type": "Polygon", "coordinates": [[[15.8958435, -4.6626612, 0.0], [15.8999634, -4.6626612, 0.0], [15.8999634, -4.658555, 0.0], [15.8958435, -4.658555, 0.0], [15.8958435, -4.6626612, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 594}, "geometry": {"type": "Polygon", "coordinates": [[[15.7461548, -4.6653987, 0.0], [15.7475281, -4.6653987, 0.0], [15.7475281, -4.66403, 0.0], [15.7461548, -4.66403, 0.0], [15.7461548, -4.6653987, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 689}, "geometry": {"type": "Polygon", "coordinates": [[[15.7585144, -4.6653987, 0.0], [15.7598877, -4.6653987, 0.0], [15.7598877, -4.66403, 0.0], [15.7585144, -4.66403, 0.0], [15.7585144, -4.6653987, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 782}, "geometry": {"type": "Polygon", "coordinates": [[[15.7749939, -4.6708736, 0.0], [15.7777405, -4.6708736, 0.0], [15.7777405, -4.6653987, 0.0], [15.7749939, -4.6653987, 0.0], [15.7749939, -4.6708736, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 886}, "geometry": {"type": "Polygon", "coordinates": [[[15.7955933, -4.6653987, 0.0], [15.7969666, -4.6653987, 0.0], [15.7969666, -4.66403, 0.0], [15.7955933, -4.66403, 0.0], [15.7955933, -4.6653987, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1426}, "geometry": {"type": "Polygon", "coordinates": [[[15.90271, -4.66403, 0.0], [15.9040833, -4.66403, 0.0], [15.9040833, -4.6626612, 0.0], [15.90271, -4.6626612, 0.0], [15.90271, -4.66403, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 637}, "geometry": {"type": "Polygon", "coordinates": [[[15.7516479, -4.6695049, 0.0], [15.7530212, -4.6695049, 0.0], [15.7530212, -4.6681362, 0.0], [15.7516479, -4.6681362, 0.0], [15.7516479, -4.6695049, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 752}, "geometry": {"type": "Polygon", "coordinates": [[[15.7681274, -4.6708736, 0.0], [15.770874, -4.6708736, 0.0], [15.770874, -4.6681362, 0.0], [15.7681274, -4.6681362, 0.0], [15.7681274, -4.6708736, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1024}, "geometry": {"type": "Polygon", "coordinates": [[[15.8244324, -4.6695049, 0.0], [15.8258057, -4.6695049, 0.0], [15.8258057, -4.6681362, 0.0], [15.8244324, -4.6681362, 0.0], [15.8244324, -4.6695049, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 638}, "geometry": {"type": "Polygon", "coordinates": [[[15.7516479, -4.6777173, 0.0], [15.7530212, -4.6777173, 0.0], [15.7530212, -4.6736111, 0.0], [15.7516479, -4.6736111, 0.0], [15.7516479, -4.6777173, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 676}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.6736111, 0.0], [15.7571411, -4.6736111, 0.0], [15.7571411, -4.6708736, 0.0], [15.7557678, -4.6708736, 0.0], [15.7557678, -4.6736111, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 542}, "geometry": {"type": "Polygon", "coordinates": [[[15.737915, -4.6763485, 0.0], [15.7392883, -4.6763485, 0.0], [15.7392883, -4.6749798, 0.0], [15.737915, -4.6749798, 0.0], [15.737915, -4.6763485, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 595}, "geometry": {"type": "Polygon", "coordinates": [[[15.7461548, -4.679086, 0.0], [15.7475281, -4.679086, 0.0], [15.7475281, -4.6777173, 0.0], [15.7461548, -4.6777173, 0.0], [15.7461548, -4.679086, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 935}, "geometry": {"type": "Polygon", "coordinates": [[[15.8065796, -4.6763485, 0.0], [15.8079529, -4.6763485, 0.0], [15.8079529, -4.6749798, 0.0], [15.8065796, -4.6749798, 0.0], [15.8065796, -4.6763485, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1034}, "geometry": {"type": "Polygon", "coordinates": [[[15.8258057, -4.6845608, 0.0], [15.8299255, -4.6845608, 0.0], [15.8299255, -4.6763485, 0.0], [15.8258057, -4.6763485, 0.0], [15.8258057, -4.6845608, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 690}, "geometry": {"type": "Polygon", "coordinates": [[[15.7585144, -4.6845608, 0.0], [15.761261, -4.6845608, 0.0], [15.761261, -4.6804547, 0.0], [15.7585144, -4.6804547, 0.0], [15.7585144, -4.6845608, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1378}, "geometry": {"type": "Polygon", "coordinates": [[[15.8917236, -4.6818234, 0.0], [15.8930969, -4.6818234, 0.0], [15.8930969, -4.6804547, 0.0], [15.8917236, -4.6804547, 0.0], [15.8917236, -4.6818234, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1407}, "geometry": {"type": "Polygon", "coordinates": [[[15.8972168, -4.6831921, 0.0], [15.8985901, -4.6831921, 0.0], [15.8985901, -4.6818234, 0.0], [15.8972168, -4.6818234, 0.0], [15.8972168, -4.6831921, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 491}, "geometry": {"type": "Polygon", "coordinates": [[[15.728302, -4.6914043, 0.0], [15.7296753, -4.6914043, 0.0], [15.7296753, -4.6886669, 0.0], [15.728302, -4.6886669, 0.0], [15.728302, -4.6914043, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 584}, "geometry": {"type": "Polygon", "coordinates": [[[15.7447815, -4.6886669, 0.0], [15.7461548, -4.6886669, 0.0], [15.7461548, -4.6872982, 0.0], [15.7447815, -4.6872982, 0.0], [15.7447815, -4.6886669, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 650}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -4.6886669, 0.0], [15.7557678, -4.6886669, 0.0], [15.7557678, -4.6872982, 0.0], [15.7530212, -4.6872982, 0.0], [15.7530212, -4.6886669, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 691}, "geometry": {"type": "Polygon", "coordinates": [[[15.7585144, -4.6914043, 0.0], [15.761261, -4.6914043, 0.0], [15.761261, -4.6872982, 0.0], [15.7585144, -4.6872982, 0.0], [15.7585144, -4.6914043, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1367}, "geometry": {"type": "Polygon", "coordinates": [[[15.8903503, -4.6914043, 0.0], [15.8930969, -4.6914043, 0.0], [15.8930969, -4.6886669, 0.0], [15.8903503, -4.6886669, 0.0], [15.8903503, -4.6914043, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 596}, "geometry": {"type": "Polygon", "coordinates": [[[15.7461548, -4.696879, 0.0], [15.7502747, -4.696879, 0.0], [15.7502747, -4.692773, 0.0], [15.7461548, -4.692773, 0.0], [15.7461548, -4.696879, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 936}, "geometry": {"type": "Polygon", "coordinates": [[[15.8065796, -4.6982477, 0.0], [15.813446, -4.6982477, 0.0], [15.813446, -4.6914043, 0.0], [15.8065796, -4.6914043, 0.0], [15.8065796, -4.6982477, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1009}, "geometry": {"type": "Polygon", "coordinates": [[[15.8216858, -4.6941417, 0.0], [15.8230591, -4.6941417, 0.0], [15.8230591, -4.692773, 0.0], [15.8216858, -4.692773, 0.0], [15.8216858, -4.6941417, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 530}, "geometry": {"type": "Polygon", "coordinates": [[[15.7351685, -4.7009851, 0.0], [15.7420349, -4.7009851, 0.0], [15.7420349, -4.696879, 0.0], [15.7351685, -4.696879, 0.0], [15.7351685, -4.7009851, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 770}, "geometry": {"type": "Polygon", "coordinates": [[[15.7722473, -4.6982477, 0.0], [15.7736206, -4.6982477, 0.0], [15.7736206, -4.696879, 0.0], [15.7722473, -4.696879, 0.0], [15.7722473, -4.6982477, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 840}, "geometry": {"type": "Polygon", "coordinates": [[[15.7873535, -4.6982477, 0.0], [15.7887268, -4.6982477, 0.0], [15.7887268, -4.696879, 0.0], [15.7873535, -4.696879, 0.0], [15.7873535, -4.6982477, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 585}, "geometry": {"type": "Polygon", "coordinates": [[[15.7447815, -4.7009851, 0.0], [15.7461548, -4.7009851, 0.0], [15.7461548, -4.6996164, 0.0], [15.7447815, -4.6996164, 0.0], [15.7447815, -4.7009851, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1332}, "geometry": {"type": "Polygon", "coordinates": [[[15.8834839, -4.7009851, 0.0], [15.8848572, -4.7009851, 0.0], [15.8848572, -4.6996164, 0.0], [15.8834839, -4.6996164, 0.0], [15.8834839, -4.7009851, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 466}, "geometry": {"type": "Polygon", "coordinates": [[[15.7228088, -4.7064597, 0.0], [15.7296753, -4.7064597, 0.0], [15.7296753, -4.7037224, 0.0], [15.7228088, -4.7037224, 0.0], [15.7228088, -4.7064597, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 699}, "geometry": {"type": "Polygon", "coordinates": [[[15.7598877, -4.7078284, 0.0], [15.7653809, -4.7078284, 0.0], [15.7653809, -4.7037224, 0.0], [15.7598877, -4.7037224, 0.0], [15.7598877, -4.7078284, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 753}, "geometry": {"type": "Polygon", "coordinates": [[[15.7681274, -4.7078284, 0.0], [15.7722473, -4.7078284, 0.0], [15.7722473, -4.7037224, 0.0], [15.7681274, -4.7037224, 0.0], [15.7681274, -4.7078284, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 895}, "geometry": {"type": "Polygon", "coordinates": [[[15.7969666, -4.7078284, 0.0], [15.7983398, -4.7078284, 0.0], [15.7983398, -4.7064597, 0.0], [15.7969666, -4.7064597, 0.0], [15.7969666, -4.7078284, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 927}, "geometry": {"type": "Polygon", "coordinates": [[[15.8052063, -4.7078284, 0.0], [15.8065796, -4.7078284, 0.0], [15.8065796, -4.7064597, 0.0], [15.8052063, -4.7064597, 0.0], [15.8052063, -4.7078284, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1198}, "geometry": {"type": "Polygon", "coordinates": [[[15.8601379, -4.7078284, 0.0], [15.8615112, -4.7078284, 0.0], [15.8615112, -4.7064597, 0.0], [15.8601379, -4.7064597, 0.0], [15.8601379, -4.7078284, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1255}, "geometry": {"type": "Polygon", "coordinates": [[[15.869751, -4.7050911, 0.0], [15.8711243, -4.7050911, 0.0], [15.8711243, -4.7037224, 0.0], [15.869751, -4.7037224, 0.0], [15.869751, -4.7050911, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1338}, "geometry": {"type": "Polygon", "coordinates": [[[15.8848572, -4.7064597, 0.0], [15.8862305, -4.7064597, 0.0], [15.8862305, -4.7050911, 0.0], [15.8848572, -4.7050911, 0.0], [15.8848572, -4.7064597, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 916}, "geometry": {"type": "Polygon", "coordinates": [[[15.8024597, -4.7174089, 0.0], [15.8065796, -4.7174089, 0.0], [15.8065796, -4.7105657, 0.0], [15.8024597, -4.7105657, 0.0], [15.8024597, -4.7174089, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 499}, "geometry": {"type": "Polygon", "coordinates": [[[15.7296753, -4.7146716, 0.0], [15.7310486, -4.7146716, 0.0], [15.7310486, -4.713303, 0.0], [15.7296753, -4.713303, 0.0], [15.7296753, -4.7146716, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 717}, "geometry": {"type": "Polygon", "coordinates": [[[15.7626343, -4.7201462, 0.0], [15.7695007, -4.7201462, 0.0], [15.7695007, -4.7119343, 0.0], [15.7626343, -4.7119343, 0.0], [15.7626343, -4.7201462, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 848}, "geometry": {"type": "Polygon", "coordinates": [[[15.7887268, -4.7146716, 0.0], [15.7901001, -4.7146716, 0.0], [15.7901001, -4.713303, 0.0], [15.7887268, -4.713303, 0.0], [15.7887268, -4.7146716, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 435}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.7174089, 0.0], [15.718689, -4.7174089, 0.0], [15.718689, -4.7160403, 0.0], [15.7173157, -4.7160403, 0.0], [15.7173157, -4.7174089, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 823}, "geometry": {"type": "Polygon", "coordinates": [[[15.7846069, -4.7201462, 0.0], [15.7859802, -4.7201462, 0.0], [15.7859802, -4.7187776, 0.0], [15.7846069, -4.7187776, 0.0], [15.7846069, -4.7201462, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 881}, "geometry": {"type": "Polygon", "coordinates": [[[15.79422, -4.7228834, 0.0], [15.7983398, -4.7228834, 0.0], [15.7983398, -4.7174089, 0.0], [15.79422, -4.7174089, 0.0], [15.79422, -4.7228834, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1283}, "geometry": {"type": "Polygon", "coordinates": [[[15.8752441, -4.7201462, 0.0], [15.8821106, -4.7201462, 0.0], [15.8821106, -4.7160403, 0.0], [15.8752441, -4.7160403, 0.0], [15.8752441, -4.7201462, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 565}, "geometry": {"type": "Polygon", "coordinates": [[[15.7420349, -4.7228834, 0.0], [15.7434082, -4.7228834, 0.0], [15.7434082, -4.7201462, 0.0], [15.7420349, -4.7201462, 0.0], [15.7420349, -4.7228834, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 604}, "geometry": {"type": "Polygon", "coordinates": [[[15.7475281, -4.7269893, 0.0], [15.7489014, -4.7269893, 0.0], [15.7489014, -4.7256207, 0.0], [15.7475281, -4.7256207, 0.0], [15.7475281, -4.7269893, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 677}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.7256207, 0.0], [15.7571411, -4.7256207, 0.0], [15.7571411, -4.7242521, 0.0], [15.7557678, -4.7242521, 0.0], [15.7557678, -4.7256207, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 500}, "geometry": {"type": "Polygon", "coordinates": [[[15.7296753, -4.7310952, 0.0], [15.7310486, -4.7310952, 0.0], [15.7310486, -4.7297266, 0.0], [15.7296753, -4.7297266, 0.0], [15.7296753, -4.7310952, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 678}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.7324638, 0.0], [15.7585144, -4.7324638, 0.0], [15.7585144, -4.7297266, 0.0], [15.7557678, -4.7297266, 0.0], [15.7557678, -4.7324638, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 484}, "geometry": {"type": "Polygon", "coordinates": [[[15.7269287, -4.7365696, 0.0], [15.7310486, -4.7365696, 0.0], [15.7310486, -4.7338324, 0.0], [15.7269287, -4.7338324, 0.0], [15.7269287, -4.7365696, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 545}, "geometry": {"type": "Polygon", "coordinates": [[[15.737915, -4.7365696, 0.0], [15.7434082, -4.7365696, 0.0], [15.7434082, -4.7338324, 0.0], [15.737915, -4.7338324, 0.0], [15.737915, -4.7365696, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1213}, "geometry": {"type": "Polygon", "coordinates": [[[15.8628845, -4.735201, 0.0], [15.8642578, -4.735201, 0.0], [15.8642578, -4.7324638, 0.0], [15.8628845, -4.7324638, 0.0], [15.8628845, -4.735201, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 455}, "geometry": {"type": "Polygon", "coordinates": [[[15.7200623, -4.7406754, 0.0], [15.7214355, -4.7406754, 0.0], [15.7214355, -4.7393068, 0.0], [15.7200623, -4.7393068, 0.0], [15.7200623, -4.7406754, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 651}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -4.7393068, 0.0], [15.7543945, -4.7393068, 0.0], [15.7543945, -4.7379382, 0.0], [15.7530212, -4.7379382, 0.0], [15.7530212, -4.7393068, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 832}, "geometry": {"type": "Polygon", "coordinates": [[[15.7859802, -4.742044, 0.0], [15.7901001, -4.742044, 0.0], [15.7901001, -4.7379382, 0.0], [15.7859802, -4.7379382, 0.0], [15.7859802, -4.742044, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 566}, "geometry": {"type": "Polygon", "coordinates": [[[15.7420349, -4.7447812, 0.0], [15.7447815, -4.7447812, 0.0], [15.7447815, -4.742044, 0.0], [15.7420349, -4.742044, 0.0], [15.7420349, -4.7447812, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 560}, "geometry": {"type": "Polygon", "coordinates": [[[15.7406616, -4.7502555, 0.0], [15.7434082, -4.7502555, 0.0], [15.7434082, -4.7475183, 0.0], [15.7406616, -4.7475183, 0.0], [15.7406616, -4.7502555, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 700}, "geometry": {"type": "Polygon", "coordinates": [[[15.7598877, -4.7502555, 0.0], [15.7681274, -4.7502555, 0.0], [15.7681274, -4.7461497, 0.0], [15.7598877, -4.7461497, 0.0], [15.7598877, -4.7502555, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 652}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -4.7502555, 0.0], [15.7543945, -4.7502555, 0.0], [15.7543945, -4.7488869, 0.0], [15.7530212, -4.7488869, 0.0], [15.7530212, -4.7502555, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 684}, "geometry": {"type": "Polygon", "coordinates": [[[15.7571411, -4.7625725, 0.0], [15.7640076, -4.7625725, 0.0], [15.7640076, -4.7570983, 0.0], [15.7571411, -4.7570983, 0.0], [15.7571411, -4.7625725, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 579}, "geometry": {"type": "Polygon", "coordinates": [[[15.7434082, -4.7653096, 0.0], [15.7447815, -4.7653096, 0.0], [15.7447815, -4.7625725, 0.0], [15.7434082, -4.7625725, 0.0], [15.7434082, -4.7653096, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 653}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -4.7653096, 0.0], [15.7571411, -4.7653096, 0.0], [15.7571411, -4.7625725, 0.0], [15.7530212, -4.7625725, 0.0], [15.7530212, -4.7653096, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 841}, "geometry": {"type": "Polygon", "coordinates": [[[15.7873535, -4.7639411, 0.0], [15.7901001, -4.7639411, 0.0], [15.7901001, -4.761204, 0.0], [15.7873535, -4.761204, 0.0], [15.7873535, -4.7639411, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 521}, "geometry": {"type": "Polygon", "coordinates": [[[15.7337952, -4.7694152, 0.0], [15.7365417, -4.7694152, 0.0], [15.7365417, -4.7653096, 0.0], [15.7337952, -4.7653096, 0.0], [15.7337952, -4.7694152, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 833}, "geometry": {"type": "Polygon", "coordinates": [[[15.7859802, -4.7735208, 0.0], [15.7914734, -4.7735208, 0.0], [15.7914734, -4.7666782, 0.0], [15.7859802, -4.7666782, 0.0], [15.7859802, -4.7735208, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1256}, "geometry": {"type": "Polygon", "coordinates": [[[15.869751, -4.7694152, 0.0], [15.8711243, -4.7694152, 0.0], [15.8711243, -4.7680467, 0.0], [15.869751, -4.7680467, 0.0], [15.869751, -4.7694152, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 501}, "geometry": {"type": "Polygon", "coordinates": [[[15.7296753, -4.7789949, 0.0], [15.7392883, -4.7789949, 0.0], [15.7392883, -4.7707838, 0.0], [15.7296753, -4.7707838, 0.0], [15.7296753, -4.7789949, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 567}, "geometry": {"type": "Polygon", "coordinates": [[[15.7420349, -4.7707838, 0.0], [15.7434082, -4.7707838, 0.0], [15.7434082, -4.7694152, 0.0], [15.7420349, -4.7694152, 0.0], [15.7420349, -4.7707838, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 692}, "geometry": {"type": "Polygon", "coordinates": [[[15.7585144, -4.7762579, 0.0], [15.7598877, -4.7762579, 0.0], [15.7598877, -4.7735208, 0.0], [15.7585144, -4.7735208, 0.0], [15.7585144, -4.7762579, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 460}, "geometry": {"type": "Polygon", "coordinates": [[[15.7200623, -4.7858375, 0.0], [15.7269287, -4.7858375, 0.0], [15.7269287, -4.7776264, 0.0], [15.7200623, -4.7776264, 0.0], [15.7200623, -4.7858375, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 718}, "geometry": {"type": "Polygon", "coordinates": [[[15.7626343, -4.7803634, 0.0], [15.7640076, -4.7803634, 0.0], [15.7640076, -4.7789949, 0.0], [15.7626343, -4.7789949, 0.0], [15.7626343, -4.7803634, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1199}, "geometry": {"type": "Polygon", "coordinates": [[[15.8601379, -4.7803634, 0.0], [15.8683777, -4.7803634, 0.0], [15.8683777, -4.7776264, 0.0], [15.8601379, -4.7776264, 0.0], [15.8601379, -4.7803634, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 531}, "geometry": {"type": "Polygon", "coordinates": [[[15.7351685, -4.784469, 0.0], [15.7365417, -4.784469, 0.0], [15.7365417, -4.7831005, 0.0], [15.7351685, -4.7831005, 0.0], [15.7351685, -4.784469, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 729}, "geometry": {"type": "Polygon", "coordinates": [[[15.761261, -4.7940484, 0.0], [15.7667542, -4.7940484, 0.0], [15.7667542, -4.784469, 0.0], [15.761261, -4.784469, 0.0], [15.761261, -4.7940484, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 485}, "geometry": {"type": "Polygon", "coordinates": [[[15.7269287, -4.789943, 0.0], [15.7296753, -4.789943, 0.0], [15.7296753, -4.787206, 0.0], [15.7269287, -4.787206, 0.0], [15.7269287, -4.789943, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 338}, "geometry": {"type": "Polygon", "coordinates": [[[15.6980896, -4.7940484, 0.0], [15.7090759, -4.7940484, 0.0], [15.7090759, -4.789943, 0.0], [15.6980896, -4.789943, 0.0], [15.6980896, -4.7940484, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 315}, "geometry": {"type": "Polygon", "coordinates": [[[15.6925964, -4.8008908, 0.0], [15.695343, -4.8008908, 0.0], [15.695343, -4.7981539, 0.0], [15.6925964, -4.7981539, 0.0], [15.6925964, -4.8008908, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 474}, "geometry": {"type": "Polygon", "coordinates": [[[15.7255554, -4.8022593, 0.0], [15.728302, -4.8022593, 0.0], [15.728302, -4.7981539, 0.0], [15.7255554, -4.7981539, 0.0], [15.7255554, -4.8022593, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 276}, "geometry": {"type": "Polygon", "coordinates": [[[15.6843567, -4.8077332, 0.0], [15.6884766, -4.8077332, 0.0], [15.6884766, -4.8022593, 0.0], [15.6843567, -4.8022593, 0.0], [15.6843567, -4.8077332, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 151}, "geometry": {"type": "Polygon", "coordinates": [[[15.6362915, -4.8077332, 0.0], [15.6376648, -4.8077332, 0.0], [15.6376648, -4.8063647, 0.0], [15.6362915, -4.8063647, 0.0], [15.6362915, -4.8077332, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 158}, "geometry": {"type": "Polygon", "coordinates": [[[15.6404114, -4.8104701, 0.0], [15.6445312, -4.8104701, 0.0], [15.6445312, -4.8063647, 0.0], [15.6404114, -4.8063647, 0.0], [15.6404114, -4.8104701, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 181}, "geometry": {"type": "Polygon", "coordinates": [[[15.6486511, -4.8077332, 0.0], [15.6500244, -4.8077332, 0.0], [15.6500244, -4.8063647, 0.0], [15.6486511, -4.8063647, 0.0], [15.6486511, -4.8077332, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 246}, "geometry": {"type": "Polygon", "coordinates": [[[15.6747437, -4.8104701, 0.0], [15.6774902, -4.8104701, 0.0], [15.6774902, -4.8077332, 0.0], [15.6747437, -4.8077332, 0.0], [15.6747437, -4.8104701, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 587}, "geometry": {"type": "Polygon", "coordinates": [[[15.7447815, -4.8091016, 0.0], [15.7461548, -4.8091016, 0.0], [15.7461548, -4.8077332, 0.0], [15.7447815, -4.8077332, 0.0], [15.7447815, -4.8091016, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 615}, "geometry": {"type": "Polygon", "coordinates": [[[15.7489014, -4.8091016, 0.0], [15.7502747, -4.8091016, 0.0], [15.7502747, -4.8063647, 0.0], [15.7489014, -4.8063647, 0.0], [15.7489014, -4.8091016, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 137}, "geometry": {"type": "Polygon", "coordinates": [[[15.629425, -4.8145754, 0.0], [15.6321716, -4.8145754, 0.0], [15.6321716, -4.813207, 0.0], [15.629425, -4.813207, 0.0], [15.629425, -4.8145754, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 195}, "geometry": {"type": "Polygon", "coordinates": [[[15.6541443, -4.8145754, 0.0], [15.6568909, -4.8145754, 0.0], [15.6568909, -4.8118385, 0.0], [15.6541443, -4.8118385, 0.0], [15.6541443, -4.8145754, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 324}, "geometry": {"type": "Polygon", "coordinates": [[[15.695343, -4.8118385, 0.0], [15.6967163, -4.8118385, 0.0], [15.6967163, -4.8104701, 0.0], [15.695343, -4.8104701, 0.0], [15.695343, -4.8118385, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 154}, "geometry": {"type": "Polygon", "coordinates": [[[15.6390381, -4.8159439, 0.0], [15.6404114, -4.8159439, 0.0], [15.6404114, -4.8145754, 0.0], [15.6390381, -4.8145754, 0.0], [15.6390381, -4.8159439, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 616}, "geometry": {"type": "Polygon", "coordinates": [[[15.7489014, -4.8186808, 0.0], [15.7502747, -4.8186808, 0.0], [15.7502747, -4.8173123, 0.0], [15.7489014, -4.8173123, 0.0], [15.7489014, -4.8186808, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 824}, "geometry": {"type": "Polygon", "coordinates": [[[15.7846069, -4.8173123, 0.0], [15.7873535, -4.8173123, 0.0], [15.7873535, -4.8145754, 0.0], [15.7846069, -4.8145754, 0.0], [15.7846069, -4.8173123, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 115}, "geometry": {"type": "Polygon", "coordinates": [[[15.6225586, -4.8227861, 0.0], [15.6266785, -4.8227861, 0.0], [15.6266785, -4.8186808, 0.0], [15.6225586, -4.8186808, 0.0], [15.6225586, -4.8227861, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 155}, "geometry": {"type": "Polygon", "coordinates": [[[15.6390381, -4.8200492, 0.0], [15.6404114, -4.8200492, 0.0], [15.6404114, -4.8186808, 0.0], [15.6390381, -4.8186808, 0.0], [15.6390381, -4.8200492, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 191}, "geometry": {"type": "Polygon", "coordinates": [[[15.6513977, -4.8214176, 0.0], [15.652771, -4.8214176, 0.0], [15.652771, -4.8200492, 0.0], [15.6513977, -4.8200492, 0.0], [15.6513977, -4.8214176, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 239}, "geometry": {"type": "Polygon", "coordinates": [[[15.6733704, -4.8309966, 0.0], [15.6774902, -4.8309966, 0.0], [15.6774902, -4.8200492, 0.0], [15.6733704, -4.8200492, 0.0], [15.6733704, -4.8309966, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 349}, "geometry": {"type": "Polygon", "coordinates": [[[15.7008362, -4.8241545, 0.0], [15.7049561, -4.8241545, 0.0], [15.7049561, -4.8214176, 0.0], [15.7008362, -4.8214176, 0.0], [15.7008362, -4.8241545, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 417}, "geometry": {"type": "Polygon", "coordinates": [[[15.7145691, -4.8200492, 0.0], [15.7159424, -4.8200492, 0.0], [15.7159424, -4.8186808, 0.0], [15.7145691, -4.8186808, 0.0], [15.7145691, -4.8200492, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 457}, "geometry": {"type": "Polygon", "coordinates": [[[15.7200623, -4.8227861, 0.0], [15.7228088, -4.8227861, 0.0], [15.7228088, -4.8200492, 0.0], [15.7200623, -4.8200492, 0.0], [15.7200623, -4.8227861, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 617}, "geometry": {"type": "Polygon", "coordinates": [[[15.7489014, -4.8227861, 0.0], [15.7502747, -4.8227861, 0.0], [15.7502747, -4.8214176, 0.0], [15.7489014, -4.8214176, 0.0], [15.7489014, -4.8227861, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 166}, "geometry": {"type": "Polygon", "coordinates": [[[15.643158, -4.8241545, 0.0], [15.6445312, -4.8241545, 0.0], [15.6445312, -4.8227861, 0.0], [15.643158, -4.8227861, 0.0], [15.643158, -4.8241545, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 381}, "geometry": {"type": "Polygon", "coordinates": [[[15.7077026, -4.8296282, 0.0], [15.718689, -4.8296282, 0.0], [15.718689, -4.8227861, 0.0], [15.7077026, -4.8227861, 0.0], [15.7077026, -4.8296282, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 568}, "geometry": {"type": "Polygon", "coordinates": [[[15.7420349, -4.8255229, 0.0], [15.7461548, -4.8255229, 0.0], [15.7461548, -4.8227861, 0.0], [15.7420349, -4.8227861, 0.0], [15.7420349, -4.8255229, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 807}, "geometry": {"type": "Polygon", "coordinates": [[[15.7804871, -4.8255229, 0.0], [15.7832336, -4.8255229, 0.0], [15.7832336, -4.8241545, 0.0], [15.7804871, -4.8241545, 0.0], [15.7804871, -4.8255229, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 116}, "geometry": {"type": "Polygon", "coordinates": [[[15.6225586, -4.8282597, 0.0], [15.6239319, -4.8282597, 0.0], [15.6239319, -4.8268913, 0.0], [15.6225586, -4.8268913, 0.0], [15.6225586, -4.8282597, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 271}, "geometry": {"type": "Polygon", "coordinates": [[[15.6829834, -4.8309966, 0.0], [15.6843567, -4.8309966, 0.0], [15.6843567, -4.8296282, 0.0], [15.6829834, -4.8296282, 0.0], [15.6829834, -4.8309966, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 289}, "geometry": {"type": "Polygon", "coordinates": [[[15.6871033, -4.8282597, 0.0], [15.6884766, -4.8282597, 0.0], [15.6884766, -4.8268913, 0.0], [15.6871033, -4.8268913, 0.0], [15.6871033, -4.8282597, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 334}, "geometry": {"type": "Polygon", "coordinates": [[[15.6967163, -4.832365, 0.0], [15.6980896, -4.832365, 0.0], [15.6980896, -4.8296282, 0.0], [15.6967163, -4.8296282, 0.0], [15.6967163, -4.832365, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 502}, "geometry": {"type": "Polygon", "coordinates": [[[15.7296753, -4.8309966, 0.0], [15.7310486, -4.8309966, 0.0], [15.7310486, -4.8296282, 0.0], [15.7296753, -4.8296282, 0.0], [15.7296753, -4.8309966, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 662}, "geometry": {"type": "Polygon", "coordinates": [[[15.7543945, -4.832365, 0.0], [15.7598877, -4.832365, 0.0], [15.7598877, -4.8268913, 0.0], [15.7543945, -4.8268913, 0.0], [15.7543945, -4.832365, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 134}, "geometry": {"type": "Polygon", "coordinates": [[[15.6280518, -4.8351018, 0.0], [15.629425, -4.8351018, 0.0], [15.629425, -4.8337334, 0.0], [15.6280518, -4.8337334, 0.0], [15.6280518, -4.8351018, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 400}, "geometry": {"type": "Polygon", "coordinates": [[[15.7104492, -4.8460489, 0.0], [15.7173157, -4.8460489, 0.0], [15.7173157, -4.8337334, 0.0], [15.7104492, -4.8337334, 0.0], [15.7104492, -4.8460489, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 749}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.832365, 0.0], [15.7681274, -4.832365, 0.0], [15.7681274, -4.8309966, 0.0], [15.7667542, -4.8309966, 0.0], [15.7667542, -4.832365, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 113}, "geometry": {"type": "Polygon", "coordinates": [[[15.6211853, -4.839207, 0.0], [15.6225586, -4.839207, 0.0], [15.6225586, -4.8378386, 0.0], [15.6211853, -4.8378386, 0.0], [15.6211853, -4.839207, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 159}, "geometry": {"type": "Polygon", "coordinates": [[[15.6404114, -4.839207, 0.0], [15.643158, -4.839207, 0.0], [15.643158, -4.8378386, 0.0], [15.6404114, -4.8378386, 0.0], [15.6404114, -4.839207, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 182}, "geometry": {"type": "Polygon", "coordinates": [[[15.6486511, -4.8405754, 0.0], [15.652771, -4.8405754, 0.0], [15.652771, -4.8378386, 0.0], [15.6486511, -4.8378386, 0.0], [15.6486511, -4.8405754, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 220}, "geometry": {"type": "Polygon", "coordinates": [[[15.6678772, -4.8364702, 0.0], [15.6692505, -4.8364702, 0.0], [15.6692505, -4.8351018, 0.0], [15.6678772, -4.8351018, 0.0], [15.6678772, -4.8364702, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 654}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -4.839207, 0.0], [15.7543945, -4.839207, 0.0], [15.7543945, -4.8364702, 0.0], [15.7530212, -4.8364702, 0.0], [15.7530212, -4.839207, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 808}, "geometry": {"type": "Polygon", "coordinates": [[[15.7804871, -4.8378386, 0.0], [15.7832336, -4.8378386, 0.0], [15.7832336, -4.8351018, 0.0], [15.7804871, -4.8351018, 0.0], [15.7804871, -4.8378386, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 125}, "geometry": {"type": "Polygon", "coordinates": [[[15.6253052, -4.8419438, 0.0], [15.6266785, -4.8419438, 0.0], [15.6266785, -4.839207, 0.0], [15.6253052, -4.839207, 0.0], [15.6253052, -4.8419438, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 734}, "geometry": {"type": "Polygon", "coordinates": [[[15.7653809, -4.8433122, 0.0], [15.7667542, -4.8433122, 0.0], [15.7667542, -4.8419438, 0.0], [15.7653809, -4.8419438, 0.0], [15.7653809, -4.8433122, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 815}, "geometry": {"type": "Polygon", "coordinates": [[[15.7818604, -4.8515225, 0.0], [15.7846069, -4.8515225, 0.0], [15.7846069, -4.8419438, 0.0], [15.7818604, -4.8419438, 0.0], [15.7818604, -4.8515225, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 896}, "geometry": {"type": "Polygon", "coordinates": [[[15.7969666, -4.8419438, 0.0], [15.7983398, -4.8419438, 0.0], [15.7983398, -4.8405754, 0.0], [15.7969666, -4.8405754, 0.0], [15.7969666, -4.8419438, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 920}, "geometry": {"type": "Polygon", "coordinates": [[[15.803833, -4.8433122, 0.0], [15.8052063, -4.8433122, 0.0], [15.8052063, -4.8405754, 0.0], [15.803833, -4.8405754, 0.0], [15.803833, -4.8433122, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 114}, "geometry": {"type": "Polygon", "coordinates": [[[15.6211853, -4.8474173, 0.0], [15.6253052, -4.8474173, 0.0], [15.6253052, -4.8446806, 0.0], [15.6211853, -4.8446806, 0.0], [15.6211853, -4.8474173, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 138}, "geometry": {"type": "Polygon", "coordinates": [[[15.629425, -4.8460489, 0.0], [15.6307983, -4.8460489, 0.0], [15.6307983, -4.8446806, 0.0], [15.629425, -4.8446806, 0.0], [15.629425, -4.8460489, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 167}, "geometry": {"type": "Polygon", "coordinates": [[[15.643158, -4.8446806, 0.0], [15.6445312, -4.8446806, 0.0], [15.6445312, -4.8433122, 0.0], [15.643158, -4.8433122, 0.0], [15.643158, -4.8446806, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 117}, "geometry": {"type": "Polygon", "coordinates": [[[15.6225586, -4.8528908, 0.0], [15.6253052, -4.8528908, 0.0], [15.6253052, -4.8501541, 0.0], [15.6225586, -4.8501541, 0.0], [15.6225586, -4.8528908, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 357}, "geometry": {"type": "Polygon", "coordinates": [[[15.7022095, -4.8515225, 0.0], [15.7077026, -4.8515225, 0.0], [15.7077026, -4.8474173, 0.0], [15.7022095, -4.8474173, 0.0], [15.7022095, -4.8515225, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1108}, "geometry": {"type": "Polygon", "coordinates": [[[15.8422852, -4.8515225, 0.0], [15.8436584, -4.8515225, 0.0], [15.8436584, -4.8501541, 0.0], [15.8422852, -4.8501541, 0.0], [15.8422852, -4.8515225, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 263}, "geometry": {"type": "Polygon", "coordinates": [[[15.6802368, -4.8556276, 0.0], [15.6816101, -4.8556276, 0.0], [15.6816101, -4.8528908, 0.0], [15.6802368, -4.8528908, 0.0], [15.6802368, -4.8556276, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 401}, "geometry": {"type": "Polygon", "coordinates": [[[15.7104492, -4.8542592, 0.0], [15.7118225, -4.8542592, 0.0], [15.7118225, -4.8515225, 0.0], [15.7104492, -4.8515225, 0.0], [15.7104492, -4.8542592, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 92}, "geometry": {"type": "Polygon", "coordinates": [[[15.6129456, -4.8706794, 0.0], [15.6211853, -4.8706794, 0.0], [15.6211853, -4.8569959, 0.0], [15.6129456, -4.8569959, 0.0], [15.6129456, -4.8706794, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 367}, "geometry": {"type": "Polygon", "coordinates": [[[15.7049561, -4.8597326, 0.0], [15.7077026, -4.8597326, 0.0], [15.7077026, -4.8569959, 0.0], [15.7049561, -4.8569959, 0.0], [15.7049561, -4.8597326, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 408}, "geometry": {"type": "Polygon", "coordinates": [[[15.7118225, -4.8624693, 0.0], [15.7145691, -4.8624693, 0.0], [15.7145691, -4.8583643, 0.0], [15.7118225, -4.8583643, 0.0], [15.7118225, -4.8624693, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 580}, "geometry": {"type": "Polygon", "coordinates": [[[15.7434082, -4.8583643, 0.0], [15.7461548, -4.8583643, 0.0], [15.7461548, -4.8569959, 0.0], [15.7434082, -4.8569959, 0.0], [15.7434082, -4.8583643, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 685}, "geometry": {"type": "Polygon", "coordinates": [[[15.7571411, -4.8583643, 0.0], [15.7585144, -4.8583643, 0.0], [15.7585144, -4.8569959, 0.0], [15.7571411, -4.8569959, 0.0], [15.7571411, -4.8583643, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 719}, "geometry": {"type": "Polygon", "coordinates": [[[15.7626343, -4.8583643, 0.0], [15.7653809, -4.8583643, 0.0], [15.7653809, -4.8556276, 0.0], [15.7626343, -4.8556276, 0.0], [15.7626343, -4.8583643, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 135}, "geometry": {"type": "Polygon", "coordinates": [[[15.6280518, -4.8624693, 0.0], [15.6307983, -4.8624693, 0.0], [15.6307983, -4.8597326, 0.0], [15.6280518, -4.8597326, 0.0], [15.6280518, -4.8624693, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1161}, "geometry": {"type": "Polygon", "coordinates": [[[15.8532715, -4.8638377, 0.0], [15.8573914, -4.8638377, 0.0], [15.8573914, -4.8597326, 0.0], [15.8532715, -4.8597326, 0.0], [15.8532715, -4.8638377, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 207}, "geometry": {"type": "Polygon", "coordinates": [[[15.6610107, -4.8665744, 0.0], [15.6637573, -4.8665744, 0.0], [15.6637573, -4.865206, 0.0], [15.6610107, -4.865206, 0.0], [15.6610107, -4.8665744, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 305}, "geometry": {"type": "Polygon", "coordinates": [[[15.6912231, -4.865206, 0.0], [15.6925964, -4.865206, 0.0], [15.6925964, -4.8638377, 0.0], [15.6912231, -4.8638377, 0.0], [15.6912231, -4.865206, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 339}, "geometry": {"type": "Polygon", "coordinates": [[[15.6980896, -4.869311, 0.0], [15.6994629, -4.869311, 0.0], [15.6994629, -4.8665744, 0.0], [15.6980896, -4.8665744, 0.0], [15.6980896, -4.869311, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 368}, "geometry": {"type": "Polygon", "coordinates": [[[15.7049561, -4.8679427, 0.0], [15.7104492, -4.8679427, 0.0], [15.7104492, -4.8638377, 0.0], [15.7049561, -4.8638377, 0.0], [15.7049561, -4.8679427, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 420}, "geometry": {"type": "Polygon", "coordinates": [[[15.7159424, -4.8665744, 0.0], [15.7173157, -4.8665744, 0.0], [15.7173157, -4.865206, 0.0], [15.7159424, -4.865206, 0.0], [15.7159424, -4.8665744, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 546}, "geometry": {"type": "Polygon", "coordinates": [[[15.737915, -4.865206, 0.0], [15.7392883, -4.865206, 0.0], [15.7392883, -4.8638377, 0.0], [15.737915, -4.8638377, 0.0], [15.737915, -4.865206, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 605}, "geometry": {"type": "Polygon", "coordinates": [[[15.7475281, -4.8665744, 0.0], [15.7502747, -4.8665744, 0.0], [15.7502747, -4.8638377, 0.0], [15.7475281, -4.8638377, 0.0], [15.7475281, -4.8665744, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 129}, "geometry": {"type": "Polygon", "coordinates": [[[15.6266785, -4.8706794, 0.0], [15.629425, -4.8706794, 0.0], [15.629425, -4.869311, 0.0], [15.6266785, -4.869311, 0.0], [15.6266785, -4.8706794, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 402}, "geometry": {"type": "Polygon", "coordinates": [[[15.7104492, -4.8720477, 0.0], [15.7159424, -4.8720477, 0.0], [15.7159424, -4.869311, 0.0], [15.7104492, -4.869311, 0.0], [15.7104492, -4.8720477, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 467}, "geometry": {"type": "Polygon", "coordinates": [[[15.7228088, -4.873416, 0.0], [15.728302, -4.873416, 0.0], [15.728302, -4.8706794, 0.0], [15.7228088, -4.8706794, 0.0], [15.7228088, -4.873416, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 522}, "geometry": {"type": "Polygon", "coordinates": [[[15.7337952, -4.8720477, 0.0], [15.7365417, -4.8720477, 0.0], [15.7365417, -4.8679427, 0.0], [15.7337952, -4.8679427, 0.0], [15.7337952, -4.8720477, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 771}, "geometry": {"type": "Polygon", "coordinates": [[[15.7722473, -4.8720477, 0.0], [15.7791138, -4.8720477, 0.0], [15.7791138, -4.869311, 0.0], [15.7722473, -4.869311, 0.0], [15.7722473, -4.8720477, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 130}, "geometry": {"type": "Polygon", "coordinates": [[[15.6266785, -4.8788893, 0.0], [15.6362915, -4.8788893, 0.0], [15.6362915, -4.8747844, 0.0], [15.6266785, -4.8747844, 0.0], [15.6266785, -4.8788893, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 204}, "geometry": {"type": "Polygon", "coordinates": [[[15.6596375, -4.8761527, 0.0], [15.662384, -4.8761527, 0.0], [15.662384, -4.8720477, 0.0], [15.6596375, -4.8720477, 0.0], [15.6596375, -4.8761527, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 224}, "geometry": {"type": "Polygon", "coordinates": [[[15.6692505, -4.873416, 0.0], [15.6706238, -4.873416, 0.0], [15.6706238, -4.8720477, 0.0], [15.6692505, -4.8720477, 0.0], [15.6692505, -4.873416, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 421}, "geometry": {"type": "Polygon", "coordinates": [[[15.7159424, -4.8788893, 0.0], [15.7214355, -4.8788893, 0.0], [15.7214355, -4.873416, 0.0], [15.7159424, -4.873416, 0.0], [15.7159424, -4.8788893, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 588}, "geometry": {"type": "Polygon", "coordinates": [[[15.7447815, -4.8747844, 0.0], [15.7475281, -4.8747844, 0.0], [15.7475281, -4.8720477, 0.0], [15.7447815, -4.8720477, 0.0], [15.7447815, -4.8747844, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 686}, "geometry": {"type": "Polygon", "coordinates": [[[15.7571411, -4.873416, 0.0], [15.7585144, -4.873416, 0.0], [15.7585144, -4.8720477, 0.0], [15.7571411, -4.8720477, 0.0], [15.7571411, -4.873416, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 186}, "geometry": {"type": "Polygon", "coordinates": [[[15.6500244, -4.8843625, 0.0], [15.6555176, -4.8843625, 0.0], [15.6555176, -4.8788893, 0.0], [15.6500244, -4.8788893, 0.0], [15.6500244, -4.8843625, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1126}, "geometry": {"type": "Polygon", "coordinates": [[[15.8477783, -4.8802576, 0.0], [15.8491516, -4.8802576, 0.0], [15.8491516, -4.8788893, 0.0], [15.8477783, -4.8788893, 0.0], [15.8477783, -4.8802576, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1196}, "geometry": {"type": "Polygon", "coordinates": [[[15.8587646, -4.8802576, 0.0], [15.8601379, -4.8802576, 0.0], [15.8601379, -4.8788893, 0.0], [15.8587646, -4.8788893, 0.0], [15.8587646, -4.8802576, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 118}, "geometry": {"type": "Polygon", "coordinates": [[[15.6225586, -4.8829942, 0.0], [15.6239319, -4.8829942, 0.0], [15.6239319, -4.8816259, 0.0], [15.6225586, -4.8816259, 0.0], [15.6225586, -4.8829942, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 146}, "geometry": {"type": "Polygon", "coordinates": [[[15.6335449, -4.8884674, 0.0], [15.6390381, -4.8884674, 0.0], [15.6390381, -4.8843625, 0.0], [15.6335449, -4.8843625, 0.0], [15.6335449, -4.8884674, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 169}, "geometry": {"type": "Polygon", "coordinates": [[[15.6445312, -4.8870992, 0.0], [15.6459045, -4.8870992, 0.0], [15.6459045, -4.8857309, 0.0], [15.6445312, -4.8857309, 0.0], [15.6445312, -4.8870992, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 252}, "geometry": {"type": "Polygon", "coordinates": [[[15.6774902, -4.8884674, 0.0], [15.6788635, -4.8884674, 0.0], [15.6788635, -4.8870992, 0.0], [15.6774902, -4.8870992, 0.0], [15.6774902, -4.8884674, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 277}, "geometry": {"type": "Polygon", "coordinates": [[[15.6843567, -4.8884674, 0.0], [15.6912231, -4.8884674, 0.0], [15.6912231, -4.8843625, 0.0], [15.6843567, -4.8843625, 0.0], [15.6843567, -4.8884674, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 382}, "geometry": {"type": "Polygon", "coordinates": [[[15.7077026, -4.8884674, 0.0], [15.7090759, -4.8884674, 0.0], [15.7090759, -4.8870992, 0.0], [15.7077026, -4.8870992, 0.0], [15.7077026, -4.8884674, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 606}, "geometry": {"type": "Polygon", "coordinates": [[[15.7475281, -4.8870992, 0.0], [15.7502747, -4.8870992, 0.0], [15.7502747, -4.8857309, 0.0], [15.7475281, -4.8857309, 0.0], [15.7475281, -4.8870992, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 730}, "geometry": {"type": "Polygon", "coordinates": [[[15.7640076, -4.8870992, 0.0], [15.7667542, -4.8870992, 0.0], [15.7667542, -4.8843625, 0.0], [15.7640076, -4.8843625, 0.0], [15.7640076, -4.8870992, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 679}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.8925723, 0.0], [15.7571411, -4.8925723, 0.0], [15.7571411, -4.891204, 0.0], [15.7557678, -4.891204, 0.0], [15.7557678, -4.8925723, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1094}, "geometry": {"type": "Polygon", "coordinates": [[[15.8395386, -4.8925723, 0.0], [15.8422852, -4.8925723, 0.0], [15.8422852, -4.891204, 0.0], [15.8395386, -4.891204, 0.0], [15.8395386, -4.8925723, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 217}, "geometry": {"type": "Polygon", "coordinates": [[[15.6665039, -4.8953089, 0.0], [15.6678772, -4.8953089, 0.0], [15.6678772, -4.8939406, 0.0], [15.6665039, -4.8939406, 0.0], [15.6665039, -4.8953089, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 325}, "geometry": {"type": "Polygon", "coordinates": [[[15.695343, -4.8966772, 0.0], [15.6967163, -4.8966772, 0.0], [15.6967163, -4.8953089, 0.0], [15.695343, -4.8953089, 0.0], [15.695343, -4.8966772, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 213}, "geometry": {"type": "Polygon", "coordinates": [[[15.6637573, -4.9048868, 0.0], [15.6651306, -4.9048868, 0.0], [15.6651306, -4.8994137, 0.0], [15.6637573, -4.8994137, 0.0], [15.6637573, -4.9048868, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 472}, "geometry": {"type": "Polygon", "coordinates": [[[15.7241821, -4.900782, 0.0], [15.728302, -4.900782, 0.0], [15.728302, -4.8966772, 0.0], [15.7241821, -4.8966772, 0.0], [15.7241821, -4.900782, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 506}, "geometry": {"type": "Polygon", "coordinates": [[[15.7310486, -4.8980454, 0.0], [15.7324219, -4.8980454, 0.0], [15.7324219, -4.8966772, 0.0], [15.7310486, -4.8966772, 0.0], [15.7310486, -4.8980454, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 598}, "geometry": {"type": "Polygon", "coordinates": [[[15.7461548, -4.8994137, 0.0], [15.7475281, -4.8994137, 0.0], [15.7475281, -4.8980454, 0.0], [15.7461548, -4.8980454, 0.0], [15.7461548, -4.8994137, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 149}, "geometry": {"type": "Polygon", "coordinates": [[[15.6349182, -4.9021503, 0.0], [15.6362915, -4.9021503, 0.0], [15.6362915, -4.900782, 0.0], [15.6349182, -4.900782, 0.0], [15.6349182, -4.9021503, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 164}, "geometry": {"type": "Polygon", "coordinates": [[[15.6417847, -4.9048868, 0.0], [15.643158, -4.9048868, 0.0], [15.643158, -4.9035185, 0.0], [15.6417847, -4.9035185, 0.0], [15.6417847, -4.9048868, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 492}, "geometry": {"type": "Polygon", "coordinates": [[[15.728302, -4.9076233, 0.0], [15.7365417, -4.9076233, 0.0], [15.7365417, -4.9035185, 0.0], [15.728302, -4.9035185, 0.0], [15.728302, -4.9076233, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 618}, "geometry": {"type": "Polygon", "coordinates": [[[15.7489014, -4.9048868, 0.0], [15.7502747, -4.9048868, 0.0], [15.7502747, -4.9035185, 0.0], [15.7489014, -4.9035185, 0.0], [15.7489014, -4.9048868, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1010}, "geometry": {"type": "Polygon", "coordinates": [[[15.8216858, -4.9021503, 0.0], [15.8258057, -4.9021503, 0.0], [15.8258057, -4.900782, 0.0], [15.8216858, -4.900782, 0.0], [15.8216858, -4.9021503, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1109}, "geometry": {"type": "Polygon", "coordinates": [[[15.8422852, -4.9117281, 0.0], [15.8450317, -4.9117281, 0.0], [15.8450317, -4.9035185, 0.0], [15.8422852, -4.9035185, 0.0], [15.8422852, -4.9117281, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 345}, "geometry": {"type": "Polygon", "coordinates": [[[15.6994629, -4.9103598, 0.0], [15.7008362, -4.9103598, 0.0], [15.7008362, -4.9076233, 0.0], [15.6994629, -4.9076233, 0.0], [15.6994629, -4.9103598, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 362}, "geometry": {"type": "Polygon", "coordinates": [[[15.7035828, -4.9117281, 0.0], [15.7063293, -4.9117281, 0.0], [15.7063293, -4.9076233, 0.0], [15.7035828, -4.9076233, 0.0], [15.7035828, -4.9117281, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 437}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.9130963, 0.0], [15.7214355, -4.9130963, 0.0], [15.7214355, -4.9076233, 0.0], [15.7173157, -4.9076233, 0.0], [15.7173157, -4.9130963, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1127}, "geometry": {"type": "Polygon", "coordinates": [[[15.8477783, -4.9062551, 0.0], [15.8491516, -4.9062551, 0.0], [15.8491516, -4.9048868, 0.0], [15.8477783, -4.9048868, 0.0], [15.8477783, -4.9062551, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 221}, "geometry": {"type": "Polygon", "coordinates": [[[15.6678772, -4.9130963, 0.0], [15.6706238, -4.9130963, 0.0], [15.6706238, -4.9103598, 0.0], [15.6678772, -4.9103598, 0.0], [15.6678772, -4.9130963, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 257}, "geometry": {"type": "Polygon", "coordinates": [[[15.6788635, -4.9103598, 0.0], [15.6802368, -4.9103598, 0.0], [15.6802368, -4.9089916, 0.0], [15.6788635, -4.9089916, 0.0], [15.6788635, -4.9103598, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 294}, "geometry": {"type": "Polygon", "coordinates": [[[15.6884766, -4.9130963, 0.0], [15.6912231, -4.9130963, 0.0], [15.6912231, -4.9089916, 0.0], [15.6884766, -4.9089916, 0.0], [15.6884766, -4.9130963, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 389}, "geometry": {"type": "Polygon", "coordinates": [[[15.7090759, -4.917201, 0.0], [15.7131958, -4.917201, 0.0], [15.7131958, -4.9117281, 0.0], [15.7090759, -4.9117281, 0.0], [15.7090759, -4.917201, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 619}, "geometry": {"type": "Polygon", "coordinates": [[[15.7489014, -4.9103598, 0.0], [15.7502747, -4.9103598, 0.0], [15.7502747, -4.9089916, 0.0], [15.7489014, -4.9089916, 0.0], [15.7489014, -4.9103598, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 438}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.9199375, 0.0], [15.7241821, -4.9199375, 0.0], [15.7241821, -4.9144646, 0.0], [15.7173157, -4.9144646, 0.0], [15.7173157, -4.9199375, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 228}, "geometry": {"type": "Polygon", "coordinates": [[[15.6706238, -4.9213057, 0.0], [15.6719971, -4.9213057, 0.0], [15.6719971, -4.9199375, 0.0], [15.6706238, -4.9199375, 0.0], [15.6706238, -4.9213057, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 306}, "geometry": {"type": "Polygon", "coordinates": [[[15.6912231, -4.9254104, 0.0], [15.6980896, -4.9254104, 0.0], [15.6980896, -4.9199375, 0.0], [15.6912231, -4.9199375, 0.0], [15.6912231, -4.9254104, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 358}, "geometry": {"type": "Polygon", "coordinates": [[[15.7022095, -4.9240422, 0.0], [15.7077026, -4.9240422, 0.0], [15.7077026, -4.9199375, 0.0], [15.7022095, -4.9199375, 0.0], [15.7022095, -4.9240422, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 475}, "geometry": {"type": "Polygon", "coordinates": [[[15.7255554, -4.9240422, 0.0], [15.7310486, -4.9240422, 0.0], [15.7310486, -4.9185693, 0.0], [15.7255554, -4.9185693, 0.0], [15.7255554, -4.9240422, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 656}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -4.922674, 0.0], [15.7557678, -4.922674, 0.0], [15.7557678, -4.9185693, 0.0], [15.7530212, -4.9185693, 0.0], [15.7530212, -4.922674, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 439}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.9240422, 0.0], [15.718689, -4.9240422, 0.0], [15.718689, -4.922674, 0.0], [15.7173157, -4.922674, 0.0], [15.7173157, -4.9240422, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1128}, "geometry": {"type": "Polygon", "coordinates": [[[15.8477783, -4.9240422, 0.0], [15.8491516, -4.9240422, 0.0], [15.8491516, -4.922674, 0.0], [15.8477783, -4.922674, 0.0], [15.8477783, -4.9240422, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 476}, "geometry": {"type": "Polygon", "coordinates": [[[15.7255554, -4.9363561, 0.0], [15.7269287, -4.9363561, 0.0], [15.7269287, -4.9349879, 0.0], [15.7255554, -4.9349879, 0.0], [15.7255554, -4.9363561, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 523}, "geometry": {"type": "Polygon", "coordinates": [[[15.7337952, -4.9363561, 0.0], [15.7351685, -4.9363561, 0.0], [15.7351685, -4.9349879, 0.0], [15.7337952, -4.9349879, 0.0], [15.7337952, -4.9363561, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 561}, "geometry": {"type": "Polygon", "coordinates": [[[15.7406616, -4.9377243, 0.0], [15.7461548, -4.9377243, 0.0], [15.7461548, -4.9336197, 0.0], [15.7406616, -4.9336197, 0.0], [15.7406616, -4.9377243, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 335}, "geometry": {"type": "Polygon", "coordinates": [[[15.6967163, -4.9418288, 0.0], [15.6980896, -4.9418288, 0.0], [15.6980896, -4.9404607, 0.0], [15.6967163, -4.9404607, 0.0], [15.6967163, -4.9418288, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 493}, "geometry": {"type": "Polygon", "coordinates": [[[15.728302, -4.9418288, 0.0], [15.7296753, -4.9418288, 0.0], [15.7296753, -4.9404607, 0.0], [15.728302, -4.9404607, 0.0], [15.728302, -4.9418288, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 440}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.9445652, 0.0], [15.718689, -4.9445652, 0.0], [15.718689, -4.9418288, 0.0], [15.7173157, -4.9418288, 0.0], [15.7173157, -4.9445652, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 965}, "geometry": {"type": "Polygon", "coordinates": [[[15.8120728, -4.9473016, 0.0], [15.813446, -4.9473016, 0.0], [15.813446, -4.9459334, 0.0], [15.8120728, -4.9459334, 0.0], [15.8120728, -4.9473016, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 468}, "geometry": {"type": "Polygon", "coordinates": [[[15.7228088, -4.9527742, 0.0], [15.7241821, -4.9527742, 0.0], [15.7241821, -4.9514061, 0.0], [15.7228088, -4.9514061, 0.0], [15.7228088, -4.9527742, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 842}, "geometry": {"type": "Polygon", "coordinates": [[[15.7873535, -4.9527742, 0.0], [15.7887268, -4.9527742, 0.0], [15.7887268, -4.9514061, 0.0], [15.7873535, -4.9514061, 0.0], [15.7873535, -4.9527742, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1129}, "geometry": {"type": "Polygon", "coordinates": [[[15.8477783, -4.9555106, 0.0], [15.8505249, -4.9555106, 0.0], [15.8505249, -4.9527742, 0.0], [15.8477783, -4.9527742, 0.0], [15.8477783, -4.9555106, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1115}, "geometry": {"type": "Polygon", "coordinates": [[[15.8450317, -4.9637195, 0.0], [15.8491516, -4.9637195, 0.0], [15.8491516, -4.9609832, 0.0], [15.8450317, -4.9609832, 0.0], [15.8450317, -4.9637195, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1155}, "geometry": {"type": "Polygon", "coordinates": [[[15.8518982, -4.969192, 0.0], [15.8532715, -4.969192, 0.0], [15.8532715, -4.9678239, 0.0], [15.8518982, -4.9678239, 0.0], [15.8518982, -4.969192, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1110}, "geometry": {"type": "Polygon", "coordinates": [[[15.8395386, -4.9910817, 0.0], [15.8518982, -4.9910817, 0.0], [15.8518982, -4.981505, 0.0], [15.8395386, -4.981505, 0.0], [15.8395386, -4.9910817, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 581}, "geometry": {"type": "Polygon", "coordinates": [[[15.7434082, -4.9897136, 0.0], [15.7447815, -4.9897136, 0.0], [15.7447815, -4.9869774, 0.0], [15.7434082, -4.9869774, 0.0], [15.7434082, -4.9897136, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1130}, "geometry": {"type": "Polygon", "coordinates": [[[15.8477783, -4.9992902, 0.0], [15.8491516, -4.9992902, 0.0], [15.8491516, -4.9979221, 0.0], [15.8477783, -4.9979221, 0.0], [15.8477783, -4.9992902, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1075}, "geometry": {"type": "Polygon", "coordinates": [[[15.8340454, -5.0020263, 0.0], [15.8354187, -5.0020263, 0.0], [15.8354187, -4.9992902, 0.0], [15.8340454, -4.9992902, 0.0], [15.8340454, -5.0020263, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1100}, "geometry": {"type": "Polygon", "coordinates": [[[15.8409119, -5.0061305, 0.0], [15.8422852, -5.0061305, 0.0], [15.8422852, -5.0020263, 0.0], [15.8409119, -5.0020263, 0.0], [15.8409119, -5.0061305, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1025}, "geometry": {"type": "Polygon", "coordinates": [[[15.8244324, -5.0074985, 0.0], [15.8258057, -5.0074985, 0.0], [15.8258057, -5.0061305, 0.0], [15.8244324, -5.0061305, 0.0], [15.8244324, -5.0074985, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1060}, "geometry": {"type": "Polygon", "coordinates": [[[15.8312988, -5.0157068, 0.0], [15.836792, -5.0157068, 0.0], [15.836792, -5.0074985, 0.0], [15.8312988, -5.0074985, 0.0], [15.8312988, -5.0157068, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 639}, "geometry": {"type": "Polygon", "coordinates": [[[15.7516479, -5.0143387, 0.0], [15.7530212, -5.0143387, 0.0], [15.7530212, -5.0129707, 0.0], [15.7516479, -5.0129707, 0.0], [15.7516479, -5.0143387, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1044}, "geometry": {"type": "Polygon", "coordinates": [[[15.827179, -5.0198108, 0.0], [15.8299255, -5.0198108, 0.0], [15.8299255, -5.0184428, 0.0], [15.827179, -5.0184428, 0.0], [15.827179, -5.0198108, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1625}, "geometry": {"type": "Polygon", "coordinates": [[[15.7598877, -3.9957805, 0.0], [15.7653809, -3.9957805, 0.0], [15.7653809, -3.9903007, 0.0], [15.7598877, -3.9903007, 0.0], [15.7598877, -3.9957805, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1626}, "geometry": {"type": "Polygon", "coordinates": [[[15.7653809, -3.9944106, 0.0], [15.7722473, -3.9944106, 0.0], [15.7722473, -3.9903007, 0.0], [15.7653809, -3.9903007, 0.0], [15.7653809, -3.9944106, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1627}, "geometry": {"type": "Polygon", "coordinates": [[[15.7502747, -4.0368781, 0.0], [15.7557678, -4.0368781, 0.0], [15.7557678, -4.0327684, 0.0], [15.7502747, -4.0327684, 0.0], [15.7502747, -4.0368781, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1628}, "geometry": {"type": "Polygon", "coordinates": [[[15.7571411, -4.0423576, 0.0], [15.761261, -4.0423576, 0.0], [15.761261, -4.0341383, 0.0], [15.7571411, -4.0341383, 0.0], [15.7571411, -4.0423576, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1629}, "geometry": {"type": "Polygon", "coordinates": [[[15.8120728, -4.0409877, 0.0], [15.8189392, -4.0409877, 0.0], [15.8189392, -4.0355082, 0.0], [15.8120728, -4.0355082, 0.0], [15.8120728, -4.0409877, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1630}, "geometry": {"type": "Polygon", "coordinates": [[[15.8203125, -4.0409877, 0.0], [15.8299255, -4.0409877, 0.0], [15.8299255, -4.0355082, 0.0], [15.8203125, -4.0355082, 0.0], [15.8203125, -4.0409877, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1631}, "geometry": {"type": "Polygon", "coordinates": [[[15.8546448, -4.0779735, 0.0], [15.8601379, -4.0779735, 0.0], [15.8601379, -4.0738641, 0.0], [15.8546448, -4.0738641, 0.0], [15.8546448, -4.0779735, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1632}, "geometry": {"type": "Polygon", "coordinates": [[[15.8601379, -4.0779735, 0.0], [15.8670044, -4.0779735, 0.0], [15.8670044, -4.0738641, 0.0], [15.8601379, -4.0738641, 0.0], [15.8601379, -4.0779735, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1633}, "geometry": {"type": "Polygon", "coordinates": [[[15.7901001, -4.0834528, 0.0], [15.7969666, -4.0834528, 0.0], [15.7969666, -4.0793433, 0.0], [15.7901001, -4.0793433, 0.0], [15.7901001, -4.0834528, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1634}, "geometry": {"type": "Polygon", "coordinates": [[[15.7969666, -4.0875622, 0.0], [15.803833, -4.0875622, 0.0], [15.803833, -4.0793433, 0.0], [15.7969666, -4.0793433, 0.0], [15.7969666, -4.0875622, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1635}, "geometry": {"type": "Polygon", "coordinates": [[[15.7640076, -4.1286551, 0.0], [15.7681274, -4.1286551, 0.0], [15.7681274, -4.1231761, 0.0], [15.7640076, -4.1231761, 0.0], [15.7640076, -4.1286551, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1636}, "geometry": {"type": "Polygon", "coordinates": [[[15.7681274, -4.1272853, 0.0], [15.7722473, -4.1272853, 0.0], [15.7722473, -4.1204366, 0.0], [15.7681274, -4.1204366, 0.0], [15.7681274, -4.1272853, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1637}, "geometry": {"type": "Polygon", "coordinates": [[[15.5497742, -4.1519401, 0.0], [15.553894, -4.1519401, 0.0], [15.553894, -4.1437219, 0.0], [15.5497742, -4.1437219, 0.0], [15.5497742, -4.1519401, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1638}, "geometry": {"type": "Polygon", "coordinates": [[[15.5470276, -4.1601582, 0.0], [15.553894, -4.1601582, 0.0], [15.553894, -4.1519401, 0.0], [15.5470276, -4.1519401, 0.0], [15.5470276, -4.1601582, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1639}, "geometry": {"type": "Polygon", "coordinates": [[[15.8752441, -4.1615278, 0.0], [15.8807373, -4.1615278, 0.0], [15.8807373, -4.1560491, 0.0], [15.8752441, -4.1560491, 0.0], [15.8752441, -4.1615278, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1640}, "geometry": {"type": "Polygon", "coordinates": [[[15.8752441, -4.1670065, 0.0], [15.8807373, -4.1670065, 0.0], [15.8807373, -4.1615278, 0.0], [15.8752441, -4.1615278, 0.0], [15.8752441, -4.1670065, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1641}, "geometry": {"type": "Polygon", "coordinates": [[[15.9590149, -4.2916356, 0.0], [15.9617615, -4.2916356, 0.0], [15.9617615, -4.2861579, 0.0], [15.9590149, -4.2861579, 0.0], [15.9590149, -4.2916356, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1642}, "geometry": {"type": "Polygon", "coordinates": [[[15.8093262, -4.4874401, 0.0], [15.813446, -4.4874401, 0.0], [15.813446, -4.4792256, 0.0], [15.8093262, -4.4792256, 0.0], [15.8093262, -4.4874401, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1643}, "geometry": {"type": "Polygon", "coordinates": [[[15.813446, -4.4874401, 0.0], [15.8189392, -4.4874401, 0.0], [15.8189392, -4.4792256, 0.0], [15.813446, -4.4792256, 0.0], [15.813446, -4.4874401, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1644}, "geometry": {"type": "Polygon", "coordinates": [[[15.8573914, -4.4888092, 0.0], [15.8642578, -4.4888092, 0.0], [15.8642578, -4.4833329, 0.0], [15.8573914, -4.4833329, 0.0], [15.8573914, -4.4888092, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1645}, "geometry": {"type": "Polygon", "coordinates": [[[15.8573914, -4.4942855, 0.0], [15.8615112, -4.4942855, 0.0], [15.8615112, -4.4888092, 0.0], [15.8573914, -4.4888092, 0.0], [15.8573914, -4.4942855, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1646}, "geometry": {"type": "Polygon", "coordinates": [[[15.6816101, -4.5175593, 0.0], [15.68573, -4.5175593, 0.0], [15.68573, -4.5093451, 0.0], [15.6816101, -4.5093451, 0.0], [15.6816101, -4.5175593, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1647}, "geometry": {"type": "Polygon", "coordinates": [[[15.6816101, -4.5271424, 0.0], [15.68573, -4.5271424, 0.0], [15.68573, -4.5175593, 0.0], [15.6816101, -4.5175593, 0.0], [15.6816101, -4.5271424, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1648}, "geometry": {"type": "Polygon", "coordinates": [[[15.7489014, -4.5449393, 0.0], [15.7543945, -4.5449393, 0.0], [15.7543945, -4.5353564, 0.0], [15.7489014, -4.5353564, 0.0], [15.7489014, -4.5449393, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1649}, "geometry": {"type": "Polygon", "coordinates": [[[15.737915, -4.709197, 0.0], [15.7461548, -4.709197, 0.0], [15.7461548, -4.7037224, 0.0], [15.737915, -4.7037224, 0.0], [15.737915, -4.709197, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1650}, "geometry": {"type": "Polygon", "coordinates": [[[15.737915, -4.7160403, 0.0], [15.7420349, -4.7160403, 0.0], [15.7420349, -4.709197, 0.0], [15.737915, -4.709197, 0.0], [15.737915, -4.7160403, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1651}, "geometry": {"type": "Polygon", "coordinates": [[[15.7324219, -4.8939406, 0.0], [15.737915, -4.8939406, 0.0], [15.737915, -4.891204, 0.0], [15.7324219, -4.891204, 0.0], [15.7324219, -4.8939406, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1652}, "geometry": {"type": "Polygon", "coordinates": [[[15.7392883, -4.8925723, 0.0], [15.7447815, -4.8925723, 0.0], [15.7447815, -4.8843625, 0.0], [15.7392883, -4.8843625, 0.0], [15.7392883, -4.8925723, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1653}, "geometry": {"type": "Polygon", "coordinates": [[[15.6555176, -4.8925723, 0.0], [15.6582642, -4.8925723, 0.0], [15.6582642, -4.8884674, 0.0], [15.6555176, -4.8884674, 0.0], [15.6555176, -4.8925723, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1654}, "geometry": {"type": "Polygon", "coordinates": [[[15.6555176, -4.8980454, 0.0], [15.6610107, -4.8980454, 0.0], [15.6610107, -4.8925723, 0.0], [15.6555176, -4.8925723, 0.0], [15.6555176, -4.8980454, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1655}, "geometry": {"type": "Polygon", "coordinates": [[[15.8738708, -4.0067401, 0.0], [15.8779907, -4.0067401, 0.0], [15.8779907, -4.0026302, 0.0], [15.8738708, -4.0026302, 0.0], [15.8738708, -4.0067401, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1656}, "geometry": {"type": "Polygon", "coordinates": [[[15.8779907, -4.0067401, 0.0], [15.8834839, -4.0067401, 0.0], [15.8834839, -3.9985204, 0.0], [15.8779907, -3.9985204, 0.0], [15.8779907, -4.0067401, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1657}, "geometry": {"type": "Polygon", "coordinates": [[[15.869751, -4.0149596, 0.0], [15.8752441, -4.0149596, 0.0], [15.8752441, -4.00811, 0.0], [15.869751, -4.00811, 0.0], [15.869751, -4.0149596, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1658}, "geometry": {"type": "Polygon", "coordinates": [[[15.7200623, -4.0355082, 0.0], [15.7214355, -4.0355082, 0.0], [15.7214355, -4.0341383, 0.0], [15.7200623, -4.0341383, 0.0], [15.7200623, -4.0355082, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1659}, "geometry": {"type": "Polygon", "coordinates": [[[15.7228088, -4.0368781, 0.0], [15.7269287, -4.0368781, 0.0], [15.7269287, -4.0327684, 0.0], [15.7228088, -4.0327684, 0.0], [15.7228088, -4.0368781, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1660}, "geometry": {"type": "Polygon", "coordinates": [[[15.7269287, -4.0327684, 0.0], [15.7337952, -4.0327684, 0.0], [15.7337952, -4.0286587, 0.0], [15.7269287, -4.0286587, 0.0], [15.7269287, -4.0327684, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1661}, "geometry": {"type": "Polygon", "coordinates": [[[15.7269287, -4.0382479, 0.0], [15.7351685, -4.0382479, 0.0], [15.7351685, -4.0327684, 0.0], [15.7269287, -4.0327684, 0.0], [15.7269287, -4.0382479, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1662}, "geometry": {"type": "Polygon", "coordinates": [[[15.6816101, -4.0683848, 0.0], [15.68573, -4.0683848, 0.0], [15.68573, -4.0601658, 0.0], [15.6816101, -4.0601658, 0.0], [15.6816101, -4.0683848, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1663}, "geometry": {"type": "Polygon", "coordinates": [[[15.6871033, -4.0656451, 0.0], [15.6912231, -4.0656451, 0.0], [15.6912231, -4.0642753, 0.0], [15.6871033, -4.0642753, 0.0], [15.6871033, -4.0656451, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1664}, "geometry": {"type": "Polygon", "coordinates": [[[15.6788635, -4.0724943, 0.0], [15.6843567, -4.0724943, 0.0], [15.6843567, -4.0683848, 0.0], [15.6788635, -4.0683848, 0.0], [15.6788635, -4.0724943, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1665}, "geometry": {"type": "Polygon", "coordinates": [[[15.6774902, -4.0766037, 0.0], [15.6843567, -4.0766037, 0.0], [15.6843567, -4.0724943, 0.0], [15.6774902, -4.0724943, 0.0], [15.6774902, -4.0766037, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1666}, "geometry": {"type": "Polygon", "coordinates": [[[15.6939697, -4.0752339, 0.0], [15.7008362, -4.0752339, 0.0], [15.7008362, -4.0711244, 0.0], [15.6939697, -4.0711244, 0.0], [15.6939697, -4.0752339, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1667}, "geometry": {"type": "Polygon", "coordinates": [[[15.6980896, -4.0807132, 0.0], [15.7008362, -4.0807132, 0.0], [15.7008362, -4.0766037, 0.0], [15.6980896, -4.0766037, 0.0], [15.6980896, -4.0807132, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1668}, "geometry": {"type": "Polygon", "coordinates": [[[15.7008362, -4.0779735, 0.0], [15.7035828, -4.0779735, 0.0], [15.7035828, -4.0752339, 0.0], [15.7008362, -4.0752339, 0.0], [15.7008362, -4.0779735, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1669}, "geometry": {"type": "Polygon", "coordinates": [[[15.7035828, -4.0779735, 0.0], [15.7077026, -4.0779735, 0.0], [15.7077026, -4.0752339, 0.0], [15.7035828, -4.0752339, 0.0], [15.7035828, -4.0779735, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1670}, "geometry": {"type": "Polygon", "coordinates": [[[15.6280518, -4.0834528, 0.0], [15.6307983, -4.0834528, 0.0], [15.6307983, -4.0807132, 0.0], [15.6280518, -4.0807132, 0.0], [15.6280518, -4.0834528, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1671}, "geometry": {"type": "Polygon", "coordinates": [[[15.6321716, -4.0861924, 0.0], [15.6376648, -4.0861924, 0.0], [15.6376648, -4.0807132, 0.0], [15.6321716, -4.0807132, 0.0], [15.6321716, -4.0861924, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1672}, "geometry": {"type": "Polygon", "coordinates": [[[15.7983398, -4.0985205, 0.0], [15.8024597, -4.0985205, 0.0], [15.8024597, -4.0957809, 0.0], [15.7983398, -4.0957809, 0.0], [15.7983398, -4.0985205, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1673}, "geometry": {"type": "Polygon", "coordinates": [[[15.803833, -4.10126, 0.0], [15.8065796, -4.10126, 0.0], [15.8065796, -4.0985205, 0.0], [15.803833, -4.0985205, 0.0], [15.803833, -4.10126, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1674}, "geometry": {"type": "Polygon", "coordinates": [[[15.6788635, -4.1039996, 0.0], [15.6816101, -4.1039996, 0.0], [15.6816101, -4.0998903, 0.0], [15.6788635, -4.0998903, 0.0], [15.6788635, -4.1039996, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1675}, "geometry": {"type": "Polygon", "coordinates": [[[15.6788635, -4.1081089, 0.0], [15.6829834, -4.1081089, 0.0], [15.6829834, -4.1039996, 0.0], [15.6788635, -4.1039996, 0.0], [15.6788635, -4.1081089, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1676}, "geometry": {"type": "Polygon", "coordinates": [[[15.6733704, -4.1163274, 0.0], [15.6761169, -4.1163274, 0.0], [15.6761169, -4.1122182, 0.0], [15.6733704, -4.1122182, 0.0], [15.6733704, -4.1163274, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1677}, "geometry": {"type": "Polygon", "coordinates": [[[15.6774902, -4.1176972, 0.0], [15.6829834, -4.1176972, 0.0], [15.6829834, -4.1081089, 0.0], [15.6774902, -4.1081089, 0.0], [15.6774902, -4.1176972, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1678}, "geometry": {"type": "Polygon", "coordinates": [[[15.8930969, -4.1094786, 0.0], [15.8972168, -4.1094786, 0.0], [15.8972168, -4.1026298, 0.0], [15.8930969, -4.1026298, 0.0], [15.8930969, -4.1094786, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1679}, "geometry": {"type": "Polygon", "coordinates": [[[15.8972168, -4.1094786, 0.0], [15.90271, -4.1094786, 0.0], [15.90271, -4.10126, 0.0], [15.8972168, -4.10126, 0.0], [15.8972168, -4.1094786, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1680}, "geometry": {"type": "Polygon", "coordinates": [[[15.8903503, -4.1176972, 0.0], [15.8958435, -4.1176972, 0.0], [15.8958435, -4.1094786, 0.0], [15.8903503, -4.1094786, 0.0], [15.8903503, -4.1176972, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1681}, "geometry": {"type": "Polygon", "coordinates": [[[15.8958435, -4.1163274, 0.0], [15.9013367, -4.1163274, 0.0], [15.9013367, -4.1094786, 0.0], [15.8958435, -4.1094786, 0.0], [15.8958435, -4.1163274, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1682}, "geometry": {"type": "Polygon", "coordinates": [[[15.68573, -4.1533098, 0.0], [15.6912231, -4.1533098, 0.0], [15.6912231, -4.1492007, 0.0], [15.68573, -4.1492007, 0.0], [15.68573, -4.1533098, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1683}, "geometry": {"type": "Polygon", "coordinates": [[[15.6884766, -4.1587885, 0.0], [15.6912231, -4.1587885, 0.0], [15.6912231, -4.1533098, 0.0], [15.6884766, -4.1533098, 0.0], [15.6884766, -4.1587885, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1684}, "geometry": {"type": "Polygon", "coordinates": [[[15.6939697, -4.1546794, 0.0], [15.6980896, -4.1546794, 0.0], [15.6980896, -4.1492007, 0.0], [15.6939697, -4.1492007, 0.0], [15.6939697, -4.1546794, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1685}, "geometry": {"type": "Polygon", "coordinates": [[[15.6912231, -4.1601582, 0.0], [15.6939697, -4.1601582, 0.0], [15.6939697, -4.1546794, 0.0], [15.6912231, -4.1546794, 0.0], [15.6912231, -4.1601582, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1686}, "geometry": {"type": "Polygon", "coordinates": [[[15.8230591, -4.1560491, 0.0], [15.827179, -4.1560491, 0.0], [15.827179, -4.1519401, 0.0], [15.8230591, -4.1519401, 0.0], [15.8230591, -4.1560491, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1687}, "geometry": {"type": "Polygon", "coordinates": [[[15.827179, -4.1574188, 0.0], [15.8312988, -4.1574188, 0.0], [15.8312988, -4.1533098, 0.0], [15.827179, -4.1533098, 0.0], [15.827179, -4.1574188, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1688}, "geometry": {"type": "Polygon", "coordinates": [[[15.8312988, -4.1615278, 0.0], [15.8409119, -4.1615278, 0.0], [15.8409119, -4.1560491, 0.0], [15.8312988, -4.1560491, 0.0], [15.8312988, -4.1615278, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1689}, "geometry": {"type": "Polygon", "coordinates": [[[15.7763672, -4.1683761, 0.0], [15.7832336, -4.1683761, 0.0], [15.7832336, -4.1642672, 0.0], [15.7763672, -4.1642672, 0.0], [15.7763672, -4.1683761, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1690}, "geometry": {"type": "Polygon", "coordinates": [[[15.7832336, -4.1683761, 0.0], [15.7901001, -4.1683761, 0.0], [15.7901001, -4.1601582, 0.0], [15.7832336, -4.1601582, 0.0], [15.7832336, -4.1683761, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1691}, "geometry": {"type": "Polygon", "coordinates": [[[15.7791138, -4.1724851, 0.0], [15.7818604, -4.1724851, 0.0], [15.7818604, -4.1683761, 0.0], [15.7791138, -4.1683761, 0.0], [15.7791138, -4.1724851, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1692}, "geometry": {"type": "Polygon", "coordinates": [[[15.7804871, -4.176594, 0.0], [15.7832336, -4.176594, 0.0], [15.7832336, -4.1724851, 0.0], [15.7804871, -4.1724851, 0.0], [15.7804871, -4.176594, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1693}, "geometry": {"type": "Polygon", "coordinates": [[[15.6637573, -4.1930296, 0.0], [15.6678772, -4.1930296, 0.0], [15.6678772, -4.1889207, 0.0], [15.6637573, -4.1889207, 0.0], [15.6637573, -4.1930296, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1694}, "geometry": {"type": "Polygon", "coordinates": [[[15.6610107, -4.198508, 0.0], [15.6651306, -4.198508, 0.0], [15.6651306, -4.1930296, 0.0], [15.6610107, -4.1930296, 0.0], [15.6610107, -4.198508, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1695}, "geometry": {"type": "Polygon", "coordinates": [[[15.6513977, -4.2039865, 0.0], [15.6596375, -4.2039865, 0.0], [15.6596375, -4.1998777, 0.0], [15.6513977, -4.1998777, 0.0], [15.6513977, -4.2039865, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1696}, "geometry": {"type": "Polygon", "coordinates": [[[15.6513977, -4.2094648, 0.0], [15.6582642, -4.2094648, 0.0], [15.6582642, -4.2039865, 0.0], [15.6513977, -4.2039865, 0.0], [15.6513977, -4.2094648, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1697}, "geometry": {"type": "Polygon", "coordinates": [[[15.619812, -4.1998777, 0.0], [15.6253052, -4.1998777, 0.0], [15.6253052, -4.1943992, 0.0], [15.619812, -4.1943992, 0.0], [15.619812, -4.1998777, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1698}, "geometry": {"type": "Polygon", "coordinates": [[[15.6184387, -4.2067256, 0.0], [15.6280518, -4.2067256, 0.0], [15.6280518, -4.1998777, 0.0], [15.6184387, -4.1998777, 0.0], [15.6184387, -4.2067256, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1699}, "geometry": {"type": "Polygon", "coordinates": [[[15.6280518, -4.205356, 0.0], [15.6321716, -4.205356, 0.0], [15.6321716, -4.1971384, 0.0], [15.6280518, -4.1971384, 0.0], [15.6280518, -4.205356, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1700}, "geometry": {"type": "Polygon", "coordinates": [[[15.6321716, -4.2012473, 0.0], [15.6376648, -4.2012473, 0.0], [15.6376648, -4.1971384, 0.0], [15.6321716, -4.1971384, 0.0], [15.6321716, -4.2012473, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1701}, "geometry": {"type": "Polygon", "coordinates": [[[15.8354187, -4.2026169, 0.0], [15.8381653, -4.2026169, 0.0], [15.8381653, -4.198508, 0.0], [15.8354187, -4.198508, 0.0], [15.8354187, -4.2026169, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1702}, "geometry": {"type": "Polygon", "coordinates": [[[15.8381653, -4.2026169, 0.0], [15.8422852, -4.2026169, 0.0], [15.8422852, -4.198508, 0.0], [15.8381653, -4.198508, 0.0], [15.8381653, -4.2026169, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1703}, "geometry": {"type": "Polygon", "coordinates": [[[15.8436584, -4.2026169, 0.0], [15.846405, -4.2026169, 0.0], [15.846405, -4.1957688, 0.0], [15.8436584, -4.1957688, 0.0], [15.8436584, -4.2026169, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1704}, "geometry": {"type": "Polygon", "coordinates": [[[15.8422852, -4.2094648, 0.0], [15.8505249, -4.2094648, 0.0], [15.8505249, -4.2026169, 0.0], [15.8422852, -4.2026169, 0.0], [15.8422852, -4.2094648, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1705}, "geometry": {"type": "Polygon", "coordinates": [[[15.770874, -4.221791, 0.0], [15.7791138, -4.221791, 0.0], [15.7791138, -4.2176823, 0.0], [15.770874, -4.2176823, 0.0], [15.770874, -4.221791, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1706}, "geometry": {"type": "Polygon", "coordinates": [[[15.7763672, -4.2272692, 0.0], [15.7791138, -4.2272692, 0.0], [15.7791138, -4.221791, 0.0], [15.7763672, -4.221791, 0.0], [15.7763672, -4.2272692, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1707}, "geometry": {"type": "Polygon", "coordinates": [[[15.7791138, -4.2245301, 0.0], [15.7846069, -4.2245301, 0.0], [15.7846069, -4.2190519, 0.0], [15.7791138, -4.2190519, 0.0], [15.7791138, -4.2245301, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1708}, "geometry": {"type": "Polygon", "coordinates": [[[15.6967163, -4.2300083, 0.0], [15.7035828, -4.2300083, 0.0], [15.7035828, -4.2231606, 0.0], [15.6967163, -4.2231606, 0.0], [15.6967163, -4.2300083, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1709}, "geometry": {"type": "Polygon", "coordinates": [[[15.695343, -4.2368561, 0.0], [15.7022095, -4.2368561, 0.0], [15.7022095, -4.2300083, 0.0], [15.695343, -4.2300083, 0.0], [15.695343, -4.2368561, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1710}, "geometry": {"type": "Polygon", "coordinates": [[[15.7997131, -4.2368561, 0.0], [15.803833, -4.2368561, 0.0], [15.803833, -4.2327474, 0.0], [15.7997131, -4.2327474, 0.0], [15.7997131, -4.2368561, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1711}, "geometry": {"type": "Polygon", "coordinates": [[[15.803833, -4.2423342, 0.0], [15.8093262, -4.2423342, 0.0], [15.8093262, -4.234117, 0.0], [15.803833, -4.234117, 0.0], [15.803833, -4.2423342, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1712}, "geometry": {"type": "Polygon", "coordinates": [[[15.6060791, -4.2532903, 0.0], [15.610199, -4.2532903, 0.0], [15.610199, -4.2478123, 0.0], [15.6060791, -4.2478123, 0.0], [15.6060791, -4.2532903, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1713}, "geometry": {"type": "Polygon", "coordinates": [[[15.6115723, -4.2546598, 0.0], [15.6170654, -4.2546598, 0.0], [15.6170654, -4.2478123, 0.0], [15.6115723, -4.2478123, 0.0], [15.6115723, -4.2546598, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1714}, "geometry": {"type": "Polygon", "coordinates": [[[15.8285522, -4.2519208, 0.0], [15.8354187, -4.2519208, 0.0], [15.8354187, -4.2450732, 0.0], [15.8285522, -4.2450732, 0.0], [15.8285522, -4.2519208, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1715}, "geometry": {"type": "Polygon", "coordinates": [[[15.7997131, -4.2587684, 0.0], [15.8052063, -4.2587684, 0.0], [15.8052063, -4.2491818, 0.0], [15.7997131, -4.2491818, 0.0], [15.7997131, -4.2587684, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1716}, "geometry": {"type": "Polygon", "coordinates": [[[15.8052063, -4.2560294, 0.0], [15.8106995, -4.2560294, 0.0], [15.8106995, -4.2505513, 0.0], [15.8052063, -4.2505513, 0.0], [15.8052063, -4.2560294, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1717}, "geometry": {"type": "Polygon", "coordinates": [[[15.7269287, -4.2628768, 0.0], [15.7296753, -4.2628768, 0.0], [15.7296753, -4.2560294, 0.0], [15.7269287, -4.2560294, 0.0], [15.7269287, -4.2628768, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1718}, "geometry": {"type": "Polygon", "coordinates": [[[15.7296753, -4.2628768, 0.0], [15.7337952, -4.2628768, 0.0], [15.7337952, -4.2587684, 0.0], [15.7296753, -4.2587684, 0.0], [15.7296753, -4.2628768, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1719}, "geometry": {"type": "Polygon", "coordinates": [[[15.7351685, -4.2642463, 0.0], [15.7365417, -4.2642463, 0.0], [15.7365417, -4.2628768, 0.0], [15.7351685, -4.2628768, 0.0], [15.7351685, -4.2642463, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1720}, "geometry": {"type": "Polygon", "coordinates": [[[15.7337952, -4.2697243, 0.0], [15.7365417, -4.2697243, 0.0], [15.7365417, -4.2656158, 0.0], [15.7337952, -4.2656158, 0.0], [15.7337952, -4.2697243, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1721}, "geometry": {"type": "Polygon", "coordinates": [[[15.8752441, -4.2820495, 0.0], [15.8766174, -4.2820495, 0.0], [15.8766174, -4.28068, 0.0], [15.8752441, -4.28068, 0.0], [15.8752441, -4.2820495, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1722}, "geometry": {"type": "Polygon", "coordinates": [[[15.8779907, -4.2820495, 0.0], [15.8821106, -4.2820495, 0.0], [15.8821106, -4.2765716, 0.0], [15.8779907, -4.2765716, 0.0], [15.8779907, -4.2820495, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1723}, "geometry": {"type": "Polygon", "coordinates": [[[15.8752441, -4.2888967, 0.0], [15.8807373, -4.2888967, 0.0], [15.8807373, -4.2834189, 0.0], [15.8752441, -4.2834189, 0.0], [15.8752441, -4.2888967, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1724}, "geometry": {"type": "Polygon", "coordinates": [[[15.8807373, -4.2875273, 0.0], [15.8862305, -4.2875273, 0.0], [15.8862305, -4.2834189, 0.0], [15.8807373, -4.2834189, 0.0], [15.8807373, -4.2875273, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1725}, "geometry": {"type": "Polygon", "coordinates": [[[15.9617615, -4.2888967, 0.0], [15.9658813, -4.2888967, 0.0], [15.9658813, -4.2861579, 0.0], [15.9617615, -4.2861579, 0.0], [15.9617615, -4.2888967, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1726}, "geometry": {"type": "Polygon", "coordinates": [[[15.9617615, -4.2930051, 0.0], [15.9658813, -4.2930051, 0.0], [15.9658813, -4.2888967, 0.0], [15.9617615, -4.2888967, 0.0], [15.9617615, -4.2930051, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1727}, "geometry": {"type": "Polygon", "coordinates": [[[15.8230591, -4.2971134, 0.0], [15.8299255, -4.2971134, 0.0], [15.8299255, -4.2888967, 0.0], [15.8230591, -4.2888967, 0.0], [15.8230591, -4.2971134, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1728}, "geometry": {"type": "Polygon", "coordinates": [[[15.8299255, -4.2971134, 0.0], [15.8381653, -4.2971134, 0.0], [15.8381653, -4.2943745, 0.0], [15.8299255, -4.2943745, 0.0], [15.8299255, -4.2971134, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1729}, "geometry": {"type": "Polygon", "coordinates": [[[15.8244324, -4.3053299, 0.0], [15.8299255, -4.3053299, 0.0], [15.8299255, -4.2971134, 0.0], [15.8244324, -4.2971134, 0.0], [15.8244324, -4.3053299, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1730}, "geometry": {"type": "Polygon", "coordinates": [[[15.8312988, -4.2998522, 0.0], [15.8381653, -4.2998522, 0.0], [15.8381653, -4.2971134, 0.0], [15.8312988, -4.2971134, 0.0], [15.8312988, -4.2998522, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1731}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.3080687, 0.0], [15.7749939, -4.3080687, 0.0], [15.7749939, -4.3025911, 0.0], [15.7667542, -4.3025911, 0.0], [15.7667542, -4.3080687, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1732}, "geometry": {"type": "Polygon", "coordinates": [[[15.7681274, -4.3135464, 0.0], [15.7736206, -4.3135464, 0.0], [15.7736206, -4.3080687, 0.0], [15.7681274, -4.3080687, 0.0], [15.7681274, -4.3135464, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1733}, "geometry": {"type": "Polygon", "coordinates": [[[15.7763672, -4.3080687, 0.0], [15.7846069, -4.3080687, 0.0], [15.7846069, -4.3025911, 0.0], [15.7763672, -4.3025911, 0.0], [15.7763672, -4.3080687, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1734}, "geometry": {"type": "Polygon", "coordinates": [[[15.7763672, -4.3135464, 0.0], [15.7832336, -4.3135464, 0.0], [15.7832336, -4.3080687, 0.0], [15.7763672, -4.3080687, 0.0], [15.7763672, -4.3135464, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1735}, "geometry": {"type": "Polygon", "coordinates": [[[15.8175659, -4.3149158, 0.0], [15.8203125, -4.3149158, 0.0], [15.8203125, -4.3080687, 0.0], [15.8175659, -4.3080687, 0.0], [15.8175659, -4.3149158, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1736}, "geometry": {"type": "Polygon", "coordinates": [[[15.8161926, -4.3217627, 0.0], [15.8230591, -4.3217627, 0.0], [15.8230591, -4.3149158, 0.0], [15.8161926, -4.3149158, 0.0], [15.8161926, -4.3217627, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1737}, "geometry": {"type": "Polygon", "coordinates": [[[15.8258057, -4.3149158, 0.0], [15.8299255, -4.3149158, 0.0], [15.8299255, -4.3094381, 0.0], [15.8258057, -4.3094381, 0.0], [15.8258057, -4.3149158, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1738}, "geometry": {"type": "Polygon", "coordinates": [[[15.8230591, -4.3217627, 0.0], [15.8299255, -4.3217627, 0.0], [15.8299255, -4.3149158, 0.0], [15.8230591, -4.3149158, 0.0], [15.8230591, -4.3217627, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1739}, "geometry": {"type": "Polygon", "coordinates": [[[15.7585144, -4.3190239, 0.0], [15.7667542, -4.3190239, 0.0], [15.7667542, -4.3108076, 0.0], [15.7585144, -4.3108076, 0.0], [15.7585144, -4.3190239, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1740}, "geometry": {"type": "Polygon", "coordinates": [[[15.8093262, -4.3669511, 0.0], [15.8148193, -4.3669511, 0.0], [15.8148193, -4.3573659, 0.0], [15.8093262, -4.3573659, 0.0], [15.8093262, -4.3669511, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1741}, "geometry": {"type": "Polygon", "coordinates": [[[15.8148193, -4.3683204, 0.0], [15.8203125, -4.3683204, 0.0], [15.8203125, -4.3628432, 0.0], [15.8148193, -4.3628432, 0.0], [15.8148193, -4.3683204, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1742}, "geometry": {"type": "Polygon", "coordinates": [[[15.7901001, -4.3751669, 0.0], [15.7969666, -4.3751669, 0.0], [15.7969666, -4.3696897, 0.0], [15.7901001, -4.3696897, 0.0], [15.7901001, -4.3751669, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1743}, "geometry": {"type": "Polygon", "coordinates": [[[15.7887268, -4.3820133, 0.0], [15.79422, -4.3820133, 0.0], [15.79422, -4.3765362, 0.0], [15.7887268, -4.3765362, 0.0], [15.7887268, -4.3820133, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1744}, "geometry": {"type": "Polygon", "coordinates": [[[15.7887268, -4.3874904, 0.0], [15.79422, -4.3874904, 0.0], [15.79422, -4.3833826, 0.0], [15.7887268, -4.3833826, 0.0], [15.7887268, -4.3874904, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1745}, "geometry": {"type": "Polygon", "coordinates": [[[15.7873535, -4.395706, 0.0], [15.79422, -4.395706, 0.0], [15.79422, -4.3888597, 0.0], [15.7873535, -4.3888597, 0.0], [15.7873535, -4.395706, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1746}, "geometry": {"type": "Polygon", "coordinates": [[[15.8930969, -4.3724283, 0.0], [15.8985901, -4.3724283, 0.0], [15.8985901, -4.3669511, 0.0], [15.8930969, -4.3669511, 0.0], [15.8930969, -4.3724283, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1747}, "geometry": {"type": "Polygon", "coordinates": [[[15.8917236, -4.3792748, 0.0], [15.8972168, -4.3792748, 0.0], [15.8972168, -4.3724283, 0.0], [15.8917236, -4.3724283, 0.0], [15.8917236, -4.3792748, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1748}, "geometry": {"type": "Polygon", "coordinates": [[[15.8903503, -4.3847519, 0.0], [15.8958435, -4.3847519, 0.0], [15.8958435, -4.3792748, 0.0], [15.8903503, -4.3792748, 0.0], [15.8903503, -4.3847519, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1749}, "geometry": {"type": "Polygon", "coordinates": [[[15.8876038, -4.3915982, 0.0], [15.8917236, -4.3915982, 0.0], [15.8917236, -4.3847519, 0.0], [15.8876038, -4.3847519, 0.0], [15.8876038, -4.3915982, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1750}, "geometry": {"type": "Polygon", "coordinates": [[[15.827179, -4.3943367, 0.0], [15.8312988, -4.3943367, 0.0], [15.8312988, -4.3861211, 0.0], [15.827179, -4.3861211, 0.0], [15.827179, -4.3943367, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1751}, "geometry": {"type": "Polygon", "coordinates": [[[15.8340454, -4.3943367, 0.0], [15.8354187, -4.3943367, 0.0], [15.8354187, -4.3929674, 0.0], [15.8340454, -4.3929674, 0.0], [15.8340454, -4.3943367, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1752}, "geometry": {"type": "Polygon", "coordinates": [[[15.8285522, -4.4052907, 0.0], [15.8326721, -4.4052907, 0.0], [15.8326721, -4.395706, 0.0], [15.8285522, -4.395706, 0.0], [15.8285522, -4.4052907, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1753}, "geometry": {"type": "Polygon", "coordinates": [[[15.8340454, -4.4052907, 0.0], [15.8409119, -4.4052907, 0.0], [15.8409119, -4.4011829, 0.0], [15.8340454, -4.4011829, 0.0], [15.8340454, -4.4052907, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1754}, "geometry": {"type": "Polygon", "coordinates": [[[15.8834839, -4.3998137, 0.0], [15.8889771, -4.3998137, 0.0], [15.8889771, -4.3929674, 0.0], [15.8834839, -4.3929674, 0.0], [15.8834839, -4.3998137, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1755}, "geometry": {"type": "Polygon", "coordinates": [[[15.8848572, -4.4080291, 0.0], [15.8917236, -4.4080291, 0.0], [15.8917236, -4.3998137, 0.0], [15.8848572, -4.3998137, 0.0], [15.8848572, -4.4080291, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1756}, "geometry": {"type": "Polygon", "coordinates": [[[15.8917236, -4.4093983, 0.0], [15.8958435, -4.4093983, 0.0], [15.8958435, -4.4011829, 0.0], [15.8917236, -4.4011829, 0.0], [15.8917236, -4.4093983, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1757}, "geometry": {"type": "Polygon", "coordinates": [[[15.8958435, -4.4107676, 0.0], [15.9013367, -4.4107676, 0.0], [15.9013367, -4.4011829, 0.0], [15.8958435, -4.4011829, 0.0], [15.8958435, -4.4107676, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1758}, "geometry": {"type": "Polygon", "coordinates": [[[15.7873535, -4.4039214, 0.0], [15.7914734, -4.4039214, 0.0], [15.7914734, -4.3998137, 0.0], [15.7873535, -4.3998137, 0.0], [15.7873535, -4.4039214, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1759}, "geometry": {"type": "Polygon", "coordinates": [[[15.7914734, -4.4066599, 0.0], [15.7969666, -4.4066599, 0.0], [15.7969666, -4.3984445, 0.0], [15.7914734, -4.3984445, 0.0], [15.7914734, -4.4066599, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1760}, "geometry": {"type": "Polygon", "coordinates": [[[15.7255554, -4.4080291, 0.0], [15.7269287, -4.4080291, 0.0], [15.7269287, -4.4066599, 0.0], [15.7255554, -4.4066599, 0.0], [15.7255554, -4.4080291, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1761}, "geometry": {"type": "Polygon", "coordinates": [[[15.7228088, -4.413506, 0.0], [15.7255554, -4.413506, 0.0], [15.7255554, -4.4093983, 0.0], [15.7228088, -4.4093983, 0.0], [15.7228088, -4.413506, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1762}, "geometry": {"type": "Polygon", "coordinates": [[[15.718689, -4.4176137, 0.0], [15.7228088, -4.4176137, 0.0], [15.7228088, -4.413506, 0.0], [15.718689, -4.413506, 0.0], [15.718689, -4.4176137, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1763}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.4217213, 0.0], [15.7241821, -4.4217213, 0.0], [15.7241821, -4.4189829, 0.0], [15.7173157, -4.4189829, 0.0], [15.7173157, -4.4217213, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1764}, "geometry": {"type": "Polygon", "coordinates": [[[15.9274292, -4.4285673, 0.0], [15.9301758, -4.4285673, 0.0], [15.9301758, -4.4258289, 0.0], [15.9274292, -4.4258289, 0.0], [15.9274292, -4.4285673, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1765}, "geometry": {"type": "Polygon", "coordinates": [[[15.9260559, -4.4326748, 0.0], [15.9315491, -4.4326748, 0.0], [15.9315491, -4.4285673, 0.0], [15.9260559, -4.4285673, 0.0], [15.9260559, -4.4326748, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1766}, "geometry": {"type": "Polygon", "coordinates": [[[15.9274292, -4.4381515, 0.0], [15.9329224, -4.4381515, 0.0], [15.9329224, -4.4326748, 0.0], [15.9274292, -4.4326748, 0.0], [15.9274292, -4.4381515, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1767}, "geometry": {"type": "Polygon", "coordinates": [[[15.8203125, -4.4586888, 0.0], [15.8244324, -4.4586888, 0.0], [15.8244324, -4.4573197, 0.0], [15.8203125, -4.4573197, 0.0], [15.8203125, -4.4586888, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1768}, "geometry": {"type": "Polygon", "coordinates": [[[15.8258057, -4.4586888, 0.0], [15.8285522, -4.4586888, 0.0], [15.8285522, -4.4518431, 0.0], [15.8258057, -4.4518431, 0.0], [15.8258057, -4.4586888, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1769}, "geometry": {"type": "Polygon", "coordinates": [[[15.8175659, -4.4641654, 0.0], [15.8216858, -4.4641654, 0.0], [15.8216858, -4.460058, 0.0], [15.8175659, -4.460058, 0.0], [15.8175659, -4.4641654, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1770}, "geometry": {"type": "Polygon", "coordinates": [[[15.8230591, -4.4655345, 0.0], [15.8299255, -4.4655345, 0.0], [15.8299255, -4.4586888, 0.0], [15.8230591, -4.4586888, 0.0], [15.8230591, -4.4655345, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1771}, "geometry": {"type": "Polygon", "coordinates": [[[15.9178162, -4.486071, 0.0], [15.921936, -4.486071, 0.0], [15.921936, -4.4819638, 0.0], [15.9178162, -4.4819638, 0.0], [15.9178162, -4.486071, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1772}, "geometry": {"type": "Polygon", "coordinates": [[[15.9178162, -4.4901783, 0.0], [15.9233093, -4.4901783, 0.0], [15.9233093, -4.486071, 0.0], [15.9178162, -4.486071, 0.0], [15.9178162, -4.4901783, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1773}, "geometry": {"type": "Polygon", "coordinates": [[[15.9246826, -4.4901783, 0.0], [15.9260559, -4.4901783, 0.0], [15.9260559, -4.4888092, 0.0], [15.9246826, -4.4888092, 0.0], [15.9246826, -4.4901783, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1774}, "geometry": {"type": "Polygon", "coordinates": [[[15.9274292, -4.4956546, 0.0], [15.9315491, -4.4956546, 0.0], [15.9315491, -4.4901783, 0.0], [15.9274292, -4.4901783, 0.0], [15.9274292, -4.4956546, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1775}, "geometry": {"type": "Polygon", "coordinates": [[[15.7543945, -4.5422013, 0.0], [15.7571411, -4.5422013, 0.0], [15.7571411, -4.5353564, 0.0], [15.7543945, -4.5353564, 0.0], [15.7543945, -4.5422013, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1776}, "geometry": {"type": "Polygon", "coordinates": [[[15.7571411, -4.5408323, 0.0], [15.761261, -4.5408323, 0.0], [15.761261, -4.5353564, 0.0], [15.7571411, -4.5353564, 0.0], [15.7571411, -4.5408323, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1777}, "geometry": {"type": "Polygon", "coordinates": [[[15.6912231, -4.5641046, 0.0], [15.695343, -4.5641046, 0.0], [15.695343, -4.5613667, 0.0], [15.6912231, -4.5613667, 0.0], [15.6912231, -4.5641046, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1778}, "geometry": {"type": "Polygon", "coordinates": [[[15.6967163, -4.5613667, 0.0], [15.7008362, -4.5613667, 0.0], [15.7008362, -4.5586289, 0.0], [15.6967163, -4.5586289, 0.0], [15.6967163, -4.5613667, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1779}, "geometry": {"type": "Polygon", "coordinates": [[[15.6939697, -4.5709493, 0.0], [15.6980896, -4.5709493, 0.0], [15.6980896, -4.5654736, 0.0], [15.6939697, -4.5654736, 0.0], [15.6939697, -4.5709493, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1780}, "geometry": {"type": "Polygon", "coordinates": [[[15.6980896, -4.5723182, 0.0], [15.7022095, -4.5723182, 0.0], [15.7022095, -4.5695803, 0.0], [15.6980896, -4.5695803, 0.0], [15.6980896, -4.5723182, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1781}, "geometry": {"type": "Polygon", "coordinates": [[[15.7447815, -4.713303, 0.0], [15.7502747, -4.713303, 0.0], [15.7502747, -4.709197, 0.0], [15.7447815, -4.709197, 0.0], [15.7447815, -4.713303, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1782}, "geometry": {"type": "Polygon", "coordinates": [[[15.7502747, -4.713303, 0.0], [15.7557678, -4.713303, 0.0], [15.7557678, -4.7064597, 0.0], [15.7502747, -4.7064597, 0.0], [15.7502747, -4.713303, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1783}, "geometry": {"type": "Polygon", "coordinates": [[[15.7461548, -4.7201462, 0.0], [15.7502747, -4.7201462, 0.0], [15.7502747, -4.7146716, 0.0], [15.7461548, -4.7146716, 0.0], [15.7461548, -4.7201462, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1784}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -4.7146716, 0.0], [15.7543945, -4.7146716, 0.0], [15.7543945, -4.713303, 0.0], [15.7530212, -4.713303, 0.0], [15.7530212, -4.7146716, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1785}, "geometry": {"type": "Polygon", "coordinates": [[[15.6568909, -4.8638377, 0.0], [15.6596375, -4.8638377, 0.0], [15.6596375, -4.8597326, 0.0], [15.6568909, -4.8597326, 0.0], [15.6568909, -4.8638377, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1786}, "geometry": {"type": "Polygon", "coordinates": [[[15.652771, -4.8679427, 0.0], [15.6582642, -4.8679427, 0.0], [15.6582642, -4.8638377, 0.0], [15.652771, -4.8638377, 0.0], [15.652771, -4.8679427, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1787}, "geometry": {"type": "Polygon", "coordinates": [[[15.6486511, -4.8720477, 0.0], [15.6541443, -4.8720477, 0.0], [15.6541443, -4.8679427, 0.0], [15.6486511, -4.8679427, 0.0], [15.6486511, -4.8720477, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1788}, "geometry": {"type": "Polygon", "coordinates": [[[15.6472778, -4.8761527, 0.0], [15.6500244, -4.8761527, 0.0], [15.6500244, -4.8720477, 0.0], [15.6472778, -4.8720477, 0.0], [15.6472778, -4.8761527, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1789}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -4.8816259, 0.0], [15.7557678, -4.8816259, 0.0], [15.7557678, -4.8761527, 0.0], [15.7530212, -4.8761527, 0.0], [15.7530212, -4.8816259, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1790}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.8829942, 0.0], [15.7598877, -4.8829942, 0.0], [15.7598877, -4.8802576, 0.0], [15.7557678, -4.8802576, 0.0], [15.7557678, -4.8829942, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1791}, "geometry": {"type": "Polygon", "coordinates": [[[15.761261, -4.8747844, 0.0], [15.7681274, -4.8747844, 0.0], [15.7681274, -4.8679427, 0.0], [15.761261, -4.8679427, 0.0], [15.761261, -4.8747844, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1792}, "geometry": {"type": "Polygon", "coordinates": [[[15.7598877, -4.8816259, 0.0], [15.7667542, -4.8816259, 0.0], [15.7667542, -4.8747844, 0.0], [15.7598877, -4.8747844, 0.0], [15.7598877, -4.8816259, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1793}, "geometry": {"type": "Polygon", "coordinates": [[[15.8752441, -4.0108499, 0.0], [15.8821106, -4.0108499, 0.0], [15.8821106, -4.0067401, 0.0], [15.8752441, -4.0067401, 0.0], [15.8752441, -4.0108499, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1794}, "geometry": {"type": "Polygon", "coordinates": [[[15.8752441, -4.0149596, 0.0], [15.8821106, -4.0149596, 0.0], [15.8821106, -4.0108499, 0.0], [15.8752441, -4.0108499, 0.0], [15.8752441, -4.0149596, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1795}, "geometry": {"type": "Polygon", "coordinates": [[[15.6472778, -4.0724943, 0.0], [15.6541443, -4.0724943, 0.0], [15.6541443, -4.0683848, 0.0], [15.6472778, -4.0683848, 0.0], [15.6472778, -4.0724943, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1796}, "geometry": {"type": "Polygon", "coordinates": [[[15.6472778, -4.0779735, 0.0], [15.6541443, -4.0779735, 0.0], [15.6541443, -4.0724943, 0.0], [15.6472778, -4.0724943, 0.0], [15.6472778, -4.0779735, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1797}, "geometry": {"type": "Polygon", "coordinates": [[[15.6541443, -4.0711244, 0.0], [15.662384, -4.0711244, 0.0], [15.662384, -4.0642753, 0.0], [15.6541443, -4.0642753, 0.0], [15.6541443, -4.0711244, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1798}, "geometry": {"type": "Polygon", "coordinates": [[[15.6541443, -4.0793433, 0.0], [15.6610107, -4.0793433, 0.0], [15.6610107, -4.0711244, 0.0], [15.6541443, -4.0711244, 0.0], [15.6541443, -4.0793433, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1799}, "geometry": {"type": "Polygon", "coordinates": [[[15.6637573, -4.0642753, 0.0], [15.6692505, -4.0642753, 0.0], [15.6692505, -4.0560562, 0.0], [15.6637573, -4.0560562, 0.0], [15.6637573, -4.0642753, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1800}, "geometry": {"type": "Polygon", "coordinates": [[[15.6692505, -4.0629054, 0.0], [15.6747437, -4.0629054, 0.0], [15.6747437, -4.0533165, 0.0], [15.6692505, -4.0533165, 0.0], [15.6692505, -4.0629054, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1801}, "geometry": {"type": "Polygon", "coordinates": [[[15.6376648, -4.0807132, 0.0], [15.6390381, -4.0807132, 0.0], [15.6390381, -4.0793433, 0.0], [15.6376648, -4.0793433, 0.0], [15.6376648, -4.0807132, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1802}, "geometry": {"type": "Polygon", "coordinates": [[[15.6404114, -4.0793433, 0.0], [15.643158, -4.0793433, 0.0], [15.643158, -4.0766037, 0.0], [15.6404114, -4.0766037, 0.0], [15.6404114, -4.0793433, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1803}, "geometry": {"type": "Polygon", "coordinates": [[[15.6376648, -4.0903018, 0.0], [15.643158, -4.0903018, 0.0], [15.643158, -4.0848226, 0.0], [15.6376648, -4.0848226, 0.0], [15.6376648, -4.0903018, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1804}, "geometry": {"type": "Polygon", "coordinates": [[[15.6445312, -4.0916716, 0.0], [15.6486511, -4.0916716, 0.0], [15.6486511, -4.0875622, 0.0], [15.6445312, -4.0875622, 0.0], [15.6445312, -4.0916716, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1805}, "geometry": {"type": "Polygon", "coordinates": [[[15.7928467, -4.0916716, 0.0], [15.7955933, -4.0916716, 0.0], [15.7955933, -4.0875622, 0.0], [15.7928467, -4.0875622, 0.0], [15.7928467, -4.0916716, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1806}, "geometry": {"type": "Polygon", "coordinates": [[[15.7914734, -4.0957809, 0.0], [15.7955933, -4.0957809, 0.0], [15.7955933, -4.0916716, 0.0], [15.7914734, -4.0916716, 0.0], [15.7914734, -4.0957809, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1807}, "geometry": {"type": "Polygon", "coordinates": [[[15.7873535, -4.1053693, 0.0], [15.7914734, -4.1053693, 0.0], [15.7914734, -4.0957809, 0.0], [15.7873535, -4.0957809, 0.0], [15.7873535, -4.1053693, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1808}, "geometry": {"type": "Polygon", "coordinates": [[[15.7914734, -4.10126, 0.0], [15.7969666, -4.10126, 0.0], [15.7969666, -4.0957809, 0.0], [15.7914734, -4.0957809, 0.0], [15.7914734, -4.10126, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1809}, "geometry": {"type": "Polygon", "coordinates": [[[15.5566406, -4.1081089, 0.0], [15.5635071, -4.1081089, 0.0], [15.5635071, -4.1026298, 0.0], [15.5566406, -4.1026298, 0.0], [15.5566406, -4.1081089, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1810}, "geometry": {"type": "Polygon", "coordinates": [[[15.5593872, -4.1135879, 0.0], [15.5635071, -4.1135879, 0.0], [15.5635071, -4.1081089, 0.0], [15.5593872, -4.1081089, 0.0], [15.5593872, -4.1135879, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1811}, "geometry": {"type": "Polygon", "coordinates": [[[15.5635071, -4.1081089, 0.0], [15.5662537, -4.1081089, 0.0], [15.5662537, -4.1026298, 0.0], [15.5635071, -4.1026298, 0.0], [15.5635071, -4.1081089, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1812}, "geometry": {"type": "Polygon", "coordinates": [[[15.5635071, -4.1135879, 0.0], [15.5703735, -4.1135879, 0.0], [15.5703735, -4.1081089, 0.0], [15.5635071, -4.1081089, 0.0], [15.5635071, -4.1135879, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1813}, "geometry": {"type": "Polygon", "coordinates": [[[15.5552673, -4.1176972, 0.0], [15.5635071, -4.1176972, 0.0], [15.5635071, -4.1135879, 0.0], [15.5552673, -4.1135879, 0.0], [15.5552673, -4.1176972, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1814}, "geometry": {"type": "Polygon", "coordinates": [[[15.5552673, -4.1231761, 0.0], [15.5635071, -4.1231761, 0.0], [15.5635071, -4.1176972, 0.0], [15.5552673, -4.1176972, 0.0], [15.5552673, -4.1231761, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1815}, "geometry": {"type": "Polygon", "coordinates": [[[15.5635071, -4.1190669, 0.0], [15.5717468, -4.1190669, 0.0], [15.5717468, -4.1135879, 0.0], [15.5635071, -4.1135879, 0.0], [15.5635071, -4.1190669, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1816}, "geometry": {"type": "Polygon", "coordinates": [[[15.5635071, -4.1245459, 0.0], [15.5690002, -4.1245459, 0.0], [15.5690002, -4.1190669, 0.0], [15.5635071, -4.1190669, 0.0], [15.5635071, -4.1245459, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1817}, "geometry": {"type": "Polygon", "coordinates": [[[15.8573914, -4.1053693, 0.0], [15.8601379, -4.1053693, 0.0], [15.8601379, -4.1026298, 0.0], [15.8573914, -4.1026298, 0.0], [15.8573914, -4.1053693, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1818}, "geometry": {"type": "Polygon", "coordinates": [[[15.8587646, -4.1094786, 0.0], [15.8615112, -4.1094786, 0.0], [15.8615112, -4.1053693, 0.0], [15.8587646, -4.1053693, 0.0], [15.8587646, -4.1094786, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1819}, "geometry": {"type": "Polygon", "coordinates": [[[15.8532715, -4.1176972, 0.0], [15.8573914, -4.1176972, 0.0], [15.8573914, -4.1108484, 0.0], [15.8532715, -4.1108484, 0.0], [15.8532715, -4.1176972, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1820}, "geometry": {"type": "Polygon", "coordinates": [[[15.8573914, -4.1149577, 0.0], [15.8628845, -4.1149577, 0.0], [15.8628845, -4.1094786, 0.0], [15.8573914, -4.1094786, 0.0], [15.8573914, -4.1149577, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1821}, "geometry": {"type": "Polygon", "coordinates": [[[15.8518982, -4.1218064, 0.0], [15.8573914, -4.1218064, 0.0], [15.8573914, -4.1176972, 0.0], [15.8518982, -4.1176972, 0.0], [15.8518982, -4.1218064, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1822}, "geometry": {"type": "Polygon", "coordinates": [[[15.8505249, -4.1259156, 0.0], [15.8546448, -4.1259156, 0.0], [15.8546448, -4.1218064, 0.0], [15.8505249, -4.1218064, 0.0], [15.8505249, -4.1259156, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1823}, "geometry": {"type": "Polygon", "coordinates": [[[15.8505249, -4.1300248, 0.0], [15.8546448, -4.1300248, 0.0], [15.8546448, -4.1259156, 0.0], [15.8505249, -4.1259156, 0.0], [15.8505249, -4.1300248, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1824}, "geometry": {"type": "Polygon", "coordinates": [[[15.8477783, -4.1341339, 0.0], [15.8532715, -4.1341339, 0.0], [15.8532715, -4.1300248, 0.0], [15.8477783, -4.1300248, 0.0], [15.8477783, -4.1341339, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1825}, "geometry": {"type": "Polygon", "coordinates": [[[15.8326721, -4.1670065, 0.0], [15.836792, -4.1670065, 0.0], [15.836792, -4.1615278, 0.0], [15.8326721, -4.1615278, 0.0], [15.8326721, -4.1670065, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1826}, "geometry": {"type": "Polygon", "coordinates": [[[15.836792, -4.1670065, 0.0], [15.8409119, -4.1670065, 0.0], [15.8409119, -4.1615278, 0.0], [15.836792, -4.1615278, 0.0], [15.836792, -4.1670065, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1827}, "geometry": {"type": "Polygon", "coordinates": [[[15.7200623, -4.2094648, 0.0], [15.7255554, -4.2094648, 0.0], [15.7255554, -4.2039865, 0.0], [15.7200623, -4.2039865, 0.0], [15.7200623, -4.2094648, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1828}, "geometry": {"type": "Polygon", "coordinates": [[[15.7255554, -4.2067256, 0.0], [15.7324219, -4.2067256, 0.0], [15.7324219, -4.2039865, 0.0], [15.7255554, -4.2039865, 0.0], [15.7255554, -4.2067256, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1829}, "geometry": {"type": "Polygon", "coordinates": [[[15.7791138, -4.2286388, 0.0], [15.7832336, -4.2286388, 0.0], [15.7832336, -4.2245301, 0.0], [15.7791138, -4.2245301, 0.0], [15.7791138, -4.2286388, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1830}, "geometry": {"type": "Polygon", "coordinates": [[[15.7832336, -4.2300083, 0.0], [15.7873535, -4.2300083, 0.0], [15.7873535, -4.2258997, 0.0], [15.7832336, -4.2258997, 0.0], [15.7832336, -4.2300083, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1831}, "geometry": {"type": "Polygon", "coordinates": [[[15.6884766, -4.2437037, 0.0], [15.6939697, -4.2437037, 0.0], [15.6939697, -4.2382256, 0.0], [15.6884766, -4.2382256, 0.0], [15.6884766, -4.2437037, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1832}, "geometry": {"type": "Polygon", "coordinates": [[[15.6939697, -4.2437037, 0.0], [15.7008362, -4.2437037, 0.0], [15.7008362, -4.2368561, 0.0], [15.6939697, -4.2368561, 0.0], [15.6939697, -4.2437037, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1833}, "geometry": {"type": "Polygon", "coordinates": [[[15.6912231, -4.2450732, 0.0], [15.6925964, -4.2450732, 0.0], [15.6925964, -4.2437037, 0.0], [15.6912231, -4.2437037, 0.0], [15.6912231, -4.2450732, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1834}, "geometry": {"type": "Polygon", "coordinates": [[[15.6884766, -4.2505513, 0.0], [15.6925964, -4.2505513, 0.0], [15.6925964, -4.2464428, 0.0], [15.6884766, -4.2464428, 0.0], [15.6884766, -4.2505513, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1835}, "geometry": {"type": "Polygon", "coordinates": [[[15.8093262, -4.2382256, 0.0], [15.8148193, -4.2382256, 0.0], [15.8148193, -4.2327474, 0.0], [15.8093262, -4.2327474, 0.0], [15.8093262, -4.2382256, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1836}, "geometry": {"type": "Polygon", "coordinates": [[[15.8148193, -4.2382256, 0.0], [15.8203125, -4.2382256, 0.0], [15.8203125, -4.2286388, 0.0], [15.8148193, -4.2286388, 0.0], [15.8148193, -4.2382256, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1837}, "geometry": {"type": "Polygon", "coordinates": [[[15.8148193, -4.2450732, 0.0], [15.8203125, -4.2450732, 0.0], [15.8203125, -4.2382256, 0.0], [15.8148193, -4.2382256, 0.0], [15.8148193, -4.2450732, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1838}, "geometry": {"type": "Polygon", "coordinates": [[[15.6170654, -4.2532903, 0.0], [15.6225586, -4.2532903, 0.0], [15.6225586, -4.2478123, 0.0], [15.6170654, -4.2478123, 0.0], [15.6170654, -4.2532903, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1839}, "geometry": {"type": "Polygon", "coordinates": [[[15.6225586, -4.2532903, 0.0], [15.6280518, -4.2532903, 0.0], [15.6280518, -4.2464428, 0.0], [15.6225586, -4.2464428, 0.0], [15.6225586, -4.2532903, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1840}, "geometry": {"type": "Polygon", "coordinates": [[[15.6184387, -4.2560294, 0.0], [15.6239319, -4.2560294, 0.0], [15.6239319, -4.2532903, 0.0], [15.6184387, -4.2532903, 0.0], [15.6184387, -4.2560294, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1841}, "geometry": {"type": "Polygon", "coordinates": [[[15.6211853, -4.2601379, 0.0], [15.6239319, -4.2601379, 0.0], [15.6239319, -4.2573989, 0.0], [15.6211853, -4.2573989, 0.0], [15.6211853, -4.2601379, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1842}, "geometry": {"type": "Polygon", "coordinates": [[[15.8354187, -4.2519208, 0.0], [15.8395386, -4.2519208, 0.0], [15.8395386, -4.2437037, 0.0], [15.8354187, -4.2437037, 0.0], [15.8354187, -4.2519208, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1843}, "geometry": {"type": "Polygon", "coordinates": [[[15.8395386, -4.2519208, 0.0], [15.8436584, -4.2519208, 0.0], [15.8436584, -4.2464428, 0.0], [15.8395386, -4.2464428, 0.0], [15.8395386, -4.2519208, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1844}, "geometry": {"type": "Polygon", "coordinates": [[[15.8436584, -4.2505513, 0.0], [15.8477783, -4.2505513, 0.0], [15.8477783, -4.2437037, 0.0], [15.8436584, -4.2437037, 0.0], [15.8436584, -4.2505513, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1845}, "geometry": {"type": "Polygon", "coordinates": [[[15.8477783, -4.2491818, 0.0], [15.8518982, -4.2491818, 0.0], [15.8518982, -4.2450732, 0.0], [15.8477783, -4.2450732, 0.0], [15.8477783, -4.2491818, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1846}, "geometry": {"type": "Polygon", "coordinates": [[[15.8518982, -4.2505513, 0.0], [15.8560181, -4.2505513, 0.0], [15.8560181, -4.2478123, 0.0], [15.8518982, -4.2478123, 0.0], [15.8518982, -4.2505513, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1847}, "geometry": {"type": "Polygon", "coordinates": [[[15.8560181, -4.2519208, 0.0], [15.8601379, -4.2519208, 0.0], [15.8601379, -4.2491818, 0.0], [15.8560181, -4.2491818, 0.0], [15.8560181, -4.2519208, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1848}, "geometry": {"type": "Polygon", "coordinates": [[[15.7969666, -4.2642463, 0.0], [15.7997131, -4.2642463, 0.0], [15.7997131, -4.2587684, 0.0], [15.7969666, -4.2587684, 0.0], [15.7969666, -4.2642463, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1849}, "geometry": {"type": "Polygon", "coordinates": [[[15.7928467, -4.2697243, 0.0], [15.7997131, -4.2697243, 0.0], [15.7997131, -4.2642463, 0.0], [15.7928467, -4.2642463, 0.0], [15.7928467, -4.2697243, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1850}, "geometry": {"type": "Polygon", "coordinates": [[[15.7997131, -4.2669853, 0.0], [15.803833, -4.2669853, 0.0], [15.803833, -4.2587684, 0.0], [15.7997131, -4.2587684, 0.0], [15.7997131, -4.2669853, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1851}, "geometry": {"type": "Polygon", "coordinates": [[[15.803833, -4.2669853, 0.0], [15.8079529, -4.2669853, 0.0], [15.8079529, -4.2615074, 0.0], [15.803833, -4.2615074, 0.0], [15.803833, -4.2669853, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1852}, "geometry": {"type": "Polygon", "coordinates": [[[15.7516479, -4.2984828, 0.0], [15.7571411, -4.2984828, 0.0], [15.7571411, -4.2916356, 0.0], [15.7516479, -4.2916356, 0.0], [15.7516479, -4.2984828, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1853}, "geometry": {"type": "Polygon", "coordinates": [[[15.7571411, -4.2957439, 0.0], [15.7640076, -4.2957439, 0.0], [15.7640076, -4.2902662, 0.0], [15.7571411, -4.2902662, 0.0], [15.7571411, -4.2957439, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1854}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.3025911, 0.0], [15.7598877, -4.3025911, 0.0], [15.7598877, -4.2984828, 0.0], [15.7557678, -4.2984828, 0.0], [15.7557678, -4.3025911, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1855}, "geometry": {"type": "Polygon", "coordinates": [[[15.7598877, -4.3066993, 0.0], [15.7640076, -4.3066993, 0.0], [15.7640076, -4.2984828, 0.0], [15.7598877, -4.2984828, 0.0], [15.7598877, -4.3066993, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1856}, "geometry": {"type": "Polygon", "coordinates": [[[15.7640076, -4.2943745, 0.0], [15.7695007, -4.2943745, 0.0], [15.7695007, -4.2888967, 0.0], [15.7640076, -4.2888967, 0.0], [15.7640076, -4.2943745, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1857}, "geometry": {"type": "Polygon", "coordinates": [[[15.7640076, -4.3012217, 0.0], [15.770874, -4.3012217, 0.0], [15.770874, -4.2943745, 0.0], [15.7640076, -4.2943745, 0.0], [15.7640076, -4.3012217, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1858}, "geometry": {"type": "Polygon", "coordinates": [[[15.770874, -4.2984828, 0.0], [15.7722473, -4.2984828, 0.0], [15.7722473, -4.2957439, 0.0], [15.770874, -4.2957439, 0.0], [15.770874, -4.2984828, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1859}, "geometry": {"type": "Polygon", "coordinates": [[[15.7736206, -4.2998522, 0.0], [15.7777405, -4.2998522, 0.0], [15.7777405, -4.2943745, 0.0], [15.7736206, -4.2943745, 0.0], [15.7736206, -4.2998522, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1860}, "geometry": {"type": "Polygon", "coordinates": [[[15.7543945, -4.3149158, 0.0], [15.7557678, -4.3149158, 0.0], [15.7557678, -4.3108076, 0.0], [15.7543945, -4.3108076, 0.0], [15.7543945, -4.3149158, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1861}, "geometry": {"type": "Polygon", "coordinates": [[[15.7516479, -4.3190239, 0.0], [15.7585144, -4.3190239, 0.0], [15.7585144, -4.3149158, 0.0], [15.7516479, -4.3149158, 0.0], [15.7516479, -4.3190239, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1862}, "geometry": {"type": "Polygon", "coordinates": [[[15.7516479, -4.3231321, 0.0], [15.7585144, -4.3231321, 0.0], [15.7585144, -4.3190239, 0.0], [15.7516479, -4.3190239, 0.0], [15.7516479, -4.3231321, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1863}, "geometry": {"type": "Polygon", "coordinates": [[[15.7516479, -4.3286096, 0.0], [15.7557678, -4.3286096, 0.0], [15.7557678, -4.3231321, 0.0], [15.7516479, -4.3231321, 0.0], [15.7516479, -4.3286096, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1864}, "geometry": {"type": "Polygon", "coordinates": [[[15.7598877, -4.3231321, 0.0], [15.761261, -4.3231321, 0.0], [15.761261, -4.3217627, 0.0], [15.7598877, -4.3217627, 0.0], [15.7598877, -4.3231321, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1865}, "geometry": {"type": "Polygon", "coordinates": [[[15.7653809, -4.3203933, 0.0], [15.7667542, -4.3203933, 0.0], [15.7667542, -4.3190239, 0.0], [15.7653809, -4.3190239, 0.0], [15.7653809, -4.3203933, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1866}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -4.3381952, 0.0], [15.7557678, -4.3381952, 0.0], [15.7557678, -4.3340871, 0.0], [15.7530212, -4.3340871, 0.0], [15.7530212, -4.3381952, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1867}, "geometry": {"type": "Polygon", "coordinates": [[[15.7489014, -4.3436726, 0.0], [15.7557678, -4.3436726, 0.0], [15.7557678, -4.3381952, 0.0], [15.7489014, -4.3381952, 0.0], [15.7489014, -4.3436726, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1868}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.3340871, 0.0], [15.7571411, -4.3340871, 0.0], [15.7571411, -4.329979, 0.0], [15.7557678, -4.329979, 0.0], [15.7557678, -4.3340871, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1869}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.3436726, 0.0], [15.7626343, -4.3436726, 0.0], [15.7626343, -4.3381952, 0.0], [15.7557678, -4.3381952, 0.0], [15.7557678, -4.3436726, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1870}, "geometry": {"type": "Polygon", "coordinates": [[[15.7502747, -4.353258, 0.0], [15.7557678, -4.353258, 0.0], [15.7557678, -4.3436726, 0.0], [15.7502747, -4.3436726, 0.0], [15.7502747, -4.353258, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1871}, "geometry": {"type": "Polygon", "coordinates": [[[15.7997131, -4.3614739, 0.0], [15.803833, -4.3614739, 0.0], [15.803833, -4.353258, 0.0], [15.7997131, -4.353258, 0.0], [15.7997131, -4.3614739, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1872}, "geometry": {"type": "Polygon", "coordinates": [[[15.803833, -4.3601046, 0.0], [15.8079529, -4.3601046, 0.0], [15.8079529, -4.3559966, 0.0], [15.803833, -4.3559966, 0.0], [15.803833, -4.3601046, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1873}, "geometry": {"type": "Polygon", "coordinates": [[[15.7997131, -4.3642125, 0.0], [15.803833, -4.3642125, 0.0], [15.803833, -4.3614739, 0.0], [15.7997131, -4.3614739, 0.0], [15.7997131, -4.3642125, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1874}, "geometry": {"type": "Polygon", "coordinates": [[[15.8052063, -4.3696897, 0.0], [15.8093262, -4.3696897, 0.0], [15.8093262, -4.3628432, 0.0], [15.8052063, -4.3628432, 0.0], [15.8052063, -4.3696897, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1875}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.3601046, 0.0], [15.7585144, -4.3601046, 0.0], [15.7585144, -4.3573659, 0.0], [15.7557678, -4.3573659, 0.0], [15.7557678, -4.3601046, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1876}, "geometry": {"type": "Polygon", "coordinates": [[[15.7543945, -4.3669511, 0.0], [15.7598877, -4.3669511, 0.0], [15.7598877, -4.3614739, 0.0], [15.7543945, -4.3614739, 0.0], [15.7543945, -4.3669511, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1877}, "geometry": {"type": "Polygon", "coordinates": [[[15.7969666, -4.4093983, 0.0], [15.8024597, -4.4093983, 0.0], [15.8024597, -4.4025522, 0.0], [15.7969666, -4.4025522, 0.0], [15.7969666, -4.4093983, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1878}, "geometry": {"type": "Polygon", "coordinates": [[[15.8065796, -4.4093983, 0.0], [15.8079529, -4.4093983, 0.0], [15.8079529, -4.4080291, 0.0], [15.8065796, -4.4080291, 0.0], [15.8065796, -4.4093983, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1879}, "geometry": {"type": "Polygon", "coordinates": [[[15.7969666, -4.4121368, 0.0], [15.8010864, -4.4121368, 0.0], [15.8010864, -4.4093983, 0.0], [15.7969666, -4.4093983, 0.0], [15.7969666, -4.4121368, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1880}, "geometry": {"type": "Polygon", "coordinates": [[[15.8010864, -4.4162444, 0.0], [15.8065796, -4.4162444, 0.0], [15.8065796, -4.4093983, 0.0], [15.8010864, -4.4093983, 0.0], [15.8010864, -4.4162444, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1881}, "geometry": {"type": "Polygon", "coordinates": [[[15.9329224, -4.4367824, 0.0], [15.9397888, -4.4367824, 0.0], [15.9397888, -4.4326748, 0.0], [15.9329224, -4.4326748, 0.0], [15.9329224, -4.4367824, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1882}, "geometry": {"type": "Polygon", "coordinates": [[[15.9329224, -4.4408899, 0.0], [15.9356689, -4.4408899, 0.0], [15.9356689, -4.4367824, 0.0], [15.9329224, -4.4367824, 0.0], [15.9329224, -4.4408899, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1883}, "geometry": {"type": "Polygon", "coordinates": [[[15.662384, -4.0697546, 0.0], [15.6706238, -4.0697546, 0.0], [15.6706238, -4.0642753, 0.0], [15.662384, -4.0642753, 0.0], [15.662384, -4.0697546, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1884}, "geometry": {"type": "Polygon", "coordinates": [[[15.662384, -4.0766037, 0.0], [15.6706238, -4.0766037, 0.0], [15.6706238, -4.0697546, 0.0], [15.662384, -4.0697546, 0.0], [15.662384, -4.0766037, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1885}, "geometry": {"type": "Polygon", "coordinates": [[[15.6706238, -4.0683848, 0.0], [15.6788635, -4.0683848, 0.0], [15.6788635, -4.0642753, 0.0], [15.6706238, -4.0642753, 0.0], [15.6706238, -4.0683848, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1886}, "geometry": {"type": "Polygon", "coordinates": [[[15.6706238, -4.0766037, 0.0], [15.6719971, -4.0766037, 0.0], [15.6719971, -4.0752339, 0.0], [15.6706238, -4.0752339, 0.0], [15.6706238, -4.0766037, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1887}, "geometry": {"type": "Polygon", "coordinates": [[[15.7063293, -4.2258997, 0.0], [15.7118225, -4.2258997, 0.0], [15.7118225, -4.2190519, 0.0], [15.7063293, -4.2190519, 0.0], [15.7063293, -4.2258997, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1888}, "geometry": {"type": "Polygon", "coordinates": [[[15.7063293, -4.234117, 0.0], [15.7104492, -4.234117, 0.0], [15.7104492, -4.2258997, 0.0], [15.7063293, -4.2258997, 0.0], [15.7063293, -4.234117, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1889}, "geometry": {"type": "Polygon", "coordinates": [[[15.8807373, -4.2354865, 0.0], [15.8848572, -4.2354865, 0.0], [15.8848572, -4.2327474, 0.0], [15.8807373, -4.2327474, 0.0], [15.8807373, -4.2354865, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1890}, "geometry": {"type": "Polygon", "coordinates": [[[15.8834839, -4.2395951, 0.0], [15.8848572, -4.2395951, 0.0], [15.8848572, -4.2354865, 0.0], [15.8834839, -4.2354865, 0.0], [15.8834839, -4.2395951, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1891}, "geometry": {"type": "Polygon", "coordinates": [[[15.8724976, -4.2464428, 0.0], [15.8738708, -4.2464428, 0.0], [15.8738708, -4.2450732, 0.0], [15.8724976, -4.2450732, 0.0], [15.8724976, -4.2464428, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1892}, "geometry": {"type": "Polygon", "coordinates": [[[15.8821106, -4.2409647, 0.0], [15.8834839, -4.2409647, 0.0], [15.8834839, -4.2395951, 0.0], [15.8821106, -4.2395951, 0.0], [15.8821106, -4.2409647, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1893}, "geometry": {"type": "Polygon", "coordinates": [[[15.8876038, -4.2354865, 0.0], [15.8930969, -4.2354865, 0.0], [15.8930969, -4.2300083, 0.0], [15.8876038, -4.2300083, 0.0], [15.8876038, -4.2354865, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1894}, "geometry": {"type": "Polygon", "coordinates": [[[15.8930969, -4.234117, 0.0], [15.8999634, -4.234117, 0.0], [15.8999634, -4.2258997, 0.0], [15.8930969, -4.2258997, 0.0], [15.8930969, -4.234117, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1895}, "geometry": {"type": "Polygon", "coordinates": [[[15.8848572, -4.2491818, 0.0], [15.8876038, -4.2491818, 0.0], [15.8876038, -4.2464428, 0.0], [15.8848572, -4.2464428, 0.0], [15.8848572, -4.2491818, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1896}, "geometry": {"type": "Polygon", "coordinates": [[[15.8821106, -4.2546598, 0.0], [15.8876038, -4.2546598, 0.0], [15.8876038, -4.2505513, 0.0], [15.8821106, -4.2505513, 0.0], [15.8821106, -4.2546598, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1897}, "geometry": {"type": "Polygon", "coordinates": [[[15.8093262, -4.2423342, 0.0], [15.8148193, -4.2423342, 0.0], [15.8148193, -4.2382256, 0.0], [15.8093262, -4.2382256, 0.0], [15.8093262, -4.2423342, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1898}, "geometry": {"type": "Polygon", "coordinates": [[[15.8093262, -4.2478123, 0.0], [15.8148193, -4.2478123, 0.0], [15.8148193, -4.2423342, 0.0], [15.8093262, -4.2423342, 0.0], [15.8093262, -4.2478123, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1899}, "geometry": {"type": "Polygon", "coordinates": [[[15.9109497, -4.2820495, 0.0], [15.9178162, -4.2820495, 0.0], [15.9178162, -4.2779411, 0.0], [15.9109497, -4.2779411, 0.0], [15.9109497, -4.2820495, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1900}, "geometry": {"type": "Polygon", "coordinates": [[[15.9233093, -4.2971134, 0.0], [15.9288025, -4.2971134, 0.0], [15.9288025, -4.2930051, 0.0], [15.9233093, -4.2930051, 0.0], [15.9233093, -4.2971134, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1901}, "geometry": {"type": "Polygon", "coordinates": [[[15.9274292, -4.3025911, 0.0], [15.9301758, -4.3025911, 0.0], [15.9301758, -4.2971134, 0.0], [15.9274292, -4.2971134, 0.0], [15.9274292, -4.3025911, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1902}, "geometry": {"type": "Polygon", "coordinates": [[[15.9315491, -4.3135464, 0.0], [15.9370422, -4.3135464, 0.0], [15.9370422, -4.3080687, 0.0], [15.9315491, -4.3080687, 0.0], [15.9315491, -4.3135464, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1903}, "geometry": {"type": "Polygon", "coordinates": [[[15.9246826, -4.3231321, 0.0], [15.9288025, -4.3231321, 0.0], [15.9288025, -4.3135464, 0.0], [15.9246826, -4.3135464, 0.0], [15.9246826, -4.3231321, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1904}, "geometry": {"type": "Polygon", "coordinates": [[[15.9288025, -4.3203933, 0.0], [15.9342957, -4.3203933, 0.0], [15.9342957, -4.3135464, 0.0], [15.9288025, -4.3135464, 0.0], [15.9288025, -4.3203933, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1905}, "geometry": {"type": "Polygon", "coordinates": [[[15.9054565, -4.3423032, 0.0], [15.9095764, -4.3423032, 0.0], [15.9095764, -4.3354565, 0.0], [15.9054565, -4.3354565, 0.0], [15.9054565, -4.3423032, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1906}, "geometry": {"type": "Polygon", "coordinates": [[[15.9095764, -4.3395645, 0.0], [15.9150696, -4.3395645, 0.0], [15.9150696, -4.3327177, 0.0], [15.9095764, -4.3327177, 0.0], [15.9095764, -4.3395645, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1907}, "geometry": {"type": "Polygon", "coordinates": [[[15.9040833, -4.3477806, 0.0], [15.9095764, -4.3477806, 0.0], [15.9095764, -4.3423032, 0.0], [15.9040833, -4.3423032, 0.0], [15.9040833, -4.3477806, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1908}, "geometry": {"type": "Polygon", "coordinates": [[[15.9040833, -4.353258, 0.0], [15.9095764, -4.353258, 0.0], [15.9095764, -4.3477806, 0.0], [15.9040833, -4.3477806, 0.0], [15.9040833, -4.353258, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1909}, "geometry": {"type": "Polygon", "coordinates": [[[15.8010864, -4.3381952, 0.0], [15.8079529, -4.3381952, 0.0], [15.8079529, -4.3327177, 0.0], [15.8010864, -4.3327177, 0.0], [15.8010864, -4.3381952, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1910}, "geometry": {"type": "Polygon", "coordinates": [[[15.8010864, -4.3436726, 0.0], [15.8106995, -4.3436726, 0.0], [15.8106995, -4.3381952, 0.0], [15.8010864, -4.3381952, 0.0], [15.8010864, -4.3436726, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1911}, "geometry": {"type": "Polygon", "coordinates": [[[15.8175659, -4.34915, 0.0], [15.8216858, -4.34915, 0.0], [15.8216858, -4.3477806, 0.0], [15.8175659, -4.3477806, 0.0], [15.8175659, -4.34915, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1912}, "geometry": {"type": "Polygon", "coordinates": [[[15.8216858, -4.3505193, 0.0], [15.8258057, -4.3505193, 0.0], [15.8258057, -4.3436726, 0.0], [15.8216858, -4.3436726, 0.0], [15.8216858, -4.3505193, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1913}, "geometry": {"type": "Polygon", "coordinates": [[[15.8258057, -4.3477806, 0.0], [15.8285522, -4.3477806, 0.0], [15.8285522, -4.3423032, 0.0], [15.8258057, -4.3423032, 0.0], [15.8258057, -4.3477806, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1914}, "geometry": {"type": "Polygon", "coordinates": [[[15.8258057, -4.353258, 0.0], [15.8340454, -4.353258, 0.0], [15.8340454, -4.3477806, 0.0], [15.8258057, -4.3477806, 0.0], [15.8258057, -4.353258, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1915}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.34915, 0.0], [15.7598877, -4.34915, 0.0], [15.7598877, -4.3436726, 0.0], [15.7557678, -4.3436726, 0.0], [15.7557678, -4.34915, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1916}, "geometry": {"type": "Polygon", "coordinates": [[[15.7571411, -4.3546273, 0.0], [15.761261, -4.3546273, 0.0], [15.761261, -4.34915, 0.0], [15.7571411, -4.34915, 0.0], [15.7571411, -4.3546273, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1917}, "geometry": {"type": "Polygon", "coordinates": [[[15.761261, -4.3505193, 0.0], [15.7640076, -4.3505193, 0.0], [15.7640076, -4.3436726, 0.0], [15.761261, -4.3436726, 0.0], [15.761261, -4.3505193, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1918}, "geometry": {"type": "Polygon", "coordinates": [[[15.7681274, -4.3505193, 0.0], [15.7736206, -4.3505193, 0.0], [15.7736206, -4.3477806, 0.0], [15.7681274, -4.3477806, 0.0], [15.7681274, -4.3505193, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1919}, "geometry": {"type": "Polygon", "coordinates": [[[15.761261, -4.3587352, 0.0], [15.7653809, -4.3587352, 0.0], [15.7653809, -4.3505193, 0.0], [15.761261, -4.3505193, 0.0], [15.761261, -4.3587352, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1920}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.3587352, 0.0], [15.7722473, -4.3587352, 0.0], [15.7722473, -4.3505193, 0.0], [15.7667542, -4.3505193, 0.0], [15.7667542, -4.3587352, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1921}, "geometry": {"type": "Polygon", "coordinates": [[[15.7543945, -4.371059, 0.0], [15.7571411, -4.371059, 0.0], [15.7571411, -4.3669511, 0.0], [15.7543945, -4.3669511, 0.0], [15.7543945, -4.371059, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1922}, "geometry": {"type": "Polygon", "coordinates": [[[15.7543945, -4.3765362, 0.0], [15.761261, -4.3765362, 0.0], [15.761261, -4.371059, 0.0], [15.7543945, -4.371059, 0.0], [15.7543945, -4.3765362, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1923}, "geometry": {"type": "Polygon", "coordinates": [[[15.7681274, -4.3751669, 0.0], [15.7695007, -4.3751669, 0.0], [15.7695007, -4.3737976, 0.0], [15.7681274, -4.3737976, 0.0], [15.7681274, -4.3751669, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1924}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.3779055, 0.0], [15.7695007, -4.3779055, 0.0], [15.7695007, -4.3751669, 0.0], [15.7667542, -4.3751669, 0.0], [15.7667542, -4.3779055, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1925}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.3820133, 0.0], [15.7626343, -4.3820133, 0.0], [15.7626343, -4.3779055, 0.0], [15.7557678, -4.3779055, 0.0], [15.7557678, -4.3820133, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1926}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.3874904, 0.0], [15.7585144, -4.3874904, 0.0], [15.7585144, -4.3820133, 0.0], [15.7557678, -4.3820133, 0.0], [15.7557678, -4.3874904, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1927}, "geometry": {"type": "Polygon", "coordinates": [[[15.7543945, -4.3929674, 0.0], [15.7640076, -4.3929674, 0.0], [15.7640076, -4.3874904, 0.0], [15.7543945, -4.3874904, 0.0], [15.7543945, -4.3929674, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1928}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.3984445, 0.0], [15.7640076, -4.3984445, 0.0], [15.7640076, -4.3929674, 0.0], [15.7557678, -4.3929674, 0.0], [15.7557678, -4.3984445, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1929}, "geometry": {"type": "Polygon", "coordinates": [[[15.7640076, -4.3792748, 0.0], [15.7653809, -4.3792748, 0.0], [15.7653809, -4.3779055, 0.0], [15.7640076, -4.3779055, 0.0], [15.7640076, -4.3792748, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1930}, "geometry": {"type": "Polygon", "coordinates": [[[15.770874, -4.3820133, 0.0], [15.7749939, -4.3820133, 0.0], [15.7749939, -4.3779055, 0.0], [15.770874, -4.3779055, 0.0], [15.770874, -4.3820133, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1931}, "geometry": {"type": "Polygon", "coordinates": [[[15.7653809, -4.3888597, 0.0], [15.7667542, -4.3888597, 0.0], [15.7667542, -4.3874904, 0.0], [15.7653809, -4.3874904, 0.0], [15.7653809, -4.3888597, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1932}, "geometry": {"type": "Polygon", "coordinates": [[[15.7653809, -4.3929674, 0.0], [15.7667542, -4.3929674, 0.0], [15.7667542, -4.3915982, 0.0], [15.7653809, -4.3915982, 0.0], [15.7653809, -4.3929674, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1933}, "geometry": {"type": "Polygon", "coordinates": [[[15.5525208, -4.0519466, 0.0], [15.5566406, -4.0519466, 0.0], [15.5566406, -4.0478371, 0.0], [15.5525208, -4.0478371, 0.0], [15.5525208, -4.0519466, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1934}, "geometry": {"type": "Polygon", "coordinates": [[[15.5497742, -4.0560562, 0.0], [15.5566406, -4.0560562, 0.0], [15.5566406, -4.0519466, 0.0], [15.5497742, -4.0519466, 0.0], [15.5497742, -4.0560562, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1935}, "geometry": {"type": "Polygon", "coordinates": [[[15.5209351, -4.1067391, 0.0], [15.5291748, -4.1067391, 0.0], [15.5291748, -4.10126, 0.0], [15.5209351, -4.10126, 0.0], [15.5209351, -4.1067391, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1936}, "geometry": {"type": "Polygon", "coordinates": [[[15.5236816, -4.1122182, 0.0], [15.5291748, -4.1122182, 0.0], [15.5291748, -4.1067391, 0.0], [15.5236816, -4.1067391, 0.0], [15.5236816, -4.1122182, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1937}, "geometry": {"type": "Polygon", "coordinates": [[[15.5291748, -4.1067391, 0.0], [15.5387878, -4.1067391, 0.0], [15.5387878, -4.10126, 0.0], [15.5291748, -4.10126, 0.0], [15.5291748, -4.1067391, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1938}, "geometry": {"type": "Polygon", "coordinates": [[[15.5195618, -4.1176972, 0.0], [15.5236816, -4.1176972, 0.0], [15.5236816, -4.1122182, 0.0], [15.5195618, -4.1122182, 0.0], [15.5195618, -4.1176972, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1939}, "geometry": {"type": "Polygon", "coordinates": [[[15.5236816, -4.1190669, 0.0], [15.5291748, -4.1190669, 0.0], [15.5291748, -4.1122182, 0.0], [15.5236816, -4.1122182, 0.0], [15.5236816, -4.1190669, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1940}, "geometry": {"type": "Polygon", "coordinates": [[[15.534668, -4.1190669, 0.0], [15.5401611, -4.1190669, 0.0], [15.5401611, -4.1122182, 0.0], [15.534668, -4.1122182, 0.0], [15.534668, -4.1190669, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1941}, "geometry": {"type": "Polygon", "coordinates": [[[15.5758667, -4.2519208, 0.0], [15.5813599, -4.2519208, 0.0], [15.5813599, -4.2464428, 0.0], [15.5758667, -4.2464428, 0.0], [15.5758667, -4.2519208, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1942}, "geometry": {"type": "Polygon", "coordinates": [[[15.5758667, -4.2573989, 0.0], [15.5813599, -4.2573989, 0.0], [15.5813599, -4.2519208, 0.0], [15.5758667, -4.2519208, 0.0], [15.5758667, -4.2573989, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1943}, "geometry": {"type": "Polygon", "coordinates": [[[15.5758667, -4.2628768, 0.0], [15.5813599, -4.2628768, 0.0], [15.5813599, -4.2573989, 0.0], [15.5758667, -4.2573989, 0.0], [15.5758667, -4.2628768, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1944}, "geometry": {"type": "Polygon", "coordinates": [[[15.7077026, -4.1752244, 0.0], [15.7090759, -4.1752244, 0.0], [15.7090759, -4.1738548, 0.0], [15.7077026, -4.1738548, 0.0], [15.7077026, -4.1752244, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1945}, "geometry": {"type": "Polygon", "coordinates": [[[15.7200623, -4.1834422, 0.0], [15.7255554, -4.1834422, 0.0], [15.7255554, -4.1779637, 0.0], [15.7200623, -4.1779637, 0.0], [15.7200623, -4.1834422, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1946}, "geometry": {"type": "Polygon", "coordinates": [[[15.7159424, -4.1889207, 0.0], [15.7241821, -4.1889207, 0.0], [15.7241821, -4.1834422, 0.0], [15.7159424, -4.1834422, 0.0], [15.7159424, -4.1889207, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1947}, "geometry": {"type": "Polygon", "coordinates": [[[15.6980896, -4.2108344, 0.0], [15.7022095, -4.2108344, 0.0], [15.7022095, -4.2039865, 0.0], [15.6980896, -4.2039865, 0.0], [15.6980896, -4.2108344, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1948}, "geometry": {"type": "Polygon", "coordinates": [[[15.7035828, -4.212204, 0.0], [15.7063293, -4.212204, 0.0], [15.7063293, -4.2039865, 0.0], [15.7035828, -4.2039865, 0.0], [15.7035828, -4.212204, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1949}, "geometry": {"type": "Polygon", "coordinates": [[[15.7063293, -4.2176823, 0.0], [15.7090759, -4.2176823, 0.0], [15.7090759, -4.2108344, 0.0], [15.7063293, -4.2108344, 0.0], [15.7063293, -4.2176823, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1950}, "geometry": {"type": "Polygon", "coordinates": [[[15.8862305, -4.2409647, 0.0], [15.8917236, -4.2409647, 0.0], [15.8917236, -4.2354865, 0.0], [15.8862305, -4.2354865, 0.0], [15.8862305, -4.2409647, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1951}, "geometry": {"type": "Polygon", "coordinates": [[[15.8876038, -4.2464428, 0.0], [15.8917236, -4.2464428, 0.0], [15.8917236, -4.2423342, 0.0], [15.8876038, -4.2423342, 0.0], [15.8876038, -4.2464428, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1952}, "geometry": {"type": "Polygon", "coordinates": [[[15.8930969, -4.2423342, 0.0], [15.8944702, -4.2423342, 0.0], [15.8944702, -4.2409647, 0.0], [15.8930969, -4.2409647, 0.0], [15.8930969, -4.2423342, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1953}, "geometry": {"type": "Polygon", "coordinates": [[[15.8958435, -4.2395951, 0.0], [15.8999634, -4.2395951, 0.0], [15.8999634, -4.2368561, 0.0], [15.8958435, -4.2368561, 0.0], [15.8958435, -4.2395951, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1954}, "geometry": {"type": "Polygon", "coordinates": [[[15.8683777, -4.2505513, 0.0], [15.8738708, -4.2505513, 0.0], [15.8738708, -4.2464428, 0.0], [15.8683777, -4.2464428, 0.0], [15.8683777, -4.2505513, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1955}, "geometry": {"type": "Polygon", "coordinates": [[[15.8779907, -4.2560294, 0.0], [15.8821106, -4.2560294, 0.0], [15.8821106, -4.2478123, 0.0], [15.8779907, -4.2478123, 0.0], [15.8779907, -4.2560294, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1956}, "geometry": {"type": "Polygon", "coordinates": [[[15.8670044, -4.2587684, 0.0], [15.8738708, -4.2587684, 0.0], [15.8738708, -4.2560294, 0.0], [15.8670044, -4.2560294, 0.0], [15.8670044, -4.2587684, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1957}, "geometry": {"type": "Polygon", "coordinates": [[[15.8683777, -4.2642463, 0.0], [15.8724976, -4.2642463, 0.0], [15.8724976, -4.2601379, 0.0], [15.8683777, -4.2601379, 0.0], [15.8683777, -4.2642463, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1958}, "geometry": {"type": "Polygon", "coordinates": [[[15.8738708, -4.2601379, 0.0], [15.8821106, -4.2601379, 0.0], [15.8821106, -4.2560294, 0.0], [15.8738708, -4.2560294, 0.0], [15.8738708, -4.2601379, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1959}, "geometry": {"type": "Polygon", "coordinates": [[[15.8738708, -4.2669853, 0.0], [15.8752441, -4.2669853, 0.0], [15.8752441, -4.2656158, 0.0], [15.8738708, -4.2656158, 0.0], [15.8738708, -4.2669853, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1960}, "geometry": {"type": "Polygon", "coordinates": [[[15.8821106, -4.2628768, 0.0], [15.8862305, -4.2628768, 0.0], [15.8862305, -4.2546598, 0.0], [15.8821106, -4.2546598, 0.0], [15.8821106, -4.2628768, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1961}, "geometry": {"type": "Polygon", "coordinates": [[[15.8862305, -4.2615074, 0.0], [15.8903503, -4.2615074, 0.0], [15.8903503, -4.2546598, 0.0], [15.8862305, -4.2546598, 0.0], [15.8862305, -4.2615074, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1962}, "geometry": {"type": "Polygon", "coordinates": [[[15.8903503, -4.2642463, 0.0], [15.8944702, -4.2642463, 0.0], [15.8944702, -4.2573989, 0.0], [15.8903503, -4.2573989, 0.0], [15.8903503, -4.2642463, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1963}, "geometry": {"type": "Polygon", "coordinates": [[[15.8944702, -4.2628768, 0.0], [15.8985901, -4.2628768, 0.0], [15.8985901, -4.2573989, 0.0], [15.8944702, -4.2573989, 0.0], [15.8944702, -4.2628768, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1964}, "geometry": {"type": "Polygon", "coordinates": [[[15.9178162, -4.2820495, 0.0], [15.9246826, -4.2820495, 0.0], [15.9246826, -4.2779411, 0.0], [15.9178162, -4.2779411, 0.0], [15.9178162, -4.2820495, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1965}, "geometry": {"type": "Polygon", "coordinates": [[[15.9205627, -4.2861579, 0.0], [15.9246826, -4.2861579, 0.0], [15.9246826, -4.2820495, 0.0], [15.9205627, -4.2820495, 0.0], [15.9205627, -4.2861579, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1966}, "geometry": {"type": "Polygon", "coordinates": [[[15.9246826, -4.2930051, 0.0], [15.9301758, -4.2930051, 0.0], [15.9301758, -4.2834189, 0.0], [15.9246826, -4.2834189, 0.0], [15.9246826, -4.2930051, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1967}, "geometry": {"type": "Polygon", "coordinates": [[[15.9301758, -4.2875273, 0.0], [15.9370422, -4.2875273, 0.0], [15.9370422, -4.2834189, 0.0], [15.9301758, -4.2834189, 0.0], [15.9301758, -4.2875273, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1968}, "geometry": {"type": "Polygon", "coordinates": [[[15.9274292, -4.3080687, 0.0], [15.9315491, -4.3080687, 0.0], [15.9315491, -4.3025911, 0.0], [15.9274292, -4.3025911, 0.0], [15.9274292, -4.3080687, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1969}, "geometry": {"type": "Polygon", "coordinates": [[[15.9260559, -4.3135464, 0.0], [15.9315491, -4.3135464, 0.0], [15.9315491, -4.3080687, 0.0], [15.9260559, -4.3080687, 0.0], [15.9260559, -4.3135464, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1970}, "geometry": {"type": "Polygon", "coordinates": [[[15.9150696, -4.3245015, 0.0], [15.9191895, -4.3245015, 0.0], [15.9191895, -4.3231321, 0.0], [15.9150696, -4.3231321, 0.0], [15.9150696, -4.3245015, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1971}, "geometry": {"type": "Polygon", "coordinates": [[[15.9205627, -4.3258709, 0.0], [15.9246826, -4.3258709, 0.0], [15.9246826, -4.3190239, 0.0], [15.9205627, -4.3190239, 0.0], [15.9205627, -4.3258709, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1972}, "geometry": {"type": "Polygon", "coordinates": [[[15.9150696, -4.3327177, 0.0], [15.9191895, -4.3327177, 0.0], [15.9191895, -4.3272403, 0.0], [15.9150696, -4.3272403, 0.0], [15.9150696, -4.3327177, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1973}, "geometry": {"type": "Polygon", "coordinates": [[[15.9191895, -4.329979, 0.0], [15.9233093, -4.329979, 0.0], [15.9233093, -4.3258709, 0.0], [15.9191895, -4.3258709, 0.0], [15.9191895, -4.329979, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1974}, "geometry": {"type": "Polygon", "coordinates": [[[15.7818604, -4.3286096, 0.0], [15.7846069, -4.3286096, 0.0], [15.7846069, -4.3258709, 0.0], [15.7818604, -4.3258709, 0.0], [15.7818604, -4.3286096, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1975}, "geometry": {"type": "Polygon", "coordinates": [[[15.7763672, -4.3354565, 0.0], [15.7846069, -4.3354565, 0.0], [15.7846069, -4.329979, 0.0], [15.7763672, -4.329979, 0.0], [15.7763672, -4.3354565, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1976}, "geometry": {"type": "Polygon", "coordinates": [[[15.7818604, -4.3505193, 0.0], [15.7846069, -4.3505193, 0.0], [15.7846069, -4.3464113, 0.0], [15.7818604, -4.3464113, 0.0], [15.7818604, -4.3505193, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1977}, "geometry": {"type": "Polygon", "coordinates": [[[15.7832336, -4.3587352, 0.0], [15.7859802, -4.3587352, 0.0], [15.7859802, -4.3518886, 0.0], [15.7832336, -4.3518886, 0.0], [15.7832336, -4.3587352, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1978}, "geometry": {"type": "Polygon", "coordinates": [[[15.7969666, -4.3368258, 0.0], [15.7983398, -4.3368258, 0.0], [15.7983398, -4.3354565, 0.0], [15.7969666, -4.3354565, 0.0], [15.7969666, -4.3368258, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1979}, "geometry": {"type": "Polygon", "coordinates": [[[15.7955933, -4.3423032, 0.0], [15.7997131, -4.3423032, 0.0], [15.7997131, -4.3381952, 0.0], [15.7955933, -4.3381952, 0.0], [15.7955933, -4.3423032, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1980}, "geometry": {"type": "Polygon", "coordinates": [[[0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1981}, "geometry": {"type": "Polygon", "coordinates": [[[15.7873535, -4.3587352, 0.0], [15.7887268, -4.3587352, 0.0], [15.7887268, -4.3573659, 0.0], [15.7873535, -4.3573659, 0.0], [15.7873535, -4.3587352, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1982}, "geometry": {"type": "Polygon", "coordinates": [[[15.8010864, -4.3450419, 0.0], [15.8024597, -4.3450419, 0.0], [15.8024597, -4.3436726, 0.0], [15.8010864, -4.3436726, 0.0], [15.8010864, -4.3450419, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1983}, "geometry": {"type": "Polygon", "coordinates": [[[15.8024597, -4.3477806, 0.0], [15.8052063, -4.3477806, 0.0], [15.8052063, -4.3436726, 0.0], [15.8024597, -4.3436726, 0.0], [15.8024597, -4.3477806, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1984}, "geometry": {"type": "Polygon", "coordinates": [[[15.8106995, -4.34915, 0.0], [15.8175659, -4.34915, 0.0], [15.8175659, -4.3436726, 0.0], [15.8106995, -4.3436726, 0.0], [15.8106995, -4.34915, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1985}, "geometry": {"type": "Polygon", "coordinates": [[[15.8148193, -4.3546273, 0.0], [15.8175659, -4.3546273, 0.0], [15.8175659, -4.34915, 0.0], [15.8148193, -4.34915, 0.0], [15.8148193, -4.3546273, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1986}, "geometry": {"type": "Polygon", "coordinates": [[[15.5470276, -4.0601658, 0.0], [15.5511475, -4.0601658, 0.0], [15.5511475, -4.0560562, 0.0], [15.5470276, -4.0560562, 0.0], [15.5470276, -4.0601658, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1987}, "geometry": {"type": "Polygon", "coordinates": [[[15.5456543, -4.0642753, 0.0], [15.5511475, -4.0642753, 0.0], [15.5511475, -4.0601658, 0.0], [15.5456543, -4.0601658, 0.0], [15.5456543, -4.0642753, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1988}, "geometry": {"type": "Polygon", "coordinates": [[[15.5511475, -4.0601658, 0.0], [15.5566406, -4.0601658, 0.0], [15.5566406, -4.0560562, 0.0], [15.5511475, -4.0560562, 0.0], [15.5511475, -4.0601658, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1989}, "geometry": {"type": "Polygon", "coordinates": [[[15.5511475, -4.0642753, 0.0], [15.5566406, -4.0642753, 0.0], [15.5566406, -4.0601658, 0.0], [15.5511475, -4.0601658, 0.0], [15.5511475, -4.0642753, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1990}, "geometry": {"type": "Polygon", "coordinates": [[[15.5332947, -4.0724943, 0.0], [15.5387878, -4.0724943, 0.0], [15.5387878, -4.0683848, 0.0], [15.5332947, -4.0683848, 0.0], [15.5332947, -4.0724943, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1991}, "geometry": {"type": "Polygon", "coordinates": [[[15.5319214, -4.0807132, 0.0], [15.5374146, -4.0807132, 0.0], [15.5374146, -4.0724943, 0.0], [15.5319214, -4.0724943, 0.0], [15.5319214, -4.0807132, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1992}, "geometry": {"type": "Polygon", "coordinates": [[[15.5387878, -4.0807132, 0.0], [15.544281, -4.0807132, 0.0], [15.544281, -4.0724943, 0.0], [15.5387878, -4.0724943, 0.0], [15.5387878, -4.0807132, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1993}, "geometry": {"type": "Polygon", "coordinates": [[[15.5690002, -4.0478371, 0.0], [15.5744934, -4.0478371, 0.0], [15.5744934, -4.0437275, 0.0], [15.5690002, -4.0437275, 0.0], [15.5690002, -4.0478371, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1994}, "geometry": {"type": "Polygon", "coordinates": [[[15.5744934, -4.0450973, 0.0], [15.5813599, -4.0450973, 0.0], [15.5813599, -4.0382479, 0.0], [15.5744934, -4.0382479, 0.0], [15.5744934, -4.0450973, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1995}, "geometry": {"type": "Polygon", "coordinates": [[[15.5566406, -4.0793433, 0.0], [15.5648804, -4.0793433, 0.0], [15.5648804, -4.0738641, 0.0], [15.5566406, -4.0738641, 0.0], [15.5566406, -4.0793433, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1996}, "geometry": {"type": "Polygon", "coordinates": [[[15.5662537, -4.0766037, 0.0], [15.567627, -4.0766037, 0.0], [15.567627, -4.0724943, 0.0], [15.5662537, -4.0724943, 0.0], [15.5662537, -4.0766037, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1997}, "geometry": {"type": "Polygon", "coordinates": [[[15.5717468, -4.0724943, 0.0], [15.5758667, -4.0724943, 0.0], [15.5758667, -4.0683848, 0.0], [15.5717468, -4.0683848, 0.0], [15.5717468, -4.0724943, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1998}, "geometry": {"type": "Polygon", "coordinates": [[[15.5209351, -4.0903018, 0.0], [15.5250549, -4.0903018, 0.0], [15.5250549, -4.088932, 0.0], [15.5209351, -4.088932, 0.0], [15.5209351, -4.0903018, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 1999}, "geometry": {"type": "Polygon", "coordinates": [[[15.5250549, -4.0903018, 0.0], [15.5291748, -4.0903018, 0.0], [15.5291748, -4.0861924, 0.0], [15.5250549, -4.0861924, 0.0], [15.5250549, -4.0903018, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2000}, "geometry": {"type": "Polygon", "coordinates": [[[15.5291748, -4.0903018, 0.0], [15.5332947, -4.0903018, 0.0], [15.5332947, -4.0807132, 0.0], [15.5291748, -4.0807132, 0.0], [15.5291748, -4.0903018, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2001}, "geometry": {"type": "Polygon", "coordinates": [[[15.5332947, -4.0903018, 0.0], [15.5387878, -4.0903018, 0.0], [15.5387878, -4.0807132, 0.0], [15.5332947, -4.0807132, 0.0], [15.5332947, -4.0903018, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2002}, "geometry": {"type": "Polygon", "coordinates": [[[15.5387878, -4.0861924, 0.0], [15.5456543, -4.0861924, 0.0], [15.5456543, -4.082083, 0.0], [15.5387878, -4.082083, 0.0], [15.5387878, -4.0861924, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2003}, "geometry": {"type": "Polygon", "coordinates": [[[15.5387878, -4.0903018, 0.0], [15.544281, -4.0903018, 0.0], [15.544281, -4.0861924, 0.0], [15.5387878, -4.0861924, 0.0], [15.5387878, -4.0903018, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2004}, "geometry": {"type": "Polygon", "coordinates": [[[15.5387878, -4.0998903, 0.0], [15.5429077, -4.0998903, 0.0], [15.5429077, -4.0916716, 0.0], [15.5387878, -4.0916716, 0.0], [15.5387878, -4.0998903, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2005}, "geometry": {"type": "Polygon", "coordinates": [[[15.5429077, -4.0957809, 0.0], [15.5484009, -4.0957809, 0.0], [15.5484009, -4.0903018, 0.0], [15.5429077, -4.0903018, 0.0], [15.5429077, -4.0957809, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2006}, "geometry": {"type": "Polygon", "coordinates": [[[15.5497742, -4.0861924, 0.0], [15.553894, -4.0861924, 0.0], [15.553894, -4.0807132, 0.0], [15.5497742, -4.0807132, 0.0], [15.5497742, -4.0861924, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2007}, "geometry": {"type": "Polygon", "coordinates": [[[15.5552673, -4.0834528, 0.0], [15.5593872, -4.0834528, 0.0], [15.5593872, -4.0807132, 0.0], [15.5552673, -4.0807132, 0.0], [15.5552673, -4.0834528, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2008}, "geometry": {"type": "Polygon", "coordinates": [[[15.5525208, -4.0875622, 0.0], [15.553894, -4.0875622, 0.0], [15.553894, -4.0861924, 0.0], [15.5525208, -4.0861924, 0.0], [15.5525208, -4.0875622, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2009}, "geometry": {"type": "Polygon", "coordinates": [[[15.5484009, -4.0930413, 0.0], [15.5511475, -4.0930413, 0.0], [15.5511475, -4.0916716, 0.0], [15.5484009, -4.0916716, 0.0], [15.5484009, -4.0930413, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2010}, "geometry": {"type": "Polygon", "coordinates": [[[15.5291748, -4.1122182, 0.0], [15.5332947, -4.1122182, 0.0], [15.5332947, -4.1067391, 0.0], [15.5291748, -4.1067391, 0.0], [15.5291748, -4.1122182, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2011}, "geometry": {"type": "Polygon", "coordinates": [[[15.5332947, -4.1122182, 0.0], [15.5387878, -4.1122182, 0.0], [15.5387878, -4.1067391, 0.0], [15.5332947, -4.1067391, 0.0], [15.5332947, -4.1122182, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2012}, "geometry": {"type": "Polygon", "coordinates": [[[15.5319214, -4.1231761, 0.0], [15.534668, -4.1231761, 0.0], [15.534668, -4.1176972, 0.0], [15.5319214, -4.1176972, 0.0], [15.5319214, -4.1231761, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2013}, "geometry": {"type": "Polygon", "coordinates": [[[15.5909729, -4.1574188, 0.0], [15.5923462, -4.1574188, 0.0], [15.5923462, -4.1560491, 0.0], [15.5909729, -4.1560491, 0.0], [15.5909729, -4.1574188, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2014}, "geometry": {"type": "Polygon", "coordinates": [[[15.5923462, -4.1574188, 0.0], [15.5937195, -4.1574188, 0.0], [15.5937195, -4.1560491, 0.0], [15.5923462, -4.1560491, 0.0], [15.5923462, -4.1574188, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2015}, "geometry": {"type": "Polygon", "coordinates": [[[15.5744934, -4.2464428, 0.0], [15.57724, -4.2464428, 0.0], [15.57724, -4.2409647, 0.0], [15.5744934, -4.2409647, 0.0], [15.5744934, -4.2464428, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2016}, "geometry": {"type": "Polygon", "coordinates": [[[15.57724, -4.2464428, 0.0], [15.5813599, -4.2464428, 0.0], [15.5813599, -4.2409647, 0.0], [15.57724, -4.2409647, 0.0], [15.57724, -4.2464428, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2017}, "geometry": {"type": "Polygon", "coordinates": [[[15.5813599, -4.2080952, 0.0], [15.5882263, -4.2080952, 0.0], [15.5882263, -4.2026169, 0.0], [15.5813599, -4.2026169, 0.0], [15.5813599, -4.2080952, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2018}, "geometry": {"type": "Polygon", "coordinates": [[[15.5813599, -4.2163127, 0.0], [15.586853, -4.2163127, 0.0], [15.586853, -4.212204, 0.0], [15.5813599, -4.212204, 0.0], [15.5813599, -4.2163127, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2019}, "geometry": {"type": "Polygon", "coordinates": [[[15.6005859, -4.2080952, 0.0], [15.6074524, -4.2080952, 0.0], [15.6074524, -4.2026169, 0.0], [15.6005859, -4.2026169, 0.0], [15.6005859, -4.2080952, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2020}, "geometry": {"type": "Polygon", "coordinates": [[[15.6074524, -4.2067256, 0.0], [15.6143188, -4.2067256, 0.0], [15.6143188, -4.2039865, 0.0], [15.6074524, -4.2039865, 0.0], [15.6074524, -4.2067256, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2021}, "geometry": {"type": "Polygon", "coordinates": [[[15.5992126, -4.2313779, 0.0], [15.6019592, -4.2313779, 0.0], [15.6019592, -4.2300083, 0.0], [15.5992126, -4.2300083, 0.0], [15.5992126, -4.2313779, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2022}, "geometry": {"type": "Polygon", "coordinates": [[[15.6019592, -4.2313779, 0.0], [15.6047058, -4.2313779, 0.0], [15.6047058, -4.2300083, 0.0], [15.6019592, -4.2300083, 0.0], [15.6019592, -4.2313779, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2023}, "geometry": {"type": "Polygon", "coordinates": [[[15.5909729, -4.2546598, 0.0], [15.5964661, -4.2546598, 0.0], [15.5964661, -4.2450732, 0.0], [15.5909729, -4.2450732, 0.0], [15.5909729, -4.2546598, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2024}, "geometry": {"type": "Polygon", "coordinates": [[[15.5978394, -4.2464428, 0.0], [15.6019592, -4.2464428, 0.0], [15.6019592, -4.2450732, 0.0], [15.5978394, -4.2450732, 0.0], [15.5978394, -4.2464428, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2025}, "geometry": {"type": "Polygon", "coordinates": [[[15.6884766, -4.1820726, 0.0], [15.6925964, -4.1820726, 0.0], [15.6925964, -4.1793333, 0.0], [15.6884766, -4.1793333, 0.0], [15.6884766, -4.1820726, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2026}, "geometry": {"type": "Polygon", "coordinates": [[[15.6925964, -4.180703, 0.0], [15.6967163, -4.180703, 0.0], [15.6967163, -4.1752244, 0.0], [15.6925964, -4.1752244, 0.0], [15.6925964, -4.180703, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2027}, "geometry": {"type": "Polygon", "coordinates": [[[15.6871033, -4.1861815, 0.0], [15.6912231, -4.1861815, 0.0], [15.6912231, -4.1820726, 0.0], [15.6871033, -4.1820726, 0.0], [15.6871033, -4.1861815, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2028}, "geometry": {"type": "Polygon", "coordinates": [[[15.7022095, -4.1820726, 0.0], [15.7077026, -4.1820726, 0.0], [15.7077026, -4.1752244, 0.0], [15.7022095, -4.1752244, 0.0], [15.7022095, -4.1820726, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2029}, "geometry": {"type": "Polygon", "coordinates": [[[15.6912231, -4.1957688, 0.0], [15.6939697, -4.1957688, 0.0], [15.6939697, -4.1930296, 0.0], [15.6912231, -4.1930296, 0.0], [15.6912231, -4.1957688, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2030}, "geometry": {"type": "Polygon", "coordinates": [[[15.6939697, -4.1957688, 0.0], [15.6980896, -4.1957688, 0.0], [15.6980896, -4.1889207, 0.0], [15.6939697, -4.1889207, 0.0], [15.6939697, -4.1957688, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2031}, "geometry": {"type": "Polygon", "coordinates": [[[15.6898499, -4.2026169, 0.0], [15.6939697, -4.2026169, 0.0], [15.6939697, -4.1957688, 0.0], [15.6898499, -4.1957688, 0.0], [15.6898499, -4.2026169, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2032}, "geometry": {"type": "Polygon", "coordinates": [[[15.7077026, -4.1848119, 0.0], [15.7104492, -4.1848119, 0.0], [15.7104492, -4.180703, 0.0], [15.7077026, -4.180703, 0.0], [15.7077026, -4.1848119, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2033}, "geometry": {"type": "Polygon", "coordinates": [[[15.7077026, -4.1889207, 0.0], [15.7131958, -4.1889207, 0.0], [15.7131958, -4.1848119, 0.0], [15.7077026, -4.1848119, 0.0], [15.7077026, -4.1889207, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2034}, "geometry": {"type": "Polygon", "coordinates": [[[15.7077026, -4.1957688, 0.0], [15.7118225, -4.1957688, 0.0], [15.7118225, -4.1889207, 0.0], [15.7077026, -4.1889207, 0.0], [15.7077026, -4.1957688, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2035}, "geometry": {"type": "Polygon", "coordinates": [[[15.7118225, -4.1957688, 0.0], [15.7173157, -4.1957688, 0.0], [15.7173157, -4.1889207, 0.0], [15.7118225, -4.1889207, 0.0], [15.7118225, -4.1957688, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2036}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.1957688, 0.0], [15.7228088, -4.1957688, 0.0], [15.7228088, -4.1889207, 0.0], [15.7173157, -4.1889207, 0.0], [15.7173157, -4.1957688, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2037}, "geometry": {"type": "Polygon", "coordinates": [[[15.7255554, -4.1943992, 0.0], [15.728302, -4.1943992, 0.0], [15.728302, -4.1889207, 0.0], [15.7255554, -4.1889207, 0.0], [15.7255554, -4.1943992, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2038}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.2012473, 0.0], [15.7228088, -4.2012473, 0.0], [15.7228088, -4.1957688, 0.0], [15.7173157, -4.1957688, 0.0], [15.7173157, -4.2012473, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2039}, "geometry": {"type": "Polygon", "coordinates": [[[15.7228088, -4.2039865, 0.0], [15.728302, -4.2039865, 0.0], [15.728302, -4.1957688, 0.0], [15.7228088, -4.1957688, 0.0], [15.7228088, -4.2039865, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2040}, "geometry": {"type": "Polygon", "coordinates": [[[15.7063293, -4.2108344, 0.0], [15.7104492, -4.2108344, 0.0], [15.7104492, -4.2039865, 0.0], [15.7063293, -4.2039865, 0.0], [15.7063293, -4.2108344, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2041}, "geometry": {"type": "Polygon", "coordinates": [[[15.7104492, -4.2094648, 0.0], [15.7145691, -4.2094648, 0.0], [15.7145691, -4.2039865, 0.0], [15.7104492, -4.2039865, 0.0], [15.7104492, -4.2094648, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2042}, "geometry": {"type": "Polygon", "coordinates": [[[15.8670044, -4.2560294, 0.0], [15.869751, -4.2560294, 0.0], [15.869751, -4.2519208, 0.0], [15.8670044, -4.2519208, 0.0], [15.8670044, -4.2560294, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2043}, "geometry": {"type": "Polygon", "coordinates": [[[15.869751, -4.2560294, 0.0], [15.8738708, -4.2560294, 0.0], [15.8738708, -4.2505513, 0.0], [15.869751, -4.2505513, 0.0], [15.869751, -4.2560294, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2044}, "geometry": {"type": "Polygon", "coordinates": [[[15.8738708, -4.2519208, 0.0], [15.8779907, -4.2519208, 0.0], [15.8779907, -4.2478123, 0.0], [15.8738708, -4.2478123, 0.0], [15.8738708, -4.2519208, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2045}, "geometry": {"type": "Polygon", "coordinates": [[[15.8738708, -4.2560294, 0.0], [15.8779907, -4.2560294, 0.0], [15.8779907, -4.2519208, 0.0], [15.8738708, -4.2519208, 0.0], [15.8738708, -4.2560294, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2046}, "geometry": {"type": "Polygon", "coordinates": [[[15.9274292, -4.2765716, 0.0], [15.9301758, -4.2765716, 0.0], [15.9301758, -4.2738327, 0.0], [15.9274292, -4.2738327, 0.0], [15.9274292, -4.2765716, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2047}, "geometry": {"type": "Polygon", "coordinates": [[[15.9246826, -4.2834189, 0.0], [15.9274292, -4.2834189, 0.0], [15.9274292, -4.2779411, 0.0], [15.9246826, -4.2779411, 0.0], [15.9246826, -4.2834189, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2048}, "geometry": {"type": "Polygon", "coordinates": [[[0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2049}, "geometry": {"type": "Polygon", "coordinates": [[[15.9370422, -4.2834189, 0.0], [15.9384155, -4.2834189, 0.0], [15.9384155, -4.2820495, 0.0], [15.9370422, -4.2820495, 0.0], [15.9370422, -4.2834189, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2050}, "geometry": {"type": "Polygon", "coordinates": [[[15.7695007, -4.3231321, 0.0], [15.7722473, -4.3231321, 0.0], [15.7722473, -4.3176546, 0.0], [15.7695007, -4.3176546, 0.0], [15.7695007, -4.3231321, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2051}, "geometry": {"type": "Polygon", "coordinates": [[[15.7722473, -4.3245015, 0.0], [15.7763672, -4.3245015, 0.0], [15.7763672, -4.3176546, 0.0], [15.7722473, -4.3176546, 0.0], [15.7722473, -4.3245015, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2052}, "geometry": {"type": "Polygon", "coordinates": [[[15.7777405, -4.3203933, 0.0], [15.7846069, -4.3203933, 0.0], [15.7846069, -4.3162852, 0.0], [15.7777405, -4.3162852, 0.0], [15.7777405, -4.3203933, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2053}, "geometry": {"type": "Polygon", "coordinates": [[[15.7763672, -4.3258709, 0.0], [15.7846069, -4.3258709, 0.0], [15.7846069, -4.3203933, 0.0], [15.7763672, -4.3203933, 0.0], [15.7763672, -4.3258709, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2054}, "geometry": {"type": "Polygon", "coordinates": [[[15.7846069, -4.3176546, 0.0], [15.7928467, -4.3176546, 0.0], [15.7928467, -4.312177, 0.0], [15.7846069, -4.312177, 0.0], [15.7846069, -4.3176546, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2055}, "geometry": {"type": "Polygon", "coordinates": [[[15.7846069, -4.3231321, 0.0], [15.7928467, -4.3231321, 0.0], [15.7928467, -4.3176546, 0.0], [15.7846069, -4.3176546, 0.0], [15.7846069, -4.3231321, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2056}, "geometry": {"type": "Polygon", "coordinates": [[[15.7928467, -4.3231321, 0.0], [15.7969666, -4.3231321, 0.0], [15.7969666, -4.3203933, 0.0], [15.7928467, -4.3203933, 0.0], [15.7928467, -4.3231321, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2057}, "geometry": {"type": "Polygon", "coordinates": [[[15.7983398, -4.3231321, 0.0], [15.8010864, -4.3231321, 0.0], [15.8010864, -4.3190239, 0.0], [15.7983398, -4.3190239, 0.0], [15.7983398, -4.3231321, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2058}, "geometry": {"type": "Polygon", "coordinates": [[[15.7846069, -4.3286096, 0.0], [15.7901001, -4.3286096, 0.0], [15.7901001, -4.3231321, 0.0], [15.7846069, -4.3231321, 0.0], [15.7846069, -4.3286096, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2059}, "geometry": {"type": "Polygon", "coordinates": [[[15.7846069, -4.3340871, 0.0], [15.7901001, -4.3340871, 0.0], [15.7901001, -4.3286096, 0.0], [15.7846069, -4.3286096, 0.0], [15.7846069, -4.3340871, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2060}, "geometry": {"type": "Polygon", "coordinates": [[[15.79422, -4.3272403, 0.0], [15.8010864, -4.3272403, 0.0], [15.8010864, -4.3231321, 0.0], [15.79422, -4.3231321, 0.0], [15.79422, -4.3272403, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2061}, "geometry": {"type": "Polygon", "coordinates": [[[15.7969666, -4.3354565, 0.0], [15.8010864, -4.3354565, 0.0], [15.8010864, -4.3286096, 0.0], [15.7969666, -4.3286096, 0.0], [15.7969666, -4.3354565, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2062}, "geometry": {"type": "Polygon", "coordinates": [[[15.7749939, -4.3395645, 0.0], [15.7763672, -4.3395645, 0.0], [15.7763672, -4.3381952, 0.0], [15.7749939, -4.3381952, 0.0], [15.7749939, -4.3395645, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2063}, "geometry": {"type": "Polygon", "coordinates": [[[15.7777405, -4.3423032, 0.0], [15.7804871, -4.3423032, 0.0], [15.7804871, -4.3368258, 0.0], [15.7777405, -4.3368258, 0.0], [15.7777405, -4.3423032, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2064}, "geometry": {"type": "Polygon", "coordinates": [[[15.7804871, -4.3409339, 0.0], [15.7873535, -4.3409339, 0.0], [15.7873535, -4.3354565, 0.0], [15.7804871, -4.3354565, 0.0], [15.7804871, -4.3409339, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2065}, "geometry": {"type": "Polygon", "coordinates": [[[15.7804871, -4.3464113, 0.0], [15.7846069, -4.3464113, 0.0], [15.7846069, -4.3409339, 0.0], [15.7804871, -4.3409339, 0.0], [15.7804871, -4.3464113, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2066}, "geometry": {"type": "Polygon", "coordinates": [[[15.5401611, -4.0683848, 0.0], [15.544281, -4.0683848, 0.0], [15.544281, -4.0642753, 0.0], [15.5401611, -4.0642753, 0.0], [15.5401611, -4.0683848, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2067}, "geometry": {"type": "Polygon", "coordinates": [[[15.5387878, -4.0724943, 0.0], [15.544281, -4.0724943, 0.0], [15.544281, -4.0683848, 0.0], [15.5387878, -4.0683848, 0.0], [15.5387878, -4.0724943, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2068}, "geometry": {"type": "Polygon", "coordinates": [[[15.544281, -4.0683848, 0.0], [15.5497742, -4.0683848, 0.0], [15.5497742, -4.0642753, 0.0], [15.544281, -4.0642753, 0.0], [15.544281, -4.0683848, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2069}, "geometry": {"type": "Polygon", "coordinates": [[[15.544281, -4.0724943, 0.0], [15.5497742, -4.0724943, 0.0], [15.5497742, -4.0683848, 0.0], [15.544281, -4.0683848, 0.0], [15.544281, -4.0724943, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2070}, "geometry": {"type": "Polygon", "coordinates": [[[15.544281, -4.0766037, 0.0], [15.5497742, -4.0766037, 0.0], [15.5497742, -4.0724943, 0.0], [15.544281, -4.0724943, 0.0], [15.544281, -4.0766037, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2071}, "geometry": {"type": "Polygon", "coordinates": [[[15.544281, -4.0807132, 0.0], [15.5497742, -4.0807132, 0.0], [15.5497742, -4.0766037, 0.0], [15.544281, -4.0766037, 0.0], [15.544281, -4.0807132, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2072}, "geometry": {"type": "Polygon", "coordinates": [[[15.5497742, -4.0807132, 0.0], [15.5566406, -4.0807132, 0.0], [15.5566406, -4.0766037, 0.0], [15.5497742, -4.0766037, 0.0], [15.5497742, -4.0807132, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2073}, "geometry": {"type": "Polygon", "coordinates": [[[15.5566406, -4.0519466, 0.0], [15.5593872, -4.0519466, 0.0], [15.5593872, -4.0464672, 0.0], [15.5566406, -4.0464672, 0.0], [15.5566406, -4.0519466, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2074}, "geometry": {"type": "Polygon", "coordinates": [[[15.5593872, -4.0519466, 0.0], [15.5621338, -4.0519466, 0.0], [15.5621338, -4.0464672, 0.0], [15.5593872, -4.0464672, 0.0], [15.5593872, -4.0519466, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2075}, "geometry": {"type": "Polygon", "coordinates": [[[15.5621338, -4.0519466, 0.0], [15.5648804, -4.0519466, 0.0], [15.5648804, -4.0464672, 0.0], [15.5621338, -4.0464672, 0.0], [15.5621338, -4.0519466, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2076}, "geometry": {"type": "Polygon", "coordinates": [[[15.5648804, -4.0519466, 0.0], [15.5690002, -4.0519466, 0.0], [15.5690002, -4.0450973, 0.0], [15.5648804, -4.0450973, 0.0], [15.5648804, -4.0519466, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2077}, "geometry": {"type": "Polygon", "coordinates": [[[15.5566406, -4.0546864, 0.0], [15.5621338, -4.0546864, 0.0], [15.5621338, -4.0519466, 0.0], [15.5566406, -4.0519466, 0.0], [15.5566406, -4.0546864, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2078}, "geometry": {"type": "Polygon", "coordinates": [[[15.5566406, -4.0587959, 0.0], [15.5621338, -4.0587959, 0.0], [15.5621338, -4.0546864, 0.0], [15.5566406, -4.0546864, 0.0], [15.5566406, -4.0587959, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2079}, "geometry": {"type": "Polygon", "coordinates": [[[15.5621338, -4.0587959, 0.0], [15.5648804, -4.0587959, 0.0], [15.5648804, -4.0519466, 0.0], [15.5621338, -4.0519466, 0.0], [15.5621338, -4.0587959, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2080}, "geometry": {"type": "Polygon", "coordinates": [[[15.5690002, -4.0533165, 0.0], [15.5731201, -4.0533165, 0.0], [15.5731201, -4.0478371, 0.0], [15.5690002, -4.0478371, 0.0], [15.5690002, -4.0533165, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2081}, "geometry": {"type": "Polygon", "coordinates": [[[15.5690002, -4.0587959, 0.0], [15.5744934, -4.0587959, 0.0], [15.5744934, -4.0533165, 0.0], [15.5690002, -4.0533165, 0.0], [15.5690002, -4.0587959, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2082}, "geometry": {"type": "Polygon", "coordinates": [[[15.5744934, -4.0587959, 0.0], [15.57724, -4.0587959, 0.0], [15.57724, -4.0574261, 0.0], [15.5744934, -4.0574261, 0.0], [15.5744934, -4.0587959, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2083}, "geometry": {"type": "Polygon", "coordinates": [[[15.57724, -4.0587959, 0.0], [15.5813599, -4.0587959, 0.0], [15.5813599, -4.0546864, 0.0], [15.57724, -4.0546864, 0.0], [15.57724, -4.0587959, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2084}, "geometry": {"type": "Polygon", "coordinates": [[[15.5566406, -4.0629054, 0.0], [15.5607605, -4.0629054, 0.0], [15.5607605, -4.0587959, 0.0], [15.5566406, -4.0587959, 0.0], [15.5566406, -4.0629054, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2085}, "geometry": {"type": "Polygon", "coordinates": [[[15.5566406, -4.0683848, 0.0], [15.5607605, -4.0683848, 0.0], [15.5607605, -4.0629054, 0.0], [15.5566406, -4.0629054, 0.0], [15.5566406, -4.0683848, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2086}, "geometry": {"type": "Polygon", "coordinates": [[[15.5607605, -4.0629054, 0.0], [15.5662537, -4.0629054, 0.0], [15.5662537, -4.0587959, 0.0], [15.5607605, -4.0587959, 0.0], [15.5607605, -4.0629054, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2087}, "geometry": {"type": "Polygon", "coordinates": [[[15.5607605, -4.0683848, 0.0], [15.5662537, -4.0683848, 0.0], [15.5662537, -4.0629054, 0.0], [15.5607605, -4.0629054, 0.0], [15.5607605, -4.0683848, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2088}, "geometry": {"type": "Polygon", "coordinates": [[[15.5662537, -4.0629054, 0.0], [15.5703735, -4.0629054, 0.0], [15.5703735, -4.0587959, 0.0], [15.5662537, -4.0587959, 0.0], [15.5662537, -4.0629054, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2089}, "geometry": {"type": "Polygon", "coordinates": [[[15.5662537, -4.0670149, 0.0], [15.5703735, -4.0670149, 0.0], [15.5703735, -4.0629054, 0.0], [15.5662537, -4.0629054, 0.0], [15.5662537, -4.0670149, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2090}, "geometry": {"type": "Polygon", "coordinates": [[[15.5703735, -4.0629054, 0.0], [15.5758667, -4.0629054, 0.0], [15.5758667, -4.0587959, 0.0], [15.5703735, -4.0587959, 0.0], [15.5703735, -4.0629054, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2091}, "geometry": {"type": "Polygon", "coordinates": [[[15.5703735, -4.0670149, 0.0], [15.5744934, -4.0670149, 0.0], [15.5744934, -4.0629054, 0.0], [15.5703735, -4.0629054, 0.0], [15.5703735, -4.0670149, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2092}, "geometry": {"type": "Polygon", "coordinates": [[[15.5566406, -4.0738641, 0.0], [15.5607605, -4.0738641, 0.0], [15.5607605, -4.0683848, 0.0], [15.5566406, -4.0683848, 0.0], [15.5566406, -4.0738641, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2093}, "geometry": {"type": "Polygon", "coordinates": [[[15.5607605, -4.0738641, 0.0], [15.5662537, -4.0738641, 0.0], [15.5662537, -4.0683848, 0.0], [15.5607605, -4.0683848, 0.0], [15.5607605, -4.0738641, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2094}, "geometry": {"type": "Polygon", "coordinates": [[[15.5195618, -4.0957809, 0.0], [15.5236816, -4.0957809, 0.0], [15.5236816, -4.0903018, 0.0], [15.5195618, -4.0903018, 0.0], [15.5195618, -4.0957809, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2095}, "geometry": {"type": "Polygon", "coordinates": [[[15.5195618, -4.10126, 0.0], [15.5236816, -4.10126, 0.0], [15.5236816, -4.0957809, 0.0], [15.5195618, -4.0957809, 0.0], [15.5195618, -4.10126, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2096}, "geometry": {"type": "Polygon", "coordinates": [[[15.5291748, -4.0957809, 0.0], [15.5332947, -4.0957809, 0.0], [15.5332947, -4.0903018, 0.0], [15.5291748, -4.0903018, 0.0], [15.5291748, -4.0957809, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2097}, "geometry": {"type": "Polygon", "coordinates": [[[15.5332947, -4.0957809, 0.0], [15.5374146, -4.0957809, 0.0], [15.5374146, -4.0903018, 0.0], [15.5332947, -4.0903018, 0.0], [15.5332947, -4.0957809, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2098}, "geometry": {"type": "Polygon", "coordinates": [[[15.5291748, -4.10126, 0.0], [15.5332947, -4.10126, 0.0], [15.5332947, -4.0957809, 0.0], [15.5291748, -4.0957809, 0.0], [15.5291748, -4.10126, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2099}, "geometry": {"type": "Polygon", "coordinates": [[[15.5332947, -4.10126, 0.0], [15.5387878, -4.10126, 0.0], [15.5387878, -4.0957809, 0.0], [15.5332947, -4.0957809, 0.0], [15.5332947, -4.10126, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2100}, "geometry": {"type": "Polygon", "coordinates": [[[15.5291748, -4.1176972, 0.0], [15.5319214, -4.1176972, 0.0], [15.5319214, -4.1122182, 0.0], [15.5291748, -4.1122182, 0.0], [15.5291748, -4.1176972, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2101}, "geometry": {"type": "Polygon", "coordinates": [[[15.5319214, -4.1176972, 0.0], [15.534668, -4.1176972, 0.0], [15.534668, -4.1122182, 0.0], [15.5319214, -4.1122182, 0.0], [15.5319214, -4.1176972, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2102}, "geometry": {"type": "Polygon", "coordinates": [[[15.5415344, -4.1615278, 0.0], [15.5429077, -4.1615278, 0.0], [15.5429077, -4.1574188, 0.0], [15.5415344, -4.1574188, 0.0], [15.5415344, -4.1615278, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2103}, "geometry": {"type": "Polygon", "coordinates": [[[15.5429077, -4.1656368, 0.0], [15.544281, -4.1656368, 0.0], [15.544281, -4.1628975, 0.0], [15.5429077, -4.1628975, 0.0], [15.5429077, -4.1656368, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2104}, "geometry": {"type": "Polygon", "coordinates": [[[15.534668, -4.1738548, 0.0], [15.5387878, -4.1738548, 0.0], [15.5387878, -4.1697458, 0.0], [15.534668, -4.1697458, 0.0], [15.534668, -4.1738548, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2105}, "geometry": {"type": "Polygon", "coordinates": [[[15.544281, -4.1683761, 0.0], [15.5484009, -4.1683761, 0.0], [15.5484009, -4.1628975, 0.0], [15.544281, -4.1628975, 0.0], [15.544281, -4.1683761, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2106}, "geometry": {"type": "Polygon", "coordinates": [[[15.5484009, -4.1683761, 0.0], [15.553894, -4.1683761, 0.0], [15.553894, -4.1656368, 0.0], [15.5484009, -4.1656368, 0.0], [15.5484009, -4.1683761, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2107}, "geometry": {"type": "Polygon", "coordinates": [[[15.544281, -4.1738548, 0.0], [15.5484009, -4.1738548, 0.0], [15.5484009, -4.1683761, 0.0], [15.544281, -4.1683761, 0.0], [15.544281, -4.1738548, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2108}, "geometry": {"type": "Polygon", "coordinates": [[[15.5484009, -4.1738548, 0.0], [15.553894, -4.1738548, 0.0], [15.553894, -4.1683761, 0.0], [15.5484009, -4.1683761, 0.0], [15.5484009, -4.1738548, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2109}, "geometry": {"type": "Polygon", "coordinates": [[[15.5580139, -4.1546794, 0.0], [15.5635071, -4.1546794, 0.0], [15.5635071, -4.1505704, 0.0], [15.5580139, -4.1505704, 0.0], [15.5580139, -4.1546794, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2110}, "geometry": {"type": "Polygon", "coordinates": [[[15.5566406, -4.1587885, 0.0], [15.5635071, -4.1587885, 0.0], [15.5635071, -4.1546794, 0.0], [15.5566406, -4.1546794, 0.0], [15.5566406, -4.1587885, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2111}, "geometry": {"type": "Polygon", "coordinates": [[[15.5690002, -4.1505704, 0.0], [15.5731201, -4.1505704, 0.0], [15.5731201, -4.1450916, 0.0], [15.5690002, -4.1450916, 0.0], [15.5690002, -4.1505704, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2112}, "geometry": {"type": "Polygon", "coordinates": [[[15.5717468, -4.1587885, 0.0], [15.5731201, -4.1587885, 0.0], [15.5731201, -4.1560491, 0.0], [15.5717468, -4.1560491, 0.0], [15.5717468, -4.1587885, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2113}, "geometry": {"type": "Polygon", "coordinates": [[[15.5401611, -4.1902904, 0.0], [15.5470276, -4.1902904, 0.0], [15.5470276, -4.1875511, 0.0], [15.5401611, -4.1875511, 0.0], [15.5401611, -4.1902904, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2114}, "geometry": {"type": "Polygon", "coordinates": [[[15.5456543, -4.2026169, 0.0], [15.5497742, -4.2026169, 0.0], [15.5497742, -4.1971384, 0.0], [15.5456543, -4.1971384, 0.0], [15.5456543, -4.2026169, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2115}, "geometry": {"type": "Polygon", "coordinates": [[[15.5497742, -4.2026169, 0.0], [15.553894, -4.2026169, 0.0], [15.553894, -4.1943992, 0.0], [15.5497742, -4.1943992, 0.0], [15.5497742, -4.2026169, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2116}, "geometry": {"type": "Polygon", "coordinates": [[[15.5731201, -4.1450916, 0.0], [15.57724, -4.1450916, 0.0], [15.57724, -4.1423522, 0.0], [15.5731201, -4.1423522, 0.0], [15.5731201, -4.1450916, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2117}, "geometry": {"type": "Polygon", "coordinates": [[[15.5731201, -4.147831, 0.0], [15.5744934, -4.147831, 0.0], [15.5744934, -4.1464613, 0.0], [15.5731201, -4.1464613, 0.0], [15.5731201, -4.147831, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2118}, "geometry": {"type": "Polygon", "coordinates": [[[15.5731201, -4.1574188, 0.0], [15.57724, -4.1574188, 0.0], [15.57724, -4.1505704, 0.0], [15.5731201, -4.1505704, 0.0], [15.5731201, -4.1574188, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2119}, "geometry": {"type": "Polygon", "coordinates": [[[15.5813599, -4.1574188, 0.0], [15.5827332, -4.1574188, 0.0], [15.5827332, -4.1560491, 0.0], [15.5813599, -4.1560491, 0.0], [15.5813599, -4.1574188, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2120}, "geometry": {"type": "Polygon", "coordinates": [[[15.5731201, -4.1615278, 0.0], [15.5799866, -4.1615278, 0.0], [15.5799866, -4.1574188, 0.0], [15.5731201, -4.1574188, 0.0], [15.5731201, -4.1615278, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2121}, "geometry": {"type": "Polygon", "coordinates": [[[15.5799866, -4.1615278, 0.0], [15.586853, -4.1615278, 0.0], [15.586853, -4.1587885, 0.0], [15.5799866, -4.1587885, 0.0], [15.5799866, -4.1615278, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2122}, "geometry": {"type": "Polygon", "coordinates": [[[15.5731201, -4.1724851, 0.0], [15.5786133, -4.1724851, 0.0], [15.5786133, -4.1656368, 0.0], [15.5731201, -4.1656368, 0.0], [15.5731201, -4.1724851, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2123}, "geometry": {"type": "Polygon", "coordinates": [[[15.5786133, -4.1724851, 0.0], [15.5854797, -4.1724851, 0.0], [15.5854797, -4.1656368, 0.0], [15.5786133, -4.1656368, 0.0], [15.5786133, -4.1724851, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2124}, "geometry": {"type": "Polygon", "coordinates": [[[15.586853, -4.1628975, 0.0], [15.5909729, -4.1628975, 0.0], [15.5909729, -4.1574188, 0.0], [15.586853, -4.1574188, 0.0], [15.586853, -4.1628975, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2125}, "geometry": {"type": "Polygon", "coordinates": [[[15.586853, -4.1683761, 0.0], [15.5937195, -4.1683761, 0.0], [15.5937195, -4.1642672, 0.0], [15.586853, -4.1642672, 0.0], [15.586853, -4.1683761, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2126}, "geometry": {"type": "Polygon", "coordinates": [[[15.5937195, -4.1670065, 0.0], [15.5950928, -4.1670065, 0.0], [15.5950928, -4.1656368, 0.0], [15.5937195, -4.1656368, 0.0], [15.5937195, -4.1670065, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2127}, "geometry": {"type": "Polygon", "coordinates": [[[15.5978394, -4.1724851, 0.0], [15.6019592, -4.1724851, 0.0], [15.6019592, -4.1697458, 0.0], [15.5978394, -4.1697458, 0.0], [15.5978394, -4.1724851, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2128}, "geometry": {"type": "Polygon", "coordinates": [[[15.5895996, -4.180703, 0.0], [15.5923462, -4.180703, 0.0], [15.5923462, -4.176594, 0.0], [15.5895996, -4.176594, 0.0], [15.5895996, -4.180703, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2129}, "geometry": {"type": "Polygon", "coordinates": [[[15.5841064, -4.1861815, 0.0], [15.5909729, -4.1861815, 0.0], [15.5909729, -4.180703, 0.0], [15.5841064, -4.180703, 0.0], [15.5841064, -4.1861815, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2130}, "geometry": {"type": "Polygon", "coordinates": [[[15.5937195, -4.176594, 0.0], [15.5992126, -4.176594, 0.0], [15.5992126, -4.1738548, 0.0], [15.5937195, -4.1738548, 0.0], [15.5937195, -4.176594, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2131}, "geometry": {"type": "Polygon", "coordinates": [[[15.5923462, -4.1834422, 0.0], [15.5978394, -4.1834422, 0.0], [15.5978394, -4.1779637, 0.0], [15.5923462, -4.1779637, 0.0], [15.5923462, -4.1834422, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2132}, "geometry": {"type": "Polygon", "coordinates": [[[15.6005859, -4.176594, 0.0], [15.6033325, -4.176594, 0.0], [15.6033325, -4.1752244, 0.0], [15.6005859, -4.1752244, 0.0], [15.6005859, -4.176594, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2133}, "geometry": {"type": "Polygon", "coordinates": [[[15.6074524, -4.1875511, 0.0], [15.610199, -4.1875511, 0.0], [15.610199, -4.1848119, 0.0], [15.6074524, -4.1848119, 0.0], [15.6074524, -4.1875511, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2134}, "geometry": {"type": "Polygon", "coordinates": [[[15.5484009, -4.2094648, 0.0], [15.5525208, -4.2094648, 0.0], [15.5525208, -4.2026169, 0.0], [15.5484009, -4.2026169, 0.0], [15.5484009, -4.2094648, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2135}, "geometry": {"type": "Polygon", "coordinates": [[[15.5525208, -4.2080952, 0.0], [15.5566406, -4.2080952, 0.0], [15.5566406, -4.2026169, 0.0], [15.5525208, -4.2026169, 0.0], [15.5525208, -4.2080952, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2136}, "geometry": {"type": "Polygon", "coordinates": [[[15.5566406, -4.212204, 0.0], [15.5648804, -4.212204, 0.0], [15.5648804, -4.2067256, 0.0], [15.5566406, -4.2067256, 0.0], [15.5566406, -4.212204, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2137}, "geometry": {"type": "Polygon", "coordinates": [[[15.5525208, -4.2258997, 0.0], [15.5566406, -4.2258997, 0.0], [15.5566406, -4.2190519, 0.0], [15.5525208, -4.2190519, 0.0], [15.5525208, -4.2258997, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2138}, "geometry": {"type": "Polygon", "coordinates": [[[15.5566406, -4.2176823, 0.0], [15.5621338, -4.2176823, 0.0], [15.5621338, -4.2135736, 0.0], [15.5566406, -4.2135736, 0.0], [15.5566406, -4.2176823, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2139}, "geometry": {"type": "Polygon", "coordinates": [[[15.5580139, -4.2258997, 0.0], [15.5648804, -4.2258997, 0.0], [15.5648804, -4.2190519, 0.0], [15.5580139, -4.2190519, 0.0], [15.5580139, -4.2258997, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2140}, "geometry": {"type": "Polygon", "coordinates": [[[15.5648804, -4.2080952, 0.0], [15.5731201, -4.2080952, 0.0], [15.5731201, -4.2026169, 0.0], [15.5648804, -4.2026169, 0.0], [15.5648804, -4.2080952, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2141}, "geometry": {"type": "Polygon", "coordinates": [[[15.5648804, -4.2149431, 0.0], [15.5731201, -4.2149431, 0.0], [15.5731201, -4.2080952, 0.0], [15.5648804, -4.2080952, 0.0], [15.5648804, -4.2149431, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2142}, "geometry": {"type": "Polygon", "coordinates": [[[15.5731201, -4.2149431, 0.0], [15.5813599, -4.2149431, 0.0], [15.5813599, -4.2080952, 0.0], [15.5731201, -4.2080952, 0.0], [15.5731201, -4.2149431, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2143}, "geometry": {"type": "Polygon", "coordinates": [[[15.5648804, -4.2204214, 0.0], [15.5731201, -4.2204214, 0.0], [15.5731201, -4.2149431, 0.0], [15.5648804, -4.2149431, 0.0], [15.5648804, -4.2204214, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2144}, "geometry": {"type": "Polygon", "coordinates": [[[15.5648804, -4.2258997, 0.0], [15.5731201, -4.2258997, 0.0], [15.5731201, -4.2204214, 0.0], [15.5648804, -4.2204214, 0.0], [15.5648804, -4.2258997, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2145}, "geometry": {"type": "Polygon", "coordinates": [[[15.5813599, -4.2190519, 0.0], [15.586853, -4.2190519, 0.0], [15.586853, -4.2163127, 0.0], [15.5813599, -4.2163127, 0.0], [15.5813599, -4.2190519, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2146}, "geometry": {"type": "Polygon", "coordinates": [[[15.5882263, -4.2231606, 0.0], [15.5923462, -4.2231606, 0.0], [15.5923462, -4.2190519, 0.0], [15.5882263, -4.2190519, 0.0], [15.5882263, -4.2231606, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2147}, "geometry": {"type": "Polygon", "coordinates": [[[15.5813599, -4.2286388, 0.0], [15.5854797, -4.2286388, 0.0], [15.5854797, -4.2231606, 0.0], [15.5813599, -4.2231606, 0.0], [15.5813599, -4.2286388, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2148}, "geometry": {"type": "Polygon", "coordinates": [[[15.5854797, -4.2313779, 0.0], [15.5909729, -4.2313779, 0.0], [15.5909729, -4.2245301, 0.0], [15.5854797, -4.2245301, 0.0], [15.5854797, -4.2313779, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2149}, "geometry": {"type": "Polygon", "coordinates": [[[15.5827332, -4.2382256, 0.0], [15.5882263, -4.2382256, 0.0], [15.5882263, -4.2313779, 0.0], [15.5827332, -4.2313779, 0.0], [15.5827332, -4.2382256, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2150}, "geometry": {"type": "Polygon", "coordinates": [[[15.5882263, -4.2382256, 0.0], [15.5950928, -4.2382256, 0.0], [15.5950928, -4.2327474, 0.0], [15.5882263, -4.2327474, 0.0], [15.5882263, -4.2382256, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2151}, "geometry": {"type": "Polygon", "coordinates": [[[15.5950928, -4.2450732, 0.0], [15.5992126, -4.2450732, 0.0], [15.5992126, -4.2382256, 0.0], [15.5950928, -4.2382256, 0.0], [15.5950928, -4.2450732, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2152}, "geometry": {"type": "Polygon", "coordinates": [[[15.6019592, -4.2368561, 0.0], [15.6047058, -4.2368561, 0.0], [15.6047058, -4.2313779, 0.0], [15.6019592, -4.2313779, 0.0], [15.6019592, -4.2368561, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2153}, "geometry": {"type": "Polygon", "coordinates": [[[15.6019592, -4.2423342, 0.0], [15.6088257, -4.2423342, 0.0], [15.6088257, -4.2368561, 0.0], [15.6019592, -4.2368561, 0.0], [15.6019592, -4.2423342, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2154}, "geometry": {"type": "Polygon", "coordinates": [[[15.5813599, -4.2519208, 0.0], [15.5854797, -4.2519208, 0.0], [15.5854797, -4.2450732, 0.0], [15.5813599, -4.2450732, 0.0], [15.5813599, -4.2519208, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2155}, "geometry": {"type": "Polygon", "coordinates": [[[15.5854797, -4.2519208, 0.0], [15.5909729, -4.2519208, 0.0], [15.5909729, -4.2450732, 0.0], [15.5854797, -4.2450732, 0.0], [15.5854797, -4.2519208, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2156}, "geometry": {"type": "Polygon", "coordinates": [[[15.5827332, -4.2560294, 0.0], [15.5882263, -4.2560294, 0.0], [15.5882263, -4.2519208, 0.0], [15.5827332, -4.2519208, 0.0], [15.5827332, -4.2560294, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2157}, "geometry": {"type": "Polygon", "coordinates": [[[15.5813599, -4.2601379, 0.0], [15.5882263, -4.2601379, 0.0], [15.5882263, -4.2560294, 0.0], [15.5813599, -4.2560294, 0.0], [15.5813599, -4.2601379, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2158}, "geometry": {"type": "Polygon", "coordinates": [[[15.6912231, -4.1848119, 0.0], [15.6967163, -4.1848119, 0.0], [15.6967163, -4.1820726, 0.0], [15.6912231, -4.1820726, 0.0], [15.6912231, -4.1848119, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2159}, "geometry": {"type": "Polygon", "coordinates": [[[15.6912231, -4.1889207, 0.0], [15.6967163, -4.1889207, 0.0], [15.6967163, -4.1848119, 0.0], [15.6912231, -4.1848119, 0.0], [15.6912231, -4.1889207, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2160}, "geometry": {"type": "Polygon", "coordinates": [[[15.6980896, -4.1779637, 0.0], [15.7022095, -4.1779637, 0.0], [15.7022095, -4.1752244, 0.0], [15.6980896, -4.1752244, 0.0], [15.6980896, -4.1779637, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2161}, "geometry": {"type": "Polygon", "coordinates": [[[15.6967163, -4.1820726, 0.0], [15.7022095, -4.1820726, 0.0], [15.7022095, -4.1779637, 0.0], [15.6967163, -4.1779637, 0.0], [15.6967163, -4.1820726, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2162}, "geometry": {"type": "Polygon", "coordinates": [[[15.6967163, -4.1848119, 0.0], [15.7022095, -4.1848119, 0.0], [15.7022095, -4.1820726, 0.0], [15.6967163, -4.1820726, 0.0], [15.6967163, -4.1848119, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2163}, "geometry": {"type": "Polygon", "coordinates": [[[15.6967163, -4.1889207, 0.0], [15.7022095, -4.1889207, 0.0], [15.7022095, -4.1848119, 0.0], [15.6967163, -4.1848119, 0.0], [15.6967163, -4.1889207, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2164}, "geometry": {"type": "Polygon", "coordinates": [[[15.7022095, -4.1848119, 0.0], [15.7077026, -4.1848119, 0.0], [15.7077026, -4.1820726, 0.0], [15.7022095, -4.1820726, 0.0], [15.7022095, -4.1848119, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2165}, "geometry": {"type": "Polygon", "coordinates": [[[15.7022095, -4.1889207, 0.0], [15.7077026, -4.1889207, 0.0], [15.7077026, -4.1848119, 0.0], [15.7022095, -4.1848119, 0.0], [15.7022095, -4.1889207, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2166}, "geometry": {"type": "Polygon", "coordinates": [[[15.6939697, -4.1998777, 0.0], [15.6980896, -4.1998777, 0.0], [15.6980896, -4.1957688, 0.0], [15.6939697, -4.1957688, 0.0], [15.6939697, -4.1998777, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2167}, "geometry": {"type": "Polygon", "coordinates": [[[15.6939697, -4.2039865, 0.0], [15.6980896, -4.2039865, 0.0], [15.6980896, -4.1998777, 0.0], [15.6939697, -4.1998777, 0.0], [15.6939697, -4.2039865, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2168}, "geometry": {"type": "Polygon", "coordinates": [[[15.6980896, -4.19166, 0.0], [15.7022095, -4.19166, 0.0], [15.7022095, -4.1889207, 0.0], [15.6980896, -4.1889207, 0.0], [15.6980896, -4.19166, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2169}, "geometry": {"type": "Polygon", "coordinates": [[[15.6980896, -4.1957688, 0.0], [15.7022095, -4.1957688, 0.0], [15.7022095, -4.19166, 0.0], [15.6980896, -4.19166, 0.0], [15.6980896, -4.1957688, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2170}, "geometry": {"type": "Polygon", "coordinates": [[[15.7022095, -4.19166, 0.0], [15.7049561, -4.19166, 0.0], [15.7049561, -4.1889207, 0.0], [15.7022095, -4.1889207, 0.0], [15.7022095, -4.19166, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2171}, "geometry": {"type": "Polygon", "coordinates": [[[15.7022095, -4.1957688, 0.0], [15.7077026, -4.1957688, 0.0], [15.7077026, -4.19166, 0.0], [15.7022095, -4.19166, 0.0], [15.7022095, -4.1957688, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2172}, "geometry": {"type": "Polygon", "coordinates": [[[15.6980896, -4.1998777, 0.0], [15.7022095, -4.1998777, 0.0], [15.7022095, -4.1957688, 0.0], [15.6980896, -4.1957688, 0.0], [15.6980896, -4.1998777, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2173}, "geometry": {"type": "Polygon", "coordinates": [[[15.6980896, -4.2039865, 0.0], [15.7022095, -4.2039865, 0.0], [15.7022095, -4.1998777, 0.0], [15.6980896, -4.1998777, 0.0], [15.6980896, -4.2039865, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2174}, "geometry": {"type": "Polygon", "coordinates": [[[15.7022095, -4.1998777, 0.0], [15.7077026, -4.1998777, 0.0], [15.7077026, -4.1957688, 0.0], [15.7022095, -4.1957688, 0.0], [15.7022095, -4.1998777, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2175}, "geometry": {"type": "Polygon", "coordinates": [[[15.7022095, -4.2039865, 0.0], [15.7077026, -4.2039865, 0.0], [15.7077026, -4.1998777, 0.0], [15.7022095, -4.1998777, 0.0], [15.7022095, -4.2039865, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2176}, "geometry": {"type": "Polygon", "coordinates": [[[15.7077026, -4.1998777, 0.0], [15.7118225, -4.1998777, 0.0], [15.7118225, -4.1957688, 0.0], [15.7077026, -4.1957688, 0.0], [15.7077026, -4.1998777, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2177}, "geometry": {"type": "Polygon", "coordinates": [[[15.7077026, -4.2039865, 0.0], [15.7118225, -4.2039865, 0.0], [15.7118225, -4.1998777, 0.0], [15.7077026, -4.1998777, 0.0], [15.7077026, -4.2039865, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2178}, "geometry": {"type": "Polygon", "coordinates": [[[15.7118225, -4.1998777, 0.0], [15.7173157, -4.1998777, 0.0], [15.7173157, -4.1957688, 0.0], [15.7118225, -4.1957688, 0.0], [15.7118225, -4.1998777, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2179}, "geometry": {"type": "Polygon", "coordinates": [[[15.7118225, -4.2039865, 0.0], [15.7159424, -4.2039865, 0.0], [15.7159424, -4.1998777, 0.0], [15.7118225, -4.1998777, 0.0], [15.7118225, -4.2039865, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2180}, "geometry": {"type": "Polygon", "coordinates": [[[15.5497742, -4.0683848, 0.0], [15.5525208, -4.0683848, 0.0], [15.5525208, -4.0642753, 0.0], [15.5497742, -4.0642753, 0.0], [15.5497742, -4.0683848, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2181}, "geometry": {"type": "Polygon", "coordinates": [[[15.5525208, -4.0683848, 0.0], [15.5566406, -4.0683848, 0.0], [15.5566406, -4.0642753, 0.0], [15.5525208, -4.0642753, 0.0], [15.5525208, -4.0683848, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2182}, "geometry": {"type": "Polygon", "coordinates": [[[15.5497742, -4.0724943, 0.0], [15.5525208, -4.0724943, 0.0], [15.5525208, -4.0683848, 0.0], [15.5497742, -4.0683848, 0.0], [15.5497742, -4.0724943, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2183}, "geometry": {"type": "Polygon", "coordinates": [[[15.5525208, -4.0724943, 0.0], [15.5566406, -4.0724943, 0.0], [15.5566406, -4.0683848, 0.0], [15.5525208, -4.0683848, 0.0], [15.5525208, -4.0724943, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2184}, "geometry": {"type": "Polygon", "coordinates": [[[15.5497742, -4.0766037, 0.0], [15.5525208, -4.0766037, 0.0], [15.5525208, -4.0724943, 0.0], [15.5497742, -4.0724943, 0.0], [15.5497742, -4.0766037, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2185}, "geometry": {"type": "Polygon", "coordinates": [[[15.5525208, -4.0766037, 0.0], [15.5566406, -4.0766037, 0.0], [15.5566406, -4.0724943, 0.0], [15.5525208, -4.0724943, 0.0], [15.5525208, -4.0766037, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2186}, "geometry": {"type": "Polygon", "coordinates": [[[15.5648804, -4.0546864, 0.0], [15.5690002, -4.0546864, 0.0], [15.5690002, -4.0519466, 0.0], [15.5648804, -4.0519466, 0.0], [15.5648804, -4.0546864, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2187}, "geometry": {"type": "Polygon", "coordinates": [[[15.5648804, -4.0587959, 0.0], [15.5690002, -4.0587959, 0.0], [15.5690002, -4.0546864, 0.0], [15.5648804, -4.0546864, 0.0], [15.5648804, -4.0587959, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2188}, "geometry": {"type": "Polygon", "coordinates": [[[15.5236816, -4.0957809, 0.0], [15.5264282, -4.0957809, 0.0], [15.5264282, -4.0903018, 0.0], [15.5236816, -4.0903018, 0.0], [15.5236816, -4.0957809, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2189}, "geometry": {"type": "Polygon", "coordinates": [[[15.5264282, -4.0957809, 0.0], [15.5291748, -4.0957809, 0.0], [15.5291748, -4.0903018, 0.0], [15.5264282, -4.0903018, 0.0], [15.5264282, -4.0957809, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2190}, "geometry": {"type": "Polygon", "coordinates": [[[15.5236816, -4.10126, 0.0], [15.5264282, -4.10126, 0.0], [15.5264282, -4.0957809, 0.0], [15.5236816, -4.0957809, 0.0], [15.5236816, -4.10126, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2191}, "geometry": {"type": "Polygon", "coordinates": [[[15.5264282, -4.10126, 0.0], [15.5291748, -4.10126, 0.0], [15.5291748, -4.0957809, 0.0], [15.5264282, -4.0957809, 0.0], [15.5264282, -4.10126, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2192}, "geometry": {"type": "Polygon", "coordinates": [[[15.5401611, -4.1683761, 0.0], [15.544281, -4.1683761, 0.0], [15.544281, -4.1656368, 0.0], [15.5401611, -4.1656368, 0.0], [15.5401611, -4.1683761, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2193}, "geometry": {"type": "Polygon", "coordinates": [[[15.5387878, -4.1738548, 0.0], [15.544281, -4.1738548, 0.0], [15.544281, -4.1697458, 0.0], [15.5387878, -4.1697458, 0.0], [15.5387878, -4.1738548, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2194}, "geometry": {"type": "Polygon", "coordinates": [[[15.5566406, -4.1615278, 0.0], [15.5580139, -4.1615278, 0.0], [15.5580139, -4.1587885, 0.0], [15.5566406, -4.1587885, 0.0], [15.5566406, -4.1615278, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2195}, "geometry": {"type": "Polygon", "coordinates": [[[15.5566406, -4.1656368, 0.0], [15.5607605, -4.1656368, 0.0], [15.5607605, -4.1615278, 0.0], [15.5566406, -4.1615278, 0.0], [15.5566406, -4.1656368, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2196}, "geometry": {"type": "Polygon", "coordinates": [[[15.553894, -4.1738548, 0.0], [15.5580139, -4.1738548, 0.0], [15.5580139, -4.1670065, 0.0], [15.553894, -4.1670065, 0.0], [15.553894, -4.1738548, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2197}, "geometry": {"type": "Polygon", "coordinates": [[[15.5580139, -4.1738548, 0.0], [15.5635071, -4.1738548, 0.0], [15.5635071, -4.1656368, 0.0], [15.5580139, -4.1656368, 0.0], [15.5580139, -4.1738548, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2198}, "geometry": {"type": "Polygon", "coordinates": [[[15.5717468, -4.1615278, 0.0], [15.5731201, -4.1615278, 0.0], [15.5731201, -4.1587885, 0.0], [15.5717468, -4.1587885, 0.0], [15.5717468, -4.1615278, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2199}, "geometry": {"type": "Polygon", "coordinates": [[[15.5703735, -4.1656368, 0.0], [15.5731201, -4.1656368, 0.0], [15.5731201, -4.1628975, 0.0], [15.5703735, -4.1628975, 0.0], [15.5703735, -4.1656368, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2200}, "geometry": {"type": "Polygon", "coordinates": [[[15.5635071, -4.1738548, 0.0], [15.567627, -4.1738548, 0.0], [15.567627, -4.1683761, 0.0], [15.5635071, -4.1683761, 0.0], [15.5635071, -4.1738548, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2201}, "geometry": {"type": "Polygon", "coordinates": [[[15.567627, -4.1738548, 0.0], [15.5731201, -4.1738548, 0.0], [15.5731201, -4.1656368, 0.0], [15.567627, -4.1656368, 0.0], [15.567627, -4.1738548, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2202}, "geometry": {"type": "Polygon", "coordinates": [[[15.534668, -4.180703, 0.0], [15.5387878, -4.180703, 0.0], [15.5387878, -4.1738548, 0.0], [15.534668, -4.1738548, 0.0], [15.534668, -4.180703, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2203}, "geometry": {"type": "Polygon", "coordinates": [[[15.5387878, -4.180703, 0.0], [15.544281, -4.180703, 0.0], [15.544281, -4.1738548, 0.0], [15.5387878, -4.1738548, 0.0], [15.5387878, -4.180703, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2204}, "geometry": {"type": "Polygon", "coordinates": [[[15.5360413, -4.1848119, 0.0], [15.5401611, -4.1848119, 0.0], [15.5401611, -4.180703, 0.0], [15.5360413, -4.180703, 0.0], [15.5360413, -4.1848119, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2205}, "geometry": {"type": "Polygon", "coordinates": [[[15.5401611, -4.1875511, 0.0], [15.544281, -4.1875511, 0.0], [15.544281, -4.180703, 0.0], [15.5401611, -4.180703, 0.0], [15.5401611, -4.1875511, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2206}, "geometry": {"type": "Polygon", "coordinates": [[[15.544281, -4.180703, 0.0], [15.5484009, -4.180703, 0.0], [15.5484009, -4.1738548, 0.0], [15.544281, -4.1738548, 0.0], [15.544281, -4.180703, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2207}, "geometry": {"type": "Polygon", "coordinates": [[[15.5484009, -4.180703, 0.0], [15.553894, -4.180703, 0.0], [15.553894, -4.1738548, 0.0], [15.5484009, -4.1738548, 0.0], [15.5484009, -4.180703, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2208}, "geometry": {"type": "Polygon", "coordinates": [[[15.544281, -4.1875511, 0.0], [15.5484009, -4.1875511, 0.0], [15.5484009, -4.180703, 0.0], [15.544281, -4.180703, 0.0], [15.544281, -4.1875511, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2209}, "geometry": {"type": "Polygon", "coordinates": [[[15.5470276, -4.1943992, 0.0], [15.5497742, -4.1943992, 0.0], [15.5497742, -4.1875511, 0.0], [15.5470276, -4.1875511, 0.0], [15.5470276, -4.1943992, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2210}, "geometry": {"type": "Polygon", "coordinates": [[[15.5497742, -4.1943992, 0.0], [15.553894, -4.1943992, 0.0], [15.553894, -4.1875511, 0.0], [15.5497742, -4.1875511, 0.0], [15.5497742, -4.1943992, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2211}, "geometry": {"type": "Polygon", "coordinates": [[[15.553894, -4.180703, 0.0], [15.5580139, -4.180703, 0.0], [15.5580139, -4.1738548, 0.0], [15.553894, -4.1738548, 0.0], [15.553894, -4.180703, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2212}, "geometry": {"type": "Polygon", "coordinates": [[[15.5635071, -4.180703, 0.0], [15.567627, -4.180703, 0.0], [15.567627, -4.1738548, 0.0], [15.5635071, -4.1738548, 0.0], [15.5635071, -4.180703, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2213}, "geometry": {"type": "Polygon", "coordinates": [[[15.567627, -4.180703, 0.0], [15.5717468, -4.180703, 0.0], [15.5717468, -4.1779637, 0.0], [15.567627, -4.1779637, 0.0], [15.567627, -4.180703, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2214}, "geometry": {"type": "Polygon", "coordinates": [[[15.5635071, -4.1875511, 0.0], [15.567627, -4.1875511, 0.0], [15.567627, -4.180703, 0.0], [15.5635071, -4.180703, 0.0], [15.5635071, -4.1875511, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2215}, "geometry": {"type": "Polygon", "coordinates": [[[15.567627, -4.1875511, 0.0], [15.5731201, -4.1875511, 0.0], [15.5731201, -4.180703, 0.0], [15.567627, -4.180703, 0.0], [15.567627, -4.1875511, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2216}, "geometry": {"type": "Polygon", "coordinates": [[[15.5635071, -4.1943992, 0.0], [15.567627, -4.1943992, 0.0], [15.567627, -4.1930296, 0.0], [15.5635071, -4.1930296, 0.0], [15.5635071, -4.1943992, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2217}, "geometry": {"type": "Polygon", "coordinates": [[[15.567627, -4.1943992, 0.0], [15.5731201, -4.1943992, 0.0], [15.5731201, -4.1875511, 0.0], [15.567627, -4.1875511, 0.0], [15.567627, -4.1943992, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2218}, "geometry": {"type": "Polygon", "coordinates": [[[15.5635071, -4.2026169, 0.0], [15.567627, -4.2026169, 0.0], [15.567627, -4.1957688, 0.0], [15.5635071, -4.1957688, 0.0], [15.5635071, -4.2026169, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2219}, "geometry": {"type": "Polygon", "coordinates": [[[15.567627, -4.2026169, 0.0], [15.5731201, -4.2026169, 0.0], [15.5731201, -4.1957688, 0.0], [15.567627, -4.1957688, 0.0], [15.567627, -4.2026169, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2220}, "geometry": {"type": "Polygon", "coordinates": [[[15.5731201, -4.176594, 0.0], [15.5758667, -4.176594, 0.0], [15.5758667, -4.1738548, 0.0], [15.5731201, -4.1738548, 0.0], [15.5731201, -4.176594, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2221}, "geometry": {"type": "Polygon", "coordinates": [[[15.5758667, -4.176594, 0.0], [15.5799866, -4.176594, 0.0], [15.5799866, -4.1738548, 0.0], [15.5758667, -4.1738548, 0.0], [15.5758667, -4.176594, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2222}, "geometry": {"type": "Polygon", "coordinates": [[[15.5731201, -4.1875511, 0.0], [15.57724, -4.1875511, 0.0], [15.57724, -4.1834422, 0.0], [15.5731201, -4.1834422, 0.0], [15.5731201, -4.1875511, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2223}, "geometry": {"type": "Polygon", "coordinates": [[[15.57724, -4.1875511, 0.0], [15.5827332, -4.1875511, 0.0], [15.5827332, -4.1820726, 0.0], [15.57724, -4.1820726, 0.0], [15.57724, -4.1875511, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2224}, "geometry": {"type": "Polygon", "coordinates": [[[15.5731201, -4.1930296, 0.0], [15.57724, -4.1930296, 0.0], [15.57724, -4.1875511, 0.0], [15.5731201, -4.1875511, 0.0], [15.5731201, -4.1930296, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2225}, "geometry": {"type": "Polygon", "coordinates": [[[15.5799866, -4.1889207, 0.0], [15.5813599, -4.1889207, 0.0], [15.5813599, -4.1875511, 0.0], [15.5799866, -4.1875511, 0.0], [15.5799866, -4.1889207, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2226}, "geometry": {"type": "Polygon", "coordinates": [[[15.5813599, -4.1971384, 0.0], [15.5827332, -4.1971384, 0.0], [15.5827332, -4.1957688, 0.0], [15.5813599, -4.1957688, 0.0], [15.5813599, -4.1971384, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2227}, "geometry": {"type": "Polygon", "coordinates": [[[15.57724, -4.2026169, 0.0], [15.5827332, -4.2026169, 0.0], [15.5827332, -4.198508, 0.0], [15.57724, -4.198508, 0.0], [15.57724, -4.2026169, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2228}, "geometry": {"type": "Polygon", "coordinates": [[[15.5827332, -4.1943992, 0.0], [15.586853, -4.1943992, 0.0], [15.586853, -4.19166, 0.0], [15.5827332, -4.19166, 0.0], [15.5827332, -4.1943992, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2229}, "geometry": {"type": "Polygon", "coordinates": [[[15.586853, -4.1957688, 0.0], [15.5923462, -4.1957688, 0.0], [15.5923462, -4.1889207, 0.0], [15.586853, -4.1889207, 0.0], [15.586853, -4.1957688, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2230}, "geometry": {"type": "Polygon", "coordinates": [[[15.5827332, -4.2026169, 0.0], [15.586853, -4.2026169, 0.0], [15.586853, -4.1971384, 0.0], [15.5827332, -4.1971384, 0.0], [15.5827332, -4.2026169, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2231}, "geometry": {"type": "Polygon", "coordinates": [[[15.5937195, -4.1943992, 0.0], [15.5964661, -4.1943992, 0.0], [15.5964661, -4.1902904, 0.0], [15.5937195, -4.1902904, 0.0], [15.5937195, -4.1943992, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2232}, "geometry": {"type": "Polygon", "coordinates": [[[15.5923462, -4.1998777, 0.0], [15.5964661, -4.1998777, 0.0], [15.5964661, -4.1943992, 0.0], [15.5923462, -4.1943992, 0.0], [15.5923462, -4.1998777, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2233}, "geometry": {"type": "Polygon", "coordinates": [[[15.5964661, -4.1943992, 0.0], [15.6019592, -4.1943992, 0.0], [15.6019592, -4.1902904, 0.0], [15.5964661, -4.1902904, 0.0], [15.5964661, -4.1943992, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2234}, "geometry": {"type": "Polygon", "coordinates": [[[15.5964661, -4.1998777, 0.0], [15.6019592, -4.1998777, 0.0], [15.6019592, -4.1943992, 0.0], [15.5964661, -4.1943992, 0.0], [15.5964661, -4.1998777, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2235}, "geometry": {"type": "Polygon", "coordinates": [[[15.6033325, -4.1930296, 0.0], [15.6074524, -4.1930296, 0.0], [15.6074524, -4.1902904, 0.0], [15.6033325, -4.1902904, 0.0], [15.6033325, -4.1930296, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2236}, "geometry": {"type": "Polygon", "coordinates": [[[15.6074524, -4.1930296, 0.0], [15.6129456, -4.1930296, 0.0], [15.6129456, -4.1875511, 0.0], [15.6074524, -4.1875511, 0.0], [15.6074524, -4.1930296, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2237}, "geometry": {"type": "Polygon", "coordinates": [[[15.6019592, -4.198508, 0.0], [15.6088257, -4.198508, 0.0], [15.6088257, -4.1943992, 0.0], [15.6019592, -4.1943992, 0.0], [15.6019592, -4.198508, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2238}, "geometry": {"type": "Polygon", "coordinates": [[[15.6019592, -4.2026169, 0.0], [15.6074524, -4.2026169, 0.0], [15.6074524, -4.198508, 0.0], [15.6019592, -4.198508, 0.0], [15.6019592, -4.2026169, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2239}, "geometry": {"type": "Polygon", "coordinates": [[[15.5566406, -4.2067256, 0.0], [15.5607605, -4.2067256, 0.0], [15.5607605, -4.2026169, 0.0], [15.5566406, -4.2026169, 0.0], [15.5566406, -4.2067256, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2240}, "geometry": {"type": "Polygon", "coordinates": [[[15.5607605, -4.2067256, 0.0], [15.5648804, -4.2067256, 0.0], [15.5648804, -4.2026169, 0.0], [15.5607605, -4.2026169, 0.0], [15.5607605, -4.2067256, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2241}, "geometry": {"type": "Polygon", "coordinates": [[[15.5497742, -4.2190519, 0.0], [15.5525208, -4.2190519, 0.0], [15.5525208, -4.2135736, 0.0], [15.5497742, -4.2135736, 0.0], [15.5497742, -4.2190519, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2242}, "geometry": {"type": "Polygon", "coordinates": [[[15.5525208, -4.2190519, 0.0], [15.5566406, -4.2190519, 0.0], [15.5566406, -4.2135736, 0.0], [15.5525208, -4.2135736, 0.0], [15.5525208, -4.2190519, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2243}, "geometry": {"type": "Polygon", "coordinates": [[[15.5731201, -4.2080952, 0.0], [15.57724, -4.2080952, 0.0], [15.57724, -4.2026169, 0.0], [15.5731201, -4.2026169, 0.0], [15.5731201, -4.2080952, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2244}, "geometry": {"type": "Polygon", "coordinates": [[[15.57724, -4.2080952, 0.0], [15.5813599, -4.2080952, 0.0], [15.5813599, -4.2026169, 0.0], [15.57724, -4.2026169, 0.0], [15.57724, -4.2080952, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2245}, "geometry": {"type": "Polygon", "coordinates": [[[15.5731201, -4.2204214, 0.0], [15.57724, -4.2204214, 0.0], [15.57724, -4.2149431, 0.0], [15.5731201, -4.2149431, 0.0], [15.5731201, -4.2204214, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2246}, "geometry": {"type": "Polygon", "coordinates": [[[15.57724, -4.2204214, 0.0], [15.5813599, -4.2204214, 0.0], [15.5813599, -4.2149431, 0.0], [15.57724, -4.2149431, 0.0], [15.57724, -4.2204214, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2247}, "geometry": {"type": "Polygon", "coordinates": [[[15.5731201, -4.2272692, 0.0], [15.57724, -4.2272692, 0.0], [15.57724, -4.2204214, 0.0], [15.5731201, -4.2204214, 0.0], [15.5731201, -4.2272692, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2248}, "geometry": {"type": "Polygon", "coordinates": [[[15.57724, -4.2245301, 0.0], [15.5813599, -4.2245301, 0.0], [15.5813599, -4.2204214, 0.0], [15.57724, -4.2204214, 0.0], [15.57724, -4.2245301, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2249}, "geometry": {"type": "Polygon", "coordinates": [[[15.5813599, -4.2450732, 0.0], [15.5841064, -4.2450732, 0.0], [15.5841064, -4.2382256, 0.0], [15.5813599, -4.2382256, 0.0], [15.5813599, -4.2450732, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2250}, "geometry": {"type": "Polygon", "coordinates": [[[15.5882263, -4.2450732, 0.0], [15.5909729, -4.2450732, 0.0], [15.5909729, -4.2382256, 0.0], [15.5882263, -4.2382256, 0.0], [15.5882263, -4.2450732, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2251}, "geometry": {"type": "Polygon", "coordinates": [[[15.5909729, -4.2450732, 0.0], [15.5950928, -4.2450732, 0.0], [15.5950928, -4.2382256, 0.0], [15.5909729, -4.2382256, 0.0], [15.5909729, -4.2450732, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2252}, "geometry": {"type": "Polygon", "coordinates": [[[15.5950928, -4.2382256, 0.0], [15.5978394, -4.2382256, 0.0], [15.5978394, -4.2354865, 0.0], [15.5950928, -4.2354865, 0.0], [15.5950928, -4.2382256, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2253}, "geometry": {"type": "Polygon", "coordinates": [[[15.5978394, -4.2382256, 0.0], [15.6019592, -4.2382256, 0.0], [15.6019592, -4.2313779, 0.0], [15.5978394, -4.2313779, 0.0], [15.5978394, -4.2382256, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2254}, "geometry": {"type": "Polygon", "coordinates": [[[15.5484009, -4.1834422, 0.0], [15.553894, -4.1834422, 0.0], [15.553894, -4.180703, 0.0], [15.5484009, -4.180703, 0.0], [15.5484009, -4.1834422, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2255}, "geometry": {"type": "Polygon", "coordinates": [[[15.5484009, -4.1875511, 0.0], [15.553894, -4.1875511, 0.0], [15.553894, -4.1834422, 0.0], [15.5484009, -4.1834422, 0.0], [15.5484009, -4.1875511, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2256}, "geometry": {"type": "Polygon", "coordinates": [[[15.5580139, -4.176594, 0.0], [15.5635071, -4.176594, 0.0], [15.5635071, -4.1738548, 0.0], [15.5580139, -4.1738548, 0.0], [15.5580139, -4.176594, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2257}, "geometry": {"type": "Polygon", "coordinates": [[[15.5580139, -4.180703, 0.0], [15.5635071, -4.180703, 0.0], [15.5635071, -4.176594, 0.0], [15.5580139, -4.176594, 0.0], [15.5580139, -4.180703, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2258}, "geometry": {"type": "Polygon", "coordinates": [[[15.553894, -4.1834422, 0.0], [15.5580139, -4.1834422, 0.0], [15.5580139, -4.180703, 0.0], [15.553894, -4.180703, 0.0], [15.553894, -4.1834422, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2259}, "geometry": {"type": "Polygon", "coordinates": [[[15.553894, -4.1875511, 0.0], [15.5580139, -4.1875511, 0.0], [15.5580139, -4.1834422, 0.0], [15.553894, -4.1834422, 0.0], [15.553894, -4.1875511, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2260}, "geometry": {"type": "Polygon", "coordinates": [[[15.5580139, -4.1834422, 0.0], [15.5635071, -4.1834422, 0.0], [15.5635071, -4.180703, 0.0], [15.5580139, -4.180703, 0.0], [15.5580139, -4.1834422, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2261}, "geometry": {"type": "Polygon", "coordinates": [[[15.5580139, -4.1875511, 0.0], [15.5635071, -4.1875511, 0.0], [15.5635071, -4.1834422, 0.0], [15.5580139, -4.1834422, 0.0], [15.5580139, -4.1875511, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2262}, "geometry": {"type": "Polygon", "coordinates": [[[15.553894, -4.1902904, 0.0], [15.5580139, -4.1902904, 0.0], [15.5580139, -4.1875511, 0.0], [15.553894, -4.1875511, 0.0], [15.553894, -4.1902904, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2263}, "geometry": {"type": "Polygon", "coordinates": [[[15.553894, -4.1943992, 0.0], [15.5580139, -4.1943992, 0.0], [15.5580139, -4.1902904, 0.0], [15.553894, -4.1902904, 0.0], [15.553894, -4.1943992, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2264}, "geometry": {"type": "Polygon", "coordinates": [[[15.5580139, -4.1902904, 0.0], [15.5635071, -4.1902904, 0.0], [15.5635071, -4.1875511, 0.0], [15.5580139, -4.1875511, 0.0], [15.5580139, -4.1902904, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2265}, "geometry": {"type": "Polygon", "coordinates": [[[15.5580139, -4.1943992, 0.0], [15.5635071, -4.1943992, 0.0], [15.5635071, -4.1902904, 0.0], [15.5580139, -4.1902904, 0.0], [15.5580139, -4.1943992, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2266}, "geometry": {"type": "Polygon", "coordinates": [[[15.553894, -4.198508, 0.0], [15.5580139, -4.198508, 0.0], [15.5580139, -4.1943992, 0.0], [15.553894, -4.1943992, 0.0], [15.553894, -4.198508, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2267}, "geometry": {"type": "Polygon", "coordinates": [[[15.553894, -4.2026169, 0.0], [15.5580139, -4.2026169, 0.0], [15.5580139, -4.198508, 0.0], [15.553894, -4.198508, 0.0], [15.553894, -4.2026169, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2268}, "geometry": {"type": "Polygon", "coordinates": [[[15.5580139, -4.198508, 0.0], [15.5621338, -4.198508, 0.0], [15.5621338, -4.1943992, 0.0], [15.5580139, -4.1943992, 0.0], [15.5580139, -4.198508, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2269}, "geometry": {"type": "Polygon", "coordinates": [[[15.5580139, -4.2026169, 0.0], [15.5635071, -4.2026169, 0.0], [15.5635071, -4.198508, 0.0], [15.5580139, -4.198508, 0.0], [15.5580139, -4.2026169, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2270}, "geometry": {"type": "Polygon", "coordinates": [[[15.586853, -4.198508, 0.0], [15.5923462, -4.198508, 0.0], [15.5923462, -4.1957688, 0.0], [15.586853, -4.1957688, 0.0], [15.586853, -4.198508, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2271}, "geometry": {"type": "Polygon", "coordinates": [[[15.586853, -4.2026169, 0.0], [15.5923462, -4.2026169, 0.0], [15.5923462, -4.198508, 0.0], [15.586853, -4.198508, 0.0], [15.586853, -4.2026169, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2272}, "geometry": {"type": "Polygon", "coordinates": [[[15.5841064, -4.2409647, 0.0], [15.5882263, -4.2409647, 0.0], [15.5882263, -4.2382256, 0.0], [15.5841064, -4.2382256, 0.0], [15.5841064, -4.2409647, 0.0]]]}}, {"type": "Feature", "properties": {"group_id": 2273}, "geometry": {"type": "Polygon", "coordinates": [[[15.5841064, -4.2450732, 0.0], [15.5882263, -4.2450732, 0.0], [15.5882263, -4.2409647, 0.0], [15.5841064, -4.2409647, 0.0], [15.5841064, -4.2450732, 0.0]]]}}]} diff --git a/assets/docs/about_data/files/project_exports/agg_results_by_task_2962.csv b/assets/docs/about_data/files/project_exports/agg_results_by_task_2962.csv new file mode 100644 index 0000000..4d4c42e --- /dev/null +++ b/assets/docs/about_data/files/project_exports/agg_results_by_task_2962.csv @@ -0,0 +1,11 @@ +idx,task_id,0_count,1_count,2_count,3_count,total_count,0_share,1_share,2_share,3_share,agreement,quadkey,project_internal_id,group_internal_id,task_internal_id,geom,tile_z,url,tile_x,tile_y +0,18-155308-149594,6,0,0,0,6,1.0,0.0,0.0,0.0,1.0,300301311012123120,2962,98948,15287441,"MULTIPOLYGON(((33.2830810546875 -24.6395278806334,33.2844543457031 -24.6395278806334,33.2844543457031 -24.6407761254856,33.2830810546875 -24.6407761254856,33.2830810546875 -24.6395278806334)))",18,https://ecn.t0.tiles.virtualearth.net/tiles/a300301311012123120.jpeg?g=15384&mkt=en-US&token=REDACTED,155308,149594 +1,18-155308-149595,6,0,0,0,6,1.0,0.0,0.0,0.0,1.0,300301311012123122,2962,98948,15287442,"MULTIPOLYGON(((33.2830810546875 -24.6407761254856,33.2844543457031 -24.6407761254856,33.2844543457031 -24.642024357864,33.2830810546875 -24.642024357864,33.2830810546875 -24.6407761254856)))",18,https://ecn.t0.tiles.virtualearth.net/tiles/a300301311012123122.jpeg?g=15384&mkt=en-US&token=REDACTED,155308,149595 +2,18-155308-149596,6,0,0,0,6,1.0,0.0,0.0,0.0,1.0,300301311012123300,2962,98948,15287443,"MULTIPOLYGON(((33.2830810546875 -24.642024357864,33.2844543457031 -24.642024357864,33.2844543457031 -24.6432725777682,33.2830810546875 -24.6432725777682,33.2830810546875 -24.642024357864)))",18,https://ecn.t0.tiles.virtualearth.net/tiles/a300301311012123300.jpeg?g=15384&mkt=en-US&token=REDACTED,155308,149596 +3,18-155309-149594,1,5,0,0,6,0.16666666666666666,0.8333333333333334,0.0,0.0,0.6666666666666666,300301311012123121,2962,98948,15287444,"MULTIPOLYGON(((33.2844543457031 -24.6395278806334,33.2858276367188 -24.6395278806334,33.2858276367188 -24.6407761254856,33.2844543457031 -24.6407761254856,33.2844543457031 -24.6395278806334)))",18,https://ecn.t0.tiles.virtualearth.net/tiles/a300301311012123121.jpeg?g=15384&mkt=en-US&token=REDACTED,155309,149594 +4,18-155309-149595,6,0,0,0,6,1.0,0.0,0.0,0.0,1.0,300301311012123123,2962,98948,15287445,"MULTIPOLYGON(((33.2844543457031 -24.6407761254856,33.2858276367188 -24.6407761254856,33.2858276367188 -24.642024357864,33.2844543457031 -24.642024357864,33.2844543457031 -24.6407761254856)))",18,https://ecn.t0.tiles.virtualearth.net/tiles/a300301311012123123.jpeg?g=15384&mkt=en-US&token=REDACTED,155309,149595 +5,18-155309-149596,5,0,1,0,6,0.8333333333333334,0.0,0.16666666666666666,0.0,0.6666666666666666,300301311012123301,2962,98948,15287446,"MULTIPOLYGON(((33.2844543457031 -24.642024357864,33.2858276367188 -24.642024357864,33.2858276367188 -24.6432725777682,33.2844543457031 -24.6432725777682,33.2844543457031 -24.642024357864)))",18,https://ecn.t0.tiles.virtualearth.net/tiles/a300301311012123301.jpeg?g=15384&mkt=en-US&token=REDACTED,155309,149596 +6,18-155310-149594,6,0,0,0,6,1.0,0.0,0.0,0.0,1.0,300301311012123130,2962,98948,15287447,"MULTIPOLYGON(((33.2858276367188 -24.6395278806334,33.2872009277344 -24.6395278806334,33.2872009277344 -24.6407761254856,33.2858276367188 -24.6407761254856,33.2858276367188 -24.6395278806334)))",18,https://ecn.t0.tiles.virtualearth.net/tiles/a300301311012123130.jpeg?g=15384&mkt=en-US&token=REDACTED,155310,149594 +7,18-155310-149595,0,6,0,0,6,0.0,1.0,0.0,0.0,1.0,300301311012123132,2962,98948,15287448,"MULTIPOLYGON(((33.2858276367188 -24.6407761254856,33.2872009277344 -24.6407761254856,33.2872009277344 -24.642024357864,33.2858276367188 -24.642024357864,33.2858276367188 -24.6407761254856)))",18,https://ecn.t0.tiles.virtualearth.net/tiles/a300301311012123132.jpeg?g=15384&mkt=en-US&token=REDACTED,155310,149595 +8,18-155310-149596,0,6,0,0,6,0.0,1.0,0.0,0.0,1.0,300301311012123310,2962,98948,15287449,"MULTIPOLYGON(((33.2858276367188 -24.642024357864,33.2872009277344 -24.642024357864,33.2872009277344 -24.6432725777682,33.2858276367188 -24.6432725777682,33.2858276367188 -24.642024357864)))",18,https://ecn.t0.tiles.virtualearth.net/tiles/a300301311012123310.jpeg?g=15384&mkt=en-US&token=REDACTED,155310,149596 +9,18-155311-149594,5,1,0,0,6,0.8333333333333334,0.16666666666666666,0.0,0.0,0.6666666666666666,300301311012123131,2962,98948,15287450,"MULTIPOLYGON(((33.2872009277344 -24.6395278806334,33.28857421875 -24.6395278806334,33.28857421875 -24.6407761254856,33.2872009277344 -24.6407761254856,33.2872009277344 -24.6395278806334)))",18,https://ecn.t0.tiles.virtualearth.net/tiles/a300301311012123131.jpeg?g=15384&mkt=en-US&token=REDACTED,155311,149594 diff --git a/assets/docs/about_data/files/project_exports/agg_results_by_task_2962_geom.geojson b/assets/docs/about_data/files/project_exports/agg_results_by_task_2962_geom.geojson new file mode 100644 index 0000000..35aa64d --- /dev/null +++ b/assets/docs/about_data/files/project_exports/agg_results_by_task_2962_geom.geojson @@ -0,0 +1,546 @@ +{ + "type": "FeatureCollection", + "name": "tmpx_ecqmsz", + "features": [ + { + "type": "Feature", + "properties": { + "idx": 0.0, + "task_id": "18-155308-149594", + "0_count": 6.0, + "1_count": 0.0, + "2_count": 0.0, + "3_count": 0.0, + "total_count": 6.0, + "0_share": 1.0, + "1_share": 0.0, + "2_share": 0.0, + "3_share": 0.0, + "agreement": 1.0, + "quadkey": 3.0030131101212314e+17, + "project_internal_id": 2962.0, + "group_internal_id": 98948.0, + "task_internal_id": 15287441.0, + "tile_z": 18.0, + "url": "https://ecn.t0.tiles.virtualearth.net/tiles/a300301311012123120.jpeg?g=15384&mkt=en-US&token=REDACTED", + "tile_x": 155308.0, + "tile_y": 149594.0 + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 33.2830810546875, + -24.6395278806334 + ], + [ + 33.2844543457031, + -24.6395278806334 + ], + [ + 33.2844543457031, + -24.6407761254856 + ], + [ + 33.2830810546875, + -24.6407761254856 + ], + [ + 33.2830810546875, + -24.6395278806334 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "idx": 1.0, + "task_id": "18-155308-149595", + "0_count": 6.0, + "1_count": 0.0, + "2_count": 0.0, + "3_count": 0.0, + "total_count": 6.0, + "0_share": 1.0, + "1_share": 0.0, + "2_share": 0.0, + "3_share": 0.0, + "agreement": 1.0, + "quadkey": 3.0030131101212314e+17, + "project_internal_id": 2962.0, + "group_internal_id": 98948.0, + "task_internal_id": 15287442.0, + "tile_z": 18.0, + "url": "https://ecn.t0.tiles.virtualearth.net/tiles/a300301311012123122.jpeg?g=15384&mkt=en-US&token=REDACTED", + "tile_x": 155308.0, + "tile_y": 149595.0 + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 33.2830810546875, + -24.6407761254856 + ], + [ + 33.2844543457031, + -24.6407761254856 + ], + [ + 33.2844543457031, + -24.642024357864 + ], + [ + 33.2830810546875, + -24.642024357864 + ], + [ + 33.2830810546875, + -24.6407761254856 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "idx": 2.0, + "task_id": "18-155308-149596", + "0_count": 6.0, + "1_count": 0.0, + "2_count": 0.0, + "3_count": 0.0, + "total_count": 6.0, + "0_share": 1.0, + "1_share": 0.0, + "2_share": 0.0, + "3_share": 0.0, + "agreement": 1.0, + "quadkey": 3.003013110121233e+17, + "project_internal_id": 2962.0, + "group_internal_id": 98948.0, + "task_internal_id": 15287443.0, + "tile_z": 18.0, + "url": "https://ecn.t0.tiles.virtualearth.net/tiles/a300301311012123300.jpeg?g=15384&mkt=en-US&token=REDACTED", + "tile_x": 155308.0, + "tile_y": 149596.0 + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 33.2830810546875, + -24.642024357864 + ], + [ + 33.2844543457031, + -24.642024357864 + ], + [ + 33.2844543457031, + -24.6432725777682 + ], + [ + 33.2830810546875, + -24.6432725777682 + ], + [ + 33.2830810546875, + -24.642024357864 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "idx": 3.0, + "task_id": "18-155309-149594", + "0_count": 1.0, + "1_count": 5.0, + "2_count": 0.0, + "3_count": 0.0, + "total_count": 6.0, + "0_share": 0.16666666666666666, + "1_share": 0.8333333333333334, + "2_share": 0.0, + "3_share": 0.0, + "agreement": 0.6666666666666666, + "quadkey": 3.0030131101212314e+17, + "project_internal_id": 2962.0, + "group_internal_id": 98948.0, + "task_internal_id": 15287444.0, + "tile_z": 18.0, + "url": "https://ecn.t0.tiles.virtualearth.net/tiles/a300301311012123121.jpeg?g=15384&mkt=en-US&token=REDACTED", + "tile_x": 155309.0, + "tile_y": 149594.0 + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 33.2844543457031, + -24.6395278806334 + ], + [ + 33.2858276367188, + -24.6395278806334 + ], + [ + 33.2858276367188, + -24.6407761254856 + ], + [ + 33.2844543457031, + -24.6407761254856 + ], + [ + 33.2844543457031, + -24.6395278806334 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "idx": 4.0, + "task_id": "18-155309-149595", + "0_count": 6.0, + "1_count": 0.0, + "2_count": 0.0, + "3_count": 0.0, + "total_count": 6.0, + "0_share": 1.0, + "1_share": 0.0, + "2_share": 0.0, + "3_share": 0.0, + "agreement": 1.0, + "quadkey": 3.0030131101212314e+17, + "project_internal_id": 2962.0, + "group_internal_id": 98948.0, + "task_internal_id": 15287445.0, + "tile_z": 18.0, + "url": "https://ecn.t0.tiles.virtualearth.net/tiles/a300301311012123123.jpeg?g=15384&mkt=en-US&token=REDACTED", + "tile_x": 155309.0, + "tile_y": 149595.0 + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 33.2844543457031, + -24.6407761254856 + ], + [ + 33.2858276367188, + -24.6407761254856 + ], + [ + 33.2858276367188, + -24.642024357864 + ], + [ + 33.2844543457031, + -24.642024357864 + ], + [ + 33.2844543457031, + -24.6407761254856 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "idx": 5.0, + "task_id": "18-155309-149596", + "0_count": 5.0, + "1_count": 0.0, + "2_count": 1.0, + "3_count": 0.0, + "total_count": 6.0, + "0_share": 0.8333333333333334, + "1_share": 0.0, + "2_share": 0.16666666666666666, + "3_share": 0.0, + "agreement": 0.6666666666666666, + "quadkey": 3.003013110121233e+17, + "project_internal_id": 2962.0, + "group_internal_id": 98948.0, + "task_internal_id": 15287446.0, + "tile_z": 18.0, + "url": "https://ecn.t0.tiles.virtualearth.net/tiles/a300301311012123301.jpeg?g=15384&mkt=en-US&token=REDACTED", + "tile_x": 155309.0, + "tile_y": 149596.0 + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 33.2844543457031, + -24.642024357864 + ], + [ + 33.2858276367188, + -24.642024357864 + ], + [ + 33.2858276367188, + -24.6432725777682 + ], + [ + 33.2844543457031, + -24.6432725777682 + ], + [ + 33.2844543457031, + -24.642024357864 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "idx": 6.0, + "task_id": "18-155310-149594", + "0_count": 6.0, + "1_count": 0.0, + "2_count": 0.0, + "3_count": 0.0, + "total_count": 6.0, + "0_share": 1.0, + "1_share": 0.0, + "2_share": 0.0, + "3_share": 0.0, + "agreement": 1.0, + "quadkey": 3.0030131101212314e+17, + "project_internal_id": 2962.0, + "group_internal_id": 98948.0, + "task_internal_id": 15287447.0, + "tile_z": 18.0, + "url": "https://ecn.t0.tiles.virtualearth.net/tiles/a300301311012123130.jpeg?g=15384&mkt=en-US&token=REDACTED", + "tile_x": 155310.0, + "tile_y": 149594.0 + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 33.2858276367188, + -24.6395278806334 + ], + [ + 33.2872009277344, + -24.6395278806334 + ], + [ + 33.2872009277344, + -24.6407761254856 + ], + [ + 33.2858276367188, + -24.6407761254856 + ], + [ + 33.2858276367188, + -24.6395278806334 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "idx": 7.0, + "task_id": "18-155310-149595", + "0_count": 0.0, + "1_count": 6.0, + "2_count": 0.0, + "3_count": 0.0, + "total_count": 6.0, + "0_share": 0.0, + "1_share": 1.0, + "2_share": 0.0, + "3_share": 0.0, + "agreement": 1.0, + "quadkey": 3.0030131101212314e+17, + "project_internal_id": 2962.0, + "group_internal_id": 98948.0, + "task_internal_id": 15287448.0, + "tile_z": 18.0, + "url": "https://ecn.t0.tiles.virtualearth.net/tiles/a300301311012123132.jpeg?g=15384&mkt=en-US&token=REDACTED", + "tile_x": 155310.0, + "tile_y": 149595.0 + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 33.2858276367188, + -24.6407761254856 + ], + [ + 33.2872009277344, + -24.6407761254856 + ], + [ + 33.2872009277344, + -24.642024357864 + ], + [ + 33.2858276367188, + -24.642024357864 + ], + [ + 33.2858276367188, + -24.6407761254856 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "idx": 8.0, + "task_id": "18-155310-149596", + "0_count": 0.0, + "1_count": 6.0, + "2_count": 0.0, + "3_count": 0.0, + "total_count": 6.0, + "0_share": 0.0, + "1_share": 1.0, + "2_share": 0.0, + "3_share": 0.0, + "agreement": 1.0, + "quadkey": 3.003013110121233e+17, + "project_internal_id": 2962.0, + "group_internal_id": 98948.0, + "task_internal_id": 15287449.0, + "tile_z": 18.0, + "url": "https://ecn.t0.tiles.virtualearth.net/tiles/a300301311012123310.jpeg?g=15384&mkt=en-US&token=REDACTED", + "tile_x": 155310.0, + "tile_y": 149596.0 + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 33.2858276367188, + -24.642024357864 + ], + [ + 33.2872009277344, + -24.642024357864 + ], + [ + 33.2872009277344, + -24.6432725777682 + ], + [ + 33.2858276367188, + -24.6432725777682 + ], + [ + 33.2858276367188, + -24.642024357864 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "idx": 9.0, + "task_id": "18-155311-149594", + "0_count": 5.0, + "1_count": 1.0, + "2_count": 0.0, + "3_count": 0.0, + "total_count": 6.0, + "0_share": 0.8333333333333334, + "1_share": 0.16666666666666666, + "2_share": 0.0, + "3_share": 0.0, + "agreement": 0.6666666666666666, + "quadkey": 3.0030131101212314e+17, + "project_internal_id": 2962.0, + "group_internal_id": 98948.0, + "task_internal_id": 15287450.0, + "tile_z": 18.0, + "url": "https://ecn.t0.tiles.virtualearth.net/tiles/a300301311012123131.jpeg?g=15384&mkt=en-US&token=REDACTED", + "tile_x": 155311.0, + "tile_y": 149594.0 + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 33.2872009277344, + -24.6395278806334 + ], + [ + 33.28857421875, + -24.6395278806334 + ], + [ + 33.28857421875, + -24.6407761254856 + ], + [ + 33.2872009277344, + -24.6407761254856 + ], + [ + 33.2872009277344, + -24.6395278806334 + ] + ] + ] + ] + } + } + ] +} diff --git a/assets/docs/about_data/files/project_exports/groups_2962.csv b/assets/docs/about_data/files/project_exports/groups_2962.csv new file mode 100644 index 0000000..ec9612d --- /dev/null +++ b/assets/docs/about_data/files/project_exports/groups_2962.csv @@ -0,0 +1,11 @@ +,group_internal_id,project_internal_id,group_id,project_id,number_of_tasks,required_count,finished_count,progress,total_area,time_spent_max_allowed,number_of_users_required,x_max,x_min,y_max,y_min +0,98948,2962,g101,01KMMX0C9MG396SCV8W8CZ8RY3,84,6,0,0,1.614755903077543,117.6,6,155335,155308,149596,149594 +1,98949,2962,g102,01KMMX0C9MG396SCV8W8CZ8RY3,174,6,0,0,3.3446531685251,243.6,6,155365,155308,149599,149597 +2,98950,2962,g103,01KMMX0C9MG396SCV8W8CZ8RY3,270,6,0,0,5.189671252099752,378.0,6,155396,155307,149602,149600 +3,98951,2962,g104,01KMMX0C9MG396SCV8W8CZ8RY3,360,6,0,0,6.919151232039929,504.0,6,155426,155307,149605,149603 +4,98952,2962,g105,01KMMX0C9MG396SCV8W8CZ8RY3,228,6,0,0,4.381869148156524,319.2,6,155381,155306,149608,149606 +5,98953,2962,g106,01KMMX0C9MG396SCV8W8CZ8RY3,228,6,0,0,4.381869148148179,319.2,6,155457,155382,149608,149606 +6,98954,2962,g107,01KMMX0C9MG396SCV8W8CZ8RY3,276,6,0,0,5.304053194401443,386.4,6,155395,155304,149611,149609 +7,98955,2962,g108,01KMMX0C9MG396SCV8W8CZ8RY3,276,6,0,0,5.304053194401443,386.4,6,155487,155396,149611,149609 +8,98956,2962,g109,01KMMX0C9MG396SCV8W8CZ8RY3,324,6,0,0,6.226127741826653,453.6,6,155407,155300,149614,149612 +9,98957,2962,g110,01KMMX0C9MG396SCV8W8CZ8RY3,330,6,0,0,6.341426403714419,462.0,6,155517,155408,149614,149612 diff --git a/assets/docs/about_data/files/project_exports/history_2962.csv b/assets/docs/about_data/files/project_exports/history_2962.csv new file mode 100644 index 0000000..afc2151 --- /dev/null +++ b/assets/docs/about_data/files/project_exports/history_2962.csv @@ -0,0 +1,6 @@ +day,number_of_results,number_of_results_progress,cum_number_of_results,cum_number_of_results_progress,progress,cum_progress,number_of_users,number_of_new_users,cum_number_of_users,project_id +2026-03-26,38244,38244,38244,38244,0.1665360296807232,0.1665360296807232,47,47,47,01KMMX0C9MG396SCV8W8CZ8RY3 +2026-03-27,65310,65310,103554,103554,0.2843967183989131,0.4509327480796363,64,55,102,01KMMX0C9MG396SCV8W8CZ8RY3 +2026-03-28,83250,83250,186804,186804,0.3625176359931024,0.8134503840727386,45,33,135,01KMMX0C9MG396SCV8W8CZ8RY3 +2026-03-29,47622,42840,234426,229644,0.18654961592726133,1.0,43,19,154,01KMMX0C9MG396SCV8W8CZ8RY3 +2026-03-30,3156,0,237582,229644,0.0,1.0,7,2,156,01KMMX0C9MG396SCV8W8CZ8RY3 diff --git a/assets/docs/about_data/files/project_exports/hot_tm_2962.geojson b/assets/docs/about_data/files/project_exports/hot_tm_2962.geojson new file mode 100644 index 0000000..78f7a5a --- /dev/null +++ b/assets/docs/about_data/files/project_exports/hot_tm_2962.geojson @@ -0,0 +1,392 @@ +{ + "type": "FeatureCollection", + "name": "hot_tm_2962.geojson", + "crs": { + "type": "name", + "properties": { + "name": "urn:ogc:def:crs:OGC:1.3:CRS84" + } + }, + "features": [ + { + "type": "Feature", + "properties": { + "group_id": 3 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 33.2844543, + -24.6432726, + 0.0 + ], + [ + 33.2872009, + -24.6432726, + 0.0 + ], + [ + 33.2872009, + -24.6395279, + 0.0 + ], + [ + 33.2844543, + -24.6395279, + 0.0 + ], + [ + 33.2844543, + -24.6432726, + 0.0 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "group_id": 4 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 33.2954407, + -24.6407761, + 0.0 + ], + [ + 33.296814, + -24.6407761, + 0.0 + ], + [ + 33.296814, + -24.6395279, + 0.0 + ], + [ + 33.2954407, + -24.6395279, + 0.0 + ], + [ + 33.2954407, + -24.6407761, + 0.0 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "group_id": 12 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 33.4135437, + -24.6557541, + 0.0 + ], + [ + 33.414917, + -24.6557541, + 0.0 + ], + [ + 33.414917, + -24.654506, + 0.0 + ], + [ + 33.4135437, + -24.654506, + 0.0 + ], + [ + 33.4135437, + -24.6557541, + 0.0 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "group_id": 24 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 33.4465027, + -24.6570022, + 0.0 + ], + [ + 33.447876, + -24.6570022, + 0.0 + ], + [ + 33.447876, + -24.6557541, + 0.0 + ], + [ + 33.4465027, + -24.6557541, + 0.0 + ], + [ + 33.4465027, + -24.6570022, + 0.0 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "group_id": 2 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 33.2775879, + -24.6594983, + 0.0 + ], + [ + 33.2789612, + -24.6594983, + 0.0 + ], + [ + 33.2789612, + -24.6582502, + 0.0 + ], + [ + 33.2775879, + -24.6582502, + 0.0 + ], + [ + 33.2775879, + -24.6594983, + 0.0 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "group_id": 10 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 33.4066772, + -24.6607463, + 0.0 + ], + [ + 33.4080505, + -24.6607463, + 0.0 + ], + [ + 33.4080505, + -24.6594983, + 0.0 + ], + [ + 33.4066772, + -24.6594983, + 0.0 + ], + [ + 33.4066772, + -24.6607463, + 0.0 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "group_id": 53 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 33.5247803, + -24.6594983, + 0.0 + ], + [ + 33.5261536, + -24.6594983, + 0.0 + ], + [ + 33.5261536, + -24.6582502, + 0.0 + ], + [ + 33.5247803, + -24.6582502, + 0.0 + ], + [ + 33.5247803, + -24.6594983, + 0.0 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "group_id": 7 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 33.3036804, + -24.6632424, + 0.0 + ], + [ + 33.3050537, + -24.6632424, + 0.0 + ], + [ + 33.3050537, + -24.6619944, + 0.0 + ], + [ + 33.3036804, + -24.6619944, + 0.0 + ], + [ + 33.3036804, + -24.6632424, + 0.0 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "group_id": 8 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 33.3105469, + -24.6632424, + 0.0 + ], + [ + 33.3119202, + -24.6632424, + 0.0 + ], + [ + 33.3119202, + -24.6619944, + 0.0 + ], + [ + 33.3105469, + -24.6619944, + 0.0 + ], + [ + 33.3105469, + -24.6632424, + 0.0 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "group_id": 81 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 33.5742188, + -24.6732261, + 0.0 + ], + [ + 33.5852051, + -24.6732261, + 0.0 + ], + [ + 33.5852051, + -24.6669864, + 0.0 + ], + [ + 33.5742188, + -24.6669864, + 0.0 + ], + [ + 33.5742188, + -24.6732261, + 0.0 + ] + ] + ] + } + } + ] +} diff --git a/assets/docs/about_data/files/project_exports/results_2962.csv b/assets/docs/about_data/files/project_exports/results_2962.csv new file mode 100644 index 0000000..c7605aa --- /dev/null +++ b/assets/docs/about_data/files/project_exports/results_2962.csv @@ -0,0 +1,11 @@ +,project_internal_id,group_internal_id,task_internal_id,user_internal_id,project_id,group_id,task_id,user_id,timestamp,start_time,end_time,app_version,client_type,result,username +0,2962,98948,15287441,422075,01KMMX0C9MG396SCV8W8CZ8RY3,g101,18-155308-149594,mNIPuNcsOnaP1bIF2ahsQp7iaSE2,2026-03-26 21:09:56.435+00,2026-03-26 21:09:56.435+00,2026-03-26 21:24:11.317+00,0.3.2,web,0,juditesquivel +1,2962,98948,15287442,422075,01KMMX0C9MG396SCV8W8CZ8RY3,g101,18-155308-149595,mNIPuNcsOnaP1bIF2ahsQp7iaSE2,2026-03-26 21:09:56.435+00,2026-03-26 21:09:56.435+00,2026-03-26 21:24:11.317+00,0.3.2,web,0,juditesquivel +2,2962,98948,15287443,422075,01KMMX0C9MG396SCV8W8CZ8RY3,g101,18-155308-149596,mNIPuNcsOnaP1bIF2ahsQp7iaSE2,2026-03-26 21:09:56.435+00,2026-03-26 21:09:56.435+00,2026-03-26 21:24:11.317+00,0.3.2,web,0,juditesquivel +3,2962,98948,15287444,422075,01KMMX0C9MG396SCV8W8CZ8RY3,g101,18-155309-149594,mNIPuNcsOnaP1bIF2ahsQp7iaSE2,2026-03-26 21:09:56.435+00,2026-03-26 21:09:56.435+00,2026-03-26 21:24:11.317+00,0.3.2,web,1,juditesquivel +4,2962,98948,15287445,422075,01KMMX0C9MG396SCV8W8CZ8RY3,g101,18-155309-149595,mNIPuNcsOnaP1bIF2ahsQp7iaSE2,2026-03-26 21:09:56.435+00,2026-03-26 21:09:56.435+00,2026-03-26 21:24:11.317+00,0.3.2,web,0,juditesquivel +5,2962,98948,15287446,422075,01KMMX0C9MG396SCV8W8CZ8RY3,g101,18-155309-149596,mNIPuNcsOnaP1bIF2ahsQp7iaSE2,2026-03-26 21:09:56.435+00,2026-03-26 21:09:56.435+00,2026-03-26 21:24:11.317+00,0.3.2,web,2,juditesquivel +6,2962,98948,15287447,422075,01KMMX0C9MG396SCV8W8CZ8RY3,g101,18-155310-149594,mNIPuNcsOnaP1bIF2ahsQp7iaSE2,2026-03-26 21:09:56.435+00,2026-03-26 21:09:56.435+00,2026-03-26 21:24:11.317+00,0.3.2,web,0,juditesquivel +7,2962,98948,15287448,422075,01KMMX0C9MG396SCV8W8CZ8RY3,g101,18-155310-149595,mNIPuNcsOnaP1bIF2ahsQp7iaSE2,2026-03-26 21:09:56.435+00,2026-03-26 21:09:56.435+00,2026-03-26 21:24:11.317+00,0.3.2,web,1,juditesquivel +8,2962,98948,15287449,422075,01KMMX0C9MG396SCV8W8CZ8RY3,g101,18-155310-149596,mNIPuNcsOnaP1bIF2ahsQp7iaSE2,2026-03-26 21:09:56.435+00,2026-03-26 21:09:56.435+00,2026-03-26 21:24:11.317+00,0.3.2,web,1,juditesquivel +9,2962,98948,15287450,422075,01KMMX0C9MG396SCV8W8CZ8RY3,g101,18-155311-149594,mNIPuNcsOnaP1bIF2ahsQp7iaSE2,2026-03-26 21:09:56.435+00,2026-03-26 21:09:56.435+00,2026-03-26 21:24:11.317+00,0.3.2,web,0,juditesquivel diff --git a/assets/docs/about_data/files/project_exports/tasks_2962.csv b/assets/docs/about_data/files/project_exports/tasks_2962.csv new file mode 100644 index 0000000..2f11e64 --- /dev/null +++ b/assets/docs/about_data/files/project_exports/tasks_2962.csv @@ -0,0 +1,11 @@ +,project_internal_id,group_internal_id,task_internal_id,project_id,group_id,task_id,geom,tile_z,url,tile_x,tile_y +0,2962,98948,15287441,01KMMX0C9MG396SCV8W8CZ8RY3,g101,18-155308-149594,"MULTIPOLYGON(((33.2830810546875 -24.6395278806334,33.2844543457031 -24.6395278806334,33.2844543457031 -24.6407761254856,33.2830810546875 -24.6407761254856,33.2830810546875 -24.6395278806334)))",18,https://ecn.t0.tiles.virtualearth.net/tiles/a300301311012123120.jpeg?g=15384&mkt=en-US&token=REDACTED,155308,149594 +1,2962,98948,15287442,01KMMX0C9MG396SCV8W8CZ8RY3,g101,18-155308-149595,"MULTIPOLYGON(((33.2830810546875 -24.6407761254856,33.2844543457031 -24.6407761254856,33.2844543457031 -24.642024357864,33.2830810546875 -24.642024357864,33.2830810546875 -24.6407761254856)))",18,https://ecn.t0.tiles.virtualearth.net/tiles/a300301311012123122.jpeg?g=15384&mkt=en-US&token=REDACTED,155308,149595 +2,2962,98948,15287443,01KMMX0C9MG396SCV8W8CZ8RY3,g101,18-155308-149596,"MULTIPOLYGON(((33.2830810546875 -24.642024357864,33.2844543457031 -24.642024357864,33.2844543457031 -24.6432725777682,33.2830810546875 -24.6432725777682,33.2830810546875 -24.642024357864)))",18,https://ecn.t0.tiles.virtualearth.net/tiles/a300301311012123300.jpeg?g=15384&mkt=en-US&token=REDACTED,155308,149596 +3,2962,98948,15287444,01KMMX0C9MG396SCV8W8CZ8RY3,g101,18-155309-149594,"MULTIPOLYGON(((33.2844543457031 -24.6395278806334,33.2858276367188 -24.6395278806334,33.2858276367188 -24.6407761254856,33.2844543457031 -24.6407761254856,33.2844543457031 -24.6395278806334)))",18,https://ecn.t0.tiles.virtualearth.net/tiles/a300301311012123121.jpeg?g=15384&mkt=en-US&token=REDACTED,155309,149594 +4,2962,98948,15287445,01KMMX0C9MG396SCV8W8CZ8RY3,g101,18-155309-149595,"MULTIPOLYGON(((33.2844543457031 -24.6407761254856,33.2858276367188 -24.6407761254856,33.2858276367188 -24.642024357864,33.2844543457031 -24.642024357864,33.2844543457031 -24.6407761254856)))",18,https://ecn.t0.tiles.virtualearth.net/tiles/a300301311012123123.jpeg?g=15384&mkt=en-US&token=REDACTED,155309,149595 +5,2962,98948,15287446,01KMMX0C9MG396SCV8W8CZ8RY3,g101,18-155309-149596,"MULTIPOLYGON(((33.2844543457031 -24.642024357864,33.2858276367188 -24.642024357864,33.2858276367188 -24.6432725777682,33.2844543457031 -24.6432725777682,33.2844543457031 -24.642024357864)))",18,https://ecn.t0.tiles.virtualearth.net/tiles/a300301311012123301.jpeg?g=15384&mkt=en-US&token=REDACTED,155309,149596 +6,2962,98948,15287447,01KMMX0C9MG396SCV8W8CZ8RY3,g101,18-155310-149594,"MULTIPOLYGON(((33.2858276367188 -24.6395278806334,33.2872009277344 -24.6395278806334,33.2872009277344 -24.6407761254856,33.2858276367188 -24.6407761254856,33.2858276367188 -24.6395278806334)))",18,https://ecn.t0.tiles.virtualearth.net/tiles/a300301311012123130.jpeg?g=15384&mkt=en-US&token=REDACTED,155310,149594 +7,2962,98948,15287448,01KMMX0C9MG396SCV8W8CZ8RY3,g101,18-155310-149595,"MULTIPOLYGON(((33.2858276367188 -24.6407761254856,33.2872009277344 -24.6407761254856,33.2872009277344 -24.642024357864,33.2858276367188 -24.642024357864,33.2858276367188 -24.6407761254856)))",18,https://ecn.t0.tiles.virtualearth.net/tiles/a300301311012123132.jpeg?g=15384&mkt=en-US&token=REDACTED,155310,149595 +8,2962,98948,15287449,01KMMX0C9MG396SCV8W8CZ8RY3,g101,18-155310-149596,"MULTIPOLYGON(((33.2858276367188 -24.642024357864,33.2872009277344 -24.642024357864,33.2872009277344 -24.6432725777682,33.2858276367188 -24.6432725777682,33.2858276367188 -24.642024357864)))",18,https://ecn.t0.tiles.virtualearth.net/tiles/a300301311012123310.jpeg?g=15384&mkt=en-US&token=REDACTED,155310,149596 +9,2962,98948,15287450,01KMMX0C9MG396SCV8W8CZ8RY3,g101,18-155311-149594,"MULTIPOLYGON(((33.2872009277344 -24.6395278806334,33.28857421875 -24.6395278806334,33.28857421875 -24.6407761254856,33.2872009277344 -24.6407761254856,33.2872009277344 -24.6395278806334)))",18,https://ecn.t0.tiles.virtualearth.net/tiles/a300301311012123131.jpeg?g=15384&mkt=en-US&token=REDACTED,155311,149594 diff --git a/assets/docs/about_data/files/project_exports/users_2962.csv b/assets/docs/about_data/files/project_exports/users_2962.csv new file mode 100644 index 0000000..e09fcef --- /dev/null +++ b/assets/docs/about_data/files/project_exports/users_2962.csv @@ -0,0 +1,11 @@ +idx,project_id,user_id,username,groups_completed,total_contributions,agreeing_contributions,disagreeing_contributions,simple_agreement_score +0,01KMMX0C9MG396SCV8W8CZ8RY3,0CWCokwtNyf7kRSfBVdGhl1TryY2,amyblais,7,1890,8850,798,0.9172885572139303 +1,01KMMX0C9MG396SCV8W8CZ8RY3,2891ShbnQWMaZ8NV6bIO2mEgYs83,davidemaggi,1,318,1499,91,0.9427672955974843 +2,01KMMX0C9MG396SCV8W8CZ8RY3,306j2kUKxlcslPUuq1wdnq0uDoi1,hgwilliams,12,3486,16656,774,0.9555938037865749 +3,01KMMX0C9MG396SCV8W8CZ8RY3,33nFOjItEpU6Gk3aVcPNnmlKQhm2,s.jazz,1,276,1505,151,0.908816425120773 +4,01KMMX0C9MG396SCV8W8CZ8RY3,3Cv72zTTg9a8zOvJbXUaWT90Iht2,c83508b,1,294,1250,220,0.8503401360544217 +5,01KMMX0C9MG396SCV8W8CZ8RY3,3f7brFqQXVe1C3vm4KFLg8ldPVq1,vonmorjo,2,336,1526,172,0.8987043580683156 +6,01KMMX0C9MG396SCV8W8CZ8RY3,3tE8WVBSUoOImzL1fDZVsSBOoSH2,sab27,7,2190,10437,831,0.9262513312034079 +7,01KMMX0C9MG396SCV8W8CZ8RY3,3whaGluHInOtVBysIhxPzCylfan1,Oskar,3,972,4658,202,0.9584362139917696 +8,01KMMX0C9MG396SCV8W8CZ8RY3,4RNXNJ3c7vUovCQLTX3hlf7YhL72,myleendevilla,1,276,1343,37,0.9731884057971014 +9,01KMMX0C9MG396SCV8W8CZ8RY3,4amfdg59Zsgpo218BTawEcIufzk1,elijah348,3,654,3345,201,0.94331641285956 diff --git a/assets/docs/about_data/files/project_exports/yes_maybe_2962.geojson b/assets/docs/about_data/files/project_exports/yes_maybe_2962.geojson new file mode 100644 index 0000000..3cb02d4 --- /dev/null +++ b/assets/docs/about_data/files/project_exports/yes_maybe_2962.geojson @@ -0,0 +1,1232 @@ +{ + "type": "FeatureCollection", + "name": "yes_maybe_2962.geojson", + "crs": { + "type": "name", + "properties": { + "name": "urn:ogc:def:crs:OGC:1.3:CRS84" + } + }, + "features": [ + { + "type": "Feature", + "properties": { + "id": 1 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 33.2720947, + -24.6869524, + 0.0 + ], + [ + 33.2707214, + -24.6869524, + 0.0 + ], + [ + 33.2707214, + -24.6882002, + 0.0 + ], + [ + 33.2720947, + -24.6882002, + 0.0 + ], + [ + 33.2720947, + -24.6894479, + 0.0 + ], + [ + 33.273468, + -24.6894479, + 0.0 + ], + [ + 33.273468, + -24.6906957, + 0.0 + ], + [ + 33.2748413, + -24.6906957, + 0.0 + ], + [ + 33.2762146, + -24.6906957, + 0.0 + ], + [ + 33.2775879, + -24.6906957, + 0.0 + ], + [ + 33.2775879, + -24.6919434, + 0.0 + ], + [ + 33.2789612, + -24.6919434, + 0.0 + ], + [ + 33.2789612, + -24.6906957, + 0.0 + ], + [ + 33.2803345, + -24.6906957, + 0.0 + ], + [ + 33.2803345, + -24.6894479, + 0.0 + ], + [ + 33.2803345, + -24.6882002, + 0.0 + ], + [ + 33.2789612, + -24.6882002, + 0.0 + ], + [ + 33.2775879, + -24.6882002, + 0.0 + ], + [ + 33.2762146, + -24.6882002, + 0.0 + ], + [ + 33.2748413, + -24.6882002, + 0.0 + ], + [ + 33.273468, + -24.6882002, + 0.0 + ], + [ + 33.273468, + -24.6869524, + 0.0 + ], + [ + 33.2720947, + -24.6869524, + 0.0 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": 2 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 33.2817078, + -24.6869524, + 0.0 + ], + [ + 33.2817078, + -24.6882002, + 0.0 + ], + [ + 33.2817078, + -24.6894479, + 0.0 + ], + [ + 33.2830811, + -24.6894479, + 0.0 + ], + [ + 33.2830811, + -24.6882002, + 0.0 + ], + [ + 33.2844543, + -24.6882002, + 0.0 + ], + [ + 33.2844543, + -24.6869524, + 0.0 + ], + [ + 33.2830811, + -24.6869524, + 0.0 + ], + [ + 33.2817078, + -24.6869524, + 0.0 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": 3 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 33.2858276, + -24.6857046, + 0.0 + ], + [ + 33.2844543, + -24.6857046, + 0.0 + ], + [ + 33.2844543, + -24.6869524, + 0.0 + ], + [ + 33.2858276, + -24.6869524, + 0.0 + ], + [ + 33.2858276, + -24.6857046, + 0.0 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": 4 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 33.2707214, + -24.6844568, + 0.0 + ], + [ + 33.2707214, + -24.683209, + 0.0 + ], + [ + 33.2693481, + -24.683209, + 0.0 + ], + [ + 33.2693481, + -24.6844568, + 0.0 + ], + [ + 33.2693481, + -24.6857046, + 0.0 + ], + [ + 33.2707214, + -24.6857046, + 0.0 + ], + [ + 33.2707214, + -24.6844568, + 0.0 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": 5 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 33.2872009, + -24.6844568, + 0.0 + ], + [ + 33.2858276, + -24.6844568, + 0.0 + ], + [ + 33.2858276, + -24.6857046, + 0.0 + ], + [ + 33.2872009, + -24.6857046, + 0.0 + ], + [ + 33.2872009, + -24.6844568, + 0.0 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": 6 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 33.3187866, + -24.6607463, + 0.0 + ], + [ + 33.3187866, + -24.6619944, + 0.0 + ], + [ + 33.3201599, + -24.6619944, + 0.0 + ], + [ + 33.3201599, + -24.6632424, + 0.0 + ], + [ + 33.3215332, + -24.6632424, + 0.0 + ], + [ + 33.3229065, + -24.6632424, + 0.0 + ], + [ + 33.3229065, + -24.6644904, + 0.0 + ], + [ + 33.3242798, + -24.6644904, + 0.0 + ], + [ + 33.3256531, + -24.6644904, + 0.0 + ], + [ + 33.3270264, + -24.6644904, + 0.0 + ], + [ + 33.3270264, + -24.6657384, + 0.0 + ], + [ + 33.3283997, + -24.6657384, + 0.0 + ], + [ + 33.3283997, + -24.6644904, + 0.0 + ], + [ + 33.3297729, + -24.6644904, + 0.0 + ], + [ + 33.3297729, + -24.6632424, + 0.0 + ], + [ + 33.3311462, + -24.6632424, + 0.0 + ], + [ + 33.3325195, + -24.6632424, + 0.0 + ], + [ + 33.3325195, + -24.6644904, + 0.0 + ], + [ + 33.3338928, + -24.6644904, + 0.0 + ], + [ + 33.3352661, + -24.6644904, + 0.0 + ], + [ + 33.3352661, + -24.6632424, + 0.0 + ], + [ + 33.3366394, + -24.6632424, + 0.0 + ], + [ + 33.3366394, + -24.6619944, + 0.0 + ], + [ + 33.3366394, + -24.6607463, + 0.0 + ], + [ + 33.3352661, + -24.6607463, + 0.0 + ], + [ + 33.3352661, + -24.6594983, + 0.0 + ], + [ + 33.3366394, + -24.6594983, + 0.0 + ], + [ + 33.3380127, + -24.6594983, + 0.0 + ], + [ + 33.3380127, + -24.6607463, + 0.0 + ], + [ + 33.339386, + -24.6607463, + 0.0 + ], + [ + 33.339386, + -24.6619944, + 0.0 + ], + [ + 33.3407593, + -24.6619944, + 0.0 + ], + [ + 33.3421326, + -24.6619944, + 0.0 + ], + [ + 33.3435059, + -24.6619944, + 0.0 + ], + [ + 33.3435059, + -24.6632424, + 0.0 + ], + [ + 33.3448792, + -24.6632424, + 0.0 + ], + [ + 33.3448792, + -24.6644904, + 0.0 + ], + [ + 33.3435059, + -24.6644904, + 0.0 + ], + [ + 33.3435059, + -24.6657384, + 0.0 + ], + [ + 33.3448792, + -24.6657384, + 0.0 + ], + [ + 33.3462524, + -24.6657384, + 0.0 + ], + [ + 33.3476257, + -24.6657384, + 0.0 + ], + [ + 33.348999, + -24.6657384, + 0.0 + ], + [ + 33.3503723, + -24.6657384, + 0.0 + ], + [ + 33.3503723, + -24.6669864, + 0.0 + ], + [ + 33.3517456, + -24.6669864, + 0.0 + ], + [ + 33.3517456, + -24.6657384, + 0.0 + ], + [ + 33.3531189, + -24.6657384, + 0.0 + ], + [ + 33.3531189, + -24.6644904, + 0.0 + ], + [ + 33.3531189, + -24.6632424, + 0.0 + ], + [ + 33.3531189, + -24.6619944, + 0.0 + ], + [ + 33.3517456, + -24.6619944, + 0.0 + ], + [ + 33.3517456, + -24.6607463, + 0.0 + ], + [ + 33.3503723, + -24.6607463, + 0.0 + ], + [ + 33.348999, + -24.6607463, + 0.0 + ], + [ + 33.348999, + -24.6594983, + 0.0 + ], + [ + 33.348999, + -24.6582502, + 0.0 + ], + [ + 33.3476257, + -24.6582502, + 0.0 + ], + [ + 33.3462524, + -24.6582502, + 0.0 + ], + [ + 33.3448792, + -24.6582502, + 0.0 + ], + [ + 33.3435059, + -24.6582502, + 0.0 + ], + [ + 33.3435059, + -24.6570022, + 0.0 + ], + [ + 33.3421326, + -24.6570022, + 0.0 + ], + [ + 33.3421326, + -24.6557541, + 0.0 + ], + [ + 33.3421326, + -24.654506, + 0.0 + ], + [ + 33.3421326, + -24.6532579, + 0.0 + ], + [ + 33.3407593, + -24.6532579, + 0.0 + ], + [ + 33.3407593, + -24.6520098, + 0.0 + ], + [ + 33.339386, + -24.6520098, + 0.0 + ], + [ + 33.3380127, + -24.6520098, + 0.0 + ], + [ + 33.3366394, + -24.6520098, + 0.0 + ], + [ + 33.3366394, + -24.6507616, + 0.0 + ], + [ + 33.3352661, + -24.6507616, + 0.0 + ], + [ + 33.3352661, + -24.6495135, + 0.0 + ], + [ + 33.3338928, + -24.6495135, + 0.0 + ], + [ + 33.3325195, + -24.6495135, + 0.0 + ], + [ + 33.3311462, + -24.6495135, + 0.0 + ], + [ + 33.3297729, + -24.6495135, + 0.0 + ], + [ + 33.3283997, + -24.6495135, + 0.0 + ], + [ + 33.3270264, + -24.6495135, + 0.0 + ], + [ + 33.3270264, + -24.6482653, + 0.0 + ], + [ + 33.3256531, + -24.6482653, + 0.0 + ], + [ + 33.3256531, + -24.6470172, + 0.0 + ], + [ + 33.3242798, + -24.6470172, + 0.0 + ], + [ + 33.3229065, + -24.6470172, + 0.0 + ], + [ + 33.3229065, + -24.6482653, + 0.0 + ], + [ + 33.3215332, + -24.6482653, + 0.0 + ], + [ + 33.3201599, + -24.6482653, + 0.0 + ], + [ + 33.3187866, + -24.6482653, + 0.0 + ], + [ + 33.3187866, + -24.6470172, + 0.0 + ], + [ + 33.3174133, + -24.6470172, + 0.0 + ], + [ + 33.3174133, + -24.6482653, + 0.0 + ], + [ + 33.31604, + -24.6482653, + 0.0 + ], + [ + 33.31604, + -24.6470172, + 0.0 + ], + [ + 33.3146667, + -24.6470172, + 0.0 + ], + [ + 33.3146667, + -24.645769, + 0.0 + ], + [ + 33.3146667, + -24.6445208, + 0.0 + ], + [ + 33.3132935, + -24.6445208, + 0.0 + ], + [ + 33.3119202, + -24.6445208, + 0.0 + ], + [ + 33.3119202, + -24.6432726, + 0.0 + ], + [ + 33.3119202, + -24.6420244, + 0.0 + ], + [ + 33.3105469, + -24.6420244, + 0.0 + ], + [ + 33.3105469, + -24.6407761, + 0.0 + ], + [ + 33.3105469, + -24.6395279, + 0.0 + ], + [ + 33.3091736, + -24.6395279, + 0.0 + ], + [ + 33.3078003, + -24.6395279, + 0.0 + ], + [ + 33.306427, + -24.6395279, + 0.0 + ], + [ + 33.3050537, + -24.6395279, + 0.0 + ], + [ + 33.3036804, + -24.6395279, + 0.0 + ], + [ + 33.3023071, + -24.6395279, + 0.0 + ], + [ + 33.3009338, + -24.6395279, + 0.0 + ], + [ + 33.2995605, + -24.6395279, + 0.0 + ], + [ + 33.2995605, + -24.6407761, + 0.0 + ], + [ + 33.3009338, + -24.6407761, + 0.0 + ], + [ + 33.3009338, + -24.6420244, + 0.0 + ], + [ + 33.2995605, + -24.6420244, + 0.0 + ], + [ + 33.2995605, + -24.6432726, + 0.0 + ], + [ + 33.2995605, + -24.6445208, + 0.0 + ], + [ + 33.2981873, + -24.6445208, + 0.0 + ], + [ + 33.2981873, + -24.645769, + 0.0 + ], + [ + 33.2981873, + -24.6470172, + 0.0 + ], + [ + 33.2995605, + -24.6470172, + 0.0 + ], + [ + 33.3009338, + -24.6470172, + 0.0 + ], + [ + 33.3023071, + -24.6470172, + 0.0 + ], + [ + 33.3023071, + -24.6482653, + 0.0 + ], + [ + 33.3036804, + -24.6482653, + 0.0 + ], + [ + 33.3050537, + -24.6482653, + 0.0 + ], + [ + 33.3050537, + -24.6495135, + 0.0 + ], + [ + 33.306427, + -24.6495135, + 0.0 + ], + [ + 33.306427, + -24.6507616, + 0.0 + ], + [ + 33.3078003, + -24.6507616, + 0.0 + ], + [ + 33.3078003, + -24.6520098, + 0.0 + ], + [ + 33.3078003, + -24.6532579, + 0.0 + ], + [ + 33.3091736, + -24.6532579, + 0.0 + ], + [ + 33.3105469, + -24.6532579, + 0.0 + ], + [ + 33.3105469, + -24.654506, + 0.0 + ], + [ + 33.3119202, + -24.654506, + 0.0 + ], + [ + 33.3132935, + -24.654506, + 0.0 + ], + [ + 33.3132935, + -24.6557541, + 0.0 + ], + [ + 33.3132935, + -24.6570022, + 0.0 + ], + [ + 33.3146667, + -24.6570022, + 0.0 + ], + [ + 33.3146667, + -24.6582502, + 0.0 + ], + [ + 33.31604, + -24.6582502, + 0.0 + ], + [ + 33.3174133, + -24.6582502, + 0.0 + ], + [ + 33.3174133, + -24.6594983, + 0.0 + ], + [ + 33.3174133, + -24.6607463, + 0.0 + ], + [ + 33.3187866, + -24.6607463, + 0.0 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": 7 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 33.3119202, + -24.6619944, + 0.0 + ], + [ + 33.3105469, + -24.6619944, + 0.0 + ], + [ + 33.3105469, + -24.6632424, + 0.0 + ], + [ + 33.3119202, + -24.6632424, + 0.0 + ], + [ + 33.3119202, + -24.6619944, + 0.0 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": 8 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 33.3050537, + -24.6619944, + 0.0 + ], + [ + 33.3036804, + -24.6619944, + 0.0 + ], + [ + 33.3036804, + -24.6632424, + 0.0 + ], + [ + 33.3050537, + -24.6632424, + 0.0 + ], + [ + 33.3050537, + -24.6619944, + 0.0 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": 9 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 33.2789612, + -24.6582502, + 0.0 + ], + [ + 33.2775879, + -24.6582502, + 0.0 + ], + [ + 33.2775879, + -24.6594983, + 0.0 + ], + [ + 33.2789612, + -24.6594983, + 0.0 + ], + [ + 33.2789612, + -24.6582502, + 0.0 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": 10 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 33.2858276, + -24.6420244, + 0.0 + ], + [ + 33.2858276, + -24.6432726, + 0.0 + ], + [ + 33.2872009, + -24.6432726, + 0.0 + ], + [ + 33.2872009, + -24.6420244, + 0.0 + ], + [ + 33.2872009, + -24.6407761, + 0.0 + ], + [ + 33.2858276, + -24.6407761, + 0.0 + ], + [ + 33.2858276, + -24.6420244, + 0.0 + ] + ] + ] + } + } + ] +} diff --git a/assets/docs/about_data/files/results_-M56eeMCZ5VeOHjJN4Bx.csv.gz b/assets/docs/about_data/files/results_-M56eeMCZ5VeOHjJN4Bx.csv.gz deleted file mode 100644 index f3e47e4..0000000 Binary files a/assets/docs/about_data/files/results_-M56eeMCZ5VeOHjJN4Bx.csv.gz and /dev/null differ diff --git a/assets/docs/about_data/files/tasks_-M56eeMCZ5VeOHjJN4Bx.csv.gz b/assets/docs/about_data/files/tasks_-M56eeMCZ5VeOHjJN4Bx.csv.gz deleted file mode 100644 index 18e297b..0000000 Binary files a/assets/docs/about_data/files/tasks_-M56eeMCZ5VeOHjJN4Bx.csv.gz and /dev/null differ diff --git a/assets/docs/about_data/files/users_-M56eeMCZ5VeOHjJN4Bx.csv.gz b/assets/docs/about_data/files/users_-M56eeMCZ5VeOHjJN4Bx.csv.gz deleted file mode 100644 index bf8dd91..0000000 Binary files a/assets/docs/about_data/files/users_-M56eeMCZ5VeOHjJN4Bx.csv.gz and /dev/null differ diff --git a/assets/docs/about_data/files/yes_maybe_-M56eeMCZ5VeOHjJN4Bx.geojson b/assets/docs/about_data/files/yes_maybe_-M56eeMCZ5VeOHjJN4Bx.geojson deleted file mode 100644 index c41fc05..0000000 --- a/assets/docs/about_data/files/yes_maybe_-M56eeMCZ5VeOHjJN4Bx.geojson +++ /dev/null @@ -1 +0,0 @@ -{"type": "FeatureCollection", "name": "/root/.local/share/mapswipe_workers/api/yes_maybe/yes_maybe_-M56eeMCZ5VeOHjJN4Bx.geojson", "crs": {"type": "name", "properties": {"name": "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "features": [{"type": "Feature", "properties": {"id": 1}, "geometry": {"type": "Polygon", "coordinates": [[[15.9494019, -4.2902662, 0.0], [15.9507751, -4.2902662, 0.0], [15.9521484, -4.2902662, 0.0], [15.9521484, -4.2888967, 0.0], [15.9535217, -4.2888967, 0.0], [15.9535217, -4.2875273, 0.0], [15.954895, -4.2875273, 0.0], [15.954895, -4.2861579, 0.0], [15.9535217, -4.2861579, 0.0], [15.9521484, -4.2861579, 0.0], [15.9507751, -4.2861579, 0.0], [15.9494019, -4.2861579, 0.0], [15.9494019, -4.2875273, 0.0], [15.9494019, -4.2888967, 0.0], [15.9480286, -4.2888967, 0.0], [15.9480286, -4.2902662, 0.0], [15.9480286, -4.2916356, 0.0], [15.9494019, -4.2916356, 0.0], [15.9494019, -4.2902662, 0.0]], [[15.9521484, -4.2888967, 0.0], [15.9507751, -4.2888967, 0.0], [15.9507751, -4.2875273, 0.0], [15.9521484, -4.2875273, 0.0], [15.9521484, -4.2888967, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2}, "geometry": {"type": "Polygon", "coordinates": [[[15.5882263, -4.2573989, 0.0], [15.5882263, -4.2560294, 0.0], [15.5882263, -4.2546598, 0.0], [15.5882263, -4.2532903, 0.0], [15.5882263, -4.2519208, 0.0], [15.5882263, -4.2505513, 0.0], [15.5882263, -4.2491818, 0.0], [15.5882263, -4.2478123, 0.0], [15.586853, -4.2478123, 0.0], [15.586853, -4.2464428, 0.0], [15.5882263, -4.2464428, 0.0], [15.5895996, -4.2464428, 0.0], [15.5909729, -4.2464428, 0.0], [15.5909729, -4.2478123, 0.0], [15.5923462, -4.2478123, 0.0], [15.5923462, -4.2464428, 0.0], [15.5937195, -4.2464428, 0.0], [15.5937195, -4.2478123, 0.0], [15.5937195, -4.2491818, 0.0], [15.5923462, -4.2491818, 0.0], [15.5909729, -4.2491818, 0.0], [15.5895996, -4.2491818, 0.0], [15.5895996, -4.2505513, 0.0], [15.5895996, -4.2519208, 0.0], [15.5909729, -4.2519208, 0.0], [15.5923462, -4.2519208, 0.0], [15.5923462, -4.2505513, 0.0], [15.5937195, -4.2505513, 0.0], [15.5937195, -4.2519208, 0.0], [15.5950928, -4.2519208, 0.0], [15.5950928, -4.2505513, 0.0], [15.5950928, -4.2491818, 0.0], [15.5950928, -4.2478123, 0.0], [15.5964661, -4.2478123, 0.0], [15.5964661, -4.2464428, 0.0], [15.5950928, -4.2464428, 0.0], [15.5950928, -4.2450732, 0.0], [15.5964661, -4.2450732, 0.0], [15.5978394, -4.2450732, 0.0], [15.5978394, -4.2437037, 0.0], [15.5978394, -4.2423342, 0.0], [15.5964661, -4.2423342, 0.0], [15.5964661, -4.2409647, 0.0], [15.5950928, -4.2409647, 0.0], [15.5950928, -4.2395951, 0.0], [15.5937195, -4.2395951, 0.0], [15.5937195, -4.2382256, 0.0], [15.5950928, -4.2382256, 0.0], [15.5950928, -4.2368561, 0.0], [15.5937195, -4.2368561, 0.0], [15.5923462, -4.2368561, 0.0], [15.5909729, -4.2368561, 0.0], [15.5909729, -4.2382256, 0.0], [15.5895996, -4.2382256, 0.0], [15.5895996, -4.2395951, 0.0], [15.5882263, -4.2395951, 0.0], [15.5882263, -4.2382256, 0.0], [15.5882263, -4.2368561, 0.0], [15.5895996, -4.2368561, 0.0], [15.5895996, -4.2354865, 0.0], [15.5882263, -4.2354865, 0.0], [15.586853, -4.2354865, 0.0], [15.5854797, -4.2354865, 0.0], [15.5841064, -4.2354865, 0.0], [15.5827332, -4.2354865, 0.0], [15.5827332, -4.2368561, 0.0], [15.5827332, -4.2382256, 0.0], [15.5827332, -4.2395951, 0.0], [15.5841064, -4.2395951, 0.0], [15.5841064, -4.2409647, 0.0], [15.5827332, -4.2409647, 0.0], [15.5813599, -4.2409647, 0.0], [15.5799866, -4.2409647, 0.0], [15.5786133, -4.2409647, 0.0], [15.57724, -4.2409647, 0.0], [15.5758667, -4.2409647, 0.0], [15.5758667, -4.2423342, 0.0], [15.5758667, -4.2437037, 0.0], [15.5758667, -4.2450732, 0.0], [15.5744934, -4.2450732, 0.0], [15.5744934, -4.2464428, 0.0], [15.5758667, -4.2464428, 0.0], [15.57724, -4.2464428, 0.0], [15.57724, -4.2478123, 0.0], [15.5786133, -4.2478123, 0.0], [15.5786133, -4.2491818, 0.0], [15.5786133, -4.2505513, 0.0], [15.57724, -4.2505513, 0.0], [15.57724, -4.2519208, 0.0], [15.5786133, -4.2519208, 0.0], [15.5786133, -4.2532903, 0.0], [15.5799866, -4.2532903, 0.0], [15.5799866, -4.2519208, 0.0], [15.5799866, -4.2505513, 0.0], [15.5799866, -4.2491818, 0.0], [15.5813599, -4.2491818, 0.0], [15.5813599, -4.2478123, 0.0], [15.5827332, -4.2478123, 0.0], [15.5841064, -4.2478123, 0.0], [15.5841064, -4.2464428, 0.0], [15.5854797, -4.2464428, 0.0], [15.5854797, -4.2478123, 0.0], [15.5854797, -4.2491818, 0.0], [15.5841064, -4.2491818, 0.0], [15.5841064, -4.2505513, 0.0], [15.5827332, -4.2505513, 0.0], [15.5827332, -4.2519208, 0.0], [15.5827332, -4.2532903, 0.0], [15.5841064, -4.2532903, 0.0], [15.5854797, -4.2532903, 0.0], [15.5854797, -4.2546598, 0.0], [15.5854797, -4.2560294, 0.0], [15.586853, -4.2560294, 0.0], [15.586853, -4.2573989, 0.0], [15.586853, -4.2587684, 0.0], [15.5882263, -4.2587684, 0.0], [15.5882263, -4.2573989, 0.0]], [[15.5854797, -4.2532903, 0.0], [15.5854797, -4.2519208, 0.0], [15.586853, -4.2519208, 0.0], [15.586853, -4.2532903, 0.0], [15.5854797, -4.2532903, 0.0]], [[15.5854797, -4.2491818, 0.0], [15.586853, -4.2491818, 0.0], [15.586853, -4.2505513, 0.0], [15.5854797, -4.2505513, 0.0], [15.5854797, -4.2491818, 0.0]]]}}, {"type": "Feature", "properties": {"id": 3}, "geometry": {"type": "Polygon", "coordinates": [[[15.7049561, -4.2108344, 0.0], [15.7049561, -4.212204, 0.0], [15.7063293, -4.212204, 0.0], [15.7077026, -4.212204, 0.0], [15.7077026, -4.2108344, 0.0], [15.7090759, -4.2108344, 0.0], [15.7090759, -4.2094648, 0.0], [15.7104492, -4.2094648, 0.0], [15.7104492, -4.2080952, 0.0], [15.7118225, -4.2080952, 0.0], [15.7118225, -4.2067256, 0.0], [15.7131958, -4.2067256, 0.0], [15.7131958, -4.205356, 0.0], [15.7145691, -4.205356, 0.0], [15.7145691, -4.2039865, 0.0], [15.7159424, -4.2039865, 0.0], [15.7159424, -4.2026169, 0.0], [15.7159424, -4.2012473, 0.0], [15.7145691, -4.2012473, 0.0], [15.7145691, -4.2026169, 0.0], [15.7131958, -4.2026169, 0.0], [15.7131958, -4.2012473, 0.0], [15.7131958, -4.1998777, 0.0], [15.7145691, -4.1998777, 0.0], [15.7159424, -4.1998777, 0.0], [15.7173157, -4.1998777, 0.0], [15.718689, -4.1998777, 0.0], [15.7200623, -4.1998777, 0.0], [15.7200623, -4.2012473, 0.0], [15.7214355, -4.2012473, 0.0], [15.7228088, -4.2012473, 0.0], [15.7228088, -4.2026169, 0.0], [15.7241821, -4.2026169, 0.0], [15.7255554, -4.2026169, 0.0], [15.7255554, -4.2012473, 0.0], [15.7241821, -4.2012473, 0.0], [15.7241821, -4.1998777, 0.0], [15.7228088, -4.1998777, 0.0], [15.7214355, -4.1998777, 0.0], [15.7214355, -4.198508, 0.0], [15.7214355, -4.1971384, 0.0], [15.7200623, -4.1971384, 0.0], [15.7200623, -4.198508, 0.0], [15.718689, -4.198508, 0.0], [15.7173157, -4.198508, 0.0], [15.7173157, -4.1971384, 0.0], [15.7159424, -4.1971384, 0.0], [15.7159424, -4.1957688, 0.0], [15.7159424, -4.1943992, 0.0], [15.7159424, -4.1930296, 0.0], [15.7173157, -4.1930296, 0.0], [15.7173157, -4.19166, 0.0], [15.7159424, -4.19166, 0.0], [15.7145691, -4.19166, 0.0], [15.7145691, -4.1930296, 0.0], [15.7131958, -4.1930296, 0.0], [15.7131958, -4.19166, 0.0], [15.7131958, -4.1902904, 0.0], [15.7145691, -4.1902904, 0.0], [15.7145691, -4.1889207, 0.0], [15.7131958, -4.1889207, 0.0], [15.7131958, -4.1875511, 0.0], [15.7118225, -4.1875511, 0.0], [15.7104492, -4.1875511, 0.0], [15.7104492, -4.1861815, 0.0], [15.7118225, -4.1861815, 0.0], [15.7131958, -4.1861815, 0.0], [15.7131958, -4.1848119, 0.0], [15.7118225, -4.1848119, 0.0], [15.7104492, -4.1848119, 0.0], [15.7104492, -4.1834422, 0.0], [15.7104492, -4.1820726, 0.0], [15.7104492, -4.180703, 0.0], [15.7090759, -4.180703, 0.0], [15.7077026, -4.180703, 0.0], [15.7063293, -4.180703, 0.0], [15.7063293, -4.1793333, 0.0], [15.7063293, -4.1779637, 0.0], [15.7049561, -4.1779637, 0.0], [15.7049561, -4.176594, 0.0], [15.7035828, -4.176594, 0.0], [15.7035828, -4.1752244, 0.0], [15.7022095, -4.1752244, 0.0], [15.7008362, -4.1752244, 0.0], [15.7008362, -4.176594, 0.0], [15.6994629, -4.176594, 0.0], [15.6994629, -4.1752244, 0.0], [15.6980896, -4.1752244, 0.0], [15.6980896, -4.176594, 0.0], [15.6980896, -4.1779637, 0.0], [15.6967163, -4.1779637, 0.0], [15.6967163, -4.1793333, 0.0], [15.6980896, -4.1793333, 0.0], [15.6980896, -4.180703, 0.0], [15.6967163, -4.180703, 0.0], [15.6967163, -4.1820726, 0.0], [15.695343, -4.1820726, 0.0], [15.6939697, -4.1820726, 0.0], [15.6925964, -4.1820726, 0.0], [15.6925964, -4.180703, 0.0], [15.6939697, -4.180703, 0.0], [15.6939697, -4.1793333, 0.0], [15.6925964, -4.1793333, 0.0], [15.6912231, -4.1793333, 0.0], [15.6898499, -4.1793333, 0.0], [15.6898499, -4.180703, 0.0], [15.6884766, -4.180703, 0.0], [15.6884766, -4.1820726, 0.0], [15.6884766, -4.1834422, 0.0], [15.6871033, -4.1834422, 0.0], [15.6871033, -4.1848119, 0.0], [15.6871033, -4.1861815, 0.0], [15.6884766, -4.1861815, 0.0], [15.6898499, -4.1861815, 0.0], [15.6912231, -4.1861815, 0.0], [15.6925964, -4.1861815, 0.0], [15.6925964, -4.1875511, 0.0], [15.6939697, -4.1875511, 0.0], [15.6939697, -4.1889207, 0.0], [15.6939697, -4.1902904, 0.0], [15.695343, -4.1902904, 0.0], [15.695343, -4.19166, 0.0], [15.6939697, -4.19166, 0.0], [15.6939697, -4.1930296, 0.0], [15.6925964, -4.1930296, 0.0], [15.6925964, -4.1943992, 0.0], [15.6912231, -4.1943992, 0.0], [15.6912231, -4.1957688, 0.0], [15.6898499, -4.1957688, 0.0], [15.6898499, -4.1971384, 0.0], [15.6898499, -4.198508, 0.0], [15.6912231, -4.198508, 0.0], [15.6912231, -4.1998777, 0.0], [15.6925964, -4.1998777, 0.0], [15.6925964, -4.2012473, 0.0], [15.6925964, -4.2026169, 0.0], [15.6939697, -4.2026169, 0.0], [15.6939697, -4.2012473, 0.0], [15.695343, -4.2012473, 0.0], [15.695343, -4.2026169, 0.0], [15.695343, -4.2039865, 0.0], [15.6967163, -4.2039865, 0.0], [15.6980896, -4.2039865, 0.0], [15.6980896, -4.205356, 0.0], [15.6994629, -4.205356, 0.0], [15.6994629, -4.2039865, 0.0], [15.6994629, -4.2026169, 0.0], [15.7008362, -4.2026169, 0.0], [15.7022095, -4.2026169, 0.0], [15.7022095, -4.2039865, 0.0], [15.7035828, -4.2039865, 0.0], [15.7049561, -4.2039865, 0.0], [15.7049561, -4.205356, 0.0], [15.7049561, -4.2067256, 0.0], [15.7035828, -4.2067256, 0.0], [15.7035828, -4.2080952, 0.0], [15.7049561, -4.2080952, 0.0], [15.7049561, -4.2094648, 0.0], [15.7063293, -4.2094648, 0.0], [15.7063293, -4.2108344, 0.0], [15.7049561, -4.2108344, 0.0]], [[15.7063293, -4.2094648, 0.0], [15.7063293, -4.2080952, 0.0], [15.7063293, -4.2067256, 0.0], [15.7077026, -4.2067256, 0.0], [15.7077026, -4.2080952, 0.0], [15.7077026, -4.2094648, 0.0], [15.7063293, -4.2094648, 0.0]], [[15.7022095, -4.2026169, 0.0], [15.7022095, -4.2012473, 0.0], [15.7035828, -4.2012473, 0.0], [15.7035828, -4.2026169, 0.0], [15.7022095, -4.2026169, 0.0]], [[15.7104492, -4.2012473, 0.0], [15.7104492, -4.1998777, 0.0], [15.7118225, -4.1998777, 0.0], [15.7118225, -4.2012473, 0.0], [15.7104492, -4.2012473, 0.0]], [[15.7090759, -4.1971384, 0.0], [15.7104492, -4.1971384, 0.0], [15.7104492, -4.198508, 0.0], [15.7090759, -4.198508, 0.0], [15.7090759, -4.1971384, 0.0]], [[15.7049561, -4.19166, 0.0], [15.7049561, -4.1902904, 0.0], [15.7035828, -4.1902904, 0.0], [15.7035828, -4.1889207, 0.0], [15.7049561, -4.1889207, 0.0], [15.7063293, -4.1889207, 0.0], [15.7077026, -4.1889207, 0.0], [15.7077026, -4.1902904, 0.0], [15.7077026, -4.19166, 0.0], [15.7063293, -4.19166, 0.0], [15.7049561, -4.19166, 0.0]], [[15.7104492, -4.19166, 0.0], [15.7104492, -4.1902904, 0.0], [15.7118225, -4.1902904, 0.0], [15.7118225, -4.19166, 0.0], [15.7104492, -4.19166, 0.0]], [[15.6994629, -4.1793333, 0.0], [15.6994629, -4.1779637, 0.0], [15.7008362, -4.1779637, 0.0], [15.7008362, -4.1793333, 0.0], [15.6994629, -4.1793333, 0.0]]]}}, {"type": "Feature", "properties": {"id": 4}, "geometry": {"type": "Polygon", "coordinates": [[[15.5648804, -4.2067256, 0.0], [15.5648804, -4.205356, 0.0], [15.5662537, -4.205356, 0.0], [15.5662537, -4.2039865, 0.0], [15.5662537, -4.2026169, 0.0], [15.567627, -4.2026169, 0.0], [15.567627, -4.2039865, 0.0], [15.5690002, -4.2039865, 0.0], [15.5703735, -4.2039865, 0.0], [15.5703735, -4.2026169, 0.0], [15.5717468, -4.2026169, 0.0], [15.5717468, -4.2012473, 0.0], [15.5703735, -4.2012473, 0.0], [15.5690002, -4.2012473, 0.0], [15.5690002, -4.1998777, 0.0], [15.5690002, -4.198508, 0.0], [15.5690002, -4.1971384, 0.0], [15.5690002, -4.1957688, 0.0], [15.567627, -4.1957688, 0.0], [15.5662537, -4.1957688, 0.0], [15.5648804, -4.1957688, 0.0], [15.5648804, -4.1971384, 0.0], [15.5648804, -4.198508, 0.0], [15.5635071, -4.198508, 0.0], [15.5621338, -4.198508, 0.0], [15.5621338, -4.1971384, 0.0], [15.5621338, -4.1957688, 0.0], [15.5621338, -4.1943992, 0.0], [15.5635071, -4.1943992, 0.0], [15.5648804, -4.1943992, 0.0], [15.5662537, -4.1943992, 0.0], [15.567627, -4.1943992, 0.0], [15.5690002, -4.1943992, 0.0], [15.5690002, -4.1930296, 0.0], [15.567627, -4.1930296, 0.0], [15.5662537, -4.1930296, 0.0], [15.5648804, -4.1930296, 0.0], [15.5635071, -4.1930296, 0.0], [15.5635071, -4.19166, 0.0], [15.5635071, -4.1902904, 0.0], [15.5635071, -4.1889207, 0.0], [15.5635071, -4.1875511, 0.0], [15.5648804, -4.1875511, 0.0], [15.5648804, -4.1861815, 0.0], [15.5662537, -4.1861815, 0.0], [15.567627, -4.1861815, 0.0], [15.5690002, -4.1861815, 0.0], [15.5690002, -4.1848119, 0.0], [15.5690002, -4.1834422, 0.0], [15.5703735, -4.1834422, 0.0], [15.5703735, -4.1820726, 0.0], [15.5690002, -4.1820726, 0.0], [15.5690002, -4.180703, 0.0], [15.5703735, -4.180703, 0.0], [15.5717468, -4.180703, 0.0], [15.5717468, -4.1793333, 0.0], [15.5717468, -4.1779637, 0.0], [15.5703735, -4.1779637, 0.0], [15.5703735, -4.1793333, 0.0], [15.5690002, -4.1793333, 0.0], [15.5690002, -4.1779637, 0.0], [15.567627, -4.1779637, 0.0], [15.5662537, -4.1779637, 0.0], [15.5662537, -4.176594, 0.0], [15.5662537, -4.1752244, 0.0], [15.567627, -4.1752244, 0.0], [15.567627, -4.1738548, 0.0], [15.5690002, -4.1738548, 0.0], [15.5690002, -4.1724851, 0.0], [15.567627, -4.1724851, 0.0], [15.567627, -4.1711155, 0.0], [15.5690002, -4.1711155, 0.0], [15.5690002, -4.1697458, 0.0], [15.5703735, -4.1697458, 0.0], [15.5717468, -4.1697458, 0.0], [15.5717468, -4.1683761, 0.0], [15.5703735, -4.1683761, 0.0], [15.5703735, -4.1670065, 0.0], [15.5717468, -4.1670065, 0.0], [15.5717468, -4.1656368, 0.0], [15.5731201, -4.1656368, 0.0], [15.5731201, -4.1642672, 0.0], [15.5731201, -4.1628975, 0.0], [15.5717468, -4.1628975, 0.0], [15.5703735, -4.1628975, 0.0], [15.5703735, -4.1642672, 0.0], [15.5703735, -4.1656368, 0.0], [15.5690002, -4.1656368, 0.0], [15.5690002, -4.1670065, 0.0], [15.5690002, -4.1683761, 0.0], [15.567627, -4.1683761, 0.0], [15.5662537, -4.1683761, 0.0], [15.5662537, -4.1697458, 0.0], [15.5648804, -4.1697458, 0.0], [15.5648804, -4.1683761, 0.0], [15.5635071, -4.1683761, 0.0], [15.5635071, -4.1697458, 0.0], [15.5621338, -4.1697458, 0.0], [15.5621338, -4.1711155, 0.0], [15.5607605, -4.1711155, 0.0], [15.5607605, -4.1697458, 0.0], [15.5593872, -4.1697458, 0.0], [15.5593872, -4.1683761, 0.0], [15.5580139, -4.1683761, 0.0], [15.5580139, -4.1697458, 0.0], [15.5580139, -4.1711155, 0.0], [15.5566406, -4.1711155, 0.0], [15.5566406, -4.1724851, 0.0], [15.5566406, -4.1738548, 0.0], [15.5566406, -4.1752244, 0.0], [15.5580139, -4.1752244, 0.0], [15.5580139, -4.176594, 0.0], [15.5566406, -4.176594, 0.0], [15.5552673, -4.176594, 0.0], [15.5552673, -4.1779637, 0.0], [15.553894, -4.1779637, 0.0], [15.5525208, -4.1779637, 0.0], [15.5525208, -4.1793333, 0.0], [15.5511475, -4.1793333, 0.0], [15.5511475, -4.1779637, 0.0], [15.5511475, -4.176594, 0.0], [15.5511475, -4.1752244, 0.0], [15.5525208, -4.1752244, 0.0], [15.5525208, -4.1738548, 0.0], [15.5525208, -4.1724851, 0.0], [15.5525208, -4.1711155, 0.0], [15.553894, -4.1711155, 0.0], [15.5552673, -4.1711155, 0.0], [15.5552673, -4.1697458, 0.0], [15.553894, -4.1697458, 0.0], [15.553894, -4.1683761, 0.0], [15.5552673, -4.1683761, 0.0], [15.5552673, -4.1670065, 0.0], [15.553894, -4.1670065, 0.0], [15.5525208, -4.1670065, 0.0], [15.5511475, -4.1670065, 0.0], [15.5497742, -4.1670065, 0.0], [15.5497742, -4.1656368, 0.0], [15.5484009, -4.1656368, 0.0], [15.5484009, -4.1642672, 0.0], [15.5484009, -4.1628975, 0.0], [15.5470276, -4.1628975, 0.0], [15.5456543, -4.1628975, 0.0], [15.544281, -4.1628975, 0.0], [15.5429077, -4.1628975, 0.0], [15.5429077, -4.1642672, 0.0], [15.5429077, -4.1656368, 0.0], [15.5429077, -4.1670065, 0.0], [15.5415344, -4.1670065, 0.0], [15.5415344, -4.1683761, 0.0], [15.5429077, -4.1683761, 0.0], [15.544281, -4.1683761, 0.0], [15.544281, -4.1697458, 0.0], [15.5429077, -4.1697458, 0.0], [15.5415344, -4.1697458, 0.0], [15.5401611, -4.1697458, 0.0], [15.5387878, -4.1697458, 0.0], [15.5374146, -4.1697458, 0.0], [15.5360413, -4.1697458, 0.0], [15.5360413, -4.1711155, 0.0], [15.534668, -4.1711155, 0.0], [15.534668, -4.1724851, 0.0], [15.534668, -4.1738548, 0.0], [15.5360413, -4.1738548, 0.0], [15.5360413, -4.1752244, 0.0], [15.5360413, -4.176594, 0.0], [15.5360413, -4.1779637, 0.0], [15.534668, -4.1779637, 0.0], [15.534668, -4.1793333, 0.0], [15.534668, -4.180703, 0.0], [15.5360413, -4.180703, 0.0], [15.5360413, -4.1793333, 0.0], [15.5374146, -4.1793333, 0.0], [15.5387878, -4.1793333, 0.0], [15.5387878, -4.180703, 0.0], [15.5387878, -4.1820726, 0.0], [15.5401611, -4.1820726, 0.0], [15.5415344, -4.1820726, 0.0], [15.5415344, -4.1834422, 0.0], [15.5415344, -4.1848119, 0.0], [15.5401611, -4.1848119, 0.0], [15.5401611, -4.1861815, 0.0], [15.5415344, -4.1861815, 0.0], [15.5415344, -4.1875511, 0.0], [15.5401611, -4.1875511, 0.0], [15.5401611, -4.1889207, 0.0], [15.5401611, -4.1902904, 0.0], [15.5415344, -4.1902904, 0.0], [15.5415344, -4.1889207, 0.0], [15.5429077, -4.1889207, 0.0], [15.5429077, -4.1902904, 0.0], [15.544281, -4.1902904, 0.0], [15.5456543, -4.1902904, 0.0], [15.5456543, -4.1889207, 0.0], [15.5470276, -4.1889207, 0.0], [15.5470276, -4.1902904, 0.0], [15.5484009, -4.1902904, 0.0], [15.5484009, -4.19166, 0.0], [15.5497742, -4.19166, 0.0], [15.5511475, -4.19166, 0.0], [15.5511475, -4.1930296, 0.0], [15.5497742, -4.1930296, 0.0], [15.5484009, -4.1930296, 0.0], [15.5484009, -4.1943992, 0.0], [15.5497742, -4.1943992, 0.0], [15.5497742, -4.1957688, 0.0], [15.5497742, -4.1971384, 0.0], [15.5484009, -4.1971384, 0.0], [15.5470276, -4.1971384, 0.0], [15.5456543, -4.1971384, 0.0], [15.5456543, -4.198508, 0.0], [15.5456543, -4.1998777, 0.0], [15.5456543, -4.2012473, 0.0], [15.5470276, -4.2012473, 0.0], [15.5470276, -4.2026169, 0.0], [15.5484009, -4.2026169, 0.0], [15.5484009, -4.2039865, 0.0], [15.5497742, -4.2039865, 0.0], [15.5497742, -4.2026169, 0.0], [15.5511475, -4.2026169, 0.0], [15.5511475, -4.2012473, 0.0], [15.5525208, -4.2012473, 0.0], [15.5525208, -4.2026169, 0.0], [15.5525208, -4.2039865, 0.0], [15.553894, -4.2039865, 0.0], [15.5552673, -4.2039865, 0.0], [15.5552673, -4.205356, 0.0], [15.5566406, -4.205356, 0.0], [15.5566406, -4.2067256, 0.0], [15.5580139, -4.2067256, 0.0], [15.5593872, -4.2067256, 0.0], [15.5607605, -4.2067256, 0.0], [15.5607605, -4.2080952, 0.0], [15.5621338, -4.2080952, 0.0], [15.5635071, -4.2080952, 0.0], [15.5648804, -4.2080952, 0.0], [15.5648804, -4.2067256, 0.0]], [[15.5429077, -4.1889207, 0.0], [15.5429077, -4.1875511, 0.0], [15.544281, -4.1875511, 0.0], [15.544281, -4.1889207, 0.0], [15.5429077, -4.1889207, 0.0]], [[15.5415344, -4.1820726, 0.0], [15.5415344, -4.180703, 0.0], [15.5415344, -4.1793333, 0.0], [15.5401611, -4.1793333, 0.0], [15.5401611, -4.1779637, 0.0], [15.5415344, -4.1779637, 0.0], [15.5415344, -4.176594, 0.0], [15.5429077, -4.176594, 0.0], [15.544281, -4.176594, 0.0], [15.5456543, -4.176594, 0.0], [15.5456543, -4.1779637, 0.0], [15.5456543, -4.1793333, 0.0], [15.5456543, -4.180703, 0.0], [15.5456543, -4.1820726, 0.0], [15.544281, -4.1820726, 0.0], [15.544281, -4.1834422, 0.0], [15.544281, -4.1848119, 0.0], [15.5429077, -4.1848119, 0.0], [15.5429077, -4.1834422, 0.0], [15.5429077, -4.1820726, 0.0], [15.5415344, -4.1820726, 0.0]], [[15.5511475, -4.1752244, 0.0], [15.5497742, -4.1752244, 0.0], [15.5497742, -4.1738548, 0.0], [15.5497742, -4.1724851, 0.0], [15.5497742, -4.1711155, 0.0], [15.5511475, -4.1711155, 0.0], [15.5511475, -4.1724851, 0.0], [15.5511475, -4.1738548, 0.0], [15.5511475, -4.1752244, 0.0]], [[15.5621338, -4.1711155, 0.0], [15.5635071, -4.1711155, 0.0], [15.5648804, -4.1711155, 0.0], [15.5648804, -4.1724851, 0.0], [15.5635071, -4.1724851, 0.0], [15.5635071, -4.1738548, 0.0], [15.5621338, -4.1738548, 0.0], [15.5621338, -4.1724851, 0.0], [15.5621338, -4.1711155, 0.0]], [[15.5621338, -4.1943992, 0.0], [15.5607605, -4.1943992, 0.0], [15.5593872, -4.1943992, 0.0], [15.5593872, -4.1930296, 0.0], [15.5607605, -4.1930296, 0.0], [15.5607605, -4.19166, 0.0], [15.5621338, -4.19166, 0.0], [15.5621338, -4.1930296, 0.0], [15.5621338, -4.1943992, 0.0]], [[15.5621338, -4.198508, 0.0], [15.5621338, -4.1998777, 0.0], [15.5621338, -4.2012473, 0.0], [15.5607605, -4.2012473, 0.0], [15.5607605, -4.1998777, 0.0], [15.5607605, -4.198508, 0.0], [15.5621338, -4.198508, 0.0]], [[15.5374146, -4.1752244, 0.0], [15.5387878, -4.1752244, 0.0], [15.5387878, -4.176594, 0.0], [15.5374146, -4.176594, 0.0], [15.5374146, -4.1752244, 0.0]], [[15.5401611, -4.1752244, 0.0], [15.5401611, -4.1738548, 0.0], [15.5415344, -4.1738548, 0.0], [15.5415344, -4.1752244, 0.0], [15.5401611, -4.1752244, 0.0]], [[15.5525208, -4.1957688, 0.0], [15.5525208, -4.1943992, 0.0], [15.5525208, -4.1930296, 0.0], [15.553894, -4.1930296, 0.0], [15.553894, -4.1943992, 0.0], [15.553894, -4.1957688, 0.0], [15.5525208, -4.1957688, 0.0]], [[15.5525208, -4.1998777, 0.0], [15.5511475, -4.1998777, 0.0], [15.5511475, -4.198508, 0.0], [15.5511475, -4.1971384, 0.0], [15.5525208, -4.1971384, 0.0], [15.5525208, -4.198508, 0.0], [15.553894, -4.198508, 0.0], [15.553894, -4.1998777, 0.0], [15.5525208, -4.1998777, 0.0]], [[15.5662537, -4.1793333, 0.0], [15.567627, -4.1793333, 0.0], [15.567627, -4.180703, 0.0], [15.5662537, -4.180703, 0.0], [15.5662537, -4.1793333, 0.0]], [[15.5511475, -4.1834422, 0.0], [15.5511475, -4.1820726, 0.0], [15.5525208, -4.1820726, 0.0], [15.5525208, -4.1834422, 0.0], [15.5511475, -4.1834422, 0.0]], [[15.5635071, -4.1820726, 0.0], [15.5635071, -4.180703, 0.0], [15.5648804, -4.180703, 0.0], [15.5648804, -4.1820726, 0.0], [15.5635071, -4.1820726, 0.0]], [[15.5607605, -4.1738548, 0.0], [15.5593872, -4.1738548, 0.0], [15.5593872, -4.1724851, 0.0], [15.5607605, -4.1724851, 0.0], [15.5607605, -4.1738548, 0.0]], [[15.5456543, -4.1656368, 0.0], [15.5470276, -4.1656368, 0.0], [15.5470276, -4.1670065, 0.0], [15.5456543, -4.1670065, 0.0], [15.5456543, -4.1656368, 0.0]]]}}, {"type": "Feature", "properties": {"id": 5}, "geometry": {"type": "Polygon", "coordinates": [[[15.586853, -4.1834422, 0.0], [15.586853, -4.1820726, 0.0], [15.5854797, -4.1820726, 0.0], [15.5841064, -4.1820726, 0.0], [15.5841064, -4.1834422, 0.0], [15.5841064, -4.1848119, 0.0], [15.5841064, -4.1861815, 0.0], [15.5854797, -4.1861815, 0.0], [15.586853, -4.1861815, 0.0], [15.5882263, -4.1861815, 0.0], [15.5882263, -4.1848119, 0.0], [15.5895996, -4.1848119, 0.0], [15.5895996, -4.1834422, 0.0], [15.5882263, -4.1834422, 0.0], [15.586853, -4.1834422, 0.0]], [[15.586853, -4.1834422, 0.0], [15.586853, -4.1848119, 0.0], [15.5854797, -4.1848119, 0.0], [15.5854797, -4.1834422, 0.0], [15.586853, -4.1834422, 0.0]]]}}, {"type": "Feature", "properties": {"id": 6}, "geometry": {"type": "Polygon", "coordinates": [[[15.5662537, -4.1231761, 0.0], [15.567627, -4.1231761, 0.0], [15.567627, -4.1218064, 0.0], [15.5662537, -4.1218064, 0.0], [15.5662537, -4.1204366, 0.0], [15.567627, -4.1204366, 0.0], [15.5690002, -4.1204366, 0.0], [15.5690002, -4.1190669, 0.0], [15.567627, -4.1190669, 0.0], [15.567627, -4.1176972, 0.0], [15.567627, -4.1163274, 0.0], [15.5690002, -4.1163274, 0.0], [15.5690002, -4.1149577, 0.0], [15.5690002, -4.1135879, 0.0], [15.5690002, -4.1122182, 0.0], [15.567627, -4.1122182, 0.0], [15.5662537, -4.1122182, 0.0], [15.5662537, -4.1108484, 0.0], [15.5662537, -4.1094786, 0.0], [15.5662537, -4.1081089, 0.0], [15.5648804, -4.1081089, 0.0], [15.5648804, -4.1067391, 0.0], [15.5662537, -4.1067391, 0.0], [15.5662537, -4.1053693, 0.0], [15.5648804, -4.1053693, 0.0], [15.5635071, -4.1053693, 0.0], [15.5621338, -4.1053693, 0.0], [15.5621338, -4.1067391, 0.0], [15.5607605, -4.1067391, 0.0], [15.5607605, -4.1053693, 0.0], [15.5593872, -4.1053693, 0.0], [15.5593872, -4.1067391, 0.0], [15.5593872, -4.1081089, 0.0], [15.5593872, -4.1094786, 0.0], [15.5607605, -4.1094786, 0.0], [15.5621338, -4.1094786, 0.0], [15.5635071, -4.1094786, 0.0], [15.5648804, -4.1094786, 0.0], [15.5648804, -4.1108484, 0.0], [15.5635071, -4.1108484, 0.0], [15.5621338, -4.1108484, 0.0], [15.5621338, -4.1122182, 0.0], [15.5607605, -4.1122182, 0.0], [15.5607605, -4.1135879, 0.0], [15.5621338, -4.1135879, 0.0], [15.5621338, -4.1149577, 0.0], [15.5607605, -4.1149577, 0.0], [15.5593872, -4.1149577, 0.0], [15.5593872, -4.1163274, 0.0], [15.5607605, -4.1163274, 0.0], [15.5621338, -4.1163274, 0.0], [15.5635071, -4.1163274, 0.0], [15.5648804, -4.1163274, 0.0], [15.5648804, -4.1176972, 0.0], [15.5648804, -4.1190669, 0.0], [15.5635071, -4.1190669, 0.0], [15.5621338, -4.1190669, 0.0], [15.5607605, -4.1190669, 0.0], [15.5593872, -4.1190669, 0.0], [15.5593872, -4.1204366, 0.0], [15.5607605, -4.1204366, 0.0], [15.5607605, -4.1218064, 0.0], [15.5621338, -4.1218064, 0.0], [15.5635071, -4.1218064, 0.0], [15.5635071, -4.1231761, 0.0], [15.5635071, -4.1245459, 0.0], [15.5648804, -4.1245459, 0.0], [15.5662537, -4.1245459, 0.0], [15.5662537, -4.1231761, 0.0]], [[15.5621338, -4.1067391, 0.0], [15.5635071, -4.1067391, 0.0], [15.5635071, -4.1081089, 0.0], [15.5621338, -4.1081089, 0.0], [15.5621338, -4.1067391, 0.0]], [[15.567627, -4.1163274, 0.0], [15.5662537, -4.1163274, 0.0], [15.5662537, -4.1149577, 0.0], [15.567627, -4.1149577, 0.0], [15.567627, -4.1163274, 0.0]]]}}, {"type": "Feature", "properties": {"id": 7}, "geometry": {"type": "Polygon", "coordinates": [[[15.5332947, -4.1190669, 0.0], [15.5332947, -4.1176972, 0.0], [15.534668, -4.1176972, 0.0], [15.534668, -4.1163274, 0.0], [15.5360413, -4.1163274, 0.0], [15.5360413, -4.1149577, 0.0], [15.534668, -4.1149577, 0.0], [15.534668, -4.1135879, 0.0], [15.5360413, -4.1135879, 0.0], [15.5360413, -4.1122182, 0.0], [15.5374146, -4.1122182, 0.0], [15.5374146, -4.1135879, 0.0], [15.5387878, -4.1135879, 0.0], [15.5387878, -4.1122182, 0.0], [15.5387878, -4.1108484, 0.0], [15.5374146, -4.1108484, 0.0], [15.5374146, -4.1094786, 0.0], [15.5360413, -4.1094786, 0.0], [15.5360413, -4.1081089, 0.0], [15.534668, -4.1081089, 0.0], [15.534668, -4.1067391, 0.0], [15.5332947, -4.1067391, 0.0], [15.5332947, -4.1053693, 0.0], [15.5332947, -4.1039996, 0.0], [15.5319214, -4.1039996, 0.0], [15.5305481, -4.1039996, 0.0], [15.5305481, -4.1026298, 0.0], [15.5319214, -4.1026298, 0.0], [15.5319214, -4.10126, 0.0], [15.5332947, -4.10126, 0.0], [15.534668, -4.10126, 0.0], [15.534668, -4.1026298, 0.0], [15.5360413, -4.1026298, 0.0], [15.5374146, -4.1026298, 0.0], [15.5374146, -4.10126, 0.0], [15.5374146, -4.0998903, 0.0], [15.5387878, -4.0998903, 0.0], [15.5401611, -4.0998903, 0.0], [15.5401611, -4.0985205, 0.0], [15.5401611, -4.0971507, 0.0], [15.5387878, -4.0971507, 0.0], [15.5387878, -4.0957809, 0.0], [15.5374146, -4.0957809, 0.0], [15.5374146, -4.0944111, 0.0], [15.5374146, -4.0930413, 0.0], [15.5374146, -4.0916716, 0.0], [15.5374146, -4.0903018, 0.0], [15.5387878, -4.0903018, 0.0], [15.5387878, -4.088932, 0.0], [15.5374146, -4.088932, 0.0], [15.5360413, -4.088932, 0.0], [15.5360413, -4.0903018, 0.0], [15.534668, -4.0903018, 0.0], [15.5332947, -4.0903018, 0.0], [15.5319214, -4.0903018, 0.0], [15.5319214, -4.088932, 0.0], [15.5319214, -4.0875622, 0.0], [15.5305481, -4.0875622, 0.0], [15.5305481, -4.0861924, 0.0], [15.5291748, -4.0861924, 0.0], [15.5278015, -4.0861924, 0.0], [15.5264282, -4.0861924, 0.0], [15.5264282, -4.0875622, 0.0], [15.5264282, -4.088932, 0.0], [15.5250549, -4.088932, 0.0], [15.5236816, -4.088932, 0.0], [15.5223083, -4.088932, 0.0], [15.5209351, -4.088932, 0.0], [15.5209351, -4.0903018, 0.0], [15.5209351, -4.0916716, 0.0], [15.5195618, -4.0916716, 0.0], [15.5195618, -4.0930413, 0.0], [15.5195618, -4.0944111, 0.0], [15.5209351, -4.0944111, 0.0], [15.5209351, -4.0957809, 0.0], [15.5195618, -4.0957809, 0.0], [15.5195618, -4.0971507, 0.0], [15.5195618, -4.0985205, 0.0], [15.5195618, -4.0998903, 0.0], [15.5209351, -4.0998903, 0.0], [15.5209351, -4.10126, 0.0], [15.5209351, -4.1026298, 0.0], [15.5209351, -4.1039996, 0.0], [15.5223083, -4.1039996, 0.0], [15.5223083, -4.1026298, 0.0], [15.5236816, -4.1026298, 0.0], [15.5236816, -4.10126, 0.0], [15.5250549, -4.10126, 0.0], [15.5250549, -4.1026298, 0.0], [15.5250549, -4.1039996, 0.0], [15.5236816, -4.1039996, 0.0], [15.5236816, -4.1053693, 0.0], [15.5236816, -4.1067391, 0.0], [15.5250549, -4.1067391, 0.0], [15.5250549, -4.1081089, 0.0], [15.5236816, -4.1081089, 0.0], [15.5236816, -4.1094786, 0.0], [15.5250549, -4.1094786, 0.0], [15.5250549, -4.1108484, 0.0], [15.5250549, -4.1122182, 0.0], [15.5250549, -4.1135879, 0.0], [15.5236816, -4.1135879, 0.0], [15.5236816, -4.1149577, 0.0], [15.5236816, -4.1163274, 0.0], [15.5223083, -4.1163274, 0.0], [15.5223083, -4.1176972, 0.0], [15.5236816, -4.1176972, 0.0], [15.5250549, -4.1176972, 0.0], [15.5250549, -4.1190669, 0.0], [15.5264282, -4.1190669, 0.0], [15.5264282, -4.1176972, 0.0], [15.5278015, -4.1176972, 0.0], [15.5278015, -4.1163274, 0.0], [15.5291748, -4.1163274, 0.0], [15.5291748, -4.1176972, 0.0], [15.5305481, -4.1176972, 0.0], [15.5319214, -4.1176972, 0.0], [15.5319214, -4.1190669, 0.0], [15.5319214, -4.1204366, 0.0], [15.5332947, -4.1204366, 0.0], [15.5332947, -4.1190669, 0.0]], [[15.5250549, -4.1135879, 0.0], [15.5264282, -4.1135879, 0.0], [15.5264282, -4.1149577, 0.0], [15.5250549, -4.1149577, 0.0], [15.5250549, -4.1135879, 0.0]], [[15.5387878, -4.0971507, 0.0], [15.5387878, -4.0985205, 0.0], [15.5374146, -4.0985205, 0.0], [15.5374146, -4.0971507, 0.0], [15.5387878, -4.0971507, 0.0]], [[15.5264282, -4.1053693, 0.0], [15.5264282, -4.1039996, 0.0], [15.5278015, -4.1039996, 0.0], [15.5291748, -4.1039996, 0.0], [15.5291748, -4.1053693, 0.0], [15.5291748, -4.1067391, 0.0], [15.5278015, -4.1067391, 0.0], [15.5278015, -4.1053693, 0.0], [15.5264282, -4.1053693, 0.0]], [[15.5278015, -4.1067391, 0.0], [15.5278015, -4.1081089, 0.0], [15.5264282, -4.1081089, 0.0], [15.5264282, -4.1067391, 0.0], [15.5278015, -4.1067391, 0.0]], [[15.5305481, -4.1149577, 0.0], [15.5319214, -4.1149577, 0.0], [15.5319214, -4.1163274, 0.0], [15.5305481, -4.1163274, 0.0], [15.5305481, -4.1149577, 0.0]], [[15.5332947, -4.0930413, 0.0], [15.5332947, -4.0944111, 0.0], [15.5332947, -4.0957809, 0.0], [15.5319214, -4.0957809, 0.0], [15.5319214, -4.0944111, 0.0], [15.5319214, -4.0930413, 0.0], [15.5332947, -4.0930413, 0.0]], [[15.534668, -4.0971507, 0.0], [15.5360413, -4.0971507, 0.0], [15.5360413, -4.0985205, 0.0], [15.5360413, -4.0998903, 0.0], [15.534668, -4.0998903, 0.0], [15.534668, -4.0985205, 0.0], [15.534668, -4.0971507, 0.0]]]}}, {"type": "Feature", "properties": {"id": 8}, "geometry": {"type": "Polygon", "coordinates": [[[15.8999634, -4.1149577, 0.0], [15.8999634, -4.1135879, 0.0], [15.9013367, -4.1135879, 0.0], [15.9013367, -4.1122182, 0.0], [15.8999634, -4.1122182, 0.0], [15.8999634, -4.1108484, 0.0], [15.8999634, -4.1094786, 0.0], [15.9013367, -4.1094786, 0.0], [15.9013367, -4.1081089, 0.0], [15.90271, -4.1081089, 0.0], [15.90271, -4.1067391, 0.0], [15.90271, -4.1053693, 0.0], [15.9013367, -4.1053693, 0.0], [15.9013367, -4.1067391, 0.0], [15.8999634, -4.1067391, 0.0], [15.8985901, -4.1067391, 0.0], [15.8972168, -4.1067391, 0.0], [15.8958435, -4.1067391, 0.0], [15.8944702, -4.1067391, 0.0], [15.8944702, -4.1081089, 0.0], [15.8930969, -4.1081089, 0.0], [15.8930969, -4.1094786, 0.0], [15.8930969, -4.1108484, 0.0], [15.8944702, -4.1108484, 0.0], [15.8958435, -4.1108484, 0.0], [15.8958435, -4.1122182, 0.0], [15.8972168, -4.1122182, 0.0], [15.8972168, -4.1135879, 0.0], [15.8972168, -4.1149577, 0.0], [15.8985901, -4.1149577, 0.0], [15.8985901, -4.1163274, 0.0], [15.8999634, -4.1163274, 0.0], [15.8999634, -4.1149577, 0.0]], [[15.8999634, -4.1094786, 0.0], [15.8985901, -4.1094786, 0.0], [15.8985901, -4.1108484, 0.0], [15.8972168, -4.1108484, 0.0], [15.8972168, -4.1094786, 0.0], [15.8972168, -4.1081089, 0.0], [15.8985901, -4.1081089, 0.0], [15.8999634, -4.1081089, 0.0], [15.8999634, -4.1094786, 0.0]]]}}, {"type": "Feature", "properties": {"id": 9}, "geometry": {"type": "Polygon", "coordinates": [[[15.5470276, -4.0793433, 0.0], [15.5484009, -4.0793433, 0.0], [15.5484009, -4.0779735, 0.0], [15.5497742, -4.0779735, 0.0], [15.5497742, -4.0766037, 0.0], [15.5511475, -4.0766037, 0.0], [15.5525208, -4.0766037, 0.0], [15.5525208, -4.0779735, 0.0], [15.553894, -4.0779735, 0.0], [15.5552673, -4.0779735, 0.0], [15.5552673, -4.0793433, 0.0], [15.5566406, -4.0793433, 0.0], [15.5580139, -4.0793433, 0.0], [15.5593872, -4.0793433, 0.0], [15.5593872, -4.0779735, 0.0], [15.5593872, -4.0766037, 0.0], [15.5607605, -4.0766037, 0.0], [15.5621338, -4.0766037, 0.0], [15.5621338, -4.0752339, 0.0], [15.5621338, -4.0738641, 0.0], [15.5635071, -4.0738641, 0.0], [15.5648804, -4.0738641, 0.0], [15.5648804, -4.0724943, 0.0], [15.5635071, -4.0724943, 0.0], [15.5635071, -4.0711244, 0.0], [15.5648804, -4.0711244, 0.0], [15.5648804, -4.0697546, 0.0], [15.5662537, -4.0697546, 0.0], [15.5662537, -4.0683848, 0.0], [15.5662537, -4.0670149, 0.0], [15.567627, -4.0670149, 0.0], [15.5690002, -4.0670149, 0.0], [15.5703735, -4.0670149, 0.0], [15.5717468, -4.0670149, 0.0], [15.5731201, -4.0670149, 0.0], [15.5744934, -4.0670149, 0.0], [15.5744934, -4.0656451, 0.0], [15.5744934, -4.0642753, 0.0], [15.5744934, -4.0629054, 0.0], [15.5731201, -4.0629054, 0.0], [15.5731201, -4.0615356, 0.0], [15.5744934, -4.0615356, 0.0], [15.5758667, -4.0615356, 0.0], [15.5758667, -4.0601658, 0.0], [15.5758667, -4.0587959, 0.0], [15.57724, -4.0587959, 0.0], [15.5786133, -4.0587959, 0.0], [15.5786133, -4.0574261, 0.0], [15.57724, -4.0574261, 0.0], [15.5758667, -4.0574261, 0.0], [15.5744934, -4.0574261, 0.0], [15.5731201, -4.0574261, 0.0], [15.5731201, -4.0587959, 0.0], [15.5717468, -4.0587959, 0.0], [15.5703735, -4.0587959, 0.0], [15.5690002, -4.0587959, 0.0], [15.5690002, -4.0574261, 0.0], [15.5690002, -4.0560562, 0.0], [15.5703735, -4.0560562, 0.0], [15.5703735, -4.0546864, 0.0], [15.5717468, -4.0546864, 0.0], [15.5731201, -4.0546864, 0.0], [15.5731201, -4.0533165, 0.0], [15.5731201, -4.0519466, 0.0], [15.5717468, -4.0519466, 0.0], [15.5703735, -4.0519466, 0.0], [15.5690002, -4.0519466, 0.0], [15.5690002, -4.0505768, 0.0], [15.5690002, -4.0492069, 0.0], [15.5703735, -4.0492069, 0.0], [15.5703735, -4.0478371, 0.0], [15.5703735, -4.0464672, 0.0], [15.5717468, -4.0464672, 0.0], [15.5717468, -4.0450973, 0.0], [15.5717468, -4.0437275, 0.0], [15.5703735, -4.0437275, 0.0], [15.5703735, -4.0450973, 0.0], [15.5690002, -4.0450973, 0.0], [15.567627, -4.0450973, 0.0], [15.567627, -4.0464672, 0.0], [15.5662537, -4.0464672, 0.0], [15.5648804, -4.0464672, 0.0], [15.5635071, -4.0464672, 0.0], [15.5621338, -4.0464672, 0.0], [15.5607605, -4.0464672, 0.0], [15.5593872, -4.0464672, 0.0], [15.5580139, -4.0464672, 0.0], [15.5566406, -4.0464672, 0.0], [15.5566406, -4.0478371, 0.0], [15.5552673, -4.0478371, 0.0], [15.5552673, -4.0492069, 0.0], [15.553894, -4.0492069, 0.0], [15.553894, -4.0505768, 0.0], [15.5525208, -4.0505768, 0.0], [15.5525208, -4.0519466, 0.0], [15.5511475, -4.0519466, 0.0], [15.5511475, -4.0533165, 0.0], [15.5497742, -4.0533165, 0.0], [15.5497742, -4.0546864, 0.0], [15.5497742, -4.0560562, 0.0], [15.5497742, -4.0574261, 0.0], [15.5484009, -4.0574261, 0.0], [15.5484009, -4.0587959, 0.0], [15.5470276, -4.0587959, 0.0], [15.5470276, -4.0601658, 0.0], [15.5470276, -4.0615356, 0.0], [15.5456543, -4.0615356, 0.0], [15.5456543, -4.0629054, 0.0], [15.5456543, -4.0642753, 0.0], [15.544281, -4.0642753, 0.0], [15.5429077, -4.0642753, 0.0], [15.5429077, -4.0656451, 0.0], [15.5415344, -4.0656451, 0.0], [15.5415344, -4.0670149, 0.0], [15.5401611, -4.0670149, 0.0], [15.5401611, -4.0683848, 0.0], [15.5387878, -4.0683848, 0.0], [15.5374146, -4.0683848, 0.0], [15.5374146, -4.0697546, 0.0], [15.5360413, -4.0697546, 0.0], [15.534668, -4.0697546, 0.0], [15.534668, -4.0711244, 0.0], [15.5332947, -4.0711244, 0.0], [15.5332947, -4.0724943, 0.0], [15.5319214, -4.0724943, 0.0], [15.5319214, -4.0738641, 0.0], [15.5319214, -4.0752339, 0.0], [15.5319214, -4.0766037, 0.0], [15.5332947, -4.0766037, 0.0], [15.5332947, -4.0752339, 0.0], [15.534668, -4.0752339, 0.0], [15.5360413, -4.0752339, 0.0], [15.5374146, -4.0752339, 0.0], [15.5374146, -4.0738641, 0.0], [15.5374146, -4.0724943, 0.0], [15.5360413, -4.0724943, 0.0], [15.5360413, -4.0711244, 0.0], [15.5374146, -4.0711244, 0.0], [15.5387878, -4.0711244, 0.0], [15.5387878, -4.0724943, 0.0], [15.5387878, -4.0738641, 0.0], [15.5387878, -4.0752339, 0.0], [15.5401611, -4.0752339, 0.0], [15.5401611, -4.0766037, 0.0], [15.5415344, -4.0766037, 0.0], [15.5429077, -4.0766037, 0.0], [15.5429077, -4.0779735, 0.0], [15.5429077, -4.0793433, 0.0], [15.544281, -4.0793433, 0.0], [15.5456543, -4.0793433, 0.0], [15.5456543, -4.0807132, 0.0], [15.5470276, -4.0807132, 0.0], [15.5470276, -4.0793433, 0.0]], [[15.5731201, -4.0587959, 0.0], [15.5744934, -4.0587959, 0.0], [15.5744934, -4.0601658, 0.0], [15.5731201, -4.0601658, 0.0], [15.5731201, -4.0587959, 0.0]], [[15.5662537, -4.0670149, 0.0], [15.5648804, -4.0670149, 0.0], [15.5648804, -4.0683848, 0.0], [15.5635071, -4.0683848, 0.0], [15.5635071, -4.0697546, 0.0], [15.5621338, -4.0697546, 0.0], [15.5621338, -4.0683848, 0.0], [15.5607605, -4.0683848, 0.0], [15.5607605, -4.0670149, 0.0], [15.5621338, -4.0670149, 0.0], [15.5621338, -4.0656451, 0.0], [15.5635071, -4.0656451, 0.0], [15.5635071, -4.0642753, 0.0], [15.5648804, -4.0642753, 0.0], [15.5648804, -4.0656451, 0.0], [15.5662537, -4.0656451, 0.0], [15.5662537, -4.0670149, 0.0]], [[15.5484009, -4.0779735, 0.0], [15.5470276, -4.0779735, 0.0], [15.5456543, -4.0779735, 0.0], [15.5456543, -4.0766037, 0.0], [15.5470276, -4.0766037, 0.0], [15.5484009, -4.0766037, 0.0], [15.5484009, -4.0779735, 0.0]], [[15.5415344, -4.0711244, 0.0], [15.5415344, -4.0697546, 0.0], [15.5429077, -4.0697546, 0.0], [15.5429077, -4.0711244, 0.0], [15.5415344, -4.0711244, 0.0]], [[15.5593872, -4.0711244, 0.0], [15.5593872, -4.0697546, 0.0], [15.5607605, -4.0697546, 0.0], [15.5607605, -4.0711244, 0.0], [15.5593872, -4.0711244, 0.0]]]}}, {"type": "Feature", "properties": {"id": 10}, "geometry": {"type": "Polygon", "coordinates": [[[15.8724976, -4.0135897, 0.0], [15.8738708, -4.0135897, 0.0], [15.8752441, -4.0135897, 0.0], [15.8752441, -4.0122198, 0.0], [15.8766174, -4.0122198, 0.0], [15.8766174, -4.0108499, 0.0], [15.8766174, -4.0094799, 0.0], [15.8779907, -4.0094799, 0.0], [15.8779907, -4.0108499, 0.0], [15.879364, -4.0108499, 0.0], [15.879364, -4.0122198, 0.0], [15.879364, -4.0135897, 0.0], [15.8807373, -4.0135897, 0.0], [15.8807373, -4.0149596, 0.0], [15.8821106, -4.0149596, 0.0], [15.8821106, -4.0135897, 0.0], [15.8821106, -4.0122198, 0.0], [15.8807373, -4.0122198, 0.0], [15.8807373, -4.0108499, 0.0], [15.8807373, -4.0094799, 0.0], [15.8807373, -4.00811, 0.0], [15.8821106, -4.00811, 0.0], [15.8821106, -4.0067401, 0.0], [15.8807373, -4.0067401, 0.0], [15.8807373, -4.0053701, 0.0], [15.8807373, -4.0040002, 0.0], [15.8807373, -4.0026302, 0.0], [15.879364, -4.0026302, 0.0], [15.879364, -4.0040002, 0.0], [15.8779907, -4.0040002, 0.0], [15.8766174, -4.0040002, 0.0], [15.8766174, -4.0053701, 0.0], [15.8752441, -4.0053701, 0.0], [15.8752441, -4.0067401, 0.0], [15.8752441, -4.00811, 0.0], [15.8738708, -4.00811, 0.0], [15.8738708, -4.0094799, 0.0], [15.8724976, -4.0094799, 0.0], [15.8724976, -4.0108499, 0.0], [15.8711243, -4.0108499, 0.0], [15.8711243, -4.0122198, 0.0], [15.8711243, -4.0135897, 0.0], [15.869751, -4.0135897, 0.0], [15.869751, -4.0149596, 0.0], [15.8711243, -4.0149596, 0.0], [15.8724976, -4.0149596, 0.0], [15.8724976, -4.0135897, 0.0]], [[15.8738708, -4.0094799, 0.0], [15.8752441, -4.0094799, 0.0], [15.8752441, -4.0108499, 0.0], [15.8738708, -4.0108499, 0.0], [15.8738708, -4.0094799, 0.0]]]}}, {"type": "Feature", "properties": {"id": 11}, "geometry": {"type": "Polygon", "coordinates": [[[15.827179, -5.0184428, 0.0], [15.827179, -5.0198108, 0.0], [15.8285522, -5.0198108, 0.0], [15.8299255, -5.0198108, 0.0], [15.8299255, -5.0184428, 0.0], [15.8285522, -5.0184428, 0.0], [15.827179, -5.0184428, 0.0]]]}}, {"type": "Feature", "properties": {"id": 12}, "geometry": {"type": "Polygon", "coordinates": [[[15.8326721, -5.0143387, 0.0], [15.8326721, -5.0157068, 0.0], [15.8340454, -5.0157068, 0.0], [15.8340454, -5.0143387, 0.0], [15.8326721, -5.0143387, 0.0]]]}}, {"type": "Feature", "properties": {"id": 13}, "geometry": {"type": "Polygon", "coordinates": [[[15.7516479, -5.0129707, 0.0], [15.7516479, -5.0143387, 0.0], [15.7530212, -5.0143387, 0.0], [15.7530212, -5.0129707, 0.0], [15.7516479, -5.0129707, 0.0]]]}}, {"type": "Feature", "properties": {"id": 14}, "geometry": {"type": "Polygon", "coordinates": [[[15.836792, -5.0102346, 0.0], [15.836792, -5.0088666, 0.0], [15.8354187, -5.0088666, 0.0], [15.8354187, -5.0074985, 0.0], [15.8340454, -5.0074985, 0.0], [15.8340454, -5.0088666, 0.0], [15.8326721, -5.0088666, 0.0], [15.8312988, -5.0088666, 0.0], [15.8312988, -5.0102346, 0.0], [15.8312988, -5.0116026, 0.0], [15.8312988, -5.0129707, 0.0], [15.8326721, -5.0129707, 0.0], [15.8326721, -5.0116026, 0.0], [15.8326721, -5.0102346, 0.0], [15.8340454, -5.0102346, 0.0], [15.8354187, -5.0102346, 0.0], [15.8354187, -5.0116026, 0.0], [15.836792, -5.0116026, 0.0], [15.836792, -5.0102346, 0.0]]]}}, {"type": "Feature", "properties": {"id": 15}, "geometry": {"type": "Polygon", "coordinates": [[[15.8244324, -5.0061305, 0.0], [15.8244324, -5.0074985, 0.0], [15.8258057, -5.0074985, 0.0], [15.8258057, -5.0061305, 0.0], [15.8244324, -5.0061305, 0.0]]]}}, {"type": "Feature", "properties": {"id": 16}, "geometry": {"type": "Polygon", "coordinates": [[[15.8477783, -4.9979221, 0.0], [15.8477783, -4.9992902, 0.0], [15.8491516, -4.9992902, 0.0], [15.8491516, -4.9979221, 0.0], [15.8477783, -4.9979221, 0.0]]]}}, {"type": "Feature", "properties": {"id": 17}, "geometry": {"type": "Polygon", "coordinates": [[[15.7447815, -4.9883455, 0.0], [15.7447815, -4.9869774, 0.0], [15.7434082, -4.9869774, 0.0], [15.7434082, -4.9883455, 0.0], [15.7434082, -4.9897136, 0.0], [15.7447815, -4.9897136, 0.0], [15.7447815, -4.9883455, 0.0]]]}}, {"type": "Feature", "properties": {"id": 18}, "geometry": {"type": "Polygon", "coordinates": [[[15.8450317, -4.9869774, 0.0], [15.8450317, -4.9883455, 0.0], [15.846405, -4.9883455, 0.0], [15.846405, -4.9869774, 0.0], [15.8450317, -4.9869774, 0.0]]]}}, {"type": "Feature", "properties": {"id": 19}, "geometry": {"type": "Polygon", "coordinates": [[[15.8395386, -4.9869774, 0.0], [15.8395386, -4.9883455, 0.0], [15.8409119, -4.9883455, 0.0], [15.8422852, -4.9883455, 0.0], [15.8422852, -4.9869774, 0.0], [15.8409119, -4.9869774, 0.0], [15.8395386, -4.9869774, 0.0]]]}}, {"type": "Feature", "properties": {"id": 20}, "geometry": {"type": "Polygon", "coordinates": [[[15.8450317, -4.9897136, 0.0], [15.8450317, -4.9910817, 0.0], [15.846405, -4.9910817, 0.0], [15.846405, -4.9897136, 0.0], [15.8450317, -4.9897136, 0.0]]]}}, {"type": "Feature", "properties": {"id": 21}, "geometry": {"type": "Polygon", "coordinates": [[[15.846405, -4.9842413, 0.0], [15.846405, -4.9856093, 0.0], [15.8477783, -4.9856093, 0.0], [15.8477783, -4.9842413, 0.0], [15.846405, -4.9842413, 0.0]]]}}, {"type": "Feature", "properties": {"id": 22}, "geometry": {"type": "Polygon", "coordinates": [[[15.8436584, -4.9842413, 0.0], [15.8450317, -4.9842413, 0.0], [15.8450317, -4.9828732, 0.0], [15.8436584, -4.9828732, 0.0], [15.8422852, -4.9828732, 0.0], [15.8422852, -4.9842413, 0.0], [15.8422852, -4.9856093, 0.0], [15.8436584, -4.9856093, 0.0], [15.8436584, -4.9842413, 0.0]]]}}, {"type": "Feature", "properties": {"id": 23}, "geometry": {"type": "Polygon", "coordinates": [[[15.8477783, -4.981505, 0.0], [15.8477783, -4.9828732, 0.0], [15.8491516, -4.9828732, 0.0], [15.8505249, -4.9828732, 0.0], [15.8518982, -4.9828732, 0.0], [15.8518982, -4.981505, 0.0], [15.8505249, -4.981505, 0.0], [15.8491516, -4.981505, 0.0], [15.8477783, -4.981505, 0.0]]]}}, {"type": "Feature", "properties": {"id": 24}, "geometry": {"type": "Polygon", "coordinates": [[[15.8422852, -5.0047624, 0.0], [15.8422852, -5.0033943, 0.0], [15.8422852, -5.0020263, 0.0], [15.8409119, -5.0020263, 0.0], [15.8409119, -5.0033943, 0.0], [15.8409119, -5.0047624, 0.0], [15.8409119, -5.0061305, 0.0], [15.8422852, -5.0061305, 0.0], [15.8422852, -5.0047624, 0.0]]]}}, {"type": "Feature", "properties": {"id": 25}, "geometry": {"type": "Polygon", "coordinates": [[[15.8354187, -5.0006582, 0.0], [15.8354187, -4.9992902, 0.0], [15.8340454, -4.9992902, 0.0], [15.8340454, -5.0006582, 0.0], [15.8340454, -5.0020263, 0.0], [15.8354187, -5.0020263, 0.0], [15.8354187, -5.0006582, 0.0]]]}}, {"type": "Feature", "properties": {"id": 26}, "geometry": {"type": "Polygon", "coordinates": [[[15.8518982, -4.9678239, 0.0], [15.8518982, -4.969192, 0.0], [15.8532715, -4.969192, 0.0], [15.8532715, -4.9678239, 0.0], [15.8518982, -4.9678239, 0.0]]]}}, {"type": "Feature", "properties": {"id": 27}, "geometry": {"type": "Polygon", "coordinates": [[[15.846405, -4.9623513, 0.0], [15.846405, -4.9609832, 0.0], [15.8450317, -4.9609832, 0.0], [15.8450317, -4.9623513, 0.0], [15.8450317, -4.9637195, 0.0], [15.846405, -4.9637195, 0.0], [15.846405, -4.9623513, 0.0]]]}}, {"type": "Feature", "properties": {"id": 28}, "geometry": {"type": "Polygon", "coordinates": [[[15.8477783, -4.9609832, 0.0], [15.8477783, -4.9623513, 0.0], [15.8491516, -4.9623513, 0.0], [15.8491516, -4.9609832, 0.0], [15.8477783, -4.9609832, 0.0]]]}}, {"type": "Feature", "properties": {"id": 29}, "geometry": {"type": "Polygon", "coordinates": [[[15.8491516, -4.9541424, 0.0], [15.8505249, -4.9541424, 0.0], [15.8505249, -4.9527742, 0.0], [15.8491516, -4.9527742, 0.0], [15.8477783, -4.9527742, 0.0], [15.8477783, -4.9541424, 0.0], [15.8477783, -4.9555106, 0.0], [15.8491516, -4.9555106, 0.0], [15.8491516, -4.9541424, 0.0]]]}}, {"type": "Feature", "properties": {"id": 30}, "geometry": {"type": "Polygon", "coordinates": [[[15.7228088, -4.9514061, 0.0], [15.7228088, -4.9527742, 0.0], [15.7241821, -4.9527742, 0.0], [15.7241821, -4.9514061, 0.0], [15.7228088, -4.9514061, 0.0]]]}}, {"type": "Feature", "properties": {"id": 31}, "geometry": {"type": "Polygon", "coordinates": [[[15.8120728, -4.9459334, 0.0], [15.8120728, -4.9473016, 0.0], [15.813446, -4.9473016, 0.0], [15.813446, -4.9459334, 0.0], [15.8120728, -4.9459334, 0.0]]]}}, {"type": "Feature", "properties": {"id": 32}, "geometry": {"type": "Polygon", "coordinates": [[[15.6967163, -4.9404607, 0.0], [15.6967163, -4.9418288, 0.0], [15.6980896, -4.9418288, 0.0], [15.6980896, -4.9404607, 0.0], [15.6967163, -4.9404607, 0.0]]]}}, {"type": "Feature", "properties": {"id": 33}, "geometry": {"type": "Polygon", "coordinates": [[[15.7434082, -4.9363561, 0.0], [15.7434082, -4.9349879, 0.0], [15.7420349, -4.9349879, 0.0], [15.7406616, -4.9349879, 0.0], [15.7406616, -4.9363561, 0.0], [15.7420349, -4.9363561, 0.0], [15.7420349, -4.9377243, 0.0], [15.7434082, -4.9377243, 0.0], [15.7434082, -4.9363561, 0.0]]]}}, {"type": "Feature", "properties": {"id": 34}, "geometry": {"type": "Polygon", "coordinates": [[[15.718689, -4.943197, 0.0], [15.718689, -4.9418288, 0.0], [15.7173157, -4.9418288, 0.0], [15.7173157, -4.943197, 0.0], [15.7173157, -4.9445652, 0.0], [15.718689, -4.9445652, 0.0], [15.718689, -4.943197, 0.0]]]}}, {"type": "Feature", "properties": {"id": 35}, "geometry": {"type": "Polygon", "coordinates": [[[15.728302, -4.9404607, 0.0], [15.728302, -4.9418288, 0.0], [15.7296753, -4.9418288, 0.0], [15.7296753, -4.9404607, 0.0], [15.728302, -4.9404607, 0.0]]]}}, {"type": "Feature", "properties": {"id": 36}, "geometry": {"type": "Polygon", "coordinates": [[[15.7873535, -4.9514061, 0.0], [15.7873535, -4.9527742, 0.0], [15.7887268, -4.9527742, 0.0], [15.7887268, -4.9514061, 0.0], [15.7873535, -4.9514061, 0.0]]]}}, {"type": "Feature", "properties": {"id": 37}, "geometry": {"type": "Polygon", "coordinates": [[[15.7337952, -4.9349879, 0.0], [15.7337952, -4.9363561, 0.0], [15.7351685, -4.9363561, 0.0], [15.7351685, -4.9349879, 0.0], [15.7337952, -4.9349879, 0.0]]]}}, {"type": "Feature", "properties": {"id": 38}, "geometry": {"type": "Polygon", "coordinates": [[[15.7255554, -4.9349879, 0.0], [15.7255554, -4.9363561, 0.0], [15.7269287, -4.9363561, 0.0], [15.7269287, -4.9349879, 0.0], [15.7255554, -4.9349879, 0.0]]]}}, {"type": "Feature", "properties": {"id": 39}, "geometry": {"type": "Polygon", "coordinates": [[[15.7447815, -4.9336197, 0.0], [15.7447815, -4.9349879, 0.0], [15.7461548, -4.9349879, 0.0], [15.7461548, -4.9336197, 0.0], [15.7447815, -4.9336197, 0.0]]]}}, {"type": "Feature", "properties": {"id": 40}, "geometry": {"type": "Polygon", "coordinates": [[[15.6980896, -4.9240422, 0.0], [15.6980896, -4.922674, 0.0], [15.6967163, -4.922674, 0.0], [15.6967163, -4.9240422, 0.0], [15.695343, -4.9240422, 0.0], [15.695343, -4.9254104, 0.0], [15.6967163, -4.9254104, 0.0], [15.6980896, -4.9254104, 0.0], [15.6980896, -4.9240422, 0.0]]]}}, {"type": "Feature", "properties": {"id": 41}, "geometry": {"type": "Polygon", "coordinates": [[[15.7035828, -4.922674, 0.0], [15.7035828, -4.9213057, 0.0], [15.7049561, -4.9213057, 0.0], [15.7049561, -4.9199375, 0.0], [15.7035828, -4.9199375, 0.0], [15.7022095, -4.9199375, 0.0], [15.7022095, -4.9213057, 0.0], [15.7022095, -4.922674, 0.0], [15.7022095, -4.9240422, 0.0], [15.7035828, -4.9240422, 0.0], [15.7035828, -4.922674, 0.0]]]}}, {"type": "Feature", "properties": {"id": 42}, "geometry": {"type": "Polygon", "coordinates": [[[15.7063293, -4.922674, 0.0], [15.7063293, -4.9240422, 0.0], [15.7077026, -4.9240422, 0.0], [15.7077026, -4.922674, 0.0], [15.7063293, -4.922674, 0.0]]]}}, {"type": "Feature", "properties": {"id": 43}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.922674, 0.0], [15.7173157, -4.9240422, 0.0], [15.718689, -4.9240422, 0.0], [15.718689, -4.922674, 0.0], [15.7173157, -4.922674, 0.0]]]}}, {"type": "Feature", "properties": {"id": 44}, "geometry": {"type": "Polygon", "coordinates": [[[15.7269287, -4.922674, 0.0], [15.7269287, -4.9240422, 0.0], [15.728302, -4.9240422, 0.0], [15.7296753, -4.9240422, 0.0], [15.7296753, -4.922674, 0.0], [15.7310486, -4.922674, 0.0], [15.7310486, -4.9213057, 0.0], [15.7296753, -4.9213057, 0.0], [15.7296753, -4.9199375, 0.0], [15.7296753, -4.9185693, 0.0], [15.728302, -4.9185693, 0.0], [15.7269287, -4.9185693, 0.0], [15.7269287, -4.9199375, 0.0], [15.728302, -4.9199375, 0.0], [15.728302, -4.9213057, 0.0], [15.728302, -4.922674, 0.0], [15.7269287, -4.922674, 0.0]]]}}, {"type": "Feature", "properties": {"id": 45}, "geometry": {"type": "Polygon", "coordinates": [[[15.8477783, -4.922674, 0.0], [15.8477783, -4.9240422, 0.0], [15.8491516, -4.9240422, 0.0], [15.8491516, -4.922674, 0.0], [15.8477783, -4.922674, 0.0]]]}}, {"type": "Feature", "properties": {"id": 46}, "geometry": {"type": "Polygon", "coordinates": [[[15.6912231, -4.9213057, 0.0], [15.6912231, -4.922674, 0.0], [15.6925964, -4.922674, 0.0], [15.6939697, -4.922674, 0.0], [15.6939697, -4.9213057, 0.0], [15.695343, -4.9213057, 0.0], [15.695343, -4.9199375, 0.0], [15.6939697, -4.9199375, 0.0], [15.6925964, -4.9199375, 0.0], [15.6925964, -4.9213057, 0.0], [15.6912231, -4.9213057, 0.0]]]}}, {"type": "Feature", "properties": {"id": 47}, "geometry": {"type": "Polygon", "coordinates": [[[15.7543945, -4.9213057, 0.0], [15.7557678, -4.9213057, 0.0], [15.7557678, -4.9199375, 0.0], [15.7543945, -4.9199375, 0.0], [15.7543945, -4.9185693, 0.0], [15.7530212, -4.9185693, 0.0], [15.7530212, -4.9199375, 0.0], [15.7530212, -4.9213057, 0.0], [15.7530212, -4.922674, 0.0], [15.7543945, -4.922674, 0.0], [15.7543945, -4.9213057, 0.0]]]}}, {"type": "Feature", "properties": {"id": 48}, "geometry": {"type": "Polygon", "coordinates": [[[15.6706238, -4.9199375, 0.0], [15.6706238, -4.9213057, 0.0], [15.6719971, -4.9213057, 0.0], [15.6719971, -4.9199375, 0.0], [15.6706238, -4.9199375, 0.0]]]}}, {"type": "Feature", "properties": {"id": 49}, "geometry": {"type": "Polygon", "coordinates": [[[15.7255554, -4.9199375, 0.0], [15.7255554, -4.9213057, 0.0], [15.7269287, -4.9213057, 0.0], [15.7269287, -4.9199375, 0.0], [15.7255554, -4.9199375, 0.0]]]}}, {"type": "Feature", "properties": {"id": 50}, "geometry": {"type": "Polygon", "coordinates": [[[15.718689, -4.9185693, 0.0], [15.7173157, -4.9185693, 0.0], [15.7173157, -4.9199375, 0.0], [15.718689, -4.9199375, 0.0], [15.7200623, -4.9199375, 0.0], [15.7200623, -4.9185693, 0.0], [15.718689, -4.9185693, 0.0]]]}}, {"type": "Feature", "properties": {"id": 51}, "geometry": {"type": "Polygon", "coordinates": [[[15.7228088, -4.917201, 0.0], [15.7241821, -4.917201, 0.0], [15.7241821, -4.9158328, 0.0], [15.7228088, -4.9158328, 0.0], [15.7228088, -4.9144646, 0.0], [15.7214355, -4.9144646, 0.0], [15.7214355, -4.9158328, 0.0], [15.7214355, -4.917201, 0.0], [15.7228088, -4.917201, 0.0]]]}}, {"type": "Feature", "properties": {"id": 52}, "geometry": {"type": "Polygon", "coordinates": [[[15.7131958, -4.9158328, 0.0], [15.7131958, -4.9144646, 0.0], [15.7118225, -4.9144646, 0.0], [15.7104492, -4.9144646, 0.0], [15.7104492, -4.9158328, 0.0], [15.7104492, -4.917201, 0.0], [15.7118225, -4.917201, 0.0], [15.7131958, -4.917201, 0.0], [15.7131958, -4.9158328, 0.0]]]}}, {"type": "Feature", "properties": {"id": 53}, "geometry": {"type": "Polygon", "coordinates": [[[15.6912231, -4.9117281, 0.0], [15.6912231, -4.9103598, 0.0], [15.6898499, -4.9103598, 0.0], [15.6898499, -4.9089916, 0.0], [15.6884766, -4.9089916, 0.0], [15.6884766, -4.9103598, 0.0], [15.6884766, -4.9117281, 0.0], [15.6884766, -4.9130963, 0.0], [15.6898499, -4.9130963, 0.0], [15.6912231, -4.9130963, 0.0], [15.6912231, -4.9117281, 0.0]]]}}, {"type": "Feature", "properties": {"id": 54}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.9117281, 0.0], [15.7173157, -4.9130963, 0.0], [15.718689, -4.9130963, 0.0], [15.718689, -4.9117281, 0.0], [15.7173157, -4.9117281, 0.0]]]}}, {"type": "Feature", "properties": {"id": 55}, "geometry": {"type": "Polygon", "coordinates": [[[15.6678772, -4.9117281, 0.0], [15.6678772, -4.9130963, 0.0], [15.6692505, -4.9130963, 0.0], [15.6706238, -4.9130963, 0.0], [15.6706238, -4.9117281, 0.0], [15.6706238, -4.9103598, 0.0], [15.6692505, -4.9103598, 0.0], [15.6692505, -4.9117281, 0.0], [15.6678772, -4.9117281, 0.0]]]}}, {"type": "Feature", "properties": {"id": 56}, "geometry": {"type": "Polygon", "coordinates": [[[15.7090759, -4.9117281, 0.0], [15.7090759, -4.9130963, 0.0], [15.7104492, -4.9130963, 0.0], [15.7118225, -4.9130963, 0.0], [15.7131958, -4.9130963, 0.0], [15.7131958, -4.9117281, 0.0], [15.7118225, -4.9117281, 0.0], [15.7104492, -4.9117281, 0.0], [15.7090759, -4.9117281, 0.0]]]}}, {"type": "Feature", "properties": {"id": 57}, "geometry": {"type": "Polygon", "coordinates": [[[15.8450317, -4.9103598, 0.0], [15.8450317, -4.9089916, 0.0], [15.8450317, -4.9076233, 0.0], [15.8450317, -4.9062551, 0.0], [15.8436584, -4.9062551, 0.0], [15.8422852, -4.9062551, 0.0], [15.8422852, -4.9076233, 0.0], [15.8436584, -4.9076233, 0.0], [15.8436584, -4.9089916, 0.0], [15.8436584, -4.9103598, 0.0], [15.8436584, -4.9117281, 0.0], [15.8450317, -4.9117281, 0.0], [15.8450317, -4.9103598, 0.0]]]}}, {"type": "Feature", "properties": {"id": 58}, "geometry": {"type": "Polygon", "coordinates": [[[15.7200623, -4.9103598, 0.0], [15.7214355, -4.9103598, 0.0], [15.7214355, -4.9089916, 0.0], [15.7200623, -4.9089916, 0.0], [15.718689, -4.9089916, 0.0], [15.718689, -4.9103598, 0.0], [15.718689, -4.9117281, 0.0], [15.7200623, -4.9117281, 0.0], [15.7200623, -4.9103598, 0.0]]]}}, {"type": "Feature", "properties": {"id": 59}, "geometry": {"type": "Polygon", "coordinates": [[[15.7049561, -4.9103598, 0.0], [15.7049561, -4.9117281, 0.0], [15.7063293, -4.9117281, 0.0], [15.7063293, -4.9103598, 0.0], [15.7049561, -4.9103598, 0.0]]]}}, {"type": "Feature", "properties": {"id": 60}, "geometry": {"type": "Polygon", "coordinates": [[[15.6788635, -4.9089916, 0.0], [15.6788635, -4.9103598, 0.0], [15.6802368, -4.9103598, 0.0], [15.6802368, -4.9089916, 0.0], [15.6788635, -4.9089916, 0.0]]]}}, {"type": "Feature", "properties": {"id": 61}, "geometry": {"type": "Polygon", "coordinates": [[[15.7008362, -4.9089916, 0.0], [15.7008362, -4.9076233, 0.0], [15.6994629, -4.9076233, 0.0], [15.6994629, -4.9089916, 0.0], [15.6994629, -4.9103598, 0.0], [15.7008362, -4.9103598, 0.0], [15.7008362, -4.9089916, 0.0]]]}}, {"type": "Feature", "properties": {"id": 62}, "geometry": {"type": "Polygon", "coordinates": [[[15.7489014, -4.9089916, 0.0], [15.7489014, -4.9103598, 0.0], [15.7502747, -4.9103598, 0.0], [15.7502747, -4.9089916, 0.0], [15.7489014, -4.9089916, 0.0]]]}}, {"type": "Feature", "properties": {"id": 63}, "geometry": {"type": "Polygon", "coordinates": [[[15.7035828, -4.9076233, 0.0], [15.7035828, -4.9089916, 0.0], [15.7049561, -4.9089916, 0.0], [15.7049561, -4.9076233, 0.0], [15.7035828, -4.9076233, 0.0]]]}}, {"type": "Feature", "properties": {"id": 64}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.9076233, 0.0], [15.7173157, -4.9089916, 0.0], [15.718689, -4.9089916, 0.0], [15.718689, -4.9076233, 0.0], [15.7173157, -4.9076233, 0.0]]]}}, {"type": "Feature", "properties": {"id": 65}, "geometry": {"type": "Polygon", "coordinates": [[[15.8477783, -4.9048868, 0.0], [15.8477783, -4.9062551, 0.0], [15.8491516, -4.9062551, 0.0], [15.8491516, -4.9048868, 0.0], [15.8477783, -4.9048868, 0.0]]]}}, {"type": "Feature", "properties": {"id": 66}, "geometry": {"type": "Polygon", "coordinates": [[[15.6651306, -4.9035185, 0.0], [15.6651306, -4.9021503, 0.0], [15.6651306, -4.900782, 0.0], [15.6651306, -4.8994137, 0.0], [15.6637573, -4.8994137, 0.0], [15.6637573, -4.900782, 0.0], [15.6637573, -4.9021503, 0.0], [15.6637573, -4.9035185, 0.0], [15.6637573, -4.9048868, 0.0], [15.6651306, -4.9048868, 0.0], [15.6651306, -4.9035185, 0.0]]]}}, {"type": "Feature", "properties": {"id": 67}, "geometry": {"type": "Polygon", "coordinates": [[[15.6417847, -4.9035185, 0.0], [15.6417847, -4.9048868, 0.0], [15.643158, -4.9048868, 0.0], [15.643158, -4.9035185, 0.0], [15.6417847, -4.9035185, 0.0]]]}}, {"type": "Feature", "properties": {"id": 68}, "geometry": {"type": "Polygon", "coordinates": [[[15.8216858, -4.900782, 0.0], [15.8216858, -4.9021503, 0.0], [15.8230591, -4.9021503, 0.0], [15.8230591, -4.900782, 0.0], [15.8216858, -4.900782, 0.0]]]}}, {"type": "Feature", "properties": {"id": 69}, "geometry": {"type": "Polygon", "coordinates": [[[15.7296753, -4.9076233, 0.0], [15.7310486, -4.9076233, 0.0], [15.7310486, -4.9062551, 0.0], [15.7310486, -4.9048868, 0.0], [15.7296753, -4.9048868, 0.0], [15.728302, -4.9048868, 0.0], [15.728302, -4.9062551, 0.0], [15.728302, -4.9076233, 0.0], [15.7296753, -4.9076233, 0.0]]]}}, {"type": "Feature", "properties": {"id": 70}, "geometry": {"type": "Polygon", "coordinates": [[[15.7351685, -4.9062551, 0.0], [15.7351685, -4.9076233, 0.0], [15.7365417, -4.9076233, 0.0], [15.7365417, -4.9062551, 0.0], [15.7351685, -4.9062551, 0.0]]]}}, {"type": "Feature", "properties": {"id": 71}, "geometry": {"type": "Polygon", "coordinates": [[[15.7324219, -4.9035185, 0.0], [15.7324219, -4.9048868, 0.0], [15.7337952, -4.9048868, 0.0], [15.7337952, -4.9035185, 0.0], [15.7324219, -4.9035185, 0.0]]]}}, {"type": "Feature", "properties": {"id": 72}, "geometry": {"type": "Polygon", "coordinates": [[[15.8422852, -4.9035185, 0.0], [15.8422852, -4.9048868, 0.0], [15.8436584, -4.9048868, 0.0], [15.8436584, -4.9035185, 0.0], [15.8422852, -4.9035185, 0.0]]]}}, {"type": "Feature", "properties": {"id": 73}, "geometry": {"type": "Polygon", "coordinates": [[[15.7489014, -4.9035185, 0.0], [15.7489014, -4.9048868, 0.0], [15.7502747, -4.9048868, 0.0], [15.7502747, -4.9035185, 0.0], [15.7489014, -4.9035185, 0.0]]]}}, {"type": "Feature", "properties": {"id": 74}, "geometry": {"type": "Polygon", "coordinates": [[[15.8244324, -4.900782, 0.0], [15.8244324, -4.9021503, 0.0], [15.8258057, -4.9021503, 0.0], [15.8258057, -4.900782, 0.0], [15.8244324, -4.900782, 0.0]]]}}, {"type": "Feature", "properties": {"id": 75}, "geometry": {"type": "Polygon", "coordinates": [[[15.6349182, -4.900782, 0.0], [15.6349182, -4.9021503, 0.0], [15.6362915, -4.9021503, 0.0], [15.6362915, -4.900782, 0.0], [15.6349182, -4.900782, 0.0]]]}}, {"type": "Feature", "properties": {"id": 76}, "geometry": {"type": "Polygon", "coordinates": [[[15.6596375, -4.8980454, 0.0], [15.6610107, -4.8980454, 0.0], [15.6610107, -4.8966772, 0.0], [15.6610107, -4.8953089, 0.0], [15.6610107, -4.8939406, 0.0], [15.6596375, -4.8939406, 0.0], [15.6596375, -4.8953089, 0.0], [15.6582642, -4.8953089, 0.0], [15.6582642, -4.8939406, 0.0], [15.6582642, -4.8925723, 0.0], [15.6582642, -4.891204, 0.0], [15.6568909, -4.891204, 0.0], [15.6568909, -4.8898357, 0.0], [15.6582642, -4.8898357, 0.0], [15.6582642, -4.8884674, 0.0], [15.6568909, -4.8884674, 0.0], [15.6555176, -4.8884674, 0.0], [15.6555176, -4.8898357, 0.0], [15.6555176, -4.891204, 0.0], [15.6555176, -4.8925723, 0.0], [15.6555176, -4.8939406, 0.0], [15.6568909, -4.8939406, 0.0], [15.6568909, -4.8953089, 0.0], [15.6568909, -4.8966772, 0.0], [15.6568909, -4.8980454, 0.0], [15.6582642, -4.8980454, 0.0], [15.6596375, -4.8980454, 0.0]]]}}, {"type": "Feature", "properties": {"id": 77}, "geometry": {"type": "Polygon", "coordinates": [[[15.7241821, -4.8994137, 0.0], [15.7241821, -4.900782, 0.0], [15.7255554, -4.900782, 0.0], [15.7255554, -4.8994137, 0.0], [15.7241821, -4.8994137, 0.0]]]}}, {"type": "Feature", "properties": {"id": 78}, "geometry": {"type": "Polygon", "coordinates": [[[15.7461548, -4.8980454, 0.0], [15.7461548, -4.8994137, 0.0], [15.7475281, -4.8994137, 0.0], [15.7475281, -4.8980454, 0.0], [15.7461548, -4.8980454, 0.0]]]}}, {"type": "Feature", "properties": {"id": 79}, "geometry": {"type": "Polygon", "coordinates": [[[15.7310486, -4.8966772, 0.0], [15.7310486, -4.8980454, 0.0], [15.7324219, -4.8980454, 0.0], [15.7324219, -4.8966772, 0.0], [15.7310486, -4.8966772, 0.0]]]}}, {"type": "Feature", "properties": {"id": 80}, "geometry": {"type": "Polygon", "coordinates": [[[15.7269287, -4.8966772, 0.0], [15.7269287, -4.8980454, 0.0], [15.728302, -4.8980454, 0.0], [15.728302, -4.8966772, 0.0], [15.7269287, -4.8966772, 0.0]]]}}, {"type": "Feature", "properties": {"id": 81}, "geometry": {"type": "Polygon", "coordinates": [[[15.695343, -4.8953089, 0.0], [15.695343, -4.8966772, 0.0], [15.6967163, -4.8966772, 0.0], [15.6967163, -4.8953089, 0.0], [15.695343, -4.8953089, 0.0]]]}}, {"type": "Feature", "properties": {"id": 82}, "geometry": {"type": "Polygon", "coordinates": [[[15.6665039, -4.8939406, 0.0], [15.6665039, -4.8953089, 0.0], [15.6678772, -4.8953089, 0.0], [15.6678772, -4.8939406, 0.0], [15.6665039, -4.8939406, 0.0]]]}}, {"type": "Feature", "properties": {"id": 83}, "geometry": {"type": "Polygon", "coordinates": [[[15.7365417, -4.8925723, 0.0], [15.7365417, -4.8939406, 0.0], [15.737915, -4.8939406, 0.0], [15.737915, -4.8925723, 0.0], [15.7365417, -4.8925723, 0.0]]]}}, {"type": "Feature", "properties": {"id": 84}, "geometry": {"type": "Polygon", "coordinates": [[[15.7324219, -4.891204, 0.0], [15.7324219, -4.8925723, 0.0], [15.7337952, -4.8925723, 0.0], [15.7351685, -4.8925723, 0.0], [15.7351685, -4.891204, 0.0], [15.7337952, -4.891204, 0.0], [15.7324219, -4.891204, 0.0]]]}}, {"type": "Feature", "properties": {"id": 85}, "geometry": {"type": "Polygon", "coordinates": [[[15.8409119, -4.891204, 0.0], [15.8395386, -4.891204, 0.0], [15.8395386, -4.8925723, 0.0], [15.8409119, -4.8925723, 0.0], [15.8422852, -4.8925723, 0.0], [15.8422852, -4.891204, 0.0], [15.8409119, -4.891204, 0.0]]]}}, {"type": "Feature", "properties": {"id": 86}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.891204, 0.0], [15.7557678, -4.8925723, 0.0], [15.7571411, -4.8925723, 0.0], [15.7571411, -4.891204, 0.0], [15.7557678, -4.891204, 0.0]]]}}, {"type": "Feature", "properties": {"id": 87}, "geometry": {"type": "Polygon", "coordinates": [[[15.7420349, -4.891204, 0.0], [15.7406616, -4.891204, 0.0], [15.7406616, -4.8925723, 0.0], [15.7420349, -4.8925723, 0.0], [15.7434082, -4.8925723, 0.0], [15.7434082, -4.891204, 0.0], [15.7420349, -4.891204, 0.0]]]}}, {"type": "Feature", "properties": {"id": 88}, "geometry": {"type": "Polygon", "coordinates": [[[15.7392883, -4.8898357, 0.0], [15.7392883, -4.891204, 0.0], [15.7406616, -4.891204, 0.0], [15.7406616, -4.8898357, 0.0], [15.7392883, -4.8898357, 0.0]]]}}, {"type": "Feature", "properties": {"id": 89}, "geometry": {"type": "Polygon", "coordinates": [[[15.7420349, -4.8884674, 0.0], [15.7434082, -4.8884674, 0.0], [15.7434082, -4.8870992, 0.0], [15.7447815, -4.8870992, 0.0], [15.7447815, -4.8857309, 0.0], [15.7447815, -4.8843625, 0.0], [15.7434082, -4.8843625, 0.0], [15.7420349, -4.8843625, 0.0], [15.7406616, -4.8843625, 0.0], [15.7392883, -4.8843625, 0.0], [15.7392883, -4.8857309, 0.0], [15.7406616, -4.8857309, 0.0], [15.7420349, -4.8857309, 0.0], [15.7420349, -4.8870992, 0.0], [15.7406616, -4.8870992, 0.0], [15.7406616, -4.8884674, 0.0], [15.7406616, -4.8898357, 0.0], [15.7420349, -4.8898357, 0.0], [15.7420349, -4.8884674, 0.0]]]}}, {"type": "Feature", "properties": {"id": 90}, "geometry": {"type": "Polygon", "coordinates": [[[15.6349182, -4.8870992, 0.0], [15.6349182, -4.8884674, 0.0], [15.6362915, -4.8884674, 0.0], [15.6362915, -4.8870992, 0.0], [15.6349182, -4.8870992, 0.0]]]}}, {"type": "Feature", "properties": {"id": 91}, "geometry": {"type": "Polygon", "coordinates": [[[15.6376648, -4.8870992, 0.0], [15.6376648, -4.8884674, 0.0], [15.6390381, -4.8884674, 0.0], [15.6390381, -4.8870992, 0.0], [15.6376648, -4.8870992, 0.0]]]}}, {"type": "Feature", "properties": {"id": 92}, "geometry": {"type": "Polygon", "coordinates": [[[15.6774902, -4.8870992, 0.0], [15.6774902, -4.8884674, 0.0], [15.6788635, -4.8884674, 0.0], [15.6788635, -4.8870992, 0.0], [15.6774902, -4.8870992, 0.0]]]}}, {"type": "Feature", "properties": {"id": 93}, "geometry": {"type": "Polygon", "coordinates": [[[15.6912231, -4.8870992, 0.0], [15.6912231, -4.8857309, 0.0], [15.6898499, -4.8857309, 0.0], [15.6898499, -4.8843625, 0.0], [15.6884766, -4.8843625, 0.0], [15.6871033, -4.8843625, 0.0], [15.6871033, -4.8857309, 0.0], [15.6884766, -4.8857309, 0.0], [15.6884766, -4.8870992, 0.0], [15.6884766, -4.8884674, 0.0], [15.6898499, -4.8884674, 0.0], [15.6912231, -4.8884674, 0.0], [15.6912231, -4.8870992, 0.0]]]}}, {"type": "Feature", "properties": {"id": 94}, "geometry": {"type": "Polygon", "coordinates": [[[15.7077026, -4.8870992, 0.0], [15.7077026, -4.8884674, 0.0], [15.7090759, -4.8884674, 0.0], [15.7090759, -4.8870992, 0.0], [15.7077026, -4.8870992, 0.0]]]}}, {"type": "Feature", "properties": {"id": 95}, "geometry": {"type": "Polygon", "coordinates": [[[15.7475281, -4.8857309, 0.0], [15.7475281, -4.8870992, 0.0], [15.7489014, -4.8870992, 0.0], [15.7502747, -4.8870992, 0.0], [15.7502747, -4.8857309, 0.0], [15.7489014, -4.8857309, 0.0], [15.7475281, -4.8857309, 0.0]]]}}, {"type": "Feature", "properties": {"id": 96}, "geometry": {"type": "Polygon", "coordinates": [[[15.7653809, -4.8870992, 0.0], [15.7667542, -4.8870992, 0.0], [15.7667542, -4.8857309, 0.0], [15.7667542, -4.8843625, 0.0], [15.7653809, -4.8843625, 0.0], [15.7640076, -4.8843625, 0.0], [15.7640076, -4.8857309, 0.0], [15.7640076, -4.8870992, 0.0], [15.7653809, -4.8870992, 0.0]]]}}, {"type": "Feature", "properties": {"id": 97}, "geometry": {"type": "Polygon", "coordinates": [[[15.6445312, -4.8857309, 0.0], [15.6445312, -4.8870992, 0.0], [15.6459045, -4.8870992, 0.0], [15.6459045, -4.8857309, 0.0], [15.6445312, -4.8857309, 0.0]]]}}, {"type": "Feature", "properties": {"id": 98}, "geometry": {"type": "Polygon", "coordinates": [[[15.6335449, -4.8843625, 0.0], [15.6335449, -4.8857309, 0.0], [15.6349182, -4.8857309, 0.0], [15.6349182, -4.8843625, 0.0], [15.6335449, -4.8843625, 0.0]]]}}, {"type": "Feature", "properties": {"id": 99}, "geometry": {"type": "Polygon", "coordinates": [[[15.6541443, -4.8829942, 0.0], [15.6541443, -4.8816259, 0.0], [15.652771, -4.8816259, 0.0], [15.652771, -4.8802576, 0.0], [15.6541443, -4.8802576, 0.0], [15.6555176, -4.8802576, 0.0], [15.6555176, -4.8788893, 0.0], [15.6541443, -4.8788893, 0.0], [15.652771, -4.8788893, 0.0], [15.6513977, -4.8788893, 0.0], [15.6513977, -4.8802576, 0.0], [15.6500244, -4.8802576, 0.0], [15.6500244, -4.8816259, 0.0], [15.6513977, -4.8816259, 0.0], [15.6513977, -4.8829942, 0.0], [15.6513977, -4.8843625, 0.0], [15.652771, -4.8843625, 0.0], [15.6541443, -4.8843625, 0.0], [15.6541443, -4.8829942, 0.0]]]}}, {"type": "Feature", "properties": {"id": 100}, "geometry": {"type": "Polygon", "coordinates": [[[15.6843567, -4.8843625, 0.0], [15.6843567, -4.8857309, 0.0], [15.68573, -4.8857309, 0.0], [15.68573, -4.8843625, 0.0], [15.6843567, -4.8843625, 0.0]]]}}, {"type": "Feature", "properties": {"id": 101}, "geometry": {"type": "Polygon", "coordinates": [[[15.6225586, -4.8816259, 0.0], [15.6225586, -4.8829942, 0.0], [15.6239319, -4.8829942, 0.0], [15.6239319, -4.8816259, 0.0], [15.6225586, -4.8816259, 0.0]]]}}, {"type": "Feature", "properties": {"id": 102}, "geometry": {"type": "Polygon", "coordinates": [[[15.761261, -4.8802576, 0.0], [15.7626343, -4.8802576, 0.0], [15.7626343, -4.8788893, 0.0], [15.7626343, -4.877521, 0.0], [15.761261, -4.877521, 0.0], [15.761261, -4.8788893, 0.0], [15.7598877, -4.8788893, 0.0], [15.7598877, -4.8802576, 0.0], [15.7585144, -4.8802576, 0.0], [15.7585144, -4.8816259, 0.0], [15.7598877, -4.8816259, 0.0], [15.761261, -4.8816259, 0.0], [15.761261, -4.8802576, 0.0]]]}}, {"type": "Feature", "properties": {"id": 103}, "geometry": {"type": "Polygon", "coordinates": [[[15.7571411, -4.8816259, 0.0], [15.7571411, -4.8802576, 0.0], [15.7557678, -4.8802576, 0.0], [15.7557678, -4.8788893, 0.0], [15.7543945, -4.8788893, 0.0], [15.7543945, -4.8802576, 0.0], [15.7543945, -4.8816259, 0.0], [15.7557678, -4.8816259, 0.0], [15.7557678, -4.8829942, 0.0], [15.7571411, -4.8829942, 0.0], [15.7571411, -4.8816259, 0.0]]]}}, {"type": "Feature", "properties": {"id": 104}, "geometry": {"type": "Polygon", "coordinates": [[[15.8587646, -4.8788893, 0.0], [15.8587646, -4.8802576, 0.0], [15.8601379, -4.8802576, 0.0], [15.8601379, -4.8788893, 0.0], [15.8587646, -4.8788893, 0.0]]]}}, {"type": "Feature", "properties": {"id": 105}, "geometry": {"type": "Polygon", "coordinates": [[[15.8477783, -4.8788893, 0.0], [15.8477783, -4.8802576, 0.0], [15.8491516, -4.8802576, 0.0], [15.8491516, -4.8788893, 0.0], [15.8477783, -4.8788893, 0.0]]]}}, {"type": "Feature", "properties": {"id": 106}, "geometry": {"type": "Polygon", "coordinates": [[[15.6280518, -4.877521, 0.0], [15.6266785, -4.877521, 0.0], [15.6266785, -4.8788893, 0.0], [15.6280518, -4.8788893, 0.0], [15.629425, -4.8788893, 0.0], [15.629425, -4.877521, 0.0], [15.6280518, -4.877521, 0.0]]]}}, {"type": "Feature", "properties": {"id": 107}, "geometry": {"type": "Polygon", "coordinates": [[[15.7653809, -4.8747844, 0.0], [15.7640076, -4.8747844, 0.0], [15.7640076, -4.8761527, 0.0], [15.7653809, -4.8761527, 0.0], [15.7667542, -4.8761527, 0.0], [15.7667542, -4.8747844, 0.0], [15.7653809, -4.8747844, 0.0]]]}}, {"type": "Feature", "properties": {"id": 108}, "geometry": {"type": "Polygon", "coordinates": [[[15.6472778, -4.8747844, 0.0], [15.6472778, -4.8761527, 0.0], [15.6486511, -4.8761527, 0.0], [15.6486511, -4.8747844, 0.0], [15.6472778, -4.8747844, 0.0]]]}}, {"type": "Feature", "properties": {"id": 109}, "geometry": {"type": "Polygon", "coordinates": [[[15.7653809, -4.877521, 0.0], [15.7653809, -4.8788893, 0.0], [15.7667542, -4.8788893, 0.0], [15.7667542, -4.877521, 0.0], [15.7653809, -4.877521, 0.0]]]}}, {"type": "Feature", "properties": {"id": 110}, "geometry": {"type": "Polygon", "coordinates": [[[15.7200623, -4.877521, 0.0], [15.718689, -4.877521, 0.0], [15.718689, -4.8788893, 0.0], [15.7200623, -4.8788893, 0.0], [15.7214355, -4.8788893, 0.0], [15.7214355, -4.877521, 0.0], [15.7200623, -4.877521, 0.0]]]}}, {"type": "Feature", "properties": {"id": 111}, "geometry": {"type": "Polygon", "coordinates": [[[15.6321716, -4.8761527, 0.0], [15.6307983, -4.8761527, 0.0], [15.6307983, -4.877521, 0.0], [15.6321716, -4.877521, 0.0], [15.6335449, -4.877521, 0.0], [15.6335449, -4.8761527, 0.0], [15.6321716, -4.8761527, 0.0]]]}}, {"type": "Feature", "properties": {"id": 112}, "geometry": {"type": "Polygon", "coordinates": [[[15.7598877, -4.8761527, 0.0], [15.7598877, -4.877521, 0.0], [15.761261, -4.877521, 0.0], [15.761261, -4.8761527, 0.0], [15.7598877, -4.8761527, 0.0]]]}}, {"type": "Feature", "properties": {"id": 113}, "geometry": {"type": "Polygon", "coordinates": [[[15.6362915, -4.8761527, 0.0], [15.6362915, -4.8747844, 0.0], [15.6349182, -4.8747844, 0.0], [15.6349182, -4.8761527, 0.0], [15.6349182, -4.877521, 0.0], [15.6362915, -4.877521, 0.0], [15.6362915, -4.8761527, 0.0]]]}}, {"type": "Feature", "properties": {"id": 114}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.8761527, 0.0], [15.7173157, -4.877521, 0.0], [15.718689, -4.877521, 0.0], [15.718689, -4.8761527, 0.0], [15.7173157, -4.8761527, 0.0]]]}}, {"type": "Feature", "properties": {"id": 115}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -4.8761527, 0.0], [15.7530212, -4.877521, 0.0], [15.7543945, -4.877521, 0.0], [15.7543945, -4.8761527, 0.0], [15.7530212, -4.8761527, 0.0]]]}}, {"type": "Feature", "properties": {"id": 116}, "geometry": {"type": "Polygon", "coordinates": [[[15.6610107, -4.8747844, 0.0], [15.6610107, -4.8761527, 0.0], [15.662384, -4.8761527, 0.0], [15.662384, -4.8747844, 0.0], [15.6610107, -4.8747844, 0.0]]]}}, {"type": "Feature", "properties": {"id": 117}, "geometry": {"type": "Polygon", "coordinates": [[[15.7159424, -4.8747844, 0.0], [15.7159424, -4.8761527, 0.0], [15.7173157, -4.8761527, 0.0], [15.7173157, -4.8747844, 0.0], [15.7159424, -4.8747844, 0.0]]]}}, {"type": "Feature", "properties": {"id": 118}, "geometry": {"type": "Polygon", "coordinates": [[[15.7626343, -4.8747844, 0.0], [15.7626343, -4.873416, 0.0], [15.761261, -4.873416, 0.0], [15.761261, -4.8747844, 0.0], [15.761261, -4.8761527, 0.0], [15.7626343, -4.8761527, 0.0], [15.7626343, -4.8747844, 0.0]]]}}, {"type": "Feature", "properties": {"id": 119}, "geometry": {"type": "Polygon", "coordinates": [[[15.7461548, -4.873416, 0.0], [15.7461548, -4.8747844, 0.0], [15.7475281, -4.8747844, 0.0], [15.7475281, -4.873416, 0.0], [15.7461548, -4.873416, 0.0]]]}}, {"type": "Feature", "properties": {"id": 120}, "geometry": {"type": "Polygon", "coordinates": [[[15.718689, -4.873416, 0.0], [15.718689, -4.8747844, 0.0], [15.7200623, -4.8747844, 0.0], [15.7200623, -4.873416, 0.0], [15.718689, -4.873416, 0.0]]]}}, {"type": "Feature", "properties": {"id": 121}, "geometry": {"type": "Polygon", "coordinates": [[[15.7228088, -4.8720477, 0.0], [15.7228088, -4.873416, 0.0], [15.7241821, -4.873416, 0.0], [15.7255554, -4.873416, 0.0], [15.7255554, -4.8720477, 0.0], [15.7241821, -4.8720477, 0.0], [15.7228088, -4.8720477, 0.0]]]}}, {"type": "Feature", "properties": {"id": 122}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.8720477, 0.0], [15.7681274, -4.8720477, 0.0], [15.7681274, -4.8706794, 0.0], [15.7667542, -4.8706794, 0.0], [15.7653809, -4.8706794, 0.0], [15.7653809, -4.8720477, 0.0], [15.7653809, -4.873416, 0.0], [15.7667542, -4.873416, 0.0], [15.7667542, -4.8720477, 0.0]]]}}, {"type": "Feature", "properties": {"id": 123}, "geometry": {"type": "Polygon", "coordinates": [[[15.7571411, -4.8720477, 0.0], [15.7571411, -4.873416, 0.0], [15.7585144, -4.873416, 0.0], [15.7585144, -4.8720477, 0.0], [15.7571411, -4.8720477, 0.0]]]}}, {"type": "Feature", "properties": {"id": 124}, "geometry": {"type": "Polygon", "coordinates": [[[15.7447815, -4.8720477, 0.0], [15.7447815, -4.873416, 0.0], [15.7461548, -4.873416, 0.0], [15.7461548, -4.8720477, 0.0], [15.7447815, -4.8720477, 0.0]]]}}, {"type": "Feature", "properties": {"id": 125}, "geometry": {"type": "Polygon", "coordinates": [[[15.6692505, -4.8720477, 0.0], [15.6692505, -4.873416, 0.0], [15.6706238, -4.873416, 0.0], [15.6706238, -4.8720477, 0.0], [15.6692505, -4.8720477, 0.0]]]}}, {"type": "Feature", "properties": {"id": 126}, "geometry": {"type": "Polygon", "coordinates": [[[15.6610107, -4.8720477, 0.0], [15.6596375, -4.8720477, 0.0], [15.6596375, -4.873416, 0.0], [15.6610107, -4.873416, 0.0], [15.662384, -4.873416, 0.0], [15.662384, -4.8720477, 0.0], [15.6610107, -4.8720477, 0.0]]]}}, {"type": "Feature", "properties": {"id": 127}, "geometry": {"type": "Polygon", "coordinates": [[[15.6500244, -4.8720477, 0.0], [15.6513977, -4.8720477, 0.0], [15.6513977, -4.8706794, 0.0], [15.652771, -4.8706794, 0.0], [15.652771, -4.869311, 0.0], [15.6513977, -4.869311, 0.0], [15.6500244, -4.869311, 0.0], [15.6500244, -4.8706794, 0.0], [15.6486511, -4.8706794, 0.0], [15.6486511, -4.8720477, 0.0], [15.6486511, -4.873416, 0.0], [15.6500244, -4.873416, 0.0], [15.6500244, -4.8720477, 0.0]]]}}, {"type": "Feature", "properties": {"id": 128}, "geometry": {"type": "Polygon", "coordinates": [[[15.7736206, -4.8706794, 0.0], [15.7722473, -4.8706794, 0.0], [15.7722473, -4.8720477, 0.0], [15.7736206, -4.8720477, 0.0], [15.7749939, -4.8720477, 0.0], [15.7749939, -4.8706794, 0.0], [15.7736206, -4.8706794, 0.0]]]}}, {"type": "Feature", "properties": {"id": 129}, "geometry": {"type": "Polygon", "coordinates": [[[15.7626343, -4.8706794, 0.0], [15.7626343, -4.869311, 0.0], [15.761261, -4.869311, 0.0], [15.761261, -4.8706794, 0.0], [15.761261, -4.8720477, 0.0], [15.7626343, -4.8720477, 0.0], [15.7640076, -4.8720477, 0.0], [15.7640076, -4.8706794, 0.0], [15.7626343, -4.8706794, 0.0]]]}}, {"type": "Feature", "properties": {"id": 130}, "geometry": {"type": "Polygon", "coordinates": [[[15.7159424, -4.8706794, 0.0], [15.7159424, -4.869311, 0.0], [15.7145691, -4.869311, 0.0], [15.7131958, -4.869311, 0.0], [15.7118225, -4.869311, 0.0], [15.7104492, -4.869311, 0.0], [15.7104492, -4.8706794, 0.0], [15.7104492, -4.8720477, 0.0], [15.7118225, -4.8720477, 0.0], [15.7131958, -4.8720477, 0.0], [15.7131958, -4.8706794, 0.0], [15.7145691, -4.8706794, 0.0], [15.7145691, -4.8720477, 0.0], [15.7159424, -4.8720477, 0.0], [15.7159424, -4.8706794, 0.0]]]}}, {"type": "Feature", "properties": {"id": 131}, "geometry": {"type": "Polygon", "coordinates": [[[15.7365417, -4.8706794, 0.0], [15.7365417, -4.869311, 0.0], [15.7351685, -4.869311, 0.0], [15.7351685, -4.8706794, 0.0], [15.7351685, -4.8720477, 0.0], [15.7365417, -4.8720477, 0.0], [15.7365417, -4.8706794, 0.0]]]}}, {"type": "Feature", "properties": {"id": 132}, "geometry": {"type": "Polygon", "coordinates": [[[15.7269287, -4.8706794, 0.0], [15.7269287, -4.8720477, 0.0], [15.728302, -4.8720477, 0.0], [15.728302, -4.8706794, 0.0], [15.7269287, -4.8706794, 0.0]]]}}, {"type": "Feature", "properties": {"id": 133}, "geometry": {"type": "Polygon", "coordinates": [[[15.6184387, -4.869311, 0.0], [15.6184387, -4.8679427, 0.0], [15.619812, -4.8679427, 0.0], [15.619812, -4.8665744, 0.0], [15.619812, -4.865206, 0.0], [15.6184387, -4.865206, 0.0], [15.6170654, -4.865206, 0.0], [15.6170654, -4.8665744, 0.0], [15.6170654, -4.8679427, 0.0], [15.6170654, -4.869311, 0.0], [15.6170654, -4.8706794, 0.0], [15.6184387, -4.8706794, 0.0], [15.6184387, -4.869311, 0.0]]]}}, {"type": "Feature", "properties": {"id": 134}, "geometry": {"type": "Polygon", "coordinates": [[[15.7653809, -4.869311, 0.0], [15.7653809, -4.8679427, 0.0], [15.7640076, -4.8679427, 0.0], [15.7640076, -4.869311, 0.0], [15.7640076, -4.8706794, 0.0], [15.7653809, -4.8706794, 0.0], [15.7653809, -4.869311, 0.0]]]}}, {"type": "Feature", "properties": {"id": 135}, "geometry": {"type": "Polygon", "coordinates": [[[15.6280518, -4.869311, 0.0], [15.6266785, -4.869311, 0.0], [15.6266785, -4.8706794, 0.0], [15.6280518, -4.8706794, 0.0], [15.629425, -4.8706794, 0.0], [15.629425, -4.869311, 0.0], [15.6280518, -4.869311, 0.0]]]}}, {"type": "Feature", "properties": {"id": 136}, "geometry": {"type": "Polygon", "coordinates": [[[15.7763672, -4.869311, 0.0], [15.7763672, -4.8706794, 0.0], [15.7777405, -4.8706794, 0.0], [15.7791138, -4.8706794, 0.0], [15.7791138, -4.869311, 0.0], [15.7777405, -4.869311, 0.0], [15.7763672, -4.869311, 0.0]]]}}, {"type": "Feature", "properties": {"id": 137}, "geometry": {"type": "Polygon", "coordinates": [[[15.6994629, -4.8679427, 0.0], [15.6994629, -4.8665744, 0.0], [15.6980896, -4.8665744, 0.0], [15.6980896, -4.8679427, 0.0], [15.6980896, -4.869311, 0.0], [15.6994629, -4.869311, 0.0], [15.6994629, -4.8679427, 0.0]]]}}, {"type": "Feature", "properties": {"id": 138}, "geometry": {"type": "Polygon", "coordinates": [[[15.6541443, -4.8679427, 0.0], [15.6555176, -4.8679427, 0.0], [15.6555176, -4.8665744, 0.0], [15.6568909, -4.8665744, 0.0], [15.6568909, -4.865206, 0.0], [15.6582642, -4.865206, 0.0], [15.6582642, -4.8638377, 0.0], [15.6582642, -4.8624693, 0.0], [15.6568909, -4.8624693, 0.0], [15.6568909, -4.8638377, 0.0], [15.6555176, -4.8638377, 0.0], [15.6555176, -4.865206, 0.0], [15.6541443, -4.865206, 0.0], [15.6541443, -4.8665744, 0.0], [15.652771, -4.8665744, 0.0], [15.652771, -4.8679427, 0.0], [15.652771, -4.869311, 0.0], [15.6541443, -4.869311, 0.0], [15.6541443, -4.8679427, 0.0]]]}}, {"type": "Feature", "properties": {"id": 139}, "geometry": {"type": "Polygon", "coordinates": [[[15.7337952, -4.8679427, 0.0], [15.7337952, -4.869311, 0.0], [15.7351685, -4.869311, 0.0], [15.7351685, -4.8679427, 0.0], [15.7337952, -4.8679427, 0.0]]]}}, {"type": "Feature", "properties": {"id": 140}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.8679427, 0.0], [15.7667542, -4.869311, 0.0], [15.7681274, -4.869311, 0.0], [15.7681274, -4.8679427, 0.0], [15.7667542, -4.8679427, 0.0]]]}}, {"type": "Feature", "properties": {"id": 141}, "geometry": {"type": "Polygon", "coordinates": [[[15.7049561, -4.8665744, 0.0], [15.7049561, -4.8679427, 0.0], [15.7063293, -4.8679427, 0.0], [15.7063293, -4.8665744, 0.0], [15.7049561, -4.8665744, 0.0]]]}}, {"type": "Feature", "properties": {"id": 142}, "geometry": {"type": "Polygon", "coordinates": [[[15.7159424, -4.865206, 0.0], [15.7159424, -4.8665744, 0.0], [15.7173157, -4.8665744, 0.0], [15.7173157, -4.865206, 0.0], [15.7159424, -4.865206, 0.0]]]}}, {"type": "Feature", "properties": {"id": 143}, "geometry": {"type": "Polygon", "coordinates": [[[15.7077026, -4.865206, 0.0], [15.7077026, -4.8665744, 0.0], [15.7090759, -4.8665744, 0.0], [15.7090759, -4.865206, 0.0], [15.7077026, -4.865206, 0.0]]]}}, {"type": "Feature", "properties": {"id": 144}, "geometry": {"type": "Polygon", "coordinates": [[[15.662384, -4.865206, 0.0], [15.6610107, -4.865206, 0.0], [15.6610107, -4.8665744, 0.0], [15.662384, -4.8665744, 0.0], [15.6637573, -4.8665744, 0.0], [15.6637573, -4.865206, 0.0], [15.662384, -4.865206, 0.0]]]}}, {"type": "Feature", "properties": {"id": 145}, "geometry": {"type": "Polygon", "coordinates": [[[15.6129456, -4.8638377, 0.0], [15.6129456, -4.865206, 0.0], [15.6143188, -4.865206, 0.0], [15.6156921, -4.865206, 0.0], [15.6170654, -4.865206, 0.0], [15.6170654, -4.8638377, 0.0], [15.6156921, -4.8638377, 0.0], [15.6143188, -4.8638377, 0.0], [15.6129456, -4.8638377, 0.0]]]}}, {"type": "Feature", "properties": {"id": 146}, "geometry": {"type": "Polygon", "coordinates": [[[15.6307983, -4.861101, 0.0], [15.6307983, -4.8597326, 0.0], [15.629425, -4.8597326, 0.0], [15.629425, -4.861101, 0.0], [15.6280518, -4.861101, 0.0], [15.6280518, -4.8624693, 0.0], [15.629425, -4.8624693, 0.0], [15.6307983, -4.8624693, 0.0], [15.6307983, -4.861101, 0.0]]]}}, {"type": "Feature", "properties": {"id": 147}, "geometry": {"type": "Polygon", "coordinates": [[[15.8546448, -4.8624693, 0.0], [15.8546448, -4.8638377, 0.0], [15.8560181, -4.8638377, 0.0], [15.8560181, -4.8624693, 0.0], [15.8546448, -4.8624693, 0.0]]]}}, {"type": "Feature", "properties": {"id": 148}, "geometry": {"type": "Polygon", "coordinates": [[[15.8560181, -4.861101, 0.0], [15.8560181, -4.8624693, 0.0], [15.8573914, -4.8624693, 0.0], [15.8573914, -4.861101, 0.0], [15.8560181, -4.861101, 0.0]]]}}, {"type": "Feature", "properties": {"id": 149}, "geometry": {"type": "Polygon", "coordinates": [[[15.7502747, -4.865206, 0.0], [15.7502747, -4.8638377, 0.0], [15.7489014, -4.8638377, 0.0], [15.7475281, -4.8638377, 0.0], [15.7475281, -4.865206, 0.0], [15.7489014, -4.865206, 0.0], [15.7489014, -4.8665744, 0.0], [15.7502747, -4.8665744, 0.0], [15.7502747, -4.865206, 0.0]]]}}, {"type": "Feature", "properties": {"id": 150}, "geometry": {"type": "Polygon", "coordinates": [[[15.737915, -4.8638377, 0.0], [15.737915, -4.865206, 0.0], [15.7392883, -4.865206, 0.0], [15.7392883, -4.8638377, 0.0], [15.737915, -4.8638377, 0.0]]]}}, {"type": "Feature", "properties": {"id": 151}, "geometry": {"type": "Polygon", "coordinates": [[[15.7090759, -4.8638377, 0.0], [15.7090759, -4.865206, 0.0], [15.7104492, -4.865206, 0.0], [15.7104492, -4.8638377, 0.0], [15.7090759, -4.8638377, 0.0]]]}}, {"type": "Feature", "properties": {"id": 152}, "geometry": {"type": "Polygon", "coordinates": [[[15.6912231, -4.8638377, 0.0], [15.6912231, -4.865206, 0.0], [15.6925964, -4.865206, 0.0], [15.6925964, -4.8638377, 0.0], [15.6912231, -4.8638377, 0.0]]]}}, {"type": "Feature", "properties": {"id": 153}, "geometry": {"type": "Polygon", "coordinates": [[[15.619812, -4.8624693, 0.0], [15.619812, -4.8638377, 0.0], [15.6211853, -4.8638377, 0.0], [15.6211853, -4.8624693, 0.0], [15.619812, -4.8624693, 0.0]]]}}, {"type": "Feature", "properties": {"id": 154}, "geometry": {"type": "Polygon", "coordinates": [[[15.6156921, -4.861101, 0.0], [15.6156921, -4.8597326, 0.0], [15.6143188, -4.8597326, 0.0], [15.6129456, -4.8597326, 0.0], [15.6129456, -4.861101, 0.0], [15.6143188, -4.861101, 0.0], [15.6143188, -4.8624693, 0.0], [15.6156921, -4.8624693, 0.0], [15.6156921, -4.861101, 0.0]]]}}, {"type": "Feature", "properties": {"id": 155}, "geometry": {"type": "Polygon", "coordinates": [[[15.7145691, -4.861101, 0.0], [15.7145691, -4.8597326, 0.0], [15.7145691, -4.8583643, 0.0], [15.7131958, -4.8583643, 0.0], [15.7118225, -4.8583643, 0.0], [15.7118225, -4.8597326, 0.0], [15.7118225, -4.861101, 0.0], [15.7131958, -4.861101, 0.0], [15.7131958, -4.8624693, 0.0], [15.7145691, -4.8624693, 0.0], [15.7145691, -4.861101, 0.0]]]}}, {"type": "Feature", "properties": {"id": 156}, "geometry": {"type": "Polygon", "coordinates": [[[15.8546448, -4.8597326, 0.0], [15.8532715, -4.8597326, 0.0], [15.8532715, -4.861101, 0.0], [15.8546448, -4.861101, 0.0], [15.8560181, -4.861101, 0.0], [15.8560181, -4.8597326, 0.0], [15.8546448, -4.8597326, 0.0]]]}}, {"type": "Feature", "properties": {"id": 157}, "geometry": {"type": "Polygon", "coordinates": [[[15.6582642, -4.8597326, 0.0], [15.6582642, -4.861101, 0.0], [15.6596375, -4.861101, 0.0], [15.6596375, -4.8597326, 0.0], [15.6582642, -4.8597326, 0.0]]]}}, {"type": "Feature", "properties": {"id": 158}, "geometry": {"type": "Polygon", "coordinates": [[[15.7077026, -4.8583643, 0.0], [15.7077026, -4.8569959, 0.0], [15.7063293, -4.8569959, 0.0], [15.7049561, -4.8569959, 0.0], [15.7049561, -4.8583643, 0.0], [15.7063293, -4.8583643, 0.0], [15.7063293, -4.8597326, 0.0], [15.7077026, -4.8597326, 0.0], [15.7077026, -4.8583643, 0.0]]]}}, {"type": "Feature", "properties": {"id": 159}, "geometry": {"type": "Polygon", "coordinates": [[[15.7434082, -4.8569959, 0.0], [15.7434082, -4.8583643, 0.0], [15.7447815, -4.8583643, 0.0], [15.7461548, -4.8583643, 0.0], [15.7461548, -4.8569959, 0.0], [15.7447815, -4.8569959, 0.0], [15.7434082, -4.8569959, 0.0]]]}}, {"type": "Feature", "properties": {"id": 160}, "geometry": {"type": "Polygon", "coordinates": [[[15.6156921, -4.8569959, 0.0], [15.6156921, -4.8583643, 0.0], [15.6170654, -4.8583643, 0.0], [15.6170654, -4.8569959, 0.0], [15.6156921, -4.8569959, 0.0]]]}}, {"type": "Feature", "properties": {"id": 161}, "geometry": {"type": "Polygon", "coordinates": [[[15.7626343, -4.8569959, 0.0], [15.7626343, -4.8583643, 0.0], [15.7640076, -4.8583643, 0.0], [15.7640076, -4.8569959, 0.0], [15.7626343, -4.8569959, 0.0]]]}}, {"type": "Feature", "properties": {"id": 162}, "geometry": {"type": "Polygon", "coordinates": [[[15.7571411, -4.8569959, 0.0], [15.7571411, -4.8583643, 0.0], [15.7585144, -4.8583643, 0.0], [15.7585144, -4.8569959, 0.0], [15.7571411, -4.8569959, 0.0]]]}}, {"type": "Feature", "properties": {"id": 163}, "geometry": {"type": "Polygon", "coordinates": [[[15.7640076, -4.8556276, 0.0], [15.7640076, -4.8569959, 0.0], [15.7653809, -4.8569959, 0.0], [15.7653809, -4.8556276, 0.0], [15.7640076, -4.8556276, 0.0]]]}}, {"type": "Feature", "properties": {"id": 164}, "geometry": {"type": "Polygon", "coordinates": [[[15.8422852, -4.8501541, 0.0], [15.8422852, -4.8515225, 0.0], [15.8436584, -4.8515225, 0.0], [15.8436584, -4.8501541, 0.0], [15.8422852, -4.8501541, 0.0]]]}}, {"type": "Feature", "properties": {"id": 165}, "geometry": {"type": "Polygon", "coordinates": [[[15.7846069, -4.8501541, 0.0], [15.7846069, -4.8487857, 0.0], [15.7832336, -4.8487857, 0.0], [15.7832336, -4.8474173, 0.0], [15.7832336, -4.8460489, 0.0], [15.7832336, -4.8446806, 0.0], [15.7846069, -4.8446806, 0.0], [15.7846069, -4.8433122, 0.0], [15.7846069, -4.8419438, 0.0], [15.7832336, -4.8419438, 0.0], [15.7818604, -4.8419438, 0.0], [15.7818604, -4.8433122, 0.0], [15.7818604, -4.8446806, 0.0], [15.7818604, -4.8460489, 0.0], [15.7818604, -4.8474173, 0.0], [15.7818604, -4.8487857, 0.0], [15.7818604, -4.8501541, 0.0], [15.7818604, -4.8515225, 0.0], [15.7832336, -4.8515225, 0.0], [15.7846069, -4.8515225, 0.0], [15.7846069, -4.8501541, 0.0]]]}}, {"type": "Feature", "properties": {"id": 166}, "geometry": {"type": "Polygon", "coordinates": [[[15.6816101, -4.8542592, 0.0], [15.6816101, -4.8528908, 0.0], [15.6802368, -4.8528908, 0.0], [15.6802368, -4.8542592, 0.0], [15.6802368, -4.8556276, 0.0], [15.6816101, -4.8556276, 0.0], [15.6816101, -4.8542592, 0.0]]]}}, {"type": "Feature", "properties": {"id": 167}, "geometry": {"type": "Polygon", "coordinates": [[[15.7118225, -4.8528908, 0.0], [15.7118225, -4.8515225, 0.0], [15.7104492, -4.8515225, 0.0], [15.7104492, -4.8528908, 0.0], [15.7104492, -4.8542592, 0.0], [15.7118225, -4.8542592, 0.0], [15.7118225, -4.8528908, 0.0]]]}}, {"type": "Feature", "properties": {"id": 168}, "geometry": {"type": "Polygon", "coordinates": [[[15.6239319, -4.8515225, 0.0], [15.6253052, -4.8515225, 0.0], [15.6253052, -4.8501541, 0.0], [15.6239319, -4.8501541, 0.0], [15.6225586, -4.8501541, 0.0], [15.6225586, -4.8515225, 0.0], [15.6225586, -4.8528908, 0.0], [15.6239319, -4.8528908, 0.0], [15.6239319, -4.8515225, 0.0]]]}}, {"type": "Feature", "properties": {"id": 169}, "geometry": {"type": "Polygon", "coordinates": [[[15.7063293, -4.8501541, 0.0], [15.7077026, -4.8501541, 0.0], [15.7077026, -4.8487857, 0.0], [15.7063293, -4.8487857, 0.0], [15.7063293, -4.8474173, 0.0], [15.7049561, -4.8474173, 0.0], [15.7035828, -4.8474173, 0.0], [15.7022095, -4.8474173, 0.0], [15.7022095, -4.8487857, 0.0], [15.7035828, -4.8487857, 0.0], [15.7049561, -4.8487857, 0.0], [15.7049561, -4.8501541, 0.0], [15.7049561, -4.8515225, 0.0], [15.7063293, -4.8515225, 0.0], [15.7063293, -4.8501541, 0.0]]]}}, {"type": "Feature", "properties": {"id": 170}, "geometry": {"type": "Polygon", "coordinates": [[[15.6225586, -4.8446806, 0.0], [15.6211853, -4.8446806, 0.0], [15.6211853, -4.8460489, 0.0], [15.6211853, -4.8474173, 0.0], [15.6225586, -4.8474173, 0.0], [15.6239319, -4.8474173, 0.0], [15.6253052, -4.8474173, 0.0], [15.6253052, -4.8460489, 0.0], [15.6239319, -4.8460489, 0.0], [15.6239319, -4.8446806, 0.0], [15.6225586, -4.8446806, 0.0]]]}}, {"type": "Feature", "properties": {"id": 171}, "geometry": {"type": "Polygon", "coordinates": [[[15.7118225, -4.8446806, 0.0], [15.7131958, -4.8446806, 0.0], [15.7131958, -4.8433122, 0.0], [15.7118225, -4.8433122, 0.0], [15.7104492, -4.8433122, 0.0], [15.7104492, -4.8446806, 0.0], [15.7104492, -4.8460489, 0.0], [15.7118225, -4.8460489, 0.0], [15.7118225, -4.8446806, 0.0]]]}}, {"type": "Feature", "properties": {"id": 172}, "geometry": {"type": "Polygon", "coordinates": [[[15.629425, -4.8446806, 0.0], [15.629425, -4.8460489, 0.0], [15.6307983, -4.8460489, 0.0], [15.6307983, -4.8446806, 0.0], [15.629425, -4.8446806, 0.0]]]}}, {"type": "Feature", "properties": {"id": 173}, "geometry": {"type": "Polygon", "coordinates": [[[15.643158, -4.8433122, 0.0], [15.643158, -4.8446806, 0.0], [15.6445312, -4.8446806, 0.0], [15.6445312, -4.8433122, 0.0], [15.643158, -4.8433122, 0.0]]]}}, {"type": "Feature", "properties": {"id": 174}, "geometry": {"type": "Polygon", "coordinates": [[[15.7653809, -4.8419438, 0.0], [15.7653809, -4.8433122, 0.0], [15.7667542, -4.8433122, 0.0], [15.7667542, -4.8419438, 0.0], [15.7653809, -4.8419438, 0.0]]]}}, {"type": "Feature", "properties": {"id": 175}, "geometry": {"type": "Polygon", "coordinates": [[[15.7145691, -4.8419438, 0.0], [15.7145691, -4.8405754, 0.0], [15.7131958, -4.8405754, 0.0], [15.7131958, -4.8419438, 0.0], [15.7131958, -4.8433122, 0.0], [15.7145691, -4.8433122, 0.0], [15.7145691, -4.8419438, 0.0]]]}}, {"type": "Feature", "properties": {"id": 176}, "geometry": {"type": "Polygon", "coordinates": [[[15.8052063, -4.8419438, 0.0], [15.8052063, -4.8405754, 0.0], [15.803833, -4.8405754, 0.0], [15.803833, -4.8419438, 0.0], [15.803833, -4.8433122, 0.0], [15.8052063, -4.8433122, 0.0], [15.8052063, -4.8419438, 0.0]]]}}, {"type": "Feature", "properties": {"id": 177}, "geometry": {"type": "Polygon", "coordinates": [[[15.6266785, -4.8405754, 0.0], [15.6266785, -4.839207, 0.0], [15.6253052, -4.839207, 0.0], [15.6253052, -4.8405754, 0.0], [15.6253052, -4.8419438, 0.0], [15.6266785, -4.8419438, 0.0], [15.6266785, -4.8405754, 0.0]]]}}, {"type": "Feature", "properties": {"id": 178}, "geometry": {"type": "Polygon", "coordinates": [[[15.7969666, -4.8405754, 0.0], [15.7969666, -4.8419438, 0.0], [15.7983398, -4.8419438, 0.0], [15.7983398, -4.8405754, 0.0], [15.7969666, -4.8405754, 0.0]]]}}, {"type": "Feature", "properties": {"id": 179}, "geometry": {"type": "Polygon", "coordinates": [[[15.6513977, -4.839207, 0.0], [15.6513977, -4.8405754, 0.0], [15.652771, -4.8405754, 0.0], [15.652771, -4.839207, 0.0], [15.6513977, -4.839207, 0.0]]]}}, {"type": "Feature", "properties": {"id": 180}, "geometry": {"type": "Polygon", "coordinates": [[[15.6486511, -4.8378386, 0.0], [15.6486511, -4.839207, 0.0], [15.6500244, -4.839207, 0.0], [15.6500244, -4.8378386, 0.0], [15.6486511, -4.8378386, 0.0]]]}}, {"type": "Feature", "properties": {"id": 181}, "geometry": {"type": "Polygon", "coordinates": [[[15.6404114, -4.8378386, 0.0], [15.6404114, -4.839207, 0.0], [15.6417847, -4.839207, 0.0], [15.643158, -4.839207, 0.0], [15.643158, -4.8378386, 0.0], [15.6417847, -4.8378386, 0.0], [15.6404114, -4.8378386, 0.0]]]}}, {"type": "Feature", "properties": {"id": 182}, "geometry": {"type": "Polygon", "coordinates": [[[15.6211853, -4.8378386, 0.0], [15.6211853, -4.839207, 0.0], [15.6225586, -4.839207, 0.0], [15.6225586, -4.8378386, 0.0], [15.6211853, -4.8378386, 0.0]]]}}, {"type": "Feature", "properties": {"id": 183}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.8378386, 0.0], [15.7173157, -4.8364702, 0.0], [15.7159424, -4.8364702, 0.0], [15.7159424, -4.8378386, 0.0], [15.7159424, -4.839207, 0.0], [15.7173157, -4.839207, 0.0], [15.7173157, -4.8378386, 0.0]]]}}, {"type": "Feature", "properties": {"id": 184}, "geometry": {"type": "Polygon", "coordinates": [[[15.7543945, -4.8378386, 0.0], [15.7543945, -4.8364702, 0.0], [15.7530212, -4.8364702, 0.0], [15.7530212, -4.8378386, 0.0], [15.7530212, -4.839207, 0.0], [15.7543945, -4.839207, 0.0], [15.7543945, -4.8378386, 0.0]]]}}, {"type": "Feature", "properties": {"id": 185}, "geometry": {"type": "Polygon", "coordinates": [[[15.7832336, -4.8364702, 0.0], [15.7832336, -4.8351018, 0.0], [15.7818604, -4.8351018, 0.0], [15.7818604, -4.8364702, 0.0], [15.7804871, -4.8364702, 0.0], [15.7804871, -4.8378386, 0.0], [15.7818604, -4.8378386, 0.0], [15.7832336, -4.8378386, 0.0], [15.7832336, -4.8364702, 0.0]]]}}, {"type": "Feature", "properties": {"id": 186}, "geometry": {"type": "Polygon", "coordinates": [[[15.6280518, -4.8337334, 0.0], [15.6280518, -4.8351018, 0.0], [15.629425, -4.8351018, 0.0], [15.629425, -4.8337334, 0.0], [15.6280518, -4.8337334, 0.0]]]}}, {"type": "Feature", "properties": {"id": 187}, "geometry": {"type": "Polygon", "coordinates": [[[15.6678772, -4.8351018, 0.0], [15.6678772, -4.8364702, 0.0], [15.6692505, -4.8364702, 0.0], [15.6692505, -4.8351018, 0.0], [15.6678772, -4.8351018, 0.0]]]}}, {"type": "Feature", "properties": {"id": 188}, "geometry": {"type": "Polygon", "coordinates": [[[15.7131958, -4.8337334, 0.0], [15.7131958, -4.8351018, 0.0], [15.7145691, -4.8351018, 0.0], [15.7159424, -4.8351018, 0.0], [15.7159424, -4.8337334, 0.0], [15.7145691, -4.8337334, 0.0], [15.7131958, -4.8337334, 0.0]]]}}, {"type": "Feature", "properties": {"id": 189}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.8309966, 0.0], [15.7667542, -4.832365, 0.0], [15.7681274, -4.832365, 0.0], [15.7681274, -4.8309966, 0.0], [15.7667542, -4.8309966, 0.0]]]}}, {"type": "Feature", "properties": {"id": 190}, "geometry": {"type": "Polygon", "coordinates": [[[15.6761169, -4.8296282, 0.0], [15.6761169, -4.8282597, 0.0], [15.6747437, -4.8282597, 0.0], [15.6747437, -4.8296282, 0.0], [15.6747437, -4.8309966, 0.0], [15.6761169, -4.8309966, 0.0], [15.6761169, -4.8296282, 0.0]]]}}, {"type": "Feature", "properties": {"id": 191}, "geometry": {"type": "Polygon", "coordinates": [[[15.6829834, -4.8296282, 0.0], [15.6829834, -4.8309966, 0.0], [15.6843567, -4.8309966, 0.0], [15.6843567, -4.8296282, 0.0], [15.6829834, -4.8296282, 0.0]]]}}, {"type": "Feature", "properties": {"id": 192}, "geometry": {"type": "Polygon", "coordinates": [[[15.6980896, -4.8309966, 0.0], [15.6980896, -4.8296282, 0.0], [15.6967163, -4.8296282, 0.0], [15.6967163, -4.8309966, 0.0], [15.6967163, -4.832365, 0.0], [15.6980896, -4.832365, 0.0], [15.6980896, -4.8309966, 0.0]]]}}, {"type": "Feature", "properties": {"id": 193}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.8309966, 0.0], [15.7543945, -4.8309966, 0.0], [15.7543945, -4.832365, 0.0], [15.7557678, -4.832365, 0.0], [15.7571411, -4.832365, 0.0], [15.7571411, -4.8309966, 0.0], [15.7557678, -4.8309966, 0.0]]]}}, {"type": "Feature", "properties": {"id": 194}, "geometry": {"type": "Polygon", "coordinates": [[[15.7296753, -4.8296282, 0.0], [15.7296753, -4.8309966, 0.0], [15.7310486, -4.8309966, 0.0], [15.7310486, -4.8296282, 0.0], [15.7296753, -4.8296282, 0.0]]]}}, {"type": "Feature", "properties": {"id": 195}, "geometry": {"type": "Polygon", "coordinates": [[[15.7598877, -4.8282597, 0.0], [15.7598877, -4.8268913, 0.0], [15.7585144, -4.8268913, 0.0], [15.7585144, -4.8282597, 0.0], [15.7585144, -4.8296282, 0.0], [15.7598877, -4.8296282, 0.0], [15.7598877, -4.8282597, 0.0]]]}}, {"type": "Feature", "properties": {"id": 196}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.8282597, 0.0], [15.7173157, -4.8296282, 0.0], [15.718689, -4.8296282, 0.0], [15.718689, -4.8282597, 0.0], [15.7173157, -4.8282597, 0.0]]]}}, {"type": "Feature", "properties": {"id": 197}, "geometry": {"type": "Polygon", "coordinates": [[[15.7145691, -4.8282597, 0.0], [15.7159424, -4.8282597, 0.0], [15.7173157, -4.8282597, 0.0], [15.7173157, -4.8268913, 0.0], [15.7159424, -4.8268913, 0.0], [15.7145691, -4.8268913, 0.0], [15.7145691, -4.8255229, 0.0], [15.7131958, -4.8255229, 0.0], [15.7118225, -4.8255229, 0.0], [15.7104492, -4.8255229, 0.0], [15.7090759, -4.8255229, 0.0], [15.7090759, -4.8268913, 0.0], [15.7104492, -4.8268913, 0.0], [15.7104492, -4.8282597, 0.0], [15.7118225, -4.8282597, 0.0], [15.7118225, -4.8268913, 0.0], [15.7131958, -4.8268913, 0.0], [15.7131958, -4.8282597, 0.0], [15.7131958, -4.8296282, 0.0], [15.7145691, -4.8296282, 0.0], [15.7145691, -4.8282597, 0.0]]]}}, {"type": "Feature", "properties": {"id": 198}, "geometry": {"type": "Polygon", "coordinates": [[[15.6871033, -4.8268913, 0.0], [15.6871033, -4.8282597, 0.0], [15.6884766, -4.8282597, 0.0], [15.6884766, -4.8268913, 0.0], [15.6871033, -4.8268913, 0.0]]]}}, {"type": "Feature", "properties": {"id": 199}, "geometry": {"type": "Polygon", "coordinates": [[[15.6761169, -4.8268913, 0.0], [15.6761169, -4.8282597, 0.0], [15.6774902, -4.8282597, 0.0], [15.6774902, -4.8268913, 0.0], [15.6761169, -4.8268913, 0.0]]]}}, {"type": "Feature", "properties": {"id": 200}, "geometry": {"type": "Polygon", "coordinates": [[[15.6225586, -4.8268913, 0.0], [15.6225586, -4.8282597, 0.0], [15.6239319, -4.8282597, 0.0], [15.6239319, -4.8268913, 0.0], [15.6225586, -4.8268913, 0.0]]]}}, {"type": "Feature", "properties": {"id": 201}, "geometry": {"type": "Polygon", "coordinates": [[[15.7434082, -4.8241545, 0.0], [15.7434082, -4.8227861, 0.0], [15.7420349, -4.8227861, 0.0], [15.7420349, -4.8241545, 0.0], [15.7420349, -4.8255229, 0.0], [15.7434082, -4.8255229, 0.0], [15.7447815, -4.8255229, 0.0], [15.7461548, -4.8255229, 0.0], [15.7461548, -4.8241545, 0.0], [15.7447815, -4.8241545, 0.0], [15.7434082, -4.8241545, 0.0]]]}}, {"type": "Feature", "properties": {"id": 202}, "geometry": {"type": "Polygon", "coordinates": [[[15.6761169, -4.8241545, 0.0], [15.6761169, -4.8227861, 0.0], [15.6774902, -4.8227861, 0.0], [15.6774902, -4.8214176, 0.0], [15.6774902, -4.8200492, 0.0], [15.6761169, -4.8200492, 0.0], [15.6747437, -4.8200492, 0.0], [15.6747437, -4.8214176, 0.0], [15.6747437, -4.8227861, 0.0], [15.6733704, -4.8227861, 0.0], [15.6733704, -4.8241545, 0.0], [15.6747437, -4.8241545, 0.0], [15.6747437, -4.8255229, 0.0], [15.6761169, -4.8255229, 0.0], [15.6761169, -4.8241545, 0.0]]]}}, {"type": "Feature", "properties": {"id": 203}, "geometry": {"type": "Polygon", "coordinates": [[[15.7804871, -4.8241545, 0.0], [15.7804871, -4.8255229, 0.0], [15.7818604, -4.8255229, 0.0], [15.7832336, -4.8255229, 0.0], [15.7832336, -4.8241545, 0.0], [15.7818604, -4.8241545, 0.0], [15.7804871, -4.8241545, 0.0]]]}}, {"type": "Feature", "properties": {"id": 204}, "geometry": {"type": "Polygon", "coordinates": [[[15.7035828, -4.8241545, 0.0], [15.7049561, -4.8241545, 0.0], [15.7049561, -4.8227861, 0.0], [15.7035828, -4.8227861, 0.0], [15.7035828, -4.8214176, 0.0], [15.7022095, -4.8214176, 0.0], [15.7008362, -4.8214176, 0.0], [15.7008362, -4.8227861, 0.0], [15.7008362, -4.8241545, 0.0], [15.7022095, -4.8241545, 0.0], [15.7035828, -4.8241545, 0.0]]]}}, {"type": "Feature", "properties": {"id": 205}, "geometry": {"type": "Polygon", "coordinates": [[[15.6253052, -4.8214176, 0.0], [15.6253052, -4.8227861, 0.0], [15.6266785, -4.8227861, 0.0], [15.6266785, -4.8214176, 0.0], [15.6253052, -4.8214176, 0.0]]]}}, {"type": "Feature", "properties": {"id": 206}, "geometry": {"type": "Polygon", "coordinates": [[[15.643158, -4.8227861, 0.0], [15.643158, -4.8241545, 0.0], [15.6445312, -4.8241545, 0.0], [15.6445312, -4.8227861, 0.0], [15.643158, -4.8227861, 0.0]]]}}, {"type": "Feature", "properties": {"id": 207}, "geometry": {"type": "Polygon", "coordinates": [[[15.7077026, -4.8227861, 0.0], [15.7077026, -4.8241545, 0.0], [15.7090759, -4.8241545, 0.0], [15.7090759, -4.8227861, 0.0], [15.7077026, -4.8227861, 0.0]]]}}, {"type": "Feature", "properties": {"id": 208}, "geometry": {"type": "Polygon", "coordinates": [[[15.7489014, -4.8214176, 0.0], [15.7489014, -4.8227861, 0.0], [15.7502747, -4.8227861, 0.0], [15.7502747, -4.8214176, 0.0], [15.7489014, -4.8214176, 0.0]]]}}, {"type": "Feature", "properties": {"id": 209}, "geometry": {"type": "Polygon", "coordinates": [[[15.7214355, -4.8227861, 0.0], [15.7228088, -4.8227861, 0.0], [15.7228088, -4.8214176, 0.0], [15.7214355, -4.8214176, 0.0], [15.7214355, -4.8200492, 0.0], [15.7200623, -4.8200492, 0.0], [15.7200623, -4.8214176, 0.0], [15.7200623, -4.8227861, 0.0], [15.7214355, -4.8227861, 0.0]]]}}, {"type": "Feature", "properties": {"id": 210}, "geometry": {"type": "Polygon", "coordinates": [[[15.6390381, -4.8186808, 0.0], [15.6390381, -4.8200492, 0.0], [15.6404114, -4.8200492, 0.0], [15.6404114, -4.8186808, 0.0], [15.6390381, -4.8186808, 0.0]]]}}, {"type": "Feature", "properties": {"id": 211}, "geometry": {"type": "Polygon", "coordinates": [[[15.6225586, -4.8186808, 0.0], [15.6225586, -4.8200492, 0.0], [15.6239319, -4.8200492, 0.0], [15.6239319, -4.8186808, 0.0], [15.6225586, -4.8186808, 0.0]]]}}, {"type": "Feature", "properties": {"id": 212}, "geometry": {"type": "Polygon", "coordinates": [[[15.7489014, -4.8173123, 0.0], [15.7489014, -4.8186808, 0.0], [15.7502747, -4.8186808, 0.0], [15.7502747, -4.8173123, 0.0], [15.7489014, -4.8173123, 0.0]]]}}, {"type": "Feature", "properties": {"id": 213}, "geometry": {"type": "Polygon", "coordinates": [[[15.7846069, -4.8159439, 0.0], [15.7846069, -4.8173123, 0.0], [15.7859802, -4.8173123, 0.0], [15.7873535, -4.8173123, 0.0], [15.7873535, -4.8159439, 0.0], [15.7873535, -4.8145754, 0.0], [15.7859802, -4.8145754, 0.0], [15.7859802, -4.8159439, 0.0], [15.7846069, -4.8159439, 0.0]]]}}, {"type": "Feature", "properties": {"id": 214}, "geometry": {"type": "Polygon", "coordinates": [[[15.6513977, -4.8200492, 0.0], [15.6513977, -4.8214176, 0.0], [15.652771, -4.8214176, 0.0], [15.652771, -4.8200492, 0.0], [15.6513977, -4.8200492, 0.0]]]}}, {"type": "Feature", "properties": {"id": 215}, "geometry": {"type": "Polygon", "coordinates": [[[15.7145691, -4.8186808, 0.0], [15.7145691, -4.8200492, 0.0], [15.7159424, -4.8200492, 0.0], [15.7159424, -4.8186808, 0.0], [15.7145691, -4.8186808, 0.0]]]}}, {"type": "Feature", "properties": {"id": 216}, "geometry": {"type": "Polygon", "coordinates": [[[15.6390381, -4.8145754, 0.0], [15.6390381, -4.8159439, 0.0], [15.6404114, -4.8159439, 0.0], [15.6404114, -4.8145754, 0.0], [15.6390381, -4.8145754, 0.0]]]}}, {"type": "Feature", "properties": {"id": 217}, "geometry": {"type": "Polygon", "coordinates": [[[15.629425, -4.813207, 0.0], [15.629425, -4.8145754, 0.0], [15.6307983, -4.8145754, 0.0], [15.6321716, -4.8145754, 0.0], [15.6321716, -4.813207, 0.0], [15.6307983, -4.813207, 0.0], [15.629425, -4.813207, 0.0]]]}}, {"type": "Feature", "properties": {"id": 218}, "geometry": {"type": "Polygon", "coordinates": [[[15.6541443, -4.813207, 0.0], [15.6541443, -4.8145754, 0.0], [15.6555176, -4.8145754, 0.0], [15.6555176, -4.813207, 0.0], [15.6541443, -4.813207, 0.0]]]}}, {"type": "Feature", "properties": {"id": 219}, "geometry": {"type": "Polygon", "coordinates": [[[15.6555176, -4.8118385, 0.0], [15.6555176, -4.813207, 0.0], [15.6568909, -4.813207, 0.0], [15.6568909, -4.8118385, 0.0], [15.6555176, -4.8118385, 0.0]]]}}, {"type": "Feature", "properties": {"id": 220}, "geometry": {"type": "Polygon", "coordinates": [[[15.7447815, -4.8077332, 0.0], [15.7447815, -4.8091016, 0.0], [15.7461548, -4.8091016, 0.0], [15.7461548, -4.8077332, 0.0], [15.7447815, -4.8077332, 0.0]]]}}, {"type": "Feature", "properties": {"id": 221}, "geometry": {"type": "Polygon", "coordinates": [[[15.7502747, -4.8077332, 0.0], [15.7502747, -4.8063647, 0.0], [15.7489014, -4.8063647, 0.0], [15.7489014, -4.8077332, 0.0], [15.7489014, -4.8091016, 0.0], [15.7502747, -4.8091016, 0.0], [15.7502747, -4.8077332, 0.0]]]}}, {"type": "Feature", "properties": {"id": 222}, "geometry": {"type": "Polygon", "coordinates": [[[15.6417847, -4.8077332, 0.0], [15.6417847, -4.8091016, 0.0], [15.643158, -4.8091016, 0.0], [15.643158, -4.8077332, 0.0], [15.6417847, -4.8077332, 0.0]]]}}, {"type": "Feature", "properties": {"id": 223}, "geometry": {"type": "Polygon", "coordinates": [[[15.6404114, -4.8063647, 0.0], [15.6404114, -4.8077332, 0.0], [15.6417847, -4.8077332, 0.0], [15.6417847, -4.8063647, 0.0], [15.6404114, -4.8063647, 0.0]]]}}, {"type": "Feature", "properties": {"id": 224}, "geometry": {"type": "Polygon", "coordinates": [[[15.6362915, -4.8063647, 0.0], [15.6362915, -4.8077332, 0.0], [15.6376648, -4.8077332, 0.0], [15.6376648, -4.8063647, 0.0], [15.6362915, -4.8063647, 0.0]]]}}, {"type": "Feature", "properties": {"id": 225}, "geometry": {"type": "Polygon", "coordinates": [[[15.6871033, -4.8063647, 0.0], [15.6871033, -4.8077332, 0.0], [15.6884766, -4.8077332, 0.0], [15.6884766, -4.8063647, 0.0], [15.6871033, -4.8063647, 0.0]]]}}, {"type": "Feature", "properties": {"id": 226}, "geometry": {"type": "Polygon", "coordinates": [[[15.6486511, -4.8063647, 0.0], [15.6486511, -4.8077332, 0.0], [15.6500244, -4.8077332, 0.0], [15.6500244, -4.8063647, 0.0], [15.6486511, -4.8063647, 0.0]]]}}, {"type": "Feature", "properties": {"id": 227}, "geometry": {"type": "Polygon", "coordinates": [[[15.68573, -4.8036278, 0.0], [15.68573, -4.8022593, 0.0], [15.6843567, -4.8022593, 0.0], [15.6843567, -4.8036278, 0.0], [15.6843567, -4.8049962, 0.0], [15.68573, -4.8049962, 0.0], [15.68573, -4.8036278, 0.0]]]}}, {"type": "Feature", "properties": {"id": 228}, "geometry": {"type": "Polygon", "coordinates": [[[15.7255554, -4.7981539, 0.0], [15.7255554, -4.7995224, 0.0], [15.7269287, -4.7995224, 0.0], [15.728302, -4.7995224, 0.0], [15.728302, -4.7981539, 0.0], [15.7269287, -4.7981539, 0.0], [15.7255554, -4.7981539, 0.0]]]}}, {"type": "Feature", "properties": {"id": 229}, "geometry": {"type": "Polygon", "coordinates": [[[15.7653809, -4.79268, 0.0], [15.7653809, -4.7913115, 0.0], [15.7653809, -4.789943, 0.0], [15.7653809, -4.7885745, 0.0], [15.7653809, -4.787206, 0.0], [15.7667542, -4.787206, 0.0], [15.7667542, -4.7858375, 0.0], [15.7667542, -4.784469, 0.0], [15.7653809, -4.784469, 0.0], [15.7653809, -4.7858375, 0.0], [15.7640076, -4.7858375, 0.0], [15.7640076, -4.787206, 0.0], [15.7640076, -4.7885745, 0.0], [15.7640076, -4.789943, 0.0], [15.7640076, -4.7913115, 0.0], [15.7626343, -4.7913115, 0.0], [15.7626343, -4.789943, 0.0], [15.761261, -4.789943, 0.0], [15.761261, -4.7913115, 0.0], [15.761261, -4.79268, 0.0], [15.7626343, -4.79268, 0.0], [15.7640076, -4.79268, 0.0], [15.7640076, -4.7940484, 0.0], [15.7653809, -4.7940484, 0.0], [15.7653809, -4.79268, 0.0]]]}}, {"type": "Feature", "properties": {"id": 230}, "geometry": {"type": "Polygon", "coordinates": [[[15.7022095, -4.79268, 0.0], [15.7022095, -4.7940484, 0.0], [15.7035828, -4.7940484, 0.0], [15.7035828, -4.79268, 0.0], [15.7022095, -4.79268, 0.0]]]}}, {"type": "Feature", "properties": {"id": 231}, "geometry": {"type": "Polygon", "coordinates": [[[15.7077026, -4.79268, 0.0], [15.7077026, -4.7940484, 0.0], [15.7090759, -4.7940484, 0.0], [15.7090759, -4.79268, 0.0], [15.7077026, -4.79268, 0.0]]]}}, {"type": "Feature", "properties": {"id": 232}, "geometry": {"type": "Polygon", "coordinates": [[[15.7063293, -4.79268, 0.0], [15.7063293, -4.7913115, 0.0], [15.7049561, -4.7913115, 0.0], [15.7035828, -4.7913115, 0.0], [15.7035828, -4.79268, 0.0], [15.7049561, -4.79268, 0.0], [15.7049561, -4.7940484, 0.0], [15.7063293, -4.7940484, 0.0], [15.7063293, -4.79268, 0.0]]]}}, {"type": "Feature", "properties": {"id": 233}, "geometry": {"type": "Polygon", "coordinates": [[[15.7022095, -4.7913115, 0.0], [15.7022095, -4.789943, 0.0], [15.7008362, -4.789943, 0.0], [15.6994629, -4.789943, 0.0], [15.6980896, -4.789943, 0.0], [15.6980896, -4.7913115, 0.0], [15.6980896, -4.79268, 0.0], [15.6994629, -4.79268, 0.0], [15.7008362, -4.79268, 0.0], [15.7022095, -4.79268, 0.0], [15.7022095, -4.7913115, 0.0]]]}}, {"type": "Feature", "properties": {"id": 234}, "geometry": {"type": "Polygon", "coordinates": [[[15.7269287, -4.8008908, 0.0], [15.7255554, -4.8008908, 0.0], [15.7255554, -4.8022593, 0.0], [15.7269287, -4.8022593, 0.0], [15.728302, -4.8022593, 0.0], [15.728302, -4.8008908, 0.0], [15.7269287, -4.8008908, 0.0]]]}}, {"type": "Feature", "properties": {"id": 235}, "geometry": {"type": "Polygon", "coordinates": [[[15.695343, -4.7995224, 0.0], [15.695343, -4.7981539, 0.0], [15.6939697, -4.7981539, 0.0], [15.6939697, -4.7995224, 0.0], [15.6925964, -4.7995224, 0.0], [15.6925964, -4.8008908, 0.0], [15.6939697, -4.8008908, 0.0], [15.695343, -4.8008908, 0.0], [15.695343, -4.7995224, 0.0]]]}}, {"type": "Feature", "properties": {"id": 236}, "geometry": {"type": "Polygon", "coordinates": [[[15.7269287, -4.7885745, 0.0], [15.7269287, -4.789943, 0.0], [15.728302, -4.789943, 0.0], [15.7296753, -4.789943, 0.0], [15.7296753, -4.7885745, 0.0], [15.7296753, -4.787206, 0.0], [15.728302, -4.787206, 0.0], [15.728302, -4.7885745, 0.0], [15.7269287, -4.7885745, 0.0]]]}}, {"type": "Feature", "properties": {"id": 237}, "geometry": {"type": "Polygon", "coordinates": [[[15.7228088, -4.7858375, 0.0], [15.7241821, -4.7858375, 0.0], [15.7241821, -4.784469, 0.0], [15.7241821, -4.7831005, 0.0], [15.7228088, -4.7831005, 0.0], [15.7228088, -4.7817319, 0.0], [15.7214355, -4.7817319, 0.0], [15.7214355, -4.7831005, 0.0], [15.7200623, -4.7831005, 0.0], [15.7200623, -4.784469, 0.0], [15.7200623, -4.7858375, 0.0], [15.7214355, -4.7858375, 0.0], [15.7228088, -4.7858375, 0.0]]]}}, {"type": "Feature", "properties": {"id": 238}, "geometry": {"type": "Polygon", "coordinates": [[[15.7351685, -4.7831005, 0.0], [15.7351685, -4.784469, 0.0], [15.7365417, -4.784469, 0.0], [15.7365417, -4.7831005, 0.0], [15.7351685, -4.7831005, 0.0]]]}}, {"type": "Feature", "properties": {"id": 239}, "geometry": {"type": "Polygon", "coordinates": [[[15.8601379, -4.7789949, 0.0], [15.8601379, -4.7803634, 0.0], [15.8615112, -4.7803634, 0.0], [15.8628845, -4.7803634, 0.0], [15.8628845, -4.7789949, 0.0], [15.8615112, -4.7789949, 0.0], [15.8601379, -4.7789949, 0.0]]]}}, {"type": "Feature", "properties": {"id": 240}, "geometry": {"type": "Polygon", "coordinates": [[[15.7255554, -4.7803634, 0.0], [15.7269287, -4.7803634, 0.0], [15.7269287, -4.7789949, 0.0], [15.7269287, -4.7776264, 0.0], [15.7255554, -4.7776264, 0.0], [15.7241821, -4.7776264, 0.0], [15.7241821, -4.7789949, 0.0], [15.7241821, -4.7803634, 0.0], [15.7241821, -4.7817319, 0.0], [15.7255554, -4.7817319, 0.0], [15.7255554, -4.7803634, 0.0]]]}}, {"type": "Feature", "properties": {"id": 241}, "geometry": {"type": "Polygon", "coordinates": [[[15.8642578, -4.7789949, 0.0], [15.8642578, -4.7803634, 0.0], [15.8656311, -4.7803634, 0.0], [15.8656311, -4.7789949, 0.0], [15.8642578, -4.7789949, 0.0]]]}}, {"type": "Feature", "properties": {"id": 242}, "geometry": {"type": "Polygon", "coordinates": [[[15.7626343, -4.7789949, 0.0], [15.7626343, -4.7803634, 0.0], [15.7640076, -4.7803634, 0.0], [15.7640076, -4.7789949, 0.0], [15.7626343, -4.7789949, 0.0]]]}}, {"type": "Feature", "properties": {"id": 243}, "geometry": {"type": "Polygon", "coordinates": [[[15.7214355, -4.7789949, 0.0], [15.7214355, -4.7803634, 0.0], [15.7228088, -4.7803634, 0.0], [15.7228088, -4.7789949, 0.0], [15.7214355, -4.7789949, 0.0]]]}}, {"type": "Feature", "properties": {"id": 244}, "geometry": {"type": "Polygon", "coordinates": [[[15.8628845, -4.7776264, 0.0], [15.8628845, -4.7789949, 0.0], [15.8642578, -4.7789949, 0.0], [15.8642578, -4.7776264, 0.0], [15.8628845, -4.7776264, 0.0]]]}}, {"type": "Feature", "properties": {"id": 245}, "geometry": {"type": "Polygon", "coordinates": [[[15.695343, -4.8104701, 0.0], [15.695343, -4.8118385, 0.0], [15.6967163, -4.8118385, 0.0], [15.6967163, -4.8104701, 0.0], [15.695343, -4.8104701, 0.0]]]}}, {"type": "Feature", "properties": {"id": 246}, "geometry": {"type": "Polygon", "coordinates": [[[15.643158, -4.8091016, 0.0], [15.643158, -4.8104701, 0.0], [15.6445312, -4.8104701, 0.0], [15.6445312, -4.8091016, 0.0], [15.643158, -4.8091016, 0.0]]]}}, {"type": "Feature", "properties": {"id": 247}, "geometry": {"type": "Polygon", "coordinates": [[[15.6761169, -4.8091016, 0.0], [15.6761169, -4.8077332, 0.0], [15.6747437, -4.8077332, 0.0], [15.6747437, -4.8091016, 0.0], [15.6747437, -4.8104701, 0.0], [15.6761169, -4.8104701, 0.0], [15.6774902, -4.8104701, 0.0], [15.6774902, -4.8091016, 0.0], [15.6761169, -4.8091016, 0.0]]]}}, {"type": "Feature", "properties": {"id": 248}, "geometry": {"type": "Polygon", "coordinates": [[[15.8670044, -4.7776264, 0.0], [15.8656311, -4.7776264, 0.0], [15.8656311, -4.7789949, 0.0], [15.8670044, -4.7789949, 0.0], [15.8683777, -4.7789949, 0.0], [15.8683777, -4.7776264, 0.0], [15.8670044, -4.7776264, 0.0]]]}}, {"type": "Feature", "properties": {"id": 249}, "geometry": {"type": "Polygon", "coordinates": [[[15.7598877, -4.7748894, 0.0], [15.7598877, -4.7735208, 0.0], [15.7585144, -4.7735208, 0.0], [15.7585144, -4.7748894, 0.0], [15.7585144, -4.7762579, 0.0], [15.7598877, -4.7762579, 0.0], [15.7598877, -4.7748894, 0.0]]]}}, {"type": "Feature", "properties": {"id": 250}, "geometry": {"type": "Polygon", "coordinates": [[[15.7337952, -4.7776264, 0.0], [15.7337952, -4.7789949, 0.0], [15.7351685, -4.7789949, 0.0], [15.7351685, -4.7776264, 0.0], [15.7337952, -4.7776264, 0.0]]]}}, {"type": "Feature", "properties": {"id": 251}, "geometry": {"type": "Polygon", "coordinates": [[[15.7296753, -4.7762579, 0.0], [15.7296753, -4.7776264, 0.0], [15.7310486, -4.7776264, 0.0], [15.7310486, -4.7762579, 0.0], [15.7296753, -4.7762579, 0.0]]]}}, {"type": "Feature", "properties": {"id": 252}, "geometry": {"type": "Polygon", "coordinates": [[[15.7365417, -4.7762579, 0.0], [15.7365417, -4.7776264, 0.0], [15.737915, -4.7776264, 0.0], [15.7392883, -4.7776264, 0.0], [15.7392883, -4.7762579, 0.0], [15.737915, -4.7762579, 0.0], [15.7365417, -4.7762579, 0.0]]]}}, {"type": "Feature", "properties": {"id": 253}, "geometry": {"type": "Polygon", "coordinates": [[[15.7337952, -4.7748894, 0.0], [15.7351685, -4.7748894, 0.0], [15.7351685, -4.7735208, 0.0], [15.7337952, -4.7735208, 0.0], [15.7324219, -4.7735208, 0.0], [15.7324219, -4.7748894, 0.0], [15.7310486, -4.7748894, 0.0], [15.7310486, -4.7762579, 0.0], [15.7324219, -4.7762579, 0.0], [15.7337952, -4.7762579, 0.0], [15.7337952, -4.7748894, 0.0]]]}}, {"type": "Feature", "properties": {"id": 254}, "geometry": {"type": "Polygon", "coordinates": [[[15.7887268, -4.7721523, 0.0], [15.7887268, -4.7735208, 0.0], [15.7901001, -4.7735208, 0.0], [15.7914734, -4.7735208, 0.0], [15.7914734, -4.7721523, 0.0], [15.7901001, -4.7721523, 0.0], [15.7887268, -4.7721523, 0.0]]]}}, {"type": "Feature", "properties": {"id": 255}, "geometry": {"type": "Polygon", "coordinates": [[[15.7351685, -4.7721523, 0.0], [15.7351685, -4.7735208, 0.0], [15.7365417, -4.7735208, 0.0], [15.737915, -4.7735208, 0.0], [15.737915, -4.7721523, 0.0], [15.7365417, -4.7721523, 0.0], [15.7351685, -4.7721523, 0.0]]]}}, {"type": "Feature", "properties": {"id": 256}, "geometry": {"type": "Polygon", "coordinates": [[[15.737915, -4.7707838, 0.0], [15.737915, -4.7721523, 0.0], [15.7392883, -4.7721523, 0.0], [15.7392883, -4.7707838, 0.0], [15.737915, -4.7707838, 0.0]]]}}, {"type": "Feature", "properties": {"id": 257}, "geometry": {"type": "Polygon", "coordinates": [[[15.7887268, -4.7694152, 0.0], [15.7901001, -4.7694152, 0.0], [15.7901001, -4.7680467, 0.0], [15.7901001, -4.7666782, 0.0], [15.7887268, -4.7666782, 0.0], [15.7887268, -4.7680467, 0.0], [15.7873535, -4.7680467, 0.0], [15.7859802, -4.7680467, 0.0], [15.7859802, -4.7694152, 0.0], [15.7873535, -4.7694152, 0.0], [15.7873535, -4.7707838, 0.0], [15.7887268, -4.7707838, 0.0], [15.7887268, -4.7694152, 0.0]]]}}, {"type": "Feature", "properties": {"id": 258}, "geometry": {"type": "Polygon", "coordinates": [[[15.7420349, -4.7694152, 0.0], [15.7420349, -4.7707838, 0.0], [15.7434082, -4.7707838, 0.0], [15.7434082, -4.7694152, 0.0], [15.7420349, -4.7694152, 0.0]]]}}, {"type": "Feature", "properties": {"id": 259}, "geometry": {"type": "Polygon", "coordinates": [[[15.869751, -4.7680467, 0.0], [15.869751, -4.7694152, 0.0], [15.8711243, -4.7694152, 0.0], [15.8711243, -4.7680467, 0.0], [15.869751, -4.7680467, 0.0]]]}}, {"type": "Feature", "properties": {"id": 260}, "geometry": {"type": "Polygon", "coordinates": [[[15.7337952, -4.7680467, 0.0], [15.7337952, -4.7694152, 0.0], [15.7351685, -4.7694152, 0.0], [15.7351685, -4.7680467, 0.0], [15.7337952, -4.7680467, 0.0]]]}}, {"type": "Feature", "properties": {"id": 261}, "geometry": {"type": "Polygon", "coordinates": [[[15.7447815, -4.7639411, 0.0], [15.7447815, -4.7625725, 0.0], [15.7434082, -4.7625725, 0.0], [15.7434082, -4.7639411, 0.0], [15.7434082, -4.7653096, 0.0], [15.7447815, -4.7653096, 0.0], [15.7447815, -4.7639411, 0.0]]]}}, {"type": "Feature", "properties": {"id": 262}, "geometry": {"type": "Polygon", "coordinates": [[[15.7351685, -4.7653096, 0.0], [15.7351685, -4.7666782, 0.0], [15.7365417, -4.7666782, 0.0], [15.7365417, -4.7653096, 0.0], [15.7351685, -4.7653096, 0.0]]]}}, {"type": "Feature", "properties": {"id": 263}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.7639411, 0.0], [15.7557678, -4.7653096, 0.0], [15.7571411, -4.7653096, 0.0], [15.7571411, -4.7639411, 0.0], [15.7557678, -4.7639411, 0.0]]]}}, {"type": "Feature", "properties": {"id": 264}, "geometry": {"type": "Polygon", "coordinates": [[[15.7543945, -4.7639411, 0.0], [15.7543945, -4.7625725, 0.0], [15.7530212, -4.7625725, 0.0], [15.7530212, -4.7639411, 0.0], [15.7530212, -4.7653096, 0.0], [15.7543945, -4.7653096, 0.0], [15.7543945, -4.7639411, 0.0]]]}}, {"type": "Feature", "properties": {"id": 265}, "geometry": {"type": "Polygon", "coordinates": [[[15.7901001, -4.7625725, 0.0], [15.7901001, -4.761204, 0.0], [15.7887268, -4.761204, 0.0], [15.7873535, -4.761204, 0.0], [15.7873535, -4.7625725, 0.0], [15.7887268, -4.7625725, 0.0], [15.7887268, -4.7639411, 0.0], [15.7901001, -4.7639411, 0.0], [15.7901001, -4.7625725, 0.0]]]}}, {"type": "Feature", "properties": {"id": 266}, "geometry": {"type": "Polygon", "coordinates": [[[15.761261, -4.761204, 0.0], [15.761261, -4.7625725, 0.0], [15.7626343, -4.7625725, 0.0], [15.7626343, -4.761204, 0.0], [15.761261, -4.761204, 0.0]]]}}, {"type": "Feature", "properties": {"id": 267}, "geometry": {"type": "Polygon", "coordinates": [[[15.7571411, -4.7598354, 0.0], [15.7571411, -4.761204, 0.0], [15.7585144, -4.761204, 0.0], [15.7585144, -4.7598354, 0.0], [15.7571411, -4.7598354, 0.0]]]}}, {"type": "Feature", "properties": {"id": 268}, "geometry": {"type": "Polygon", "coordinates": [[[15.7653809, -4.7488869, 0.0], [15.7653809, -4.7475183, 0.0], [15.7667542, -4.7475183, 0.0], [15.7681274, -4.7475183, 0.0], [15.7681274, -4.7461497, 0.0], [15.7667542, -4.7461497, 0.0], [15.7653809, -4.7461497, 0.0], [15.7640076, -4.7461497, 0.0], [15.7640076, -4.7475183, 0.0], [15.7626343, -4.7475183, 0.0], [15.7626343, -4.7488869, 0.0], [15.7626343, -4.7502555, 0.0], [15.7640076, -4.7502555, 0.0], [15.7653809, -4.7502555, 0.0], [15.7653809, -4.7488869, 0.0]]]}}, {"type": "Feature", "properties": {"id": 269}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -4.7488869, 0.0], [15.7530212, -4.7502555, 0.0], [15.7543945, -4.7502555, 0.0], [15.7543945, -4.7488869, 0.0], [15.7530212, -4.7488869, 0.0]]]}}, {"type": "Feature", "properties": {"id": 270}, "geometry": {"type": "Polygon", "coordinates": [[[15.7434082, -4.7488869, 0.0], [15.7434082, -4.7475183, 0.0], [15.7420349, -4.7475183, 0.0], [15.7420349, -4.7488869, 0.0], [15.7406616, -4.7488869, 0.0], [15.7406616, -4.7502555, 0.0], [15.7420349, -4.7502555, 0.0], [15.7434082, -4.7502555, 0.0], [15.7434082, -4.7488869, 0.0]]]}}, {"type": "Feature", "properties": {"id": 271}, "geometry": {"type": "Polygon", "coordinates": [[[15.7626343, -4.7584669, 0.0], [15.761261, -4.7584669, 0.0], [15.761261, -4.7598354, 0.0], [15.7626343, -4.7598354, 0.0], [15.7640076, -4.7598354, 0.0], [15.7640076, -4.7584669, 0.0], [15.7626343, -4.7584669, 0.0]]]}}, {"type": "Feature", "properties": {"id": 272}, "geometry": {"type": "Polygon", "coordinates": [[[15.7585144, -4.7584669, 0.0], [15.7585144, -4.7598354, 0.0], [15.7598877, -4.7598354, 0.0], [15.7598877, -4.7584669, 0.0], [15.7585144, -4.7584669, 0.0]]]}}, {"type": "Feature", "properties": {"id": 273}, "geometry": {"type": "Polygon", "coordinates": [[[15.7598877, -4.7570983, 0.0], [15.7598877, -4.7584669, 0.0], [15.761261, -4.7584669, 0.0], [15.761261, -4.7570983, 0.0], [15.7598877, -4.7570983, 0.0]]]}}, {"type": "Feature", "properties": {"id": 274}, "geometry": {"type": "Polygon", "coordinates": [[[15.7598877, -4.7461497, 0.0], [15.7598877, -4.7475183, 0.0], [15.761261, -4.7475183, 0.0], [15.761261, -4.7461497, 0.0], [15.7598877, -4.7461497, 0.0]]]}}, {"type": "Feature", "properties": {"id": 275}, "geometry": {"type": "Polygon", "coordinates": [[[15.7887268, -4.7406754, 0.0], [15.7887268, -4.7393068, 0.0], [15.7901001, -4.7393068, 0.0], [15.7901001, -4.7379382, 0.0], [15.7887268, -4.7379382, 0.0], [15.7873535, -4.7379382, 0.0], [15.7873535, -4.7393068, 0.0], [15.7859802, -4.7393068, 0.0], [15.7859802, -4.7406754, 0.0], [15.7873535, -4.7406754, 0.0], [15.7873535, -4.742044, 0.0], [15.7887268, -4.742044, 0.0], [15.7901001, -4.742044, 0.0], [15.7901001, -4.7406754, 0.0], [15.7887268, -4.7406754, 0.0]]]}}, {"type": "Feature", "properties": {"id": 276}, "geometry": {"type": "Polygon", "coordinates": [[[15.7200623, -4.7393068, 0.0], [15.7200623, -4.7406754, 0.0], [15.7214355, -4.7406754, 0.0], [15.7214355, -4.7393068, 0.0], [15.7200623, -4.7393068, 0.0]]]}}, {"type": "Feature", "properties": {"id": 277}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -4.7379382, 0.0], [15.7530212, -4.7393068, 0.0], [15.7543945, -4.7393068, 0.0], [15.7543945, -4.7379382, 0.0], [15.7530212, -4.7379382, 0.0]]]}}, {"type": "Feature", "properties": {"id": 278}, "geometry": {"type": "Polygon", "coordinates": [[[15.7434082, -4.7434126, 0.0], [15.7434082, -4.742044, 0.0], [15.7420349, -4.742044, 0.0], [15.7420349, -4.7434126, 0.0], [15.7420349, -4.7447812, 0.0], [15.7434082, -4.7447812, 0.0], [15.7447815, -4.7447812, 0.0], [15.7447815, -4.7434126, 0.0], [15.7434082, -4.7434126, 0.0]]]}}, {"type": "Feature", "properties": {"id": 279}, "geometry": {"type": "Polygon", "coordinates": [[[15.8642578, -4.7338324, 0.0], [15.8642578, -4.7324638, 0.0], [15.8628845, -4.7324638, 0.0], [15.8628845, -4.7338324, 0.0], [15.8628845, -4.735201, 0.0], [15.8642578, -4.735201, 0.0], [15.8642578, -4.7338324, 0.0]]]}}, {"type": "Feature", "properties": {"id": 280}, "geometry": {"type": "Polygon", "coordinates": [[[15.7296753, -4.7297266, 0.0], [15.7296753, -4.7310952, 0.0], [15.7310486, -4.7310952, 0.0], [15.7310486, -4.7297266, 0.0], [15.7296753, -4.7297266, 0.0]]]}}, {"type": "Feature", "properties": {"id": 281}, "geometry": {"type": "Polygon", "coordinates": [[[15.7434082, -4.7215148, 0.0], [15.7434082, -4.7201462, 0.0], [15.7420349, -4.7201462, 0.0], [15.7420349, -4.7215148, 0.0], [15.7420349, -4.7228834, 0.0], [15.7434082, -4.7228834, 0.0], [15.7434082, -4.7215148, 0.0]]]}}, {"type": "Feature", "properties": {"id": 282}, "geometry": {"type": "Polygon", "coordinates": [[[15.7475281, -4.7256207, 0.0], [15.7475281, -4.7269893, 0.0], [15.7489014, -4.7269893, 0.0], [15.7489014, -4.7256207, 0.0], [15.7475281, -4.7256207, 0.0]]]}}, {"type": "Feature", "properties": {"id": 283}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.7242521, 0.0], [15.7557678, -4.7256207, 0.0], [15.7571411, -4.7256207, 0.0], [15.7571411, -4.7242521, 0.0], [15.7557678, -4.7242521, 0.0]]]}}, {"type": "Feature", "properties": {"id": 284}, "geometry": {"type": "Polygon", "coordinates": [[[15.7571411, -4.7310952, 0.0], [15.7571411, -4.7324638, 0.0], [15.7585144, -4.7324638, 0.0], [15.7585144, -4.7310952, 0.0], [15.7571411, -4.7310952, 0.0]]]}}, {"type": "Feature", "properties": {"id": 285}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.7297266, 0.0], [15.7557678, -4.7310952, 0.0], [15.7571411, -4.7310952, 0.0], [15.7571411, -4.7297266, 0.0], [15.7557678, -4.7297266, 0.0]]]}}, {"type": "Feature", "properties": {"id": 286}, "geometry": {"type": "Polygon", "coordinates": [[[15.7269287, -4.735201, 0.0], [15.7269287, -4.7365696, 0.0], [15.728302, -4.7365696, 0.0], [15.7296753, -4.7365696, 0.0], [15.7310486, -4.7365696, 0.0], [15.7310486, -4.735201, 0.0], [15.7296753, -4.735201, 0.0], [15.7296753, -4.7338324, 0.0], [15.728302, -4.7338324, 0.0], [15.728302, -4.735201, 0.0], [15.7269287, -4.735201, 0.0]]]}}, {"type": "Feature", "properties": {"id": 287}, "geometry": {"type": "Polygon", "coordinates": [[[15.7392883, -4.735201, 0.0], [15.7406616, -4.735201, 0.0], [15.7406616, -4.7338324, 0.0], [15.7392883, -4.7338324, 0.0], [15.737915, -4.7338324, 0.0], [15.737915, -4.735201, 0.0], [15.737915, -4.7365696, 0.0], [15.7392883, -4.7365696, 0.0], [15.7392883, -4.735201, 0.0]]]}}, {"type": "Feature", "properties": {"id": 288}, "geometry": {"type": "Polygon", "coordinates": [[[15.7420349, -4.7338324, 0.0], [15.7420349, -4.735201, 0.0], [15.7434082, -4.735201, 0.0], [15.7434082, -4.7338324, 0.0], [15.7420349, -4.7338324, 0.0]]]}}, {"type": "Feature", "properties": {"id": 289}, "geometry": {"type": "Polygon", "coordinates": [[[15.79422, -4.7215148, 0.0], [15.79422, -4.7228834, 0.0], [15.7955933, -4.7228834, 0.0], [15.7955933, -4.7215148, 0.0], [15.79422, -4.7215148, 0.0]]]}}, {"type": "Feature", "properties": {"id": 290}, "geometry": {"type": "Polygon", "coordinates": [[[15.8779907, -4.7187776, 0.0], [15.879364, -4.7187776, 0.0], [15.8807373, -4.7187776, 0.0], [15.8807373, -4.7174089, 0.0], [15.879364, -4.7174089, 0.0], [15.8779907, -4.7174089, 0.0], [15.8766174, -4.7174089, 0.0], [15.8766174, -4.7160403, 0.0], [15.8752441, -4.7160403, 0.0], [15.8752441, -4.7174089, 0.0], [15.8752441, -4.7187776, 0.0], [15.8766174, -4.7187776, 0.0], [15.8766174, -4.7201462, 0.0], [15.8779907, -4.7201462, 0.0], [15.8779907, -4.7187776, 0.0]]]}}, {"type": "Feature", "properties": {"id": 291}, "geometry": {"type": "Polygon", "coordinates": [[[15.7969666, -4.7201462, 0.0], [15.7955933, -4.7201462, 0.0], [15.7955933, -4.7215148, 0.0], [15.7969666, -4.7215148, 0.0], [15.7983398, -4.7215148, 0.0], [15.7983398, -4.7201462, 0.0], [15.7969666, -4.7201462, 0.0]]]}}, {"type": "Feature", "properties": {"id": 292}, "geometry": {"type": "Polygon", "coordinates": [[[15.7489014, -4.7187776, 0.0], [15.7489014, -4.7174089, 0.0], [15.7475281, -4.7174089, 0.0], [15.7475281, -4.7187776, 0.0], [15.7475281, -4.7201462, 0.0], [15.7489014, -4.7201462, 0.0], [15.7489014, -4.7187776, 0.0]]]}}, {"type": "Feature", "properties": {"id": 293}, "geometry": {"type": "Polygon", "coordinates": [[[15.7695007, -4.7187776, 0.0], [15.7695007, -4.7174089, 0.0], [15.7695007, -4.7160403, 0.0], [15.7681274, -4.7160403, 0.0], [15.7681274, -4.7174089, 0.0], [15.7681274, -4.7187776, 0.0], [15.7681274, -4.7201462, 0.0], [15.7695007, -4.7201462, 0.0], [15.7695007, -4.7187776, 0.0]]]}}, {"type": "Feature", "properties": {"id": 294}, "geometry": {"type": "Polygon", "coordinates": [[[15.7846069, -4.7187776, 0.0], [15.7846069, -4.7201462, 0.0], [15.7859802, -4.7201462, 0.0], [15.7859802, -4.7187776, 0.0], [15.7846069, -4.7187776, 0.0]]]}}, {"type": "Feature", "properties": {"id": 295}, "geometry": {"type": "Polygon", "coordinates": [[[15.7969666, -4.7174089, 0.0], [15.7969666, -4.7187776, 0.0], [15.7983398, -4.7187776, 0.0], [15.7983398, -4.7174089, 0.0], [15.7969666, -4.7174089, 0.0]]]}}, {"type": "Feature", "properties": {"id": 296}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.7160403, 0.0], [15.7173157, -4.7174089, 0.0], [15.718689, -4.7174089, 0.0], [15.718689, -4.7160403, 0.0], [15.7173157, -4.7160403, 0.0]]]}}, {"type": "Feature", "properties": {"id": 297}, "geometry": {"type": "Polygon", "coordinates": [[[15.8807373, -4.7160403, 0.0], [15.8807373, -4.7174089, 0.0], [15.8821106, -4.7174089, 0.0], [15.8821106, -4.7160403, 0.0], [15.8807373, -4.7160403, 0.0]]]}}, {"type": "Feature", "properties": {"id": 298}, "geometry": {"type": "Polygon", "coordinates": [[[15.803833, -4.7160403, 0.0], [15.8052063, -4.7160403, 0.0], [15.8052063, -4.7146716, 0.0], [15.8052063, -4.713303, 0.0], [15.8052063, -4.7119343, 0.0], [15.8065796, -4.7119343, 0.0], [15.8065796, -4.7105657, 0.0], [15.8052063, -4.7105657, 0.0], [15.803833, -4.7105657, 0.0], [15.803833, -4.7119343, 0.0], [15.803833, -4.713303, 0.0], [15.8024597, -4.713303, 0.0], [15.8024597, -4.7146716, 0.0], [15.8024597, -4.7160403, 0.0], [15.8024597, -4.7174089, 0.0], [15.803833, -4.7174089, 0.0], [15.803833, -4.7160403, 0.0]]]}}, {"type": "Feature", "properties": {"id": 299}, "geometry": {"type": "Polygon", "coordinates": [[[15.7461548, -4.7160403, 0.0], [15.7461548, -4.7174089, 0.0], [15.7475281, -4.7174089, 0.0], [15.7475281, -4.7160403, 0.0], [15.7461548, -4.7160403, 0.0]]]}}, {"type": "Feature", "properties": {"id": 300}, "geometry": {"type": "Polygon", "coordinates": [[[15.7489014, -4.7160403, 0.0], [15.7489014, -4.7174089, 0.0], [15.7502747, -4.7174089, 0.0], [15.7502747, -4.7160403, 0.0], [15.7489014, -4.7160403, 0.0]]]}}, {"type": "Feature", "properties": {"id": 301}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.7160403, 0.0], [15.7667542, -4.7146716, 0.0], [15.7667542, -4.713303, 0.0], [15.7667542, -4.7119343, 0.0], [15.7653809, -4.7119343, 0.0], [15.7653809, -4.713303, 0.0], [15.7653809, -4.7146716, 0.0], [15.7653809, -4.7160403, 0.0], [15.7653809, -4.7174089, 0.0], [15.7667542, -4.7174089, 0.0], [15.7667542, -4.7160403, 0.0]]]}}, {"type": "Feature", "properties": {"id": 302}, "geometry": {"type": "Polygon", "coordinates": [[[15.7420349, -4.7146716, 0.0], [15.7420349, -4.713303, 0.0], [15.7406616, -4.713303, 0.0], [15.7406616, -4.7119343, 0.0], [15.7406616, -4.7105657, 0.0], [15.7392883, -4.7105657, 0.0], [15.7392883, -4.709197, 0.0], [15.7392883, -4.7078284, 0.0], [15.737915, -4.7078284, 0.0], [15.737915, -4.709197, 0.0], [15.737915, -4.7105657, 0.0], [15.737915, -4.7119343, 0.0], [15.7392883, -4.7119343, 0.0], [15.7392883, -4.713303, 0.0], [15.7392883, -4.7146716, 0.0], [15.7392883, -4.7160403, 0.0], [15.7406616, -4.7160403, 0.0], [15.7420349, -4.7160403, 0.0], [15.7420349, -4.7146716, 0.0]]]}}, {"type": "Feature", "properties": {"id": 303}, "geometry": {"type": "Polygon", "coordinates": [[[15.7475281, -4.7146716, 0.0], [15.7475281, -4.7160403, 0.0], [15.7489014, -4.7160403, 0.0], [15.7489014, -4.7146716, 0.0], [15.7475281, -4.7146716, 0.0]]]}}, {"type": "Feature", "properties": {"id": 304}, "geometry": {"type": "Polygon", "coordinates": [[[15.7887268, -4.713303, 0.0], [15.7887268, -4.7146716, 0.0], [15.7901001, -4.7146716, 0.0], [15.7901001, -4.713303, 0.0], [15.7887268, -4.713303, 0.0]]]}}, {"type": "Feature", "properties": {"id": 305}, "geometry": {"type": "Polygon", "coordinates": [[[15.7296753, -4.713303, 0.0], [15.7296753, -4.7146716, 0.0], [15.7310486, -4.7146716, 0.0], [15.7310486, -4.713303, 0.0], [15.7296753, -4.713303, 0.0]]]}}, {"type": "Feature", "properties": {"id": 306}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -4.713303, 0.0], [15.7530212, -4.7146716, 0.0], [15.7543945, -4.7146716, 0.0], [15.7543945, -4.713303, 0.0], [15.7530212, -4.713303, 0.0]]]}}, {"type": "Feature", "properties": {"id": 307}, "geometry": {"type": "Polygon", "coordinates": [[[15.7626343, -4.713303, 0.0], [15.7626343, -4.7146716, 0.0], [15.7640076, -4.7146716, 0.0], [15.7640076, -4.713303, 0.0], [15.7626343, -4.713303, 0.0]]]}}, {"type": "Feature", "properties": {"id": 308}, "geometry": {"type": "Polygon", "coordinates": [[[15.7461548, -4.7119343, 0.0], [15.7461548, -4.713303, 0.0], [15.7475281, -4.713303, 0.0], [15.7475281, -4.7119343, 0.0], [15.7461548, -4.7119343, 0.0]]]}}, {"type": "Feature", "properties": {"id": 309}, "geometry": {"type": "Polygon", "coordinates": [[[15.7543945, -4.7119343, 0.0], [15.7543945, -4.713303, 0.0], [15.7557678, -4.713303, 0.0], [15.7557678, -4.7119343, 0.0], [15.7543945, -4.7119343, 0.0]]]}}, {"type": "Feature", "properties": {"id": 310}, "geometry": {"type": "Polygon", "coordinates": [[[15.7516479, -4.7119343, 0.0], [15.7516479, -4.713303, 0.0], [15.7530212, -4.713303, 0.0], [15.7530212, -4.7119343, 0.0], [15.7516479, -4.7119343, 0.0]]]}}, {"type": "Feature", "properties": {"id": 311}, "geometry": {"type": "Polygon", "coordinates": [[[15.7502747, -4.7105657, 0.0], [15.7516479, -4.7105657, 0.0], [15.7530212, -4.7105657, 0.0], [15.7530212, -4.709197, 0.0], [15.7516479, -4.709197, 0.0], [15.7502747, -4.709197, 0.0], [15.7489014, -4.709197, 0.0], [15.7489014, -4.7105657, 0.0], [15.7475281, -4.7105657, 0.0], [15.7475281, -4.7119343, 0.0], [15.7489014, -4.7119343, 0.0], [15.7502747, -4.7119343, 0.0], [15.7502747, -4.7105657, 0.0]]]}}, {"type": "Feature", "properties": {"id": 312}, "geometry": {"type": "Polygon", "coordinates": [[[15.7447815, -4.7105657, 0.0], [15.7447815, -4.7119343, 0.0], [15.7461548, -4.7119343, 0.0], [15.7461548, -4.7105657, 0.0], [15.7447815, -4.7105657, 0.0]]]}}, {"type": "Feature", "properties": {"id": 313}, "geometry": {"type": "Polygon", "coordinates": [[[15.8601379, -4.7064597, 0.0], [15.8601379, -4.7078284, 0.0], [15.8615112, -4.7078284, 0.0], [15.8615112, -4.7064597, 0.0], [15.8601379, -4.7064597, 0.0]]]}}, {"type": "Feature", "properties": {"id": 314}, "geometry": {"type": "Polygon", "coordinates": [[[15.7969666, -4.7064597, 0.0], [15.7969666, -4.7078284, 0.0], [15.7983398, -4.7078284, 0.0], [15.7983398, -4.7064597, 0.0], [15.7969666, -4.7064597, 0.0]]]}}, {"type": "Feature", "properties": {"id": 315}, "geometry": {"type": "Polygon", "coordinates": [[[15.8052063, -4.7064597, 0.0], [15.8052063, -4.7078284, 0.0], [15.8065796, -4.7078284, 0.0], [15.8065796, -4.7064597, 0.0], [15.8052063, -4.7064597, 0.0]]]}}, {"type": "Feature", "properties": {"id": 316}, "geometry": {"type": "Polygon", "coordinates": [[[15.770874, -4.7064597, 0.0], [15.7722473, -4.7064597, 0.0], [15.7722473, -4.7050911, 0.0], [15.7722473, -4.7037224, 0.0], [15.770874, -4.7037224, 0.0], [15.7695007, -4.7037224, 0.0], [15.7681274, -4.7037224, 0.0], [15.7681274, -4.7050911, 0.0], [15.7695007, -4.7050911, 0.0], [15.7695007, -4.7064597, 0.0], [15.7695007, -4.7078284, 0.0], [15.770874, -4.7078284, 0.0], [15.770874, -4.7064597, 0.0]]]}}, {"type": "Feature", "properties": {"id": 317}, "geometry": {"type": "Polygon", "coordinates": [[[15.7640076, -4.7064597, 0.0], [15.7640076, -4.7078284, 0.0], [15.7653809, -4.7078284, 0.0], [15.7653809, -4.7064597, 0.0], [15.7640076, -4.7064597, 0.0]]]}}, {"type": "Feature", "properties": {"id": 318}, "geometry": {"type": "Polygon", "coordinates": [[[15.761261, -4.7064597, 0.0], [15.7598877, -4.7064597, 0.0], [15.7598877, -4.7078284, 0.0], [15.761261, -4.7078284, 0.0], [15.7626343, -4.7078284, 0.0], [15.7626343, -4.7064597, 0.0], [15.761261, -4.7064597, 0.0]]]}}, {"type": "Feature", "properties": {"id": 319}, "geometry": {"type": "Polygon", "coordinates": [[[15.7406616, -4.7064597, 0.0], [15.7406616, -4.7050911, 0.0], [15.7406616, -4.7037224, 0.0], [15.7392883, -4.7037224, 0.0], [15.737915, -4.7037224, 0.0], [15.737915, -4.7050911, 0.0], [15.7392883, -4.7050911, 0.0], [15.7392883, -4.7064597, 0.0], [15.7392883, -4.7078284, 0.0], [15.7406616, -4.7078284, 0.0], [15.7406616, -4.7064597, 0.0]]]}}, {"type": "Feature", "properties": {"id": 320}, "geometry": {"type": "Polygon", "coordinates": [[[15.7447815, -4.7064597, 0.0], [15.7447815, -4.7078284, 0.0], [15.7461548, -4.7078284, 0.0], [15.7461548, -4.7064597, 0.0], [15.7447815, -4.7064597, 0.0]]]}}, {"type": "Feature", "properties": {"id": 321}, "geometry": {"type": "Polygon", "coordinates": [[[15.7434082, -4.7064597, 0.0], [15.7434082, -4.7050911, 0.0], [15.7420349, -4.7050911, 0.0], [15.7420349, -4.7064597, 0.0], [15.7420349, -4.7078284, 0.0], [15.7434082, -4.7078284, 0.0], [15.7434082, -4.7064597, 0.0]]]}}, {"type": "Feature", "properties": {"id": 322}, "geometry": {"type": "Polygon", "coordinates": [[[15.7516479, -4.7064597, 0.0], [15.7516479, -4.7078284, 0.0], [15.7530212, -4.7078284, 0.0], [15.7530212, -4.7064597, 0.0], [15.7516479, -4.7064597, 0.0]]]}}, {"type": "Feature", "properties": {"id": 323}, "geometry": {"type": "Polygon", "coordinates": [[[15.8848572, -4.7050911, 0.0], [15.8848572, -4.7064597, 0.0], [15.8862305, -4.7064597, 0.0], [15.8862305, -4.7050911, 0.0], [15.8848572, -4.7050911, 0.0]]]}}, {"type": "Feature", "properties": {"id": 324}, "geometry": {"type": "Polygon", "coordinates": [[[15.728302, -4.7050911, 0.0], [15.728302, -4.7064597, 0.0], [15.7296753, -4.7064597, 0.0], [15.7296753, -4.7050911, 0.0], [15.728302, -4.7050911, 0.0]]]}}, {"type": "Feature", "properties": {"id": 325}, "geometry": {"type": "Polygon", "coordinates": [[[15.7228088, -4.7050911, 0.0], [15.7228088, -4.7064597, 0.0], [15.7241821, -4.7064597, 0.0], [15.7255554, -4.7064597, 0.0], [15.7255554, -4.7050911, 0.0], [15.7241821, -4.7050911, 0.0], [15.7228088, -4.7050911, 0.0]]]}}, {"type": "Feature", "properties": {"id": 326}, "geometry": {"type": "Polygon", "coordinates": [[[15.869751, -4.7037224, 0.0], [15.869751, -4.7050911, 0.0], [15.8711243, -4.7050911, 0.0], [15.8711243, -4.7037224, 0.0], [15.869751, -4.7037224, 0.0]]]}}, {"type": "Feature", "properties": {"id": 327}, "geometry": {"type": "Polygon", "coordinates": [[[15.7598877, -4.7037224, 0.0], [15.7598877, -4.7050911, 0.0], [15.761261, -4.7050911, 0.0], [15.761261, -4.7037224, 0.0], [15.7598877, -4.7037224, 0.0]]]}}, {"type": "Feature", "properties": {"id": 328}, "geometry": {"type": "Polygon", "coordinates": [[[15.7269287, -4.7037224, 0.0], [15.7269287, -4.7050911, 0.0], [15.728302, -4.7050911, 0.0], [15.728302, -4.7037224, 0.0], [15.7269287, -4.7037224, 0.0]]]}}, {"type": "Feature", "properties": {"id": 329}, "geometry": {"type": "Polygon", "coordinates": [[[15.8834839, -4.6996164, 0.0], [15.8834839, -4.7009851, 0.0], [15.8848572, -4.7009851, 0.0], [15.8848572, -4.6996164, 0.0], [15.8834839, -4.6996164, 0.0]]]}}, {"type": "Feature", "properties": {"id": 330}, "geometry": {"type": "Polygon", "coordinates": [[[15.7406616, -4.6996164, 0.0], [15.7406616, -4.7009851, 0.0], [15.7420349, -4.7009851, 0.0], [15.7420349, -4.6996164, 0.0], [15.7406616, -4.6996164, 0.0]]]}}, {"type": "Feature", "properties": {"id": 331}, "geometry": {"type": "Polygon", "coordinates": [[[15.7447815, -4.6996164, 0.0], [15.7447815, -4.7009851, 0.0], [15.7461548, -4.7009851, 0.0], [15.7461548, -4.6996164, 0.0], [15.7447815, -4.6996164, 0.0]]]}}, {"type": "Feature", "properties": {"id": 332}, "geometry": {"type": "Polygon", "coordinates": [[[15.7406616, -4.6982477, 0.0], [15.7406616, -4.696879, 0.0], [15.7392883, -4.696879, 0.0], [15.737915, -4.696879, 0.0], [15.737915, -4.6982477, 0.0], [15.737915, -4.6996164, 0.0], [15.7392883, -4.6996164, 0.0], [15.7406616, -4.6996164, 0.0], [15.7406616, -4.6982477, 0.0]]]}}, {"type": "Feature", "properties": {"id": 333}, "geometry": {"type": "Polygon", "coordinates": [[[15.7351685, -4.696879, 0.0], [15.7351685, -4.6982477, 0.0], [15.7365417, -4.6982477, 0.0], [15.7365417, -4.696879, 0.0], [15.7351685, -4.696879, 0.0]]]}}, {"type": "Feature", "properties": {"id": 334}, "geometry": {"type": "Polygon", "coordinates": [[[15.8093262, -4.696879, 0.0], [15.8093262, -4.6955103, 0.0], [15.8093262, -4.6941417, 0.0], [15.8106995, -4.6941417, 0.0], [15.8106995, -4.692773, 0.0], [15.8106995, -4.6914043, 0.0], [15.8093262, -4.6914043, 0.0], [15.8093262, -4.692773, 0.0], [15.8079529, -4.692773, 0.0], [15.8079529, -4.6941417, 0.0], [15.8065796, -4.6941417, 0.0], [15.8065796, -4.6955103, 0.0], [15.8065796, -4.696879, 0.0], [15.8079529, -4.696879, 0.0], [15.8079529, -4.6982477, 0.0], [15.8093262, -4.6982477, 0.0], [15.8093262, -4.696879, 0.0]]]}}, {"type": "Feature", "properties": {"id": 335}, "geometry": {"type": "Polygon", "coordinates": [[[15.7873535, -4.696879, 0.0], [15.7873535, -4.6982477, 0.0], [15.7887268, -4.6982477, 0.0], [15.7887268, -4.696879, 0.0], [15.7873535, -4.696879, 0.0]]]}}, {"type": "Feature", "properties": {"id": 336}, "geometry": {"type": "Polygon", "coordinates": [[[15.7722473, -4.696879, 0.0], [15.7722473, -4.6982477, 0.0], [15.7736206, -4.6982477, 0.0], [15.7736206, -4.696879, 0.0], [15.7722473, -4.696879, 0.0]]]}}, {"type": "Feature", "properties": {"id": 337}, "geometry": {"type": "Polygon", "coordinates": [[[15.7489014, -4.6955103, 0.0], [15.7489014, -4.696879, 0.0], [15.7502747, -4.696879, 0.0], [15.7502747, -4.6955103, 0.0], [15.7489014, -4.6955103, 0.0]]]}}, {"type": "Feature", "properties": {"id": 338}, "geometry": {"type": "Polygon", "coordinates": [[[15.8216858, -4.692773, 0.0], [15.8216858, -4.6941417, 0.0], [15.8230591, -4.6941417, 0.0], [15.8230591, -4.692773, 0.0], [15.8216858, -4.692773, 0.0]]]}}, {"type": "Feature", "properties": {"id": 339}, "geometry": {"type": "Polygon", "coordinates": [[[15.7489014, -4.692773, 0.0], [15.7489014, -4.6941417, 0.0], [15.7502747, -4.6941417, 0.0], [15.7502747, -4.692773, 0.0], [15.7489014, -4.692773, 0.0]]]}}, {"type": "Feature", "properties": {"id": 340}, "geometry": {"type": "Polygon", "coordinates": [[[15.7461548, -4.692773, 0.0], [15.7461548, -4.6941417, 0.0], [15.7475281, -4.6941417, 0.0], [15.7475281, -4.692773, 0.0], [15.7461548, -4.692773, 0.0]]]}}, {"type": "Feature", "properties": {"id": 341}, "geometry": {"type": "Polygon", "coordinates": [[[15.7296753, -4.6900356, 0.0], [15.7296753, -4.6886669, 0.0], [15.728302, -4.6886669, 0.0], [15.728302, -4.6900356, 0.0], [15.728302, -4.6914043, 0.0], [15.7296753, -4.6914043, 0.0], [15.7296753, -4.6900356, 0.0]]]}}, {"type": "Feature", "properties": {"id": 342}, "geometry": {"type": "Polygon", "coordinates": [[[15.8917236, -4.6914043, 0.0], [15.8930969, -4.6914043, 0.0], [15.8930969, -4.6900356, 0.0], [15.8917236, -4.6900356, 0.0], [15.8917236, -4.6886669, 0.0], [15.8903503, -4.6886669, 0.0], [15.8903503, -4.6900356, 0.0], [15.8903503, -4.6914043, 0.0], [15.8917236, -4.6914043, 0.0]]]}}, {"type": "Feature", "properties": {"id": 343}, "geometry": {"type": "Polygon", "coordinates": [[[15.8120728, -4.6914043, 0.0], [15.8120728, -4.692773, 0.0], [15.813446, -4.692773, 0.0], [15.813446, -4.6914043, 0.0], [15.8120728, -4.6914043, 0.0]]]}}, {"type": "Feature", "properties": {"id": 344}, "geometry": {"type": "Polygon", "coordinates": [[[15.7598877, -4.6900356, 0.0], [15.7598877, -4.6886669, 0.0], [15.7585144, -4.6886669, 0.0], [15.7585144, -4.6900356, 0.0], [15.7585144, -4.6914043, 0.0], [15.7598877, -4.6914043, 0.0], [15.7598877, -4.6900356, 0.0]]]}}, {"type": "Feature", "properties": {"id": 345}, "geometry": {"type": "Polygon", "coordinates": [[[15.7585144, -4.6831921, 0.0], [15.7585144, -4.6845608, 0.0], [15.7598877, -4.6845608, 0.0], [15.7598877, -4.6831921, 0.0], [15.7585144, -4.6831921, 0.0]]]}}, {"type": "Feature", "properties": {"id": 346}, "geometry": {"type": "Polygon", "coordinates": [[[15.8285522, -4.6831921, 0.0], [15.8285522, -4.6845608, 0.0], [15.8299255, -4.6845608, 0.0], [15.8299255, -4.6831921, 0.0], [15.8285522, -4.6831921, 0.0]]]}}, {"type": "Feature", "properties": {"id": 347}, "geometry": {"type": "Polygon", "coordinates": [[[15.8972168, -4.6818234, 0.0], [15.8972168, -4.6831921, 0.0], [15.8985901, -4.6831921, 0.0], [15.8985901, -4.6818234, 0.0], [15.8972168, -4.6818234, 0.0]]]}}, {"type": "Feature", "properties": {"id": 348}, "geometry": {"type": "Polygon", "coordinates": [[[15.7598877, -4.6872982, 0.0], [15.7598877, -4.6886669, 0.0], [15.761261, -4.6886669, 0.0], [15.761261, -4.6872982, 0.0], [15.7598877, -4.6872982, 0.0]]]}}, {"type": "Feature", "properties": {"id": 349}, "geometry": {"type": "Polygon", "coordinates": [[[15.7543945, -4.6872982, 0.0], [15.7530212, -4.6872982, 0.0], [15.7530212, -4.6886669, 0.0], [15.7543945, -4.6886669, 0.0], [15.7557678, -4.6886669, 0.0], [15.7557678, -4.6872982, 0.0], [15.7543945, -4.6872982, 0.0]]]}}, {"type": "Feature", "properties": {"id": 350}, "geometry": {"type": "Polygon", "coordinates": [[[15.7447815, -4.6872982, 0.0], [15.7447815, -4.6886669, 0.0], [15.7461548, -4.6886669, 0.0], [15.7461548, -4.6872982, 0.0], [15.7447815, -4.6872982, 0.0]]]}}, {"type": "Feature", "properties": {"id": 351}, "geometry": {"type": "Polygon", "coordinates": [[[15.7598877, -4.6804547, 0.0], [15.7585144, -4.6804547, 0.0], [15.7585144, -4.6818234, 0.0], [15.7598877, -4.6818234, 0.0], [15.761261, -4.6818234, 0.0], [15.761261, -4.6804547, 0.0], [15.7598877, -4.6804547, 0.0]]]}}, {"type": "Feature", "properties": {"id": 352}, "geometry": {"type": "Polygon", "coordinates": [[[15.8299255, -4.6804547, 0.0], [15.8299255, -4.679086, 0.0], [15.8285522, -4.679086, 0.0], [15.8285522, -4.6804547, 0.0], [15.8285522, -4.6818234, 0.0], [15.8299255, -4.6818234, 0.0], [15.8299255, -4.6804547, 0.0]]]}}, {"type": "Feature", "properties": {"id": 353}, "geometry": {"type": "Polygon", "coordinates": [[[15.8917236, -4.6804547, 0.0], [15.8917236, -4.6818234, 0.0], [15.8930969, -4.6818234, 0.0], [15.8930969, -4.6804547, 0.0], [15.8917236, -4.6804547, 0.0]]]}}, {"type": "Feature", "properties": {"id": 354}, "geometry": {"type": "Polygon", "coordinates": [[[15.7571411, -4.6722424, 0.0], [15.7571411, -4.6708736, 0.0], [15.7557678, -4.6708736, 0.0], [15.7557678, -4.6722424, 0.0], [15.7557678, -4.6736111, 0.0], [15.7571411, -4.6736111, 0.0], [15.7571411, -4.6722424, 0.0]]]}}, {"type": "Feature", "properties": {"id": 355}, "geometry": {"type": "Polygon", "coordinates": [[[15.7695007, -4.6708736, 0.0], [15.770874, -4.6708736, 0.0], [15.770874, -4.6695049, 0.0], [15.7695007, -4.6695049, 0.0], [15.7695007, -4.6681362, 0.0], [15.7681274, -4.6681362, 0.0], [15.7681274, -4.6695049, 0.0], [15.7681274, -4.6708736, 0.0], [15.7695007, -4.6708736, 0.0]]]}}, {"type": "Feature", "properties": {"id": 356}, "geometry": {"type": "Polygon", "coordinates": [[[15.7763672, -4.6695049, 0.0], [15.7763672, -4.6681362, 0.0], [15.7777405, -4.6681362, 0.0], [15.7777405, -4.6667674, 0.0], [15.7777405, -4.6653987, 0.0], [15.7763672, -4.6653987, 0.0], [15.7749939, -4.6653987, 0.0], [15.7749939, -4.6667674, 0.0], [15.7749939, -4.6681362, 0.0], [15.7749939, -4.6695049, 0.0], [15.7749939, -4.6708736, 0.0], [15.7763672, -4.6708736, 0.0], [15.7763672, -4.6695049, 0.0]]]}}, {"type": "Feature", "properties": {"id": 357}, "geometry": {"type": "Polygon", "coordinates": [[[15.7516479, -4.6681362, 0.0], [15.7516479, -4.6695049, 0.0], [15.7530212, -4.6695049, 0.0], [15.7530212, -4.6681362, 0.0], [15.7516479, -4.6681362, 0.0]]]}}, {"type": "Feature", "properties": {"id": 358}, "geometry": {"type": "Polygon", "coordinates": [[[15.8244324, -4.6681362, 0.0], [15.8244324, -4.6695049, 0.0], [15.8258057, -4.6695049, 0.0], [15.8258057, -4.6681362, 0.0], [15.8244324, -4.6681362, 0.0]]]}}, {"type": "Feature", "properties": {"id": 359}, "geometry": {"type": "Polygon", "coordinates": [[[15.7461548, -4.66403, 0.0], [15.7461548, -4.6653987, 0.0], [15.7475281, -4.6653987, 0.0], [15.7475281, -4.66403, 0.0], [15.7461548, -4.66403, 0.0]]]}}, {"type": "Feature", "properties": {"id": 360}, "geometry": {"type": "Polygon", "coordinates": [[[15.90271, -4.6626612, 0.0], [15.90271, -4.66403, 0.0], [15.9040833, -4.66403, 0.0], [15.9040833, -4.6626612, 0.0], [15.90271, -4.6626612, 0.0]]]}}, {"type": "Feature", "properties": {"id": 361}, "geometry": {"type": "Polygon", "coordinates": [[[15.7955933, -4.66403, 0.0], [15.7955933, -4.6653987, 0.0], [15.7969666, -4.6653987, 0.0], [15.7969666, -4.66403, 0.0], [15.7955933, -4.66403, 0.0]]]}}, {"type": "Feature", "properties": {"id": 362}, "geometry": {"type": "Polygon", "coordinates": [[[15.7585144, -4.66403, 0.0], [15.7585144, -4.6653987, 0.0], [15.7598877, -4.6653987, 0.0], [15.7598877, -4.66403, 0.0], [15.7585144, -4.66403, 0.0]]]}}, {"type": "Feature", "properties": {"id": 363}, "geometry": {"type": "Polygon", "coordinates": [[[15.8189392, -4.6612925, 0.0], [15.8189392, -4.6626612, 0.0], [15.8203125, -4.6626612, 0.0], [15.8203125, -4.6612925, 0.0], [15.8189392, -4.6612925, 0.0]]]}}, {"type": "Feature", "properties": {"id": 364}, "geometry": {"type": "Polygon", "coordinates": [[[15.827179, -4.6612925, 0.0], [15.827179, -4.6626612, 0.0], [15.8285522, -4.6626612, 0.0], [15.8285522, -4.6612925, 0.0], [15.827179, -4.6612925, 0.0]]]}}, {"type": "Feature", "properties": {"id": 365}, "geometry": {"type": "Polygon", "coordinates": [[[15.8958435, -4.6612925, 0.0], [15.8958435, -4.6626612, 0.0], [15.8972168, -4.6626612, 0.0], [15.8972168, -4.6612925, 0.0], [15.8958435, -4.6612925, 0.0]]]}}, {"type": "Feature", "properties": {"id": 366}, "geometry": {"type": "Polygon", "coordinates": [[[15.7502747, -4.6599237, 0.0], [15.7502747, -4.6612925, 0.0], [15.7516479, -4.6612925, 0.0], [15.7516479, -4.6599237, 0.0], [15.7502747, -4.6599237, 0.0]]]}}, {"type": "Feature", "properties": {"id": 367}, "geometry": {"type": "Polygon", "coordinates": [[[15.7461548, -4.6777173, 0.0], [15.7461548, -4.679086, 0.0], [15.7475281, -4.679086, 0.0], [15.7475281, -4.6777173, 0.0], [15.7461548, -4.6777173, 0.0]]]}}, {"type": "Feature", "properties": {"id": 368}, "geometry": {"type": "Polygon", "coordinates": [[[15.827179, -4.6763485, 0.0], [15.8258057, -4.6763485, 0.0], [15.8258057, -4.6777173, 0.0], [15.827179, -4.6777173, 0.0], [15.8285522, -4.6777173, 0.0], [15.8285522, -4.6763485, 0.0], [15.827179, -4.6763485, 0.0]]]}}, {"type": "Feature", "properties": {"id": 369}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -4.6763485, 0.0], [15.7530212, -4.6749798, 0.0], [15.7530212, -4.6736111, 0.0], [15.7516479, -4.6736111, 0.0], [15.7516479, -4.6749798, 0.0], [15.7516479, -4.6763485, 0.0], [15.7516479, -4.6777173, 0.0], [15.7530212, -4.6777173, 0.0], [15.7530212, -4.6763485, 0.0]]]}}, {"type": "Feature", "properties": {"id": 370}, "geometry": {"type": "Polygon", "coordinates": [[[15.8065796, -4.6749798, 0.0], [15.8065796, -4.6763485, 0.0], [15.8079529, -4.6763485, 0.0], [15.8079529, -4.6749798, 0.0], [15.8065796, -4.6749798, 0.0]]]}}, {"type": "Feature", "properties": {"id": 371}, "geometry": {"type": "Polygon", "coordinates": [[[15.737915, -4.6749798, 0.0], [15.737915, -4.6763485, 0.0], [15.7392883, -4.6763485, 0.0], [15.7392883, -4.6749798, 0.0], [15.737915, -4.6749798, 0.0]]]}}, {"type": "Feature", "properties": {"id": 372}, "geometry": {"type": "Polygon", "coordinates": [[[15.7475281, -4.6558174, 0.0], [15.7461548, -4.6558174, 0.0], [15.7461548, -4.6571862, 0.0], [15.7475281, -4.6571862, 0.0], [15.7489014, -4.6571862, 0.0], [15.7489014, -4.6558174, 0.0], [15.7475281, -4.6558174, 0.0]]]}}, {"type": "Feature", "properties": {"id": 373}, "geometry": {"type": "Polygon", "coordinates": [[[15.8052063, -4.6558174, 0.0], [15.8052063, -4.6571862, 0.0], [15.8065796, -4.6571862, 0.0], [15.8065796, -4.6558174, 0.0], [15.8052063, -4.6558174, 0.0]]]}}, {"type": "Feature", "properties": {"id": 374}, "geometry": {"type": "Polygon", "coordinates": [[[15.8175659, -4.6558174, 0.0], [15.8189392, -4.6558174, 0.0], [15.8189392, -4.6544487, 0.0], [15.8175659, -4.6544487, 0.0], [15.8175659, -4.6530799, 0.0], [15.8175659, -4.6517112, 0.0], [15.8161926, -4.6517112, 0.0], [15.8148193, -4.6517112, 0.0], [15.8148193, -4.6530799, 0.0], [15.8148193, -4.6544487, 0.0], [15.8161926, -4.6544487, 0.0], [15.8161926, -4.6558174, 0.0], [15.8175659, -4.6558174, 0.0]]]}}, {"type": "Feature", "properties": {"id": 375}, "geometry": {"type": "Polygon", "coordinates": [[[15.803833, -4.6544487, 0.0], [15.803833, -4.6558174, 0.0], [15.8052063, -4.6558174, 0.0], [15.8052063, -4.6544487, 0.0], [15.803833, -4.6544487, 0.0]]]}}, {"type": "Feature", "properties": {"id": 376}, "geometry": {"type": "Polygon", "coordinates": [[[15.8203125, -4.6530799, 0.0], [15.8203125, -4.6517112, 0.0], [15.8189392, -4.6517112, 0.0], [15.8189392, -4.6530799, 0.0], [15.8189392, -4.6544487, 0.0], [15.8203125, -4.6544487, 0.0], [15.8203125, -4.6530799, 0.0]]]}}, {"type": "Feature", "properties": {"id": 377}, "geometry": {"type": "Polygon", "coordinates": [[[15.8285522, -4.6489736, 0.0], [15.8285522, -4.6476048, 0.0], [15.8299255, -4.6476048, 0.0], [15.8299255, -4.6462361, 0.0], [15.8285522, -4.6462361, 0.0], [15.827179, -4.6462361, 0.0], [15.827179, -4.6476048, 0.0], [15.827179, -4.6489736, 0.0], [15.827179, -4.6503424, 0.0], [15.8285522, -4.6503424, 0.0], [15.8285522, -4.6489736, 0.0]]]}}, {"type": "Feature", "properties": {"id": 378}, "geometry": {"type": "Polygon", "coordinates": [[[15.9040833, -4.6476048, 0.0], [15.9040833, -4.6462361, 0.0], [15.90271, -4.6462361, 0.0], [15.90271, -4.6476048, 0.0], [15.90271, -4.6489736, 0.0], [15.9040833, -4.6489736, 0.0], [15.9040833, -4.6476048, 0.0]]]}}, {"type": "Feature", "properties": {"id": 379}, "geometry": {"type": "Polygon", "coordinates": [[[15.7502747, -4.6421297, 0.0], [15.7502747, -4.6407609, 0.0], [15.7489014, -4.6407609, 0.0], [15.7489014, -4.6393921, 0.0], [15.7475281, -4.6393921, 0.0], [15.7461548, -4.6393921, 0.0], [15.7461548, -4.6407609, 0.0], [15.7461548, -4.6421297, 0.0], [15.7475281, -4.6421297, 0.0], [15.7489014, -4.6421297, 0.0], [15.7489014, -4.6434985, 0.0], [15.7502747, -4.6434985, 0.0], [15.7502747, -4.6421297, 0.0]]]}}, {"type": "Feature", "properties": {"id": 380}, "geometry": {"type": "Polygon", "coordinates": [[[15.8312988, -4.6421297, 0.0], [15.8312988, -4.6434985, 0.0], [15.8326721, -4.6434985, 0.0], [15.8326721, -4.6421297, 0.0], [15.8312988, -4.6421297, 0.0]]]}}, {"type": "Feature", "properties": {"id": 381}, "geometry": {"type": "Polygon", "coordinates": [[[15.9082031, -4.6407609, 0.0], [15.9082031, -4.6393921, 0.0], [15.9082031, -4.6380233, 0.0], [15.9068298, -4.6380233, 0.0], [15.9068298, -4.6393921, 0.0], [15.9068298, -4.6407609, 0.0], [15.9068298, -4.6421297, 0.0], [15.9082031, -4.6421297, 0.0], [15.9082031, -4.6407609, 0.0]]]}}, {"type": "Feature", "properties": {"id": 382}, "geometry": {"type": "Polygon", "coordinates": [[[15.9068298, -4.6352858, 0.0], [15.9054565, -4.6352858, 0.0], [15.9054565, -4.6366545, 0.0], [15.9068298, -4.6366545, 0.0], [15.9082031, -4.6366545, 0.0], [15.9082031, -4.6352858, 0.0], [15.9068298, -4.6352858, 0.0]]]}}, {"type": "Feature", "properties": {"id": 383}, "geometry": {"type": "Polygon", "coordinates": [[[15.8862305, -4.6366545, 0.0], [15.8862305, -4.6380233, 0.0], [15.8876038, -4.6380233, 0.0], [15.8876038, -4.6366545, 0.0], [15.8862305, -4.6366545, 0.0]]]}}, {"type": "Feature", "properties": {"id": 384}, "geometry": {"type": "Polygon", "coordinates": [[[15.8381653, -4.6325481, 0.0], [15.8381653, -4.6311793, 0.0], [15.836792, -4.6311793, 0.0], [15.836792, -4.6325481, 0.0], [15.836792, -4.6339169, 0.0], [15.8381653, -4.6339169, 0.0], [15.8381653, -4.6325481, 0.0]]]}}, {"type": "Feature", "properties": {"id": 385}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -4.6325481, 0.0], [15.7530212, -4.6311793, 0.0], [15.7516479, -4.6311793, 0.0], [15.7516479, -4.6325481, 0.0], [15.7516479, -4.6339169, 0.0], [15.7530212, -4.6339169, 0.0], [15.7530212, -4.6325481, 0.0]]]}}, {"type": "Feature", "properties": {"id": 386}, "geometry": {"type": "Polygon", "coordinates": [[[15.7461548, -4.6325481, 0.0], [15.7461548, -4.6311793, 0.0], [15.7447815, -4.6311793, 0.0], [15.7447815, -4.6325481, 0.0], [15.7434082, -4.6325481, 0.0], [15.7434082, -4.6339169, 0.0], [15.7447815, -4.6339169, 0.0], [15.7461548, -4.6339169, 0.0], [15.7461548, -4.6325481, 0.0]]]}}, {"type": "Feature", "properties": {"id": 387}, "geometry": {"type": "Polygon", "coordinates": [[[15.7447815, -4.6352858, 0.0], [15.7447815, -4.6366545, 0.0], [15.7461548, -4.6366545, 0.0], [15.7461548, -4.6352858, 0.0], [15.7447815, -4.6352858, 0.0]]]}}, {"type": "Feature", "properties": {"id": 388}, "geometry": {"type": "Polygon", "coordinates": [[[15.8312988, -4.6352858, 0.0], [15.8312988, -4.6366545, 0.0], [15.8326721, -4.6366545, 0.0], [15.8326721, -4.6352858, 0.0], [15.8312988, -4.6352858, 0.0]]]}}, {"type": "Feature", "properties": {"id": 389}, "geometry": {"type": "Polygon", "coordinates": [[[15.7502747, -4.6339169, 0.0], [15.7502747, -4.6325481, 0.0], [15.7489014, -4.6325481, 0.0], [15.7475281, -4.6325481, 0.0], [15.7475281, -4.6339169, 0.0], [15.7461548, -4.6339169, 0.0], [15.7461548, -4.6352858, 0.0], [15.7475281, -4.6352858, 0.0], [15.7489014, -4.6352858, 0.0], [15.7502747, -4.6352858, 0.0], [15.7502747, -4.6339169, 0.0]]]}}, {"type": "Feature", "properties": {"id": 390}, "geometry": {"type": "Polygon", "coordinates": [[[15.8972168, -4.6284417, 0.0], [15.8972168, -4.6298105, 0.0], [15.8985901, -4.6298105, 0.0], [15.8985901, -4.6284417, 0.0], [15.8972168, -4.6284417, 0.0]]]}}, {"type": "Feature", "properties": {"id": 391}, "geometry": {"type": "Polygon", "coordinates": [[[15.7928467, -4.6270729, 0.0], [15.79422, -4.6270729, 0.0], [15.79422, -4.6257041, 0.0], [15.79422, -4.6243353, 0.0], [15.7928467, -4.6243353, 0.0], [15.7928467, -4.6229664, 0.0], [15.7914734, -4.6229664, 0.0], [15.7914734, -4.6243353, 0.0], [15.7914734, -4.6257041, 0.0], [15.7914734, -4.6270729, 0.0], [15.7928467, -4.6270729, 0.0]]]}}, {"type": "Feature", "properties": {"id": 392}, "geometry": {"type": "Polygon", "coordinates": [[[15.8615112, -4.6298105, 0.0], [15.8615112, -4.6311793, 0.0], [15.8628845, -4.6311793, 0.0], [15.8642578, -4.6311793, 0.0], [15.8642578, -4.6298105, 0.0], [15.8628845, -4.6298105, 0.0], [15.8615112, -4.6298105, 0.0]]]}}, {"type": "Feature", "properties": {"id": 393}, "geometry": {"type": "Polygon", "coordinates": [[[15.8903503, -4.6284417, 0.0], [15.8917236, -4.6284417, 0.0], [15.8917236, -4.6270729, 0.0], [15.8903503, -4.6270729, 0.0], [15.8889771, -4.6270729, 0.0], [15.8889771, -4.6257041, 0.0], [15.8876038, -4.6257041, 0.0], [15.8876038, -4.6270729, 0.0], [15.8876038, -4.6284417, 0.0], [15.8889771, -4.6284417, 0.0], [15.8889771, -4.6298105, 0.0], [15.8903503, -4.6298105, 0.0], [15.8903503, -4.6284417, 0.0]]]}}, {"type": "Feature", "properties": {"id": 394}, "geometry": {"type": "Polygon", "coordinates": [[[15.9013367, -4.6243353, 0.0], [15.9013367, -4.6257041, 0.0], [15.90271, -4.6257041, 0.0], [15.9040833, -4.6257041, 0.0], [15.9040833, -4.6243353, 0.0], [15.90271, -4.6243353, 0.0], [15.9013367, -4.6243353, 0.0]]]}}, {"type": "Feature", "properties": {"id": 395}, "geometry": {"type": "Polygon", "coordinates": [[[15.8903503, -4.6243353, 0.0], [15.8903503, -4.6257041, 0.0], [15.8917236, -4.6257041, 0.0], [15.8917236, -4.6243353, 0.0], [15.8903503, -4.6243353, 0.0]]]}}, {"type": "Feature", "properties": {"id": 396}, "geometry": {"type": "Polygon", "coordinates": [[[15.7598877, -4.6229664, 0.0], [15.7598877, -4.6243353, 0.0], [15.761261, -4.6243353, 0.0], [15.761261, -4.6229664, 0.0], [15.7598877, -4.6229664, 0.0]]]}}, {"type": "Feature", "properties": {"id": 397}, "geometry": {"type": "Polygon", "coordinates": [[[15.879364, -4.6229664, 0.0], [15.879364, -4.6243353, 0.0], [15.8807373, -4.6243353, 0.0], [15.8807373, -4.6229664, 0.0], [15.879364, -4.6229664, 0.0]]]}}, {"type": "Feature", "properties": {"id": 398}, "geometry": {"type": "Polygon", "coordinates": [[[15.8944702, -4.6133846, 0.0], [15.8944702, -4.6147535, 0.0], [15.8958435, -4.6147535, 0.0], [15.8958435, -4.6133846, 0.0], [15.8944702, -4.6133846, 0.0]]]}}, {"type": "Feature", "properties": {"id": 399}, "geometry": {"type": "Polygon", "coordinates": [[[15.7392883, -4.6133846, 0.0], [15.7392883, -4.6147535, 0.0], [15.7406616, -4.6147535, 0.0], [15.7406616, -4.6133846, 0.0], [15.7392883, -4.6133846, 0.0]]]}}, {"type": "Feature", "properties": {"id": 400}, "geometry": {"type": "Polygon", "coordinates": [[[15.7695007, -4.6065404, 0.0], [15.7695007, -4.6079092, 0.0], [15.770874, -4.6079092, 0.0], [15.770874, -4.6065404, 0.0], [15.7695007, -4.6065404, 0.0]]]}}, {"type": "Feature", "properties": {"id": 401}, "geometry": {"type": "Polygon", "coordinates": [[[15.6980896, -4.6038027, 0.0], [15.6980896, -4.6024338, 0.0], [15.6967163, -4.6024338, 0.0], [15.6967163, -4.6038027, 0.0], [15.6967163, -4.6051715, 0.0], [15.6980896, -4.6051715, 0.0], [15.6980896, -4.6038027, 0.0]]]}}, {"type": "Feature", "properties": {"id": 402}, "geometry": {"type": "Polygon", "coordinates": [[[15.8450317, -4.6051715, 0.0], [15.8450317, -4.6065404, 0.0], [15.846405, -4.6065404, 0.0], [15.846405, -4.6051715, 0.0], [15.8450317, -4.6051715, 0.0]]]}}, {"type": "Feature", "properties": {"id": 403}, "geometry": {"type": "Polygon", "coordinates": [[[15.846405, -4.6038027, 0.0], [15.846405, -4.6051715, 0.0], [15.8477783, -4.6051715, 0.0], [15.8477783, -4.6038027, 0.0], [15.846405, -4.6038027, 0.0]]]}}, {"type": "Feature", "properties": {"id": 404}, "geometry": {"type": "Polygon", "coordinates": [[[15.8821106, -4.6174911, 0.0], [15.8821106, -4.61886, 0.0], [15.8834839, -4.61886, 0.0], [15.8834839, -4.6174911, 0.0], [15.8821106, -4.6174911, 0.0]]]}}, {"type": "Feature", "properties": {"id": 405}, "geometry": {"type": "Polygon", "coordinates": [[[15.8917236, -4.6174911, 0.0], [15.8917236, -4.61886, 0.0], [15.8930969, -4.61886, 0.0], [15.8944702, -4.61886, 0.0], [15.8944702, -4.6174911, 0.0], [15.8930969, -4.6174911, 0.0], [15.8917236, -4.6174911, 0.0]]]}}, {"type": "Feature", "properties": {"id": 406}, "geometry": {"type": "Polygon", "coordinates": [[[15.8587646, -4.6024338, 0.0], [15.8587646, -4.6038027, 0.0], [15.8601379, -4.6038027, 0.0], [15.8601379, -4.6024338, 0.0], [15.8587646, -4.6024338, 0.0]]]}}, {"type": "Feature", "properties": {"id": 407}, "geometry": {"type": "Polygon", "coordinates": [[[15.737915, -4.6024338, 0.0], [15.737915, -4.6010649, 0.0], [15.7365417, -4.6010649, 0.0], [15.7365417, -4.6024338, 0.0], [15.7365417, -4.6038027, 0.0], [15.737915, -4.6038027, 0.0], [15.737915, -4.6024338, 0.0]]]}}, {"type": "Feature", "properties": {"id": 408}, "geometry": {"type": "Polygon", "coordinates": [[[15.7337952, -4.6024338, 0.0], [15.7337952, -4.6038027, 0.0], [15.7351685, -4.6038027, 0.0], [15.7351685, -4.6024338, 0.0], [15.7337952, -4.6024338, 0.0]]]}}, {"type": "Feature", "properties": {"id": 409}, "geometry": {"type": "Polygon", "coordinates": [[[15.8862305, -4.6010649, 0.0], [15.8862305, -4.6024338, 0.0], [15.8876038, -4.6024338, 0.0], [15.8889771, -4.6024338, 0.0], [15.8903503, -4.6024338, 0.0], [15.8903503, -4.6010649, 0.0], [15.8889771, -4.6010649, 0.0], [15.8876038, -4.6010649, 0.0], [15.8862305, -4.6010649, 0.0]]]}}, {"type": "Feature", "properties": {"id": 410}, "geometry": {"type": "Polygon", "coordinates": [[[15.8821106, -4.5955895, 0.0], [15.8807373, -4.5955895, 0.0], [15.8807373, -4.5969583, 0.0], [15.8821106, -4.5969583, 0.0], [15.8834839, -4.5969583, 0.0], [15.8834839, -4.5955895, 0.0], [15.8821106, -4.5955895, 0.0]]]}}, {"type": "Feature", "properties": {"id": 411}, "geometry": {"type": "Polygon", "coordinates": [[[15.846405, -4.5996961, 0.0], [15.846405, -4.6010649, 0.0], [15.8477783, -4.6010649, 0.0], [15.8477783, -4.5996961, 0.0], [15.846405, -4.5996961, 0.0]]]}}, {"type": "Feature", "properties": {"id": 412}, "geometry": {"type": "Polygon", "coordinates": [[[15.7736206, -4.5996961, 0.0], [15.7749939, -4.5996961, 0.0], [15.7749939, -4.5983272, 0.0], [15.7749939, -4.5969583, 0.0], [15.7749939, -4.5955895, 0.0], [15.7736206, -4.5955895, 0.0], [15.7736206, -4.5969583, 0.0], [15.7722473, -4.5969583, 0.0], [15.7722473, -4.5983272, 0.0], [15.7722473, -4.5996961, 0.0], [15.7722473, -4.6010649, 0.0], [15.7736206, -4.6010649, 0.0], [15.7736206, -4.5996961, 0.0]]]}}, {"type": "Feature", "properties": {"id": 413}, "geometry": {"type": "Polygon", "coordinates": [[[15.7543945, -4.5928517, 0.0], [15.7530212, -4.5928517, 0.0], [15.7530212, -4.5942206, 0.0], [15.7543945, -4.5942206, 0.0], [15.7557678, -4.5942206, 0.0], [15.7557678, -4.5928517, 0.0], [15.7543945, -4.5928517, 0.0]]]}}, {"type": "Feature", "properties": {"id": 414}, "geometry": {"type": "Polygon", "coordinates": [[[15.68573, -4.5914828, 0.0], [15.68573, -4.5928517, 0.0], [15.6871033, -4.5928517, 0.0], [15.6884766, -4.5928517, 0.0], [15.6884766, -4.5914828, 0.0], [15.6871033, -4.5914828, 0.0], [15.68573, -4.5914828, 0.0]]]}}, {"type": "Feature", "properties": {"id": 415}, "geometry": {"type": "Polygon", "coordinates": [[[15.8972168, -4.588745, 0.0], [15.8972168, -4.5901139, 0.0], [15.8985901, -4.5901139, 0.0], [15.8985901, -4.588745, 0.0], [15.8972168, -4.588745, 0.0]]]}}, {"type": "Feature", "properties": {"id": 416}, "geometry": {"type": "Polygon", "coordinates": [[[15.7392883, -4.588745, 0.0], [15.7392883, -4.5873762, 0.0], [15.737915, -4.5873762, 0.0], [15.7365417, -4.5873762, 0.0], [15.7351685, -4.5873762, 0.0], [15.7351685, -4.588745, 0.0], [15.7351685, -4.5901139, 0.0], [15.7365417, -4.5901139, 0.0], [15.737915, -4.5901139, 0.0], [15.7392883, -4.5901139, 0.0], [15.7392883, -4.588745, 0.0]]]}}, {"type": "Feature", "properties": {"id": 417}, "geometry": {"type": "Polygon", "coordinates": [[[15.6747437, -4.5860073, 0.0], [15.6747437, -4.5846384, 0.0], [15.6747437, -4.5832695, 0.0], [15.6747437, -4.5819006, 0.0], [15.6747437, -4.5805317, 0.0], [15.6733704, -4.5805317, 0.0], [15.6719971, -4.5805317, 0.0], [15.6719971, -4.5791628, 0.0], [15.6706238, -4.5791628, 0.0], [15.6706238, -4.5805317, 0.0], [15.6706238, -4.5819006, 0.0], [15.6706238, -4.5832695, 0.0], [15.6706238, -4.5846384, 0.0], [15.6719971, -4.5846384, 0.0], [15.6719971, -4.5860073, 0.0], [15.6733704, -4.5860073, 0.0], [15.6733704, -4.5873762, 0.0], [15.6747437, -4.5873762, 0.0], [15.6747437, -4.5860073, 0.0]]]}}, {"type": "Feature", "properties": {"id": 418}, "geometry": {"type": "Polygon", "coordinates": [[[15.8560181, -4.5860073, 0.0], [15.8560181, -4.5873762, 0.0], [15.8573914, -4.5873762, 0.0], [15.8573914, -4.5860073, 0.0], [15.8560181, -4.5860073, 0.0]]]}}, {"type": "Feature", "properties": {"id": 419}, "geometry": {"type": "Polygon", "coordinates": [[[15.8546448, -4.5846384, 0.0], [15.8546448, -4.5860073, 0.0], [15.8560181, -4.5860073, 0.0], [15.8560181, -4.5846384, 0.0], [15.8546448, -4.5846384, 0.0]]]}}, {"type": "Feature", "properties": {"id": 420}, "geometry": {"type": "Polygon", "coordinates": [[[15.7365417, -4.5846384, 0.0], [15.7365417, -4.5832695, 0.0], [15.7351685, -4.5832695, 0.0], [15.7351685, -4.5846384, 0.0], [15.7351685, -4.5860073, 0.0], [15.7365417, -4.5860073, 0.0], [15.7365417, -4.5846384, 0.0]]]}}, {"type": "Feature", "properties": {"id": 421}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.5832695, 0.0], [15.7557678, -4.5846384, 0.0], [15.7571411, -4.5846384, 0.0], [15.7571411, -4.5832695, 0.0], [15.7557678, -4.5832695, 0.0]]]}}, {"type": "Feature", "properties": {"id": 422}, "geometry": {"type": "Polygon", "coordinates": [[[15.6774902, -4.5819006, 0.0], [15.6774902, -4.5832695, 0.0], [15.6788635, -4.5832695, 0.0], [15.6788635, -4.5819006, 0.0], [15.6774902, -4.5819006, 0.0]]]}}, {"type": "Feature", "properties": {"id": 423}, "geometry": {"type": "Polygon", "coordinates": [[[15.7392883, -4.5819006, 0.0], [15.7392883, -4.5805317, 0.0], [15.737915, -4.5805317, 0.0], [15.737915, -4.5819006, 0.0], [15.737915, -4.5832695, 0.0], [15.7392883, -4.5832695, 0.0], [15.7392883, -4.5819006, 0.0]]]}}, {"type": "Feature", "properties": {"id": 424}, "geometry": {"type": "Polygon", "coordinates": [[[15.9164429, -4.5764249, 0.0], [15.9150696, -4.5764249, 0.0], [15.9150696, -4.5777938, 0.0], [15.9164429, -4.5777938, 0.0], [15.9178162, -4.5777938, 0.0], [15.9178162, -4.5764249, 0.0], [15.9164429, -4.5764249, 0.0]]]}}, {"type": "Feature", "properties": {"id": 425}, "geometry": {"type": "Polygon", "coordinates": [[[15.7434082, -4.5764249, 0.0], [15.7434082, -4.5777938, 0.0], [15.7447815, -4.5777938, 0.0], [15.7447815, -4.5764249, 0.0], [15.7434082, -4.5764249, 0.0]]]}}, {"type": "Feature", "properties": {"id": 426}, "geometry": {"type": "Polygon", "coordinates": [[[15.6802368, -4.5736871, 0.0], [15.6802368, -4.575056, 0.0], [15.6816101, -4.575056, 0.0], [15.6816101, -4.5736871, 0.0], [15.6802368, -4.5736871, 0.0]]]}}, {"type": "Feature", "properties": {"id": 427}, "geometry": {"type": "Polygon", "coordinates": [[[15.9178162, -4.5736871, 0.0], [15.9178162, -4.5723182, 0.0], [15.9178162, -4.5709493, 0.0], [15.9164429, -4.5709493, 0.0], [15.9164429, -4.5723182, 0.0], [15.9164429, -4.5736871, 0.0], [15.9164429, -4.575056, 0.0], [15.9178162, -4.575056, 0.0], [15.9178162, -4.5736871, 0.0]]]}}, {"type": "Feature", "properties": {"id": 428}, "geometry": {"type": "Polygon", "coordinates": [[[15.728302, -4.5723182, 0.0], [15.728302, -4.5709493, 0.0], [15.7269287, -4.5709493, 0.0], [15.7269287, -4.5723182, 0.0], [15.7269287, -4.5736871, 0.0], [15.728302, -4.5736871, 0.0], [15.728302, -4.5723182, 0.0]]]}}, {"type": "Feature", "properties": {"id": 429}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.5723182, 0.0], [15.7173157, -4.5736871, 0.0], [15.718689, -4.5736871, 0.0], [15.718689, -4.5723182, 0.0], [15.7173157, -4.5723182, 0.0]]]}}, {"type": "Feature", "properties": {"id": 430}, "geometry": {"type": "Polygon", "coordinates": [[[15.6761169, -4.5709493, 0.0], [15.6774902, -4.5709493, 0.0], [15.6774902, -4.5695803, 0.0], [15.6761169, -4.5695803, 0.0], [15.6747437, -4.5695803, 0.0], [15.6747437, -4.5709493, 0.0], [15.6747437, -4.5723182, 0.0], [15.6761169, -4.5723182, 0.0], [15.6761169, -4.5709493, 0.0]]]}}, {"type": "Feature", "properties": {"id": 431}, "geometry": {"type": "Polygon", "coordinates": [[[15.7063293, -4.5709493, 0.0], [15.7063293, -4.5723182, 0.0], [15.7077026, -4.5723182, 0.0], [15.7077026, -4.5709493, 0.0], [15.7063293, -4.5709493, 0.0]]]}}, {"type": "Feature", "properties": {"id": 432}, "geometry": {"type": "Polygon", "coordinates": [[[15.7008362, -4.5709493, 0.0], [15.7008362, -4.5723182, 0.0], [15.7022095, -4.5723182, 0.0], [15.7022095, -4.5709493, 0.0], [15.7008362, -4.5709493, 0.0]]]}}, {"type": "Feature", "properties": {"id": 433}, "geometry": {"type": "Polygon", "coordinates": [[[15.8587646, -4.5709493, 0.0], [15.8587646, -4.5723182, 0.0], [15.8601379, -4.5723182, 0.0], [15.8601379, -4.5709493, 0.0], [15.8587646, -4.5709493, 0.0]]]}}, {"type": "Feature", "properties": {"id": 434}, "geometry": {"type": "Polygon", "coordinates": [[[15.8505249, -4.5709493, 0.0], [15.8505249, -4.5723182, 0.0], [15.8518982, -4.5723182, 0.0], [15.8518982, -4.5709493, 0.0], [15.8505249, -4.5709493, 0.0]]]}}, {"type": "Feature", "properties": {"id": 435}, "geometry": {"type": "Polygon", "coordinates": [[[15.7461548, -4.5709493, 0.0], [15.7461548, -4.5695803, 0.0], [15.7447815, -4.5695803, 0.0], [15.7447815, -4.5709493, 0.0], [15.7434082, -4.5709493, 0.0], [15.7434082, -4.5723182, 0.0], [15.7447815, -4.5723182, 0.0], [15.7461548, -4.5723182, 0.0], [15.7461548, -4.5709493, 0.0]]]}}, {"type": "Feature", "properties": {"id": 436}, "geometry": {"type": "Polygon", "coordinates": [[[15.6719971, -4.5709493, 0.0], [15.6706238, -4.5709493, 0.0], [15.6706238, -4.5723182, 0.0], [15.6719971, -4.5723182, 0.0], [15.6733704, -4.5723182, 0.0], [15.6733704, -4.5709493, 0.0], [15.6719971, -4.5709493, 0.0]]]}}, {"type": "Feature", "properties": {"id": 437}, "geometry": {"type": "Polygon", "coordinates": [[[15.6980896, -4.5695803, 0.0], [15.6980896, -4.5682114, 0.0], [15.6967163, -4.5682114, 0.0], [15.6967163, -4.5695803, 0.0], [15.6967163, -4.5709493, 0.0], [15.6980896, -4.5709493, 0.0], [15.6994629, -4.5709493, 0.0], [15.6994629, -4.5695803, 0.0], [15.6980896, -4.5695803, 0.0]]]}}, {"type": "Feature", "properties": {"id": 438}, "geometry": {"type": "Polygon", "coordinates": [[[15.8738708, -4.5695803, 0.0], [15.8738708, -4.5682114, 0.0], [15.8724976, -4.5682114, 0.0], [15.8711243, -4.5682114, 0.0], [15.869751, -4.5682114, 0.0], [15.869751, -4.5695803, 0.0], [15.8683777, -4.5695803, 0.0], [15.8683777, -4.5709493, 0.0], [15.869751, -4.5709493, 0.0], [15.8711243, -4.5709493, 0.0], [15.8724976, -4.5709493, 0.0], [15.8738708, -4.5709493, 0.0], [15.8738708, -4.5695803, 0.0]]]}}, {"type": "Feature", "properties": {"id": 439}, "geometry": {"type": "Polygon", "coordinates": [[[15.8779907, -4.5695803, 0.0], [15.8779907, -4.5709493, 0.0], [15.879364, -4.5709493, 0.0], [15.879364, -4.5695803, 0.0], [15.8779907, -4.5695803, 0.0]]]}}, {"type": "Feature", "properties": {"id": 440}, "geometry": {"type": "Polygon", "coordinates": [[[15.7118225, -4.5682114, 0.0], [15.7118225, -4.5695803, 0.0], [15.7131958, -4.5695803, 0.0], [15.7131958, -4.5682114, 0.0], [15.7118225, -4.5682114, 0.0]]]}}, {"type": "Feature", "properties": {"id": 441}, "geometry": {"type": "Polygon", "coordinates": [[[15.8615112, -4.5695803, 0.0], [15.8615112, -4.5682114, 0.0], [15.8601379, -4.5682114, 0.0], [15.8601379, -4.5695803, 0.0], [15.8601379, -4.5709493, 0.0], [15.8615112, -4.5709493, 0.0], [15.8615112, -4.5695803, 0.0]]]}}, {"type": "Feature", "properties": {"id": 442}, "geometry": {"type": "Polygon", "coordinates": [[[15.6816101, -4.5668425, 0.0], [15.6816101, -4.5654736, 0.0], [15.6802368, -4.5654736, 0.0], [15.6802368, -4.5668425, 0.0], [15.6802368, -4.5682114, 0.0], [15.6802368, -4.5695803, 0.0], [15.6816101, -4.5695803, 0.0], [15.6829834, -4.5695803, 0.0], [15.6829834, -4.5682114, 0.0], [15.6829834, -4.5668425, 0.0], [15.6816101, -4.5668425, 0.0]]]}}, {"type": "Feature", "properties": {"id": 443}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.5668425, 0.0], [15.7557678, -4.5682114, 0.0], [15.7571411, -4.5682114, 0.0], [15.7571411, -4.5668425, 0.0], [15.7557678, -4.5668425, 0.0]]]}}, {"type": "Feature", "properties": {"id": 444}, "geometry": {"type": "Polygon", "coordinates": [[[15.6967163, -4.5668425, 0.0], [15.6967163, -4.5654736, 0.0], [15.695343, -4.5654736, 0.0], [15.6939697, -4.5654736, 0.0], [15.6939697, -4.5668425, 0.0], [15.6939697, -4.5682114, 0.0], [15.695343, -4.5682114, 0.0], [15.6967163, -4.5682114, 0.0], [15.6967163, -4.5668425, 0.0]]]}}, {"type": "Feature", "properties": {"id": 445}, "geometry": {"type": "Polygon", "coordinates": [[[15.8738708, -4.5668425, 0.0], [15.8738708, -4.5682114, 0.0], [15.8752441, -4.5682114, 0.0], [15.8752441, -4.5668425, 0.0], [15.8738708, -4.5668425, 0.0]]]}}, {"type": "Feature", "properties": {"id": 446}, "geometry": {"type": "Polygon", "coordinates": [[[15.7022095, -4.5654736, 0.0], [15.7022095, -4.5668425, 0.0], [15.7035828, -4.5668425, 0.0], [15.7035828, -4.5654736, 0.0], [15.7022095, -4.5654736, 0.0]]]}}, {"type": "Feature", "properties": {"id": 447}, "geometry": {"type": "Polygon", "coordinates": [[[15.8615112, -4.5654736, 0.0], [15.8615112, -4.5641046, 0.0], [15.8615112, -4.5627357, 0.0], [15.8601379, -4.5627357, 0.0], [15.8601379, -4.5613667, 0.0], [15.8587646, -4.5613667, 0.0], [15.8587646, -4.5627357, 0.0], [15.8587646, -4.5641046, 0.0], [15.8587646, -4.5654736, 0.0], [15.8587646, -4.5668425, 0.0], [15.8601379, -4.5668425, 0.0], [15.8615112, -4.5668425, 0.0], [15.8628845, -4.5668425, 0.0], [15.8628845, -4.5654736, 0.0], [15.8615112, -4.5654736, 0.0]]]}}, {"type": "Feature", "properties": {"id": 448}, "geometry": {"type": "Polygon", "coordinates": [[[15.9082031, -4.5627357, 0.0], [15.9082031, -4.5641046, 0.0], [15.9095764, -4.5641046, 0.0], [15.9095764, -4.5627357, 0.0], [15.9082031, -4.5627357, 0.0]]]}}, {"type": "Feature", "properties": {"id": 449}, "geometry": {"type": "Polygon", "coordinates": [[[15.8738708, -4.5627357, 0.0], [15.8724976, -4.5627357, 0.0], [15.8724976, -4.5641046, 0.0], [15.8738708, -4.5641046, 0.0], [15.8752441, -4.5641046, 0.0], [15.8766174, -4.5641046, 0.0], [15.8766174, -4.5627357, 0.0], [15.8752441, -4.5627357, 0.0], [15.8738708, -4.5627357, 0.0]]]}}, {"type": "Feature", "properties": {"id": 450}, "geometry": {"type": "Polygon", "coordinates": [[[15.869751, -4.5627357, 0.0], [15.8683777, -4.5627357, 0.0], [15.8683777, -4.5641046, 0.0], [15.869751, -4.5641046, 0.0], [15.8711243, -4.5641046, 0.0], [15.8711243, -4.5627357, 0.0], [15.869751, -4.5627357, 0.0]]]}}, {"type": "Feature", "properties": {"id": 451}, "geometry": {"type": "Polygon", "coordinates": [[[15.8148193, -4.5627357, 0.0], [15.8148193, -4.5641046, 0.0], [15.8161926, -4.5641046, 0.0], [15.8161926, -4.5627357, 0.0], [15.8148193, -4.5627357, 0.0]]]}}, {"type": "Feature", "properties": {"id": 452}, "geometry": {"type": "Polygon", "coordinates": [[[15.7543945, -4.5627357, 0.0], [15.7530212, -4.5627357, 0.0], [15.7530212, -4.5641046, 0.0], [15.7543945, -4.5641046, 0.0], [15.7557678, -4.5641046, 0.0], [15.7557678, -4.5627357, 0.0], [15.7543945, -4.5627357, 0.0]]]}}, {"type": "Feature", "properties": {"id": 453}, "geometry": {"type": "Polygon", "coordinates": [[[15.6706238, -4.5613667, 0.0], [15.6706238, -4.5627357, 0.0], [15.6719971, -4.5627357, 0.0], [15.6719971, -4.5613667, 0.0], [15.6706238, -4.5613667, 0.0]]]}}, {"type": "Feature", "properties": {"id": 454}, "geometry": {"type": "Polygon", "coordinates": [[[15.6939697, -4.5627357, 0.0], [15.6939697, -4.5641046, 0.0], [15.695343, -4.5641046, 0.0], [15.695343, -4.5627357, 0.0], [15.6939697, -4.5627357, 0.0]]]}}, {"type": "Feature", "properties": {"id": 455}, "geometry": {"type": "Polygon", "coordinates": [[[15.6925964, -4.5613667, 0.0], [15.6912231, -4.5613667, 0.0], [15.6912231, -4.5627357, 0.0], [15.6925964, -4.5627357, 0.0], [15.6939697, -4.5627357, 0.0], [15.6939697, -4.5613667, 0.0], [15.6925964, -4.5613667, 0.0]]]}}, {"type": "Feature", "properties": {"id": 456}, "geometry": {"type": "Polygon", "coordinates": [[[15.8889771, -4.5599978, 0.0], [15.8889771, -4.5613667, 0.0], [15.8903503, -4.5613667, 0.0], [15.8903503, -4.5599978, 0.0], [15.8889771, -4.5599978, 0.0]]]}}, {"type": "Feature", "properties": {"id": 457}, "geometry": {"type": "Polygon", "coordinates": [[[15.7104492, -4.5613667, 0.0], [15.7104492, -4.5627357, 0.0], [15.7118225, -4.5627357, 0.0], [15.7118225, -4.5613667, 0.0], [15.7104492, -4.5613667, 0.0]]]}}, {"type": "Feature", "properties": {"id": 458}, "geometry": {"type": "Polygon", "coordinates": [[[15.7241821, -4.5613667, 0.0], [15.7241821, -4.5627357, 0.0], [15.7255554, -4.5627357, 0.0], [15.7255554, -4.5613667, 0.0], [15.7241821, -4.5613667, 0.0]]]}}, {"type": "Feature", "properties": {"id": 459}, "geometry": {"type": "Polygon", "coordinates": [[[15.7516479, -4.5613667, 0.0], [15.7516479, -4.5627357, 0.0], [15.7530212, -4.5627357, 0.0], [15.7530212, -4.5613667, 0.0], [15.7516479, -4.5613667, 0.0]]]}}, {"type": "Feature", "properties": {"id": 460}, "geometry": {"type": "Polygon", "coordinates": [[[15.7214355, -4.5599978, 0.0], [15.7214355, -4.5613667, 0.0], [15.7228088, -4.5613667, 0.0], [15.7228088, -4.5599978, 0.0], [15.7214355, -4.5599978, 0.0]]]}}, {"type": "Feature", "properties": {"id": 461}, "geometry": {"type": "Polygon", "coordinates": [[[15.7008362, -4.5599978, 0.0], [15.7008362, -4.5586289, 0.0], [15.6994629, -4.5586289, 0.0], [15.6994629, -4.5599978, 0.0], [15.6980896, -4.5599978, 0.0], [15.6980896, -4.5586289, 0.0], [15.6967163, -4.5586289, 0.0], [15.6967163, -4.5599978, 0.0], [15.6967163, -4.5613667, 0.0], [15.6980896, -4.5613667, 0.0], [15.6994629, -4.5613667, 0.0], [15.7008362, -4.5613667, 0.0], [15.7008362, -4.5599978, 0.0]]]}}, {"type": "Feature", "properties": {"id": 462}, "geometry": {"type": "Polygon", "coordinates": [[[15.8615112, -4.5613667, 0.0], [15.8615112, -4.5627357, 0.0], [15.8628845, -4.5627357, 0.0], [15.8628845, -4.5613667, 0.0], [15.8615112, -4.5613667, 0.0]]]}}, {"type": "Feature", "properties": {"id": 463}, "geometry": {"type": "Polygon", "coordinates": [[[15.8724976, -4.5599978, 0.0], [15.8724976, -4.5613667, 0.0], [15.8738708, -4.5613667, 0.0], [15.8752441, -4.5613667, 0.0], [15.8752441, -4.5599978, 0.0], [15.8738708, -4.5599978, 0.0], [15.8724976, -4.5599978, 0.0]]]}}, {"type": "Feature", "properties": {"id": 464}, "geometry": {"type": "Polygon", "coordinates": [[[15.6692505, -4.5599978, 0.0], [15.6692505, -4.5613667, 0.0], [15.6706238, -4.5613667, 0.0], [15.6706238, -4.5599978, 0.0], [15.6692505, -4.5599978, 0.0]]]}}, {"type": "Feature", "properties": {"id": 465}, "geometry": {"type": "Polygon", "coordinates": [[[15.68573, -4.554522, 0.0], [15.68573, -4.555891, 0.0], [15.6871033, -4.555891, 0.0], [15.6884766, -4.555891, 0.0], [15.6884766, -4.554522, 0.0], [15.6871033, -4.554522, 0.0], [15.68573, -4.554522, 0.0]]]}}, {"type": "Feature", "properties": {"id": 466}, "geometry": {"type": "Polygon", "coordinates": [[[15.8958435, -4.5504151, 0.0], [15.8958435, -4.5517841, 0.0], [15.8972168, -4.5517841, 0.0], [15.8972168, -4.5504151, 0.0], [15.8958435, -4.5504151, 0.0]]]}}, {"type": "Feature", "properties": {"id": 467}, "geometry": {"type": "Polygon", "coordinates": [[[15.8299255, -4.5504151, 0.0], [15.8299255, -4.5517841, 0.0], [15.8312988, -4.5517841, 0.0], [15.8312988, -4.5504151, 0.0], [15.8299255, -4.5504151, 0.0]]]}}, {"type": "Feature", "properties": {"id": 468}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.5490462, 0.0], [15.7173157, -4.5504151, 0.0], [15.718689, -4.5504151, 0.0], [15.718689, -4.5490462, 0.0], [15.7173157, -4.5490462, 0.0]]]}}, {"type": "Feature", "properties": {"id": 469}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.5517841, 0.0], [15.7667542, -4.553153, 0.0], [15.7681274, -4.553153, 0.0], [15.7681274, -4.5517841, 0.0], [15.7667542, -4.5517841, 0.0]]]}}, {"type": "Feature", "properties": {"id": 470}, "geometry": {"type": "Polygon", "coordinates": [[[15.7763672, -4.5504151, 0.0], [15.7763672, -4.5490462, 0.0], [15.7763672, -4.5476772, 0.0], [15.7763672, -4.5463082, 0.0], [15.7763672, -4.5449393, 0.0], [15.7749939, -4.5449393, 0.0], [15.7749939, -4.5463082, 0.0], [15.7736206, -4.5463082, 0.0], [15.7722473, -4.5463082, 0.0], [15.7722473, -4.5476772, 0.0], [15.7736206, -4.5476772, 0.0], [15.7736206, -4.5490462, 0.0], [15.7749939, -4.5490462, 0.0], [15.7749939, -4.5504151, 0.0], [15.7749939, -4.5517841, 0.0], [15.7763672, -4.5517841, 0.0], [15.7763672, -4.5504151, 0.0]]]}}, {"type": "Feature", "properties": {"id": 471}, "geometry": {"type": "Polygon", "coordinates": [[[15.8601379, -4.5572599, 0.0], [15.8587646, -4.5572599, 0.0], [15.8587646, -4.5586289, 0.0], [15.8601379, -4.5586289, 0.0], [15.8615112, -4.5586289, 0.0], [15.8615112, -4.5572599, 0.0], [15.8601379, -4.5572599, 0.0]]]}}, {"type": "Feature", "properties": {"id": 472}, "geometry": {"type": "Polygon", "coordinates": [[[15.7324219, -4.5572599, 0.0], [15.7324219, -4.5586289, 0.0], [15.7337952, -4.5586289, 0.0], [15.7337952, -4.5572599, 0.0], [15.7324219, -4.5572599, 0.0]]]}}, {"type": "Feature", "properties": {"id": 473}, "geometry": {"type": "Polygon", "coordinates": [[[15.7090759, -4.5572599, 0.0], [15.7090759, -4.5586289, 0.0], [15.7104492, -4.5586289, 0.0], [15.7104492, -4.5572599, 0.0], [15.7090759, -4.5572599, 0.0]]]}}, {"type": "Feature", "properties": {"id": 474}, "geometry": {"type": "Polygon", "coordinates": [[[15.7887268, -4.555891, 0.0], [15.7887268, -4.5572599, 0.0], [15.7901001, -4.5572599, 0.0], [15.7901001, -4.555891, 0.0], [15.7887268, -4.555891, 0.0]]]}}, {"type": "Feature", "properties": {"id": 475}, "geometry": {"type": "Polygon", "coordinates": [[[15.7983398, -4.5476772, 0.0], [15.7983398, -4.5490462, 0.0], [15.7997131, -4.5490462, 0.0], [15.7997131, -4.5476772, 0.0], [15.7983398, -4.5476772, 0.0]]]}}, {"type": "Feature", "properties": {"id": 476}, "geometry": {"type": "Polygon", "coordinates": [[[15.8766174, -4.5476772, 0.0], [15.8766174, -4.5490462, 0.0], [15.8779907, -4.5490462, 0.0], [15.8779907, -4.5476772, 0.0], [15.8766174, -4.5476772, 0.0]]]}}, {"type": "Feature", "properties": {"id": 477}, "geometry": {"type": "Polygon", "coordinates": [[[15.8972168, -4.5463082, 0.0], [15.8972168, -4.5449393, 0.0], [15.8958435, -4.5449393, 0.0], [15.8958435, -4.5463082, 0.0], [15.8958435, -4.5476772, 0.0], [15.8972168, -4.5476772, 0.0], [15.8972168, -4.5463082, 0.0]]]}}, {"type": "Feature", "properties": {"id": 478}, "geometry": {"type": "Polygon", "coordinates": [[[15.7228088, -4.5476772, 0.0], [15.7228088, -4.5463082, 0.0], [15.7214355, -4.5463082, 0.0], [15.7200623, -4.5463082, 0.0], [15.7200623, -4.5476772, 0.0], [15.7214355, -4.5476772, 0.0], [15.7214355, -4.5490462, 0.0], [15.7228088, -4.5490462, 0.0], [15.7228088, -4.5476772, 0.0]]]}}, {"type": "Feature", "properties": {"id": 479}, "geometry": {"type": "Polygon", "coordinates": [[[15.718689, -4.5449393, 0.0], [15.718689, -4.5463082, 0.0], [15.7200623, -4.5463082, 0.0], [15.7200623, -4.5449393, 0.0], [15.718689, -4.5449393, 0.0]]]}}, {"type": "Feature", "properties": {"id": 480}, "geometry": {"type": "Polygon", "coordinates": [[[15.7598877, -4.5449393, 0.0], [15.7598877, -4.5463082, 0.0], [15.761261, -4.5463082, 0.0], [15.761261, -4.5449393, 0.0], [15.7598877, -4.5449393, 0.0]]]}}, {"type": "Feature", "properties": {"id": 481}, "geometry": {"type": "Polygon", "coordinates": [[[15.7695007, -4.5463082, 0.0], [15.7695007, -4.5476772, 0.0], [15.770874, -4.5476772, 0.0], [15.770874, -4.5463082, 0.0], [15.7695007, -4.5463082, 0.0]]]}}, {"type": "Feature", "properties": {"id": 482}, "geometry": {"type": "Polygon", "coordinates": [[[15.7516479, -4.5435703, 0.0], [15.7516479, -4.5449393, 0.0], [15.7530212, -4.5449393, 0.0], [15.7530212, -4.5435703, 0.0], [15.7516479, -4.5435703, 0.0]]]}}, {"type": "Feature", "properties": {"id": 483}, "geometry": {"type": "Polygon", "coordinates": [[[15.8889771, -4.5435703, 0.0], [15.8889771, -4.5449393, 0.0], [15.8903503, -4.5449393, 0.0], [15.8903503, -4.5435703, 0.0], [15.8889771, -4.5435703, 0.0]]]}}, {"type": "Feature", "properties": {"id": 484}, "geometry": {"type": "Polygon", "coordinates": [[[15.7955933, -4.5435703, 0.0], [15.7955933, -4.5449393, 0.0], [15.7969666, -4.5449393, 0.0], [15.7969666, -4.5435703, 0.0], [15.7955933, -4.5435703, 0.0]]]}}, {"type": "Feature", "properties": {"id": 485}, "geometry": {"type": "Polygon", "coordinates": [[[15.7269287, -4.5422013, 0.0], [15.7269287, -4.5435703, 0.0], [15.728302, -4.5435703, 0.0], [15.728302, -4.5422013, 0.0], [15.7269287, -4.5422013, 0.0]]]}}, {"type": "Feature", "properties": {"id": 486}, "geometry": {"type": "Polygon", "coordinates": [[[15.7324219, -4.5422013, 0.0], [15.7324219, -4.5435703, 0.0], [15.7337952, -4.5435703, 0.0], [15.7337952, -4.5422013, 0.0], [15.7324219, -4.5422013, 0.0]]]}}, {"type": "Feature", "properties": {"id": 487}, "geometry": {"type": "Polygon", "coordinates": [[[15.6747437, -4.5422013, 0.0], [15.6733704, -4.5422013, 0.0], [15.6733704, -4.5435703, 0.0], [15.6747437, -4.5435703, 0.0], [15.6761169, -4.5435703, 0.0], [15.6761169, -4.5422013, 0.0], [15.6747437, -4.5422013, 0.0]]]}}, {"type": "Feature", "properties": {"id": 488}, "geometry": {"type": "Polygon", "coordinates": [[[15.7969666, -4.5408323, 0.0], [15.7969666, -4.5422013, 0.0], [15.7983398, -4.5422013, 0.0], [15.7983398, -4.5408323, 0.0], [15.7969666, -4.5408323, 0.0]]]}}, {"type": "Feature", "properties": {"id": 489}, "geometry": {"type": "Polygon", "coordinates": [[[15.695343, -4.5408323, 0.0], [15.695343, -4.5422013, 0.0], [15.6967163, -4.5422013, 0.0], [15.6967163, -4.5408323, 0.0], [15.695343, -4.5408323, 0.0]]]}}, {"type": "Feature", "properties": {"id": 490}, "geometry": {"type": "Polygon", "coordinates": [[[15.7571411, -4.5408323, 0.0], [15.7585144, -4.5408323, 0.0], [15.7585144, -4.5394633, 0.0], [15.7598877, -4.5394633, 0.0], [15.7598877, -4.5380944, 0.0], [15.7585144, -4.5380944, 0.0], [15.7585144, -4.5367254, 0.0], [15.7598877, -4.5367254, 0.0], [15.7598877, -4.5353564, 0.0], [15.7585144, -4.5353564, 0.0], [15.7571411, -4.5353564, 0.0], [15.7557678, -4.5353564, 0.0], [15.7543945, -4.5353564, 0.0], [15.7530212, -4.5353564, 0.0], [15.7516479, -4.5353564, 0.0], [15.7502747, -4.5353564, 0.0], [15.7489014, -4.5353564, 0.0], [15.7489014, -4.5367254, 0.0], [15.7502747, -4.5367254, 0.0], [15.7502747, -4.5380944, 0.0], [15.7489014, -4.5380944, 0.0], [15.7489014, -4.5394633, 0.0], [15.7502747, -4.5394633, 0.0], [15.7516479, -4.5394633, 0.0], [15.7530212, -4.5394633, 0.0], [15.7530212, -4.5408323, 0.0], [15.7530212, -4.5422013, 0.0], [15.7543945, -4.5422013, 0.0], [15.7557678, -4.5422013, 0.0], [15.7571411, -4.5422013, 0.0], [15.7571411, -4.5408323, 0.0]]]}}, {"type": "Feature", "properties": {"id": 491}, "geometry": {"type": "Polygon", "coordinates": [[[15.7640076, -4.5408323, 0.0], [15.7640076, -4.5422013, 0.0], [15.7653809, -4.5422013, 0.0], [15.7653809, -4.5408323, 0.0], [15.7640076, -4.5408323, 0.0]]]}}, {"type": "Feature", "properties": {"id": 492}, "geometry": {"type": "Polygon", "coordinates": [[[15.827179, -4.658555, 0.0], [15.8258057, -4.658555, 0.0], [15.8258057, -4.6599237, 0.0], [15.827179, -4.6599237, 0.0], [15.8285522, -4.6599237, 0.0], [15.8285522, -4.658555, 0.0], [15.827179, -4.658555, 0.0]]]}}, {"type": "Feature", "properties": {"id": 493}, "geometry": {"type": "Polygon", "coordinates": [[[15.8999634, -4.6612925, 0.0], [15.8999634, -4.6599237, 0.0], [15.8985901, -4.6599237, 0.0], [15.8985901, -4.658555, 0.0], [15.8972168, -4.658555, 0.0], [15.8972168, -4.6599237, 0.0], [15.8972168, -4.6612925, 0.0], [15.8985901, -4.6612925, 0.0], [15.8985901, -4.6626612, 0.0], [15.8999634, -4.6626612, 0.0], [15.8999634, -4.6612925, 0.0]]]}}, {"type": "Feature", "properties": {"id": 494}, "geometry": {"type": "Polygon", "coordinates": [[[15.7585144, -4.6571862, 0.0], [15.7585144, -4.6558174, 0.0], [15.7585144, -4.6544487, 0.0], [15.7571411, -4.6544487, 0.0], [15.7557678, -4.6544487, 0.0], [15.7557678, -4.6558174, 0.0], [15.7571411, -4.6558174, 0.0], [15.7571411, -4.6571862, 0.0], [15.7571411, -4.658555, 0.0], [15.7585144, -4.658555, 0.0], [15.7585144, -4.6571862, 0.0]]]}}, {"type": "Feature", "properties": {"id": 495}, "geometry": {"type": "Polygon", "coordinates": [[[15.7695007, -4.6571862, 0.0], [15.7695007, -4.658555, 0.0], [15.770874, -4.658555, 0.0], [15.770874, -4.6571862, 0.0], [15.7695007, -4.6571862, 0.0]]]}}, {"type": "Feature", "properties": {"id": 496}, "geometry": {"type": "Polygon", "coordinates": [[[15.8010864, -4.6571862, 0.0], [15.8010864, -4.6558174, 0.0], [15.7997131, -4.6558174, 0.0], [15.7997131, -4.6571862, 0.0], [15.7997131, -4.658555, 0.0], [15.8010864, -4.658555, 0.0], [15.8010864, -4.6571862, 0.0]]]}}, {"type": "Feature", "properties": {"id": 497}, "geometry": {"type": "Polygon", "coordinates": [[[15.7901001, -4.6571862, 0.0], [15.7901001, -4.658555, 0.0], [15.7914734, -4.658555, 0.0], [15.7914734, -4.6571862, 0.0], [15.7901001, -4.6571862, 0.0]]]}}, {"type": "Feature", "properties": {"id": 498}, "geometry": {"type": "Polygon", "coordinates": [[[15.728302, -4.5394633, 0.0], [15.728302, -4.5408323, 0.0], [15.7296753, -4.5408323, 0.0], [15.7296753, -4.5394633, 0.0], [15.728302, -4.5394633, 0.0]]]}}, {"type": "Feature", "properties": {"id": 499}, "geometry": {"type": "Polygon", "coordinates": [[[15.8546448, -4.5380944, 0.0], [15.8546448, -4.5394633, 0.0], [15.8560181, -4.5394633, 0.0], [15.8560181, -4.5380944, 0.0], [15.8546448, -4.5380944, 0.0]]]}}, {"type": "Feature", "properties": {"id": 500}, "geometry": {"type": "Polygon", "coordinates": [[[15.8532715, -4.5353564, 0.0], [15.8532715, -4.5367254, 0.0], [15.8546448, -4.5367254, 0.0], [15.8546448, -4.5353564, 0.0], [15.8532715, -4.5353564, 0.0]]]}}, {"type": "Feature", "properties": {"id": 501}, "geometry": {"type": "Polygon", "coordinates": [[[15.7598877, -4.5367254, 0.0], [15.7598877, -4.5380944, 0.0], [15.761261, -4.5380944, 0.0], [15.761261, -4.5367254, 0.0], [15.7598877, -4.5367254, 0.0]]]}}, {"type": "Feature", "properties": {"id": 502}, "geometry": {"type": "Polygon", "coordinates": [[[15.9274292, -4.5339874, 0.0], [15.9274292, -4.5353564, 0.0], [15.9288025, -4.5353564, 0.0], [15.9301758, -4.5353564, 0.0], [15.9315491, -4.5353564, 0.0], [15.9315491, -4.5339874, 0.0], [15.9301758, -4.5339874, 0.0], [15.9288025, -4.5339874, 0.0], [15.9274292, -4.5339874, 0.0]]]}}, {"type": "Feature", "properties": {"id": 503}, "geometry": {"type": "Polygon", "coordinates": [[[15.8821106, -4.5339874, 0.0], [15.8807373, -4.5339874, 0.0], [15.8807373, -4.5353564, 0.0], [15.8821106, -4.5353564, 0.0], [15.8834839, -4.5353564, 0.0], [15.8834839, -4.5339874, 0.0], [15.8821106, -4.5339874, 0.0]]]}}, {"type": "Feature", "properties": {"id": 504}, "geometry": {"type": "Polygon", "coordinates": [[[15.8560181, -4.5339874, 0.0], [15.8560181, -4.5353564, 0.0], [15.8573914, -4.5353564, 0.0], [15.8573914, -4.5339874, 0.0], [15.8560181, -4.5339874, 0.0]]]}}, {"type": "Feature", "properties": {"id": 505}, "geometry": {"type": "Polygon", "coordinates": [[[15.6829834, -4.5339874, 0.0], [15.6843567, -4.5339874, 0.0], [15.6843567, -4.5326184, 0.0], [15.68573, -4.5326184, 0.0], [15.68573, -4.5312494, 0.0], [15.6843567, -4.5312494, 0.0], [15.6843567, -4.5298804, 0.0], [15.6829834, -4.5298804, 0.0], [15.6816101, -4.5298804, 0.0], [15.6816101, -4.5312494, 0.0], [15.6816101, -4.5326184, 0.0], [15.6802368, -4.5326184, 0.0], [15.6788635, -4.5326184, 0.0], [15.6788635, -4.5339874, 0.0], [15.6802368, -4.5339874, 0.0], [15.6802368, -4.5353564, 0.0], [15.6816101, -4.5353564, 0.0], [15.6829834, -4.5353564, 0.0], [15.6829834, -4.5339874, 0.0]]]}}, {"type": "Feature", "properties": {"id": 506}, "geometry": {"type": "Polygon", "coordinates": [[[15.7241821, -4.5339874, 0.0], [15.7241821, -4.5353564, 0.0], [15.7255554, -4.5353564, 0.0], [15.7255554, -4.5339874, 0.0], [15.7241821, -4.5339874, 0.0]]]}}, {"type": "Feature", "properties": {"id": 507}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.5339874, 0.0], [15.7173157, -4.5353564, 0.0], [15.718689, -4.5353564, 0.0], [15.718689, -4.5339874, 0.0], [15.7173157, -4.5339874, 0.0]]]}}, {"type": "Feature", "properties": {"id": 508}, "geometry": {"type": "Polygon", "coordinates": [[[15.8752441, -4.5339874, 0.0], [15.8752441, -4.5353564, 0.0], [15.8766174, -4.5353564, 0.0], [15.8766174, -4.5339874, 0.0], [15.8752441, -4.5339874, 0.0]]]}}, {"type": "Feature", "properties": {"id": 509}, "geometry": {"type": "Polygon", "coordinates": [[[15.728302, -4.5326184, 0.0], [15.728302, -4.5339874, 0.0], [15.7296753, -4.5339874, 0.0], [15.7296753, -4.5326184, 0.0], [15.728302, -4.5326184, 0.0]]]}}, {"type": "Feature", "properties": {"id": 510}, "geometry": {"type": "Polygon", "coordinates": [[[15.7791138, -4.5326184, 0.0], [15.7791138, -4.5312494, 0.0], [15.7777405, -4.5312494, 0.0], [15.7763672, -4.5312494, 0.0], [15.7763672, -4.5326184, 0.0], [15.7763672, -4.5339874, 0.0], [15.7777405, -4.5339874, 0.0], [15.7791138, -4.5339874, 0.0], [15.7791138, -4.5326184, 0.0]]]}}, {"type": "Feature", "properties": {"id": 511}, "geometry": {"type": "Polygon", "coordinates": [[[15.7818604, -4.5312494, 0.0], [15.7818604, -4.5326184, 0.0], [15.7832336, -4.5326184, 0.0], [15.7832336, -4.5312494, 0.0], [15.7818604, -4.5312494, 0.0]]]}}, {"type": "Feature", "properties": {"id": 512}, "geometry": {"type": "Polygon", "coordinates": [[[15.8944702, -4.5312494, 0.0], [15.8944702, -4.5326184, 0.0], [15.8958435, -4.5326184, 0.0], [15.8958435, -4.5312494, 0.0], [15.8944702, -4.5312494, 0.0]]]}}, {"type": "Feature", "properties": {"id": 513}, "geometry": {"type": "Polygon", "coordinates": [[[15.8518982, -4.5312494, 0.0], [15.8518982, -4.5326184, 0.0], [15.8532715, -4.5326184, 0.0], [15.8532715, -4.5312494, 0.0], [15.8518982, -4.5312494, 0.0]]]}}, {"type": "Feature", "properties": {"id": 514}, "geometry": {"type": "Polygon", "coordinates": [[[15.8834839, -4.5298804, 0.0], [15.8848572, -4.5298804, 0.0], [15.8848572, -4.5285114, 0.0], [15.8834839, -4.5285114, 0.0], [15.8821106, -4.5285114, 0.0], [15.8821106, -4.5298804, 0.0], [15.8821106, -4.5312494, 0.0], [15.8834839, -4.5312494, 0.0], [15.8834839, -4.5298804, 0.0]]]}}, {"type": "Feature", "properties": {"id": 515}, "geometry": {"type": "Polygon", "coordinates": [[[15.7324219, -4.5298804, 0.0], [15.7324219, -4.5285114, 0.0], [15.7310486, -4.5285114, 0.0], [15.7310486, -4.5298804, 0.0], [15.7310486, -4.5312494, 0.0], [15.7324219, -4.5312494, 0.0], [15.7337952, -4.5312494, 0.0], [15.7337952, -4.5298804, 0.0], [15.7324219, -4.5298804, 0.0]]]}}, {"type": "Feature", "properties": {"id": 516}, "geometry": {"type": "Polygon", "coordinates": [[[15.9013367, -4.5298804, 0.0], [15.9013367, -4.5312494, 0.0], [15.90271, -4.5312494, 0.0], [15.90271, -4.5298804, 0.0], [15.9013367, -4.5298804, 0.0]]]}}, {"type": "Feature", "properties": {"id": 517}, "geometry": {"type": "Polygon", "coordinates": [[[15.9329224, -4.5285114, 0.0], [15.9315491, -4.5285114, 0.0], [15.9315491, -4.5298804, 0.0], [15.9329224, -4.5298804, 0.0], [15.9342957, -4.5298804, 0.0], [15.9342957, -4.5285114, 0.0], [15.9329224, -4.5285114, 0.0]]]}}, {"type": "Feature", "properties": {"id": 518}, "geometry": {"type": "Polygon", "coordinates": [[[15.9439087, -4.5285114, 0.0], [15.9439087, -4.5298804, 0.0], [15.945282, -4.5298804, 0.0], [15.945282, -4.5285114, 0.0], [15.9439087, -4.5285114, 0.0]]]}}, {"type": "Feature", "properties": {"id": 519}, "geometry": {"type": "Polygon", "coordinates": [[[15.921936, -4.5257734, 0.0], [15.921936, -4.5271424, 0.0], [15.9233093, -4.5271424, 0.0], [15.9233093, -4.5257734, 0.0], [15.921936, -4.5257734, 0.0]]]}}, {"type": "Feature", "properties": {"id": 520}, "geometry": {"type": "Polygon", "coordinates": [[[15.68573, -4.5257734, 0.0], [15.68573, -4.5244044, 0.0], [15.6843567, -4.5244044, 0.0], [15.6843567, -4.5230354, 0.0], [15.68573, -4.5230354, 0.0], [15.68573, -4.5216663, 0.0], [15.6843567, -4.5216663, 0.0], [15.6843567, -4.5202973, 0.0], [15.6829834, -4.5202973, 0.0], [15.6829834, -4.5216663, 0.0], [15.6829834, -4.5230354, 0.0], [15.6816101, -4.5230354, 0.0], [15.6816101, -4.5244044, 0.0], [15.6816101, -4.5257734, 0.0], [15.6816101, -4.5271424, 0.0], [15.6829834, -4.5271424, 0.0], [15.6843567, -4.5271424, 0.0], [15.68573, -4.5271424, 0.0], [15.68573, -4.5257734, 0.0]]]}}, {"type": "Feature", "properties": {"id": 521}, "geometry": {"type": "Polygon", "coordinates": [[[15.8258057, -4.5257734, 0.0], [15.8258057, -4.5271424, 0.0], [15.827179, -4.5271424, 0.0], [15.827179, -4.5257734, 0.0], [15.8258057, -4.5257734, 0.0]]]}}, {"type": "Feature", "properties": {"id": 522}, "geometry": {"type": "Polygon", "coordinates": [[[15.8326721, -4.5285114, 0.0], [15.8326721, -4.5298804, 0.0], [15.8340454, -4.5298804, 0.0], [15.8340454, -4.5285114, 0.0], [15.8326721, -4.5285114, 0.0]]]}}, {"type": "Feature", "properties": {"id": 523}, "geometry": {"type": "Polygon", "coordinates": [[[15.8491516, -4.5285114, 0.0], [15.8491516, -4.5298804, 0.0], [15.8505249, -4.5298804, 0.0], [15.8518982, -4.5298804, 0.0], [15.8518982, -4.5285114, 0.0], [15.8505249, -4.5285114, 0.0], [15.8491516, -4.5285114, 0.0]]]}}, {"type": "Feature", "properties": {"id": 524}, "geometry": {"type": "Polygon", "coordinates": [[[15.8862305, -4.5285114, 0.0], [15.8862305, -4.5298804, 0.0], [15.8876038, -4.5298804, 0.0], [15.8876038, -4.5285114, 0.0], [15.8862305, -4.5285114, 0.0]]]}}, {"type": "Feature", "properties": {"id": 525}, "geometry": {"type": "Polygon", "coordinates": [[[15.8299255, -4.5271424, 0.0], [15.8299255, -4.5285114, 0.0], [15.8312988, -4.5285114, 0.0], [15.8312988, -4.5271424, 0.0], [15.8299255, -4.5271424, 0.0]]]}}, {"type": "Feature", "properties": {"id": 526}, "geometry": {"type": "Polygon", "coordinates": [[[15.8999634, -4.5271424, 0.0], [15.8999634, -4.5285114, 0.0], [15.9013367, -4.5285114, 0.0], [15.90271, -4.5285114, 0.0], [15.90271, -4.5271424, 0.0], [15.9013367, -4.5271424, 0.0], [15.8999634, -4.5271424, 0.0]]]}}, {"type": "Feature", "properties": {"id": 527}, "geometry": {"type": "Polygon", "coordinates": [[[15.7859802, -4.5257734, 0.0], [15.7859802, -4.5271424, 0.0], [15.7873535, -4.5271424, 0.0], [15.7873535, -4.5257734, 0.0], [15.7859802, -4.5257734, 0.0]]]}}, {"type": "Feature", "properties": {"id": 528}, "geometry": {"type": "Polygon", "coordinates": [[[15.7777405, -4.5257734, 0.0], [15.7777405, -4.5271424, 0.0], [15.7791138, -4.5271424, 0.0], [15.7791138, -4.5257734, 0.0], [15.7777405, -4.5257734, 0.0]]]}}, {"type": "Feature", "properties": {"id": 529}, "geometry": {"type": "Polygon", "coordinates": [[[15.8230591, -4.5244044, 0.0], [15.8230591, -4.5257734, 0.0], [15.8244324, -4.5257734, 0.0], [15.8258057, -4.5257734, 0.0], [15.8258057, -4.5244044, 0.0], [15.8244324, -4.5244044, 0.0], [15.8230591, -4.5244044, 0.0]]]}}, {"type": "Feature", "properties": {"id": 530}, "geometry": {"type": "Polygon", "coordinates": [[[15.8834839, -4.5244044, 0.0], [15.8834839, -4.5257734, 0.0], [15.8848572, -4.5257734, 0.0], [15.8848572, -4.5244044, 0.0], [15.8834839, -4.5244044, 0.0]]]}}, {"type": "Feature", "properties": {"id": 531}, "geometry": {"type": "Polygon", "coordinates": [[[15.7022095, -4.5244044, 0.0], [15.7022095, -4.5257734, 0.0], [15.7035828, -4.5257734, 0.0], [15.7035828, -4.5244044, 0.0], [15.7022095, -4.5244044, 0.0]]]}}, {"type": "Feature", "properties": {"id": 532}, "geometry": {"type": "Polygon", "coordinates": [[[15.8052063, -4.5230354, 0.0], [15.8052063, -4.5244044, 0.0], [15.8065796, -4.5244044, 0.0], [15.8065796, -4.5230354, 0.0], [15.8052063, -4.5230354, 0.0]]]}}, {"type": "Feature", "properties": {"id": 533}, "geometry": {"type": "Polygon", "coordinates": [[[15.7873535, -4.5230354, 0.0], [15.7873535, -4.5244044, 0.0], [15.7887268, -4.5244044, 0.0], [15.7887268, -4.5230354, 0.0], [15.7873535, -4.5230354, 0.0]]]}}, {"type": "Feature", "properties": {"id": 534}, "geometry": {"type": "Polygon", "coordinates": [[[15.7846069, -4.5230354, 0.0], [15.7846069, -4.5244044, 0.0], [15.7859802, -4.5244044, 0.0], [15.7859802, -4.5230354, 0.0], [15.7846069, -4.5230354, 0.0]]]}}, {"type": "Feature", "properties": {"id": 535}, "geometry": {"type": "Polygon", "coordinates": [[[15.7351685, -4.5216663, 0.0], [15.7351685, -4.5230354, 0.0], [15.7365417, -4.5230354, 0.0], [15.7365417, -4.5216663, 0.0], [15.7351685, -4.5216663, 0.0]]]}}, {"type": "Feature", "properties": {"id": 536}, "geometry": {"type": "Polygon", "coordinates": [[[15.9439087, -4.5189283, 0.0], [15.9439087, -4.5175593, 0.0], [15.9425354, -4.5175593, 0.0], [15.9425354, -4.5189283, 0.0], [15.9425354, -4.5202973, 0.0], [15.9439087, -4.5202973, 0.0], [15.945282, -4.5202973, 0.0], [15.945282, -4.5189283, 0.0], [15.9439087, -4.5189283, 0.0]]]}}, {"type": "Feature", "properties": {"id": 537}, "geometry": {"type": "Polygon", "coordinates": [[[15.7310486, -4.5175593, 0.0], [15.7310486, -4.5189283, 0.0], [15.7324219, -4.5189283, 0.0], [15.7337952, -4.5189283, 0.0], [15.7337952, -4.5175593, 0.0], [15.7324219, -4.5175593, 0.0], [15.7310486, -4.5175593, 0.0]]]}}, {"type": "Feature", "properties": {"id": 538}, "geometry": {"type": "Polygon", "coordinates": [[[15.9205627, -4.5202973, 0.0], [15.9205627, -4.5216663, 0.0], [15.921936, -4.5216663, 0.0], [15.921936, -4.5202973, 0.0], [15.9205627, -4.5202973, 0.0]]]}}, {"type": "Feature", "properties": {"id": 539}, "geometry": {"type": "Polygon", "coordinates": [[[15.7365417, -4.5202973, 0.0], [15.7365417, -4.5216663, 0.0], [15.737915, -4.5216663, 0.0], [15.737915, -4.5202973, 0.0], [15.7365417, -4.5202973, 0.0]]]}}, {"type": "Feature", "properties": {"id": 540}, "geometry": {"type": "Polygon", "coordinates": [[[15.846405, -4.5189283, 0.0], [15.846405, -4.5202973, 0.0], [15.8477783, -4.5202973, 0.0], [15.8477783, -4.5189283, 0.0], [15.846405, -4.5189283, 0.0]]]}}, {"type": "Feature", "properties": {"id": 541}, "geometry": {"type": "Polygon", "coordinates": [[[15.68573, -4.5175593, 0.0], [15.68573, -4.5161903, 0.0], [15.6843567, -4.5161903, 0.0], [15.6829834, -4.5161903, 0.0], [15.6829834, -4.5175593, 0.0], [15.6829834, -4.5189283, 0.0], [15.6843567, -4.5189283, 0.0], [15.68573, -4.5189283, 0.0], [15.68573, -4.5175593, 0.0]]]}}, {"type": "Feature", "properties": {"id": 542}, "geometry": {"type": "Polygon", "coordinates": [[[15.9068298, -4.5175593, 0.0], [15.9068298, -4.5189283, 0.0], [15.9082031, -4.5189283, 0.0], [15.9082031, -4.5175593, 0.0], [15.9068298, -4.5175593, 0.0]]]}}, {"type": "Feature", "properties": {"id": 543}, "geometry": {"type": "Polygon", "coordinates": [[[15.7475281, -4.5175593, 0.0], [15.7475281, -4.5189283, 0.0], [15.7489014, -4.5189283, 0.0], [15.7502747, -4.5189283, 0.0], [15.7502747, -4.5175593, 0.0], [15.7489014, -4.5175593, 0.0], [15.7475281, -4.5175593, 0.0]]]}}, {"type": "Feature", "properties": {"id": 544}, "geometry": {"type": "Polygon", "coordinates": [[[15.8491516, -4.5175593, 0.0], [15.8477783, -4.5175593, 0.0], [15.8477783, -4.5189283, 0.0], [15.8491516, -4.5189283, 0.0], [15.8505249, -4.5189283, 0.0], [15.8505249, -4.5175593, 0.0], [15.8491516, -4.5175593, 0.0]]]}}, {"type": "Feature", "properties": {"id": 545}, "geometry": {"type": "Polygon", "coordinates": [[[15.9233093, -4.5161903, 0.0], [15.9233093, -4.5175593, 0.0], [15.9246826, -4.5175593, 0.0], [15.9246826, -4.5161903, 0.0], [15.9233093, -4.5161903, 0.0]]]}}, {"type": "Feature", "properties": {"id": 546}, "geometry": {"type": "Polygon", "coordinates": [[[15.945282, -4.5161903, 0.0], [15.9466553, -4.5161903, 0.0], [15.9466553, -4.5148212, 0.0], [15.9466553, -4.5134522, 0.0], [15.9480286, -4.5134522, 0.0], [15.9480286, -4.5120832, 0.0], [15.9466553, -4.5120832, 0.0], [15.945282, -4.5120832, 0.0], [15.945282, -4.5134522, 0.0], [15.945282, -4.5148212, 0.0], [15.9439087, -4.5148212, 0.0], [15.9439087, -4.5161903, 0.0], [15.9439087, -4.5175593, 0.0], [15.945282, -4.5175593, 0.0], [15.945282, -4.5161903, 0.0]]]}}, {"type": "Feature", "properties": {"id": 547}, "geometry": {"type": "Polygon", "coordinates": [[[15.8505249, -4.5148212, 0.0], [15.8505249, -4.5161903, 0.0], [15.8518982, -4.5161903, 0.0], [15.8518982, -4.5148212, 0.0], [15.8505249, -4.5148212, 0.0]]]}}, {"type": "Feature", "properties": {"id": 548}, "geometry": {"type": "Polygon", "coordinates": [[[15.8203125, -4.5175593, 0.0], [15.8203125, -4.5189283, 0.0], [15.8216858, -4.5189283, 0.0], [15.8216858, -4.5175593, 0.0], [15.8203125, -4.5175593, 0.0]]]}}, {"type": "Feature", "properties": {"id": 549}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.5148212, 0.0], [15.7557678, -4.5161903, 0.0], [15.7571411, -4.5161903, 0.0], [15.7571411, -4.5148212, 0.0], [15.7557678, -4.5148212, 0.0]]]}}, {"type": "Feature", "properties": {"id": 550}, "geometry": {"type": "Polygon", "coordinates": [[[15.7420349, -4.5148212, 0.0], [15.7420349, -4.5161903, 0.0], [15.7434082, -4.5161903, 0.0], [15.7447815, -4.5161903, 0.0], [15.7447815, -4.5148212, 0.0], [15.7434082, -4.5148212, 0.0], [15.7420349, -4.5148212, 0.0]]]}}, {"type": "Feature", "properties": {"id": 551}, "geometry": {"type": "Polygon", "coordinates": [[[15.9260559, -4.5148212, 0.0], [15.9260559, -4.5161903, 0.0], [15.9274292, -4.5161903, 0.0], [15.9274292, -4.5148212, 0.0], [15.9260559, -4.5148212, 0.0]]]}}, {"type": "Feature", "properties": {"id": 552}, "geometry": {"type": "Polygon", "coordinates": [[[15.9329224, -4.5134522, 0.0], [15.9329224, -4.5148212, 0.0], [15.9342957, -4.5148212, 0.0], [15.9342957, -4.5134522, 0.0], [15.9329224, -4.5134522, 0.0]]]}}, {"type": "Feature", "properties": {"id": 553}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.5134522, 0.0], [15.7667542, -4.5148212, 0.0], [15.7681274, -4.5148212, 0.0], [15.7681274, -4.5134522, 0.0], [15.7667542, -4.5134522, 0.0]]]}}, {"type": "Feature", "properties": {"id": 554}, "geometry": {"type": "Polygon", "coordinates": [[[15.7749939, -4.5134522, 0.0], [15.7749939, -4.5148212, 0.0], [15.7763672, -4.5148212, 0.0], [15.7763672, -4.5134522, 0.0], [15.7749939, -4.5134522, 0.0]]]}}, {"type": "Feature", "properties": {"id": 555}, "geometry": {"type": "Polygon", "coordinates": [[[15.9013367, -4.5134522, 0.0], [15.9013367, -4.5120832, 0.0], [15.8999634, -4.5120832, 0.0], [15.8999634, -4.5134522, 0.0], [15.8999634, -4.5148212, 0.0], [15.9013367, -4.5148212, 0.0], [15.90271, -4.5148212, 0.0], [15.90271, -4.5134522, 0.0], [15.9013367, -4.5134522, 0.0]]]}}, {"type": "Feature", "properties": {"id": 556}, "geometry": {"type": "Polygon", "coordinates": [[[15.9082031, -4.5120832, 0.0], [15.9082031, -4.5134522, 0.0], [15.9095764, -4.5134522, 0.0], [15.9095764, -4.5120832, 0.0], [15.9082031, -4.5120832, 0.0]]]}}, {"type": "Feature", "properties": {"id": 557}, "geometry": {"type": "Polygon", "coordinates": [[[15.6925964, -4.5120832, 0.0], [15.6925964, -4.5134522, 0.0], [15.6939697, -4.5134522, 0.0], [15.6939697, -4.5120832, 0.0], [15.6925964, -4.5120832, 0.0]]]}}, {"type": "Feature", "properties": {"id": 558}, "geometry": {"type": "Polygon", "coordinates": [[[15.9507751, -4.5120832, 0.0], [15.9507751, -4.5134522, 0.0], [15.9521484, -4.5134522, 0.0], [15.9521484, -4.5120832, 0.0], [15.9507751, -4.5120832, 0.0]]]}}, {"type": "Feature", "properties": {"id": 559}, "geometry": {"type": "Polygon", "coordinates": [[[15.7859802, -4.5120832, 0.0], [15.7859802, -4.5134522, 0.0], [15.7873535, -4.5134522, 0.0], [15.7873535, -4.5120832, 0.0], [15.7859802, -4.5120832, 0.0]]]}}, {"type": "Feature", "properties": {"id": 560}, "geometry": {"type": "Polygon", "coordinates": [[[15.7406616, -4.5120832, 0.0], [15.7392883, -4.5120832, 0.0], [15.7392883, -4.5134522, 0.0], [15.7406616, -4.5134522, 0.0], [15.7420349, -4.5134522, 0.0], [15.7420349, -4.5120832, 0.0], [15.7406616, -4.5120832, 0.0]]]}}, {"type": "Feature", "properties": {"id": 561}, "geometry": {"type": "Polygon", "coordinates": [[[15.7022095, -4.5120832, 0.0], [15.7022095, -4.5134522, 0.0], [15.7035828, -4.5134522, 0.0], [15.7035828, -4.5120832, 0.0], [15.7022095, -4.5120832, 0.0]]]}}, {"type": "Feature", "properties": {"id": 562}, "geometry": {"type": "Polygon", "coordinates": [[[15.9397888, -4.5120832, 0.0], [15.9397888, -4.5134522, 0.0], [15.9411621, -4.5134522, 0.0], [15.9411621, -4.5120832, 0.0], [15.9397888, -4.5120832, 0.0]]]}}, {"type": "Feature", "properties": {"id": 563}, "geometry": {"type": "Polygon", "coordinates": [[[15.8299255, -4.5107141, 0.0], [15.8299255, -4.5120832, 0.0], [15.8312988, -4.5120832, 0.0], [15.8312988, -4.5107141, 0.0], [15.8299255, -4.5107141, 0.0]]]}}, {"type": "Feature", "properties": {"id": 564}, "geometry": {"type": "Polygon", "coordinates": [[[15.737915, -4.5107141, 0.0], [15.737915, -4.5120832, 0.0], [15.7392883, -4.5120832, 0.0], [15.7392883, -4.5107141, 0.0], [15.737915, -4.5107141, 0.0]]]}}, {"type": "Feature", "properties": {"id": 565}, "geometry": {"type": "Polygon", "coordinates": [[[15.7914734, -4.5107141, 0.0], [15.7914734, -4.5120832, 0.0], [15.7928467, -4.5120832, 0.0], [15.7928467, -4.5107141, 0.0], [15.7914734, -4.5107141, 0.0]]]}}, {"type": "Feature", "properties": {"id": 566}, "geometry": {"type": "Polygon", "coordinates": [[[15.79422, -4.5107141, 0.0], [15.79422, -4.5120832, 0.0], [15.7955933, -4.5120832, 0.0], [15.7955933, -4.5107141, 0.0], [15.79422, -4.5107141, 0.0]]]}}, {"type": "Feature", "properties": {"id": 567}, "geometry": {"type": "Polygon", "coordinates": [[[15.912323, -4.5038689, 0.0], [15.912323, -4.505238, 0.0], [15.9136963, -4.505238, 0.0], [15.9136963, -4.5038689, 0.0], [15.912323, -4.5038689, 0.0]]]}}, {"type": "Feature", "properties": {"id": 568}, "geometry": {"type": "Polygon", "coordinates": [[[15.7420349, -4.5011308, 0.0], [15.7406616, -4.5011308, 0.0], [15.7406616, -4.5024999, 0.0], [15.7420349, -4.5024999, 0.0], [15.7434082, -4.5024999, 0.0], [15.7434082, -4.5011308, 0.0], [15.7420349, -4.5011308, 0.0]]]}}, {"type": "Feature", "properties": {"id": 569}, "geometry": {"type": "Polygon", "coordinates": [[[15.6843567, -4.5011308, 0.0], [15.6843567, -4.5024999, 0.0], [15.68573, -4.5024999, 0.0], [15.68573, -4.5011308, 0.0], [15.6843567, -4.5011308, 0.0]]]}}, {"type": "Feature", "properties": {"id": 570}, "geometry": {"type": "Polygon", "coordinates": [[[15.7022095, -4.5024999, 0.0], [15.7022095, -4.5038689, 0.0], [15.7035828, -4.5038689, 0.0], [15.7035828, -4.5024999, 0.0], [15.7022095, -4.5024999, 0.0]]]}}, {"type": "Feature", "properties": {"id": 571}, "geometry": {"type": "Polygon", "coordinates": [[[15.737915, -4.5011308, 0.0], [15.737915, -4.5024999, 0.0], [15.7392883, -4.5024999, 0.0], [15.7392883, -4.5011308, 0.0], [15.737915, -4.5011308, 0.0]]]}}, {"type": "Feature", "properties": {"id": 572}, "geometry": {"type": "Polygon", "coordinates": [[[15.7131958, -4.5011308, 0.0], [15.7131958, -4.5024999, 0.0], [15.7145691, -4.5024999, 0.0], [15.7159424, -4.5024999, 0.0], [15.7159424, -4.5011308, 0.0], [15.7145691, -4.5011308, 0.0], [15.7131958, -4.5011308, 0.0]]]}}, {"type": "Feature", "properties": {"id": 573}, "geometry": {"type": "Polygon", "coordinates": [[[15.7049561, -4.5011308, 0.0], [15.7049561, -4.5024999, 0.0], [15.7063293, -4.5024999, 0.0], [15.7063293, -4.5011308, 0.0], [15.7049561, -4.5011308, 0.0]]]}}, {"type": "Feature", "properties": {"id": 574}, "geometry": {"type": "Polygon", "coordinates": [[[15.8148193, -4.505238, 0.0], [15.8148193, -4.506607, 0.0], [15.8161926, -4.506607, 0.0], [15.8161926, -4.505238, 0.0], [15.8148193, -4.505238, 0.0]]]}}, {"type": "Feature", "properties": {"id": 575}, "geometry": {"type": "Polygon", "coordinates": [[[15.9040833, -4.505238, 0.0], [15.9040833, -4.506607, 0.0], [15.9054565, -4.506607, 0.0], [15.9068298, -4.506607, 0.0], [15.9068298, -4.505238, 0.0], [15.9054565, -4.505238, 0.0], [15.9040833, -4.505238, 0.0]]]}}, {"type": "Feature", "properties": {"id": 576}, "geometry": {"type": "Polygon", "coordinates": [[[15.90271, -4.5038689, 0.0], [15.90271, -4.505238, 0.0], [15.9040833, -4.505238, 0.0], [15.9040833, -4.5038689, 0.0], [15.90271, -4.5038689, 0.0]]]}}, {"type": "Feature", "properties": {"id": 577}, "geometry": {"type": "Polygon", "coordinates": [[[15.6925964, -4.4997617, 0.0], [15.6925964, -4.5011308, 0.0], [15.6939697, -4.5011308, 0.0], [15.6939697, -4.4997617, 0.0], [15.6925964, -4.4997617, 0.0]]]}}, {"type": "Feature", "properties": {"id": 578}, "geometry": {"type": "Polygon", "coordinates": [[[15.8889771, -4.4997617, 0.0], [15.8889771, -4.5011308, 0.0], [15.8903503, -4.5011308, 0.0], [15.8903503, -4.4997617, 0.0], [15.8889771, -4.4997617, 0.0]]]}}, {"type": "Feature", "properties": {"id": 579}, "geometry": {"type": "Polygon", "coordinates": [[[15.7434082, -4.4997617, 0.0], [15.7434082, -4.5011308, 0.0], [15.7447815, -4.5011308, 0.0], [15.7447815, -4.4997617, 0.0], [15.7434082, -4.4997617, 0.0]]]}}, {"type": "Feature", "properties": {"id": 580}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.4997617, 0.0], [15.7173157, -4.5011308, 0.0], [15.718689, -4.5011308, 0.0], [15.718689, -4.4997617, 0.0], [15.7173157, -4.4997617, 0.0]]]}}, {"type": "Feature", "properties": {"id": 581}, "geometry": {"type": "Polygon", "coordinates": [[[15.7104492, -4.4997617, 0.0], [15.7104492, -4.5011308, 0.0], [15.7118225, -4.5011308, 0.0], [15.7118225, -4.4997617, 0.0], [15.7104492, -4.4997617, 0.0]]]}}, {"type": "Feature", "properties": {"id": 582}, "geometry": {"type": "Polygon", "coordinates": [[[15.6843567, -4.5134522, 0.0], [15.68573, -4.5134522, 0.0], [15.68573, -4.5120832, 0.0], [15.68573, -4.5107141, 0.0], [15.68573, -4.5093451, 0.0], [15.6843567, -4.5093451, 0.0], [15.6829834, -4.5093451, 0.0], [15.6816101, -4.5093451, 0.0], [15.6816101, -4.5107141, 0.0], [15.6829834, -4.5107141, 0.0], [15.6829834, -4.5120832, 0.0], [15.6829834, -4.5134522, 0.0], [15.6829834, -4.5148212, 0.0], [15.6843567, -4.5148212, 0.0], [15.6843567, -4.5134522, 0.0]]]}}, {"type": "Feature", "properties": {"id": 583}, "geometry": {"type": "Polygon", "coordinates": [[[15.9439087, -4.5107141, 0.0], [15.9439087, -4.5093451, 0.0], [15.9425354, -4.5093451, 0.0], [15.9411621, -4.5093451, 0.0], [15.9411621, -4.5107141, 0.0], [15.9425354, -4.5107141, 0.0], [15.9425354, -4.5120832, 0.0], [15.9439087, -4.5120832, 0.0], [15.9439087, -4.5107141, 0.0]]]}}, {"type": "Feature", "properties": {"id": 584}, "geometry": {"type": "Polygon", "coordinates": [[[15.9095764, -4.5093451, 0.0], [15.9095764, -4.5107141, 0.0], [15.9109497, -4.5107141, 0.0], [15.9109497, -4.5093451, 0.0], [15.9095764, -4.5093451, 0.0]]]}}, {"type": "Feature", "properties": {"id": 585}, "geometry": {"type": "Polygon", "coordinates": [[[15.8518982, -4.5093451, 0.0], [15.8518982, -4.5107141, 0.0], [15.8532715, -4.5107141, 0.0], [15.8532715, -4.5093451, 0.0], [15.8518982, -4.5093451, 0.0]]]}}, {"type": "Feature", "properties": {"id": 586}, "geometry": {"type": "Polygon", "coordinates": [[[15.7887268, -4.5093451, 0.0], [15.7887268, -4.5107141, 0.0], [15.7901001, -4.5107141, 0.0], [15.7901001, -4.5093451, 0.0], [15.7887268, -4.5093451, 0.0]]]}}, {"type": "Feature", "properties": {"id": 587}, "geometry": {"type": "Polygon", "coordinates": [[[15.9342957, -4.507976, 0.0], [15.9342957, -4.5093451, 0.0], [15.9356689, -4.5093451, 0.0], [15.9356689, -4.507976, 0.0], [15.9342957, -4.507976, 0.0]]]}}, {"type": "Feature", "properties": {"id": 588}, "geometry": {"type": "Polygon", "coordinates": [[[15.7351685, -4.507976, 0.0], [15.7351685, -4.5093451, 0.0], [15.7365417, -4.5093451, 0.0], [15.7365417, -4.507976, 0.0], [15.7351685, -4.507976, 0.0]]]}}, {"type": "Feature", "properties": {"id": 589}, "geometry": {"type": "Polygon", "coordinates": [[[15.9274292, -4.507976, 0.0], [15.9274292, -4.5093451, 0.0], [15.9288025, -4.5093451, 0.0], [15.9288025, -4.507976, 0.0], [15.9274292, -4.507976, 0.0]]]}}, {"type": "Feature", "properties": {"id": 590}, "geometry": {"type": "Polygon", "coordinates": [[[15.9082031, -4.507976, 0.0], [15.9082031, -4.5093451, 0.0], [15.9095764, -4.5093451, 0.0], [15.9095764, -4.507976, 0.0], [15.9082031, -4.507976, 0.0]]]}}, {"type": "Feature", "properties": {"id": 591}, "geometry": {"type": "Polygon", "coordinates": [[[15.9301758, -4.4942855, 0.0], [15.9301758, -4.4956546, 0.0], [15.9315491, -4.4956546, 0.0], [15.9315491, -4.4942855, 0.0], [15.9301758, -4.4942855, 0.0]]]}}, {"type": "Feature", "properties": {"id": 592}, "geometry": {"type": "Polygon", "coordinates": [[[15.8230591, -4.4942855, 0.0], [15.8230591, -4.4956546, 0.0], [15.8244324, -4.4956546, 0.0], [15.8244324, -4.4942855, 0.0], [15.8230591, -4.4942855, 0.0]]]}}, {"type": "Feature", "properties": {"id": 593}, "geometry": {"type": "Polygon", "coordinates": [[[15.8601379, -4.4929164, 0.0], [15.8615112, -4.4929164, 0.0], [15.8615112, -4.4915473, 0.0], [15.8615112, -4.4901783, 0.0], [15.8615112, -4.4888092, 0.0], [15.8628845, -4.4888092, 0.0], [15.8628845, -4.4874401, 0.0], [15.8615112, -4.4874401, 0.0], [15.8601379, -4.4874401, 0.0], [15.8587646, -4.4874401, 0.0], [15.8573914, -4.4874401, 0.0], [15.8573914, -4.4888092, 0.0], [15.8587646, -4.4888092, 0.0], [15.8587646, -4.4901783, 0.0], [15.8573914, -4.4901783, 0.0], [15.8573914, -4.4915473, 0.0], [15.8573914, -4.4929164, 0.0], [15.8573914, -4.4942855, 0.0], [15.8587646, -4.4942855, 0.0], [15.8601379, -4.4942855, 0.0], [15.8601379, -4.4929164, 0.0]]]}}, {"type": "Feature", "properties": {"id": 594}, "geometry": {"type": "Polygon", "coordinates": [[[15.8944702, -4.4929164, 0.0], [15.8944702, -4.4942855, 0.0], [15.8958435, -4.4942855, 0.0], [15.8958435, -4.4929164, 0.0], [15.8944702, -4.4929164, 0.0]]]}}, {"type": "Feature", "properties": {"id": 595}, "geometry": {"type": "Polygon", "coordinates": [[[15.9150696, -4.4929164, 0.0], [15.9150696, -4.4942855, 0.0], [15.9164429, -4.4942855, 0.0], [15.9178162, -4.4942855, 0.0], [15.9178162, -4.4929164, 0.0], [15.9164429, -4.4929164, 0.0], [15.9150696, -4.4929164, 0.0]]]}}, {"type": "Feature", "properties": {"id": 596}, "geometry": {"type": "Polygon", "coordinates": [[[15.9301758, -4.4929164, 0.0], [15.9301758, -4.4915473, 0.0], [15.9315491, -4.4915473, 0.0], [15.9315491, -4.4901783, 0.0], [15.9301758, -4.4901783, 0.0], [15.9288025, -4.4901783, 0.0], [15.9274292, -4.4901783, 0.0], [15.9274292, -4.4915473, 0.0], [15.9288025, -4.4915473, 0.0], [15.9288025, -4.4929164, 0.0], [15.9288025, -4.4942855, 0.0], [15.9301758, -4.4942855, 0.0], [15.9301758, -4.4929164, 0.0]]]}}, {"type": "Feature", "properties": {"id": 597}, "geometry": {"type": "Polygon", "coordinates": [[[15.9576416, -4.4915473, 0.0], [15.9576416, -4.4929164, 0.0], [15.9590149, -4.4929164, 0.0], [15.9603882, -4.4929164, 0.0], [15.9603882, -4.4915473, 0.0], [15.9590149, -4.4915473, 0.0], [15.9576416, -4.4915473, 0.0]]]}}, {"type": "Feature", "properties": {"id": 598}, "geometry": {"type": "Polygon", "coordinates": [[[15.6884766, -4.4915473, 0.0], [15.6884766, -4.4901783, 0.0], [15.6871033, -4.4901783, 0.0], [15.68573, -4.4901783, 0.0], [15.68573, -4.4915473, 0.0], [15.6843567, -4.4915473, 0.0], [15.6829834, -4.4915473, 0.0], [15.6829834, -4.4929164, 0.0], [15.6843567, -4.4929164, 0.0], [15.68573, -4.4929164, 0.0], [15.6871033, -4.4929164, 0.0], [15.6884766, -4.4929164, 0.0], [15.6884766, -4.4915473, 0.0]]]}}, {"type": "Feature", "properties": {"id": 599}, "geometry": {"type": "Polygon", "coordinates": [[[15.8505249, -4.4915473, 0.0], [15.8505249, -4.4929164, 0.0], [15.8518982, -4.4929164, 0.0], [15.8518982, -4.4915473, 0.0], [15.8505249, -4.4915473, 0.0]]]}}, {"type": "Feature", "properties": {"id": 600}, "geometry": {"type": "Polygon", "coordinates": [[[15.8010864, -4.4901783, 0.0], [15.8010864, -4.4915473, 0.0], [15.8024597, -4.4915473, 0.0], [15.8024597, -4.4901783, 0.0], [15.8010864, -4.4901783, 0.0]]]}}, {"type": "Feature", "properties": {"id": 601}, "geometry": {"type": "Polygon", "coordinates": [[[15.7269287, -4.4901783, 0.0], [15.7269287, -4.4915473, 0.0], [15.728302, -4.4915473, 0.0], [15.728302, -4.4901783, 0.0], [15.7269287, -4.4901783, 0.0]]]}}, {"type": "Feature", "properties": {"id": 602}, "geometry": {"type": "Polygon", "coordinates": [[[15.6898499, -4.4901783, 0.0], [15.6898499, -4.4915473, 0.0], [15.6912231, -4.4915473, 0.0], [15.6912231, -4.4901783, 0.0], [15.6898499, -4.4901783, 0.0]]]}}, {"type": "Feature", "properties": {"id": 603}, "geometry": {"type": "Polygon", "coordinates": [[[15.9246826, -4.4888092, 0.0], [15.9246826, -4.4901783, 0.0], [15.9260559, -4.4901783, 0.0], [15.9260559, -4.4888092, 0.0], [15.9246826, -4.4888092, 0.0]]]}}, {"type": "Feature", "properties": {"id": 604}, "geometry": {"type": "Polygon", "coordinates": [[[15.6788635, -4.4888092, 0.0], [15.6788635, -4.4874401, 0.0], [15.6774902, -4.4874401, 0.0], [15.6774902, -4.4888092, 0.0], [15.6774902, -4.4901783, 0.0], [15.6788635, -4.4901783, 0.0], [15.6788635, -4.4888092, 0.0]]]}}, {"type": "Feature", "properties": {"id": 605}, "geometry": {"type": "Polygon", "coordinates": [[[15.7337952, -4.4888092, 0.0], [15.7337952, -4.4901783, 0.0], [15.7351685, -4.4901783, 0.0], [15.7351685, -4.4888092, 0.0], [15.7337952, -4.4888092, 0.0]]]}}, {"type": "Feature", "properties": {"id": 606}, "geometry": {"type": "Polygon", "coordinates": [[[15.7392883, -4.4888092, 0.0], [15.7392883, -4.4901783, 0.0], [15.7406616, -4.4901783, 0.0], [15.7420349, -4.4901783, 0.0], [15.7420349, -4.4888092, 0.0], [15.7406616, -4.4888092, 0.0], [15.7392883, -4.4888092, 0.0]]]}}, {"type": "Feature", "properties": {"id": 607}, "geometry": {"type": "Polygon", "coordinates": [[[15.8216858, -4.4888092, 0.0], [15.8203125, -4.4888092, 0.0], [15.8203125, -4.4901783, 0.0], [15.8216858, -4.4901783, 0.0], [15.8230591, -4.4901783, 0.0], [15.8230591, -4.4888092, 0.0], [15.8216858, -4.4888092, 0.0]]]}}, {"type": "Feature", "properties": {"id": 608}, "geometry": {"type": "Polygon", "coordinates": [[[15.8065796, -4.4888092, 0.0], [15.8065796, -4.4874401, 0.0], [15.8052063, -4.4874401, 0.0], [15.8052063, -4.4888092, 0.0], [15.8052063, -4.4901783, 0.0], [15.8065796, -4.4901783, 0.0], [15.8065796, -4.4888092, 0.0]]]}}, {"type": "Feature", "properties": {"id": 609}, "geometry": {"type": "Polygon", "coordinates": [[[15.7434082, -4.4888092, 0.0], [15.7434082, -4.4901783, 0.0], [15.7447815, -4.4901783, 0.0], [15.7447815, -4.4888092, 0.0], [15.7434082, -4.4888092, 0.0]]]}}, {"type": "Feature", "properties": {"id": 610}, "geometry": {"type": "Polygon", "coordinates": [[[15.9178162, -4.4888092, 0.0], [15.9178162, -4.4901783, 0.0], [15.9191895, -4.4901783, 0.0], [15.9191895, -4.4888092, 0.0], [15.9178162, -4.4888092, 0.0]]]}}, {"type": "Feature", "properties": {"id": 611}, "geometry": {"type": "Polygon", "coordinates": [[[15.9233093, -4.4874401, 0.0], [15.9233093, -4.486071, 0.0], [15.921936, -4.486071, 0.0], [15.9205627, -4.486071, 0.0], [15.9205627, -4.4874401, 0.0], [15.9191895, -4.4874401, 0.0], [15.9191895, -4.4888092, 0.0], [15.9205627, -4.4888092, 0.0], [15.921936, -4.4888092, 0.0], [15.9233093, -4.4888092, 0.0], [15.9233093, -4.4874401, 0.0]]]}}, {"type": "Feature", "properties": {"id": 612}, "geometry": {"type": "Polygon", "coordinates": [[[15.6747437, -4.486071, 0.0], [15.6747437, -4.4874401, 0.0], [15.6761169, -4.4874401, 0.0], [15.6761169, -4.486071, 0.0], [15.6747437, -4.486071, 0.0]]]}}, {"type": "Feature", "properties": {"id": 613}, "geometry": {"type": "Polygon", "coordinates": [[[15.9700012, -4.486071, 0.0], [15.9700012, -4.4874401, 0.0], [15.9713745, -4.4874401, 0.0], [15.9713745, -4.486071, 0.0], [15.9700012, -4.486071, 0.0]]]}}, {"type": "Feature", "properties": {"id": 614}, "geometry": {"type": "Polygon", "coordinates": [[[15.9768677, -4.486071, 0.0], [15.9768677, -4.4874401, 0.0], [15.978241, -4.4874401, 0.0], [15.978241, -4.486071, 0.0], [15.9768677, -4.486071, 0.0]]]}}, {"type": "Feature", "properties": {"id": 615}, "geometry": {"type": "Polygon", "coordinates": [[[15.7351685, -4.486071, 0.0], [15.7351685, -4.4874401, 0.0], [15.7365417, -4.4874401, 0.0], [15.7365417, -4.486071, 0.0], [15.7351685, -4.486071, 0.0]]]}}, {"type": "Feature", "properties": {"id": 616}, "geometry": {"type": "Polygon", "coordinates": [[[15.7489014, -4.486071, 0.0], [15.7489014, -4.4847019, 0.0], [15.7502747, -4.4847019, 0.0], [15.7502747, -4.4833329, 0.0], [15.7502747, -4.4819638, 0.0], [15.7489014, -4.4819638, 0.0], [15.7489014, -4.4833329, 0.0], [15.7475281, -4.4833329, 0.0], [15.7461548, -4.4833329, 0.0], [15.7461548, -4.4847019, 0.0], [15.7461548, -4.486071, 0.0], [15.7475281, -4.486071, 0.0], [15.7475281, -4.4874401, 0.0], [15.7489014, -4.4874401, 0.0], [15.7489014, -4.486071, 0.0]]]}}, {"type": "Feature", "properties": {"id": 617}, "geometry": {"type": "Polygon", "coordinates": [[[15.8024597, -4.486071, 0.0], [15.8024597, -4.4874401, 0.0], [15.803833, -4.4874401, 0.0], [15.803833, -4.486071, 0.0], [15.8024597, -4.486071, 0.0]]]}}, {"type": "Feature", "properties": {"id": 618}, "geometry": {"type": "Polygon", "coordinates": [[[15.813446, -4.486071, 0.0], [15.8148193, -4.486071, 0.0], [15.8148193, -4.4847019, 0.0], [15.8161926, -4.4847019, 0.0], [15.8161926, -4.4833329, 0.0], [15.8148193, -4.4833329, 0.0], [15.8148193, -4.4819638, 0.0], [15.8148193, -4.4805947, 0.0], [15.813446, -4.4805947, 0.0], [15.8120728, -4.4805947, 0.0], [15.8120728, -4.4819638, 0.0], [15.8106995, -4.4819638, 0.0], [15.8106995, -4.4833329, 0.0], [15.8106995, -4.4847019, 0.0], [15.8106995, -4.486071, 0.0], [15.8093262, -4.486071, 0.0], [15.8093262, -4.4874401, 0.0], [15.8106995, -4.4874401, 0.0], [15.8120728, -4.4874401, 0.0], [15.813446, -4.4874401, 0.0], [15.813446, -4.486071, 0.0]]]}}, {"type": "Feature", "properties": {"id": 619}, "geometry": {"type": "Polygon", "coordinates": [[[15.8148193, -4.486071, 0.0], [15.8148193, -4.4874401, 0.0], [15.8161926, -4.4874401, 0.0], [15.8175659, -4.4874401, 0.0], [15.8175659, -4.486071, 0.0], [15.8161926, -4.486071, 0.0], [15.8148193, -4.486071, 0.0]]]}}, {"type": "Feature", "properties": {"id": 620}, "geometry": {"type": "Polygon", "coordinates": [[[15.7461548, -4.4983927, 0.0], [15.7447815, -4.4983927, 0.0], [15.7447815, -4.4997617, 0.0], [15.7461548, -4.4997617, 0.0], [15.7475281, -4.4997617, 0.0], [15.7475281, -4.4983927, 0.0], [15.7461548, -4.4983927, 0.0]]]}}, {"type": "Feature", "properties": {"id": 621}, "geometry": {"type": "Polygon", "coordinates": [[[15.7406616, -4.4983927, 0.0], [15.7406616, -4.4997617, 0.0], [15.7420349, -4.4997617, 0.0], [15.7420349, -4.4983927, 0.0], [15.7406616, -4.4983927, 0.0]]]}}, {"type": "Feature", "properties": {"id": 622}, "geometry": {"type": "Polygon", "coordinates": [[[15.737915, -4.4983927, 0.0], [15.737915, -4.4997617, 0.0], [15.7392883, -4.4997617, 0.0], [15.7392883, -4.4983927, 0.0], [15.737915, -4.4983927, 0.0]]]}}, {"type": "Feature", "properties": {"id": 623}, "geometry": {"type": "Polygon", "coordinates": [[[15.7159424, -4.4983927, 0.0], [15.7159424, -4.4997617, 0.0], [15.7173157, -4.4997617, 0.0], [15.7173157, -4.4983927, 0.0], [15.7159424, -4.4983927, 0.0]]]}}, {"type": "Feature", "properties": {"id": 624}, "geometry": {"type": "Polygon", "coordinates": [[[15.7049561, -4.4983927, 0.0], [15.7049561, -4.4997617, 0.0], [15.7063293, -4.4997617, 0.0], [15.7063293, -4.4983927, 0.0], [15.7049561, -4.4983927, 0.0]]]}}, {"type": "Feature", "properties": {"id": 625}, "geometry": {"type": "Polygon", "coordinates": [[[15.9535217, -4.4983927, 0.0], [15.9521484, -4.4983927, 0.0], [15.9521484, -4.4997617, 0.0], [15.9535217, -4.4997617, 0.0], [15.954895, -4.4997617, 0.0], [15.954895, -4.4983927, 0.0], [15.9535217, -4.4983927, 0.0]]]}}, {"type": "Feature", "properties": {"id": 626}, "geometry": {"type": "Polygon", "coordinates": [[[15.9425354, -4.4970236, 0.0], [15.9425354, -4.4983927, 0.0], [15.9439087, -4.4983927, 0.0], [15.9439087, -4.4970236, 0.0], [15.9425354, -4.4970236, 0.0]]]}}, {"type": "Feature", "properties": {"id": 627}, "geometry": {"type": "Polygon", "coordinates": [[[15.8161926, -4.4983927, 0.0], [15.8161926, -4.4997617, 0.0], [15.8175659, -4.4997617, 0.0], [15.8175659, -4.4983927, 0.0], [15.8161926, -4.4983927, 0.0]]]}}, {"type": "Feature", "properties": {"id": 628}, "geometry": {"type": "Polygon", "coordinates": [[[15.6994629, -4.4970236, 0.0], [15.6994629, -4.4983927, 0.0], [15.7008362, -4.4983927, 0.0], [15.7008362, -4.4970236, 0.0], [15.6994629, -4.4970236, 0.0]]]}}, {"type": "Feature", "properties": {"id": 629}, "geometry": {"type": "Polygon", "coordinates": [[[15.6912231, -4.4956546, 0.0], [15.6912231, -4.4970236, 0.0], [15.6925964, -4.4970236, 0.0], [15.6925964, -4.4956546, 0.0], [15.6912231, -4.4956546, 0.0]]]}}, {"type": "Feature", "properties": {"id": 630}, "geometry": {"type": "Polygon", "coordinates": [[[15.9109497, -4.486071, 0.0], [15.9109497, -4.4874401, 0.0], [15.912323, -4.4874401, 0.0], [15.9136963, -4.4874401, 0.0], [15.9136963, -4.486071, 0.0], [15.912323, -4.486071, 0.0], [15.9109497, -4.486071, 0.0]]]}}, {"type": "Feature", "properties": {"id": 631}, "geometry": {"type": "Polygon", "coordinates": [[[15.9191895, -4.486071, 0.0], [15.9191895, -4.4847019, 0.0], [15.9178162, -4.4847019, 0.0], [15.9178162, -4.486071, 0.0], [15.9178162, -4.4874401, 0.0], [15.9191895, -4.4874401, 0.0], [15.9191895, -4.486071, 0.0]]]}}, {"type": "Feature", "properties": {"id": 632}, "geometry": {"type": "Polygon", "coordinates": [[[15.9521484, -4.486071, 0.0], [15.9521484, -4.4874401, 0.0], [15.9535217, -4.4874401, 0.0], [15.9535217, -4.486071, 0.0], [15.9521484, -4.486071, 0.0]]]}}, {"type": "Feature", "properties": {"id": 633}, "geometry": {"type": "Polygon", "coordinates": [[[15.8766174, -4.4847019, 0.0], [15.8766174, -4.486071, 0.0], [15.8779907, -4.486071, 0.0], [15.8779907, -4.4847019, 0.0], [15.8766174, -4.4847019, 0.0]]]}}, {"type": "Feature", "properties": {"id": 634}, "geometry": {"type": "Polygon", "coordinates": [[[15.6994629, -4.4847019, 0.0], [15.6994629, -4.486071, 0.0], [15.7008362, -4.486071, 0.0], [15.7008362, -4.4847019, 0.0], [15.6994629, -4.4847019, 0.0]]]}}, {"type": "Feature", "properties": {"id": 635}, "geometry": {"type": "Polygon", "coordinates": [[[15.8642578, -4.4847019, 0.0], [15.8642578, -4.4833329, 0.0], [15.8628845, -4.4833329, 0.0], [15.8615112, -4.4833329, 0.0], [15.8615112, -4.4847019, 0.0], [15.8615112, -4.486071, 0.0], [15.8628845, -4.486071, 0.0], [15.8642578, -4.486071, 0.0], [15.8642578, -4.4847019, 0.0]]]}}, {"type": "Feature", "properties": {"id": 636}, "geometry": {"type": "Polygon", "coordinates": [[[15.9013367, -4.4847019, 0.0], [15.9013367, -4.4833329, 0.0], [15.8999634, -4.4833329, 0.0], [15.8999634, -4.4847019, 0.0], [15.8999634, -4.486071, 0.0], [15.9013367, -4.486071, 0.0], [15.9013367, -4.4847019, 0.0]]]}}, {"type": "Feature", "properties": {"id": 637}, "geometry": {"type": "Polygon", "coordinates": [[[15.7969666, -4.4847019, 0.0], [15.7969666, -4.486071, 0.0], [15.7983398, -4.486071, 0.0], [15.7983398, -4.4847019, 0.0], [15.7969666, -4.4847019, 0.0]]]}}, {"type": "Feature", "properties": {"id": 638}, "geometry": {"type": "Polygon", "coordinates": [[[15.79422, -4.4847019, 0.0], [15.79422, -4.486071, 0.0], [15.7955933, -4.486071, 0.0], [15.7955933, -4.4847019, 0.0], [15.79422, -4.4847019, 0.0]]]}}, {"type": "Feature", "properties": {"id": 639}, "geometry": {"type": "Polygon", "coordinates": [[[15.8546448, -4.4833329, 0.0], [15.8546448, -4.4847019, 0.0], [15.8560181, -4.4847019, 0.0], [15.8560181, -4.4833329, 0.0], [15.8546448, -4.4833329, 0.0]]]}}, {"type": "Feature", "properties": {"id": 640}, "geometry": {"type": "Polygon", "coordinates": [[[15.9205627, -4.4819638, 0.0], [15.9205627, -4.4833329, 0.0], [15.921936, -4.4833329, 0.0], [15.921936, -4.4819638, 0.0], [15.9205627, -4.4819638, 0.0]]]}}, {"type": "Feature", "properties": {"id": 641}, "geometry": {"type": "Polygon", "coordinates": [[[15.6774902, -4.4819638, 0.0], [15.6774902, -4.4833329, 0.0], [15.6788635, -4.4833329, 0.0], [15.6788635, -4.4819638, 0.0], [15.6774902, -4.4819638, 0.0]]]}}, {"type": "Feature", "properties": {"id": 642}, "geometry": {"type": "Polygon", "coordinates": [[[15.8189392, -4.4805947, 0.0], [15.8189392, -4.4792256, 0.0], [15.8175659, -4.4792256, 0.0], [15.8161926, -4.4792256, 0.0], [15.8161926, -4.4805947, 0.0], [15.8161926, -4.4819638, 0.0], [15.8175659, -4.4819638, 0.0], [15.8189392, -4.4819638, 0.0], [15.8189392, -4.4805947, 0.0]]]}}, {"type": "Feature", "properties": {"id": 643}, "geometry": {"type": "Polygon", "coordinates": [[[15.9136963, -4.4805947, 0.0], [15.9136963, -4.4819638, 0.0], [15.9150696, -4.4819638, 0.0], [15.9150696, -4.4805947, 0.0], [15.9136963, -4.4805947, 0.0]]]}}, {"type": "Feature", "properties": {"id": 644}, "geometry": {"type": "Polygon", "coordinates": [[[15.7447815, -4.4805947, 0.0], [15.7447815, -4.4792256, 0.0], [15.7434082, -4.4792256, 0.0], [15.7434082, -4.4805947, 0.0], [15.7420349, -4.4805947, 0.0], [15.7406616, -4.4805947, 0.0], [15.7392883, -4.4805947, 0.0], [15.7392883, -4.4819638, 0.0], [15.7406616, -4.4819638, 0.0], [15.7420349, -4.4819638, 0.0], [15.7434082, -4.4819638, 0.0], [15.7447815, -4.4819638, 0.0], [15.7447815, -4.4805947, 0.0]]]}}, {"type": "Feature", "properties": {"id": 645}, "geometry": {"type": "Polygon", "coordinates": [[[15.7008362, -4.4805947, 0.0], [15.7008362, -4.4819638, 0.0], [15.7022095, -4.4819638, 0.0], [15.7022095, -4.4805947, 0.0], [15.7008362, -4.4805947, 0.0]]]}}, {"type": "Feature", "properties": {"id": 646}, "geometry": {"type": "Polygon", "coordinates": [[[15.6925964, -4.4805947, 0.0], [15.6925964, -4.4792256, 0.0], [15.6925964, -4.4778565, 0.0], [15.6912231, -4.4778565, 0.0], [15.6912231, -4.4792256, 0.0], [15.6912231, -4.4805947, 0.0], [15.6912231, -4.4819638, 0.0], [15.6925964, -4.4819638, 0.0], [15.6925964, -4.4805947, 0.0]]]}}, {"type": "Feature", "properties": {"id": 647}, "geometry": {"type": "Polygon", "coordinates": [[[15.7214355, -4.4805947, 0.0], [15.7228088, -4.4805947, 0.0], [15.7228088, -4.4792256, 0.0], [15.7214355, -4.4792256, 0.0], [15.7214355, -4.4778565, 0.0], [15.7200623, -4.4778565, 0.0], [15.7200623, -4.4792256, 0.0], [15.718689, -4.4792256, 0.0], [15.7173157, -4.4792256, 0.0], [15.7173157, -4.4805947, 0.0], [15.718689, -4.4805947, 0.0], [15.7200623, -4.4805947, 0.0], [15.7200623, -4.4819638, 0.0], [15.7214355, -4.4819638, 0.0], [15.7214355, -4.4805947, 0.0]]]}}, {"type": "Feature", "properties": {"id": 648}, "geometry": {"type": "Polygon", "coordinates": [[[15.7901001, -4.4792256, 0.0], [15.7887268, -4.4792256, 0.0], [15.7887268, -4.4805947, 0.0], [15.7901001, -4.4805947, 0.0], [15.7914734, -4.4805947, 0.0], [15.7914734, -4.4792256, 0.0], [15.7901001, -4.4792256, 0.0]]]}}, {"type": "Feature", "properties": {"id": 649}, "geometry": {"type": "Polygon", "coordinates": [[[15.7543945, -4.4792256, 0.0], [15.7530212, -4.4792256, 0.0], [15.7530212, -4.4805947, 0.0], [15.7543945, -4.4805947, 0.0], [15.7557678, -4.4805947, 0.0], [15.7557678, -4.4792256, 0.0], [15.7543945, -4.4792256, 0.0]]]}}, {"type": "Feature", "properties": {"id": 650}, "geometry": {"type": "Polygon", "coordinates": [[[15.9631348, -4.4792256, 0.0], [15.9631348, -4.4805947, 0.0], [15.9645081, -4.4805947, 0.0], [15.9645081, -4.4792256, 0.0], [15.9631348, -4.4792256, 0.0]]]}}, {"type": "Feature", "properties": {"id": 651}, "geometry": {"type": "Polygon", "coordinates": [[[15.6774902, -4.4792256, 0.0], [15.6774902, -4.4805947, 0.0], [15.6788635, -4.4805947, 0.0], [15.6788635, -4.4792256, 0.0], [15.6774902, -4.4792256, 0.0]]]}}, {"type": "Feature", "properties": {"id": 652}, "geometry": {"type": "Polygon", "coordinates": [[[15.8106995, -4.4792256, 0.0], [15.8106995, -4.4805947, 0.0], [15.8120728, -4.4805947, 0.0], [15.8120728, -4.4792256, 0.0], [15.8106995, -4.4792256, 0.0]]]}}, {"type": "Feature", "properties": {"id": 653}, "geometry": {"type": "Polygon", "coordinates": [[[15.6719971, -4.4778565, 0.0], [15.6719971, -4.4792256, 0.0], [15.6733704, -4.4792256, 0.0], [15.6733704, -4.4778565, 0.0], [15.6719971, -4.4778565, 0.0]]]}}, {"type": "Feature", "properties": {"id": 654}, "geometry": {"type": "Polygon", "coordinates": [[[15.6898499, -4.4778565, 0.0], [15.6898499, -4.4764874, 0.0], [15.6884766, -4.4764874, 0.0], [15.6884766, -4.4778565, 0.0], [15.6871033, -4.4778565, 0.0], [15.6871033, -4.4792256, 0.0], [15.6884766, -4.4792256, 0.0], [15.6898499, -4.4792256, 0.0], [15.6898499, -4.4778565, 0.0]]]}}, {"type": "Feature", "properties": {"id": 655}, "geometry": {"type": "Polygon", "coordinates": [[[15.8587646, -4.4764874, 0.0], [15.8587646, -4.4778565, 0.0], [15.8601379, -4.4778565, 0.0], [15.8601379, -4.4764874, 0.0], [15.8587646, -4.4764874, 0.0]]]}}, {"type": "Feature", "properties": {"id": 656}, "geometry": {"type": "Polygon", "coordinates": [[[15.9233093, -4.4764874, 0.0], [15.9233093, -4.4778565, 0.0], [15.9246826, -4.4778565, 0.0], [15.9246826, -4.4764874, 0.0], [15.9233093, -4.4764874, 0.0]]]}}, {"type": "Feature", "properties": {"id": 657}, "geometry": {"type": "Polygon", "coordinates": [[[15.9068298, -4.4764874, 0.0], [15.9068298, -4.4751183, 0.0], [15.9054565, -4.4751183, 0.0], [15.9040833, -4.4751183, 0.0], [15.9040833, -4.4764874, 0.0], [15.9040833, -4.4778565, 0.0], [15.9054565, -4.4778565, 0.0], [15.9068298, -4.4778565, 0.0], [15.9082031, -4.4778565, 0.0], [15.9082031, -4.4764874, 0.0], [15.9068298, -4.4764874, 0.0]]]}}, {"type": "Feature", "properties": {"id": 658}, "geometry": {"type": "Polygon", "coordinates": [[[15.7543945, -4.4764874, 0.0], [15.7543945, -4.4778565, 0.0], [15.7557678, -4.4778565, 0.0], [15.7557678, -4.4764874, 0.0], [15.7543945, -4.4764874, 0.0]]]}}, {"type": "Feature", "properties": {"id": 659}, "geometry": {"type": "Polygon", "coordinates": [[[15.7447815, -4.4764874, 0.0], [15.7434082, -4.4764874, 0.0], [15.7434082, -4.4778565, 0.0], [15.7447815, -4.4778565, 0.0], [15.7461548, -4.4778565, 0.0], [15.7461548, -4.4764874, 0.0], [15.7447815, -4.4764874, 0.0]]]}}, {"type": "Feature", "properties": {"id": 660}, "geometry": {"type": "Polygon", "coordinates": [[[15.9150696, -4.4764874, 0.0], [15.9150696, -4.4778565, 0.0], [15.9164429, -4.4778565, 0.0], [15.9164429, -4.4764874, 0.0], [15.9150696, -4.4764874, 0.0]]]}}, {"type": "Feature", "properties": {"id": 661}, "geometry": {"type": "Polygon", "coordinates": [[[15.7118225, -4.4751183, 0.0], [15.7118225, -4.4737492, 0.0], [15.7104492, -4.4737492, 0.0], [15.7104492, -4.4751183, 0.0], [15.7104492, -4.4764874, 0.0], [15.7118225, -4.4764874, 0.0], [15.7118225, -4.4751183, 0.0]]]}}, {"type": "Feature", "properties": {"id": 662}, "geometry": {"type": "Polygon", "coordinates": [[[15.9521484, -4.4737492, 0.0], [15.9521484, -4.4751183, 0.0], [15.9535217, -4.4751183, 0.0], [15.9535217, -4.4737492, 0.0], [15.9521484, -4.4737492, 0.0]]]}}, {"type": "Feature", "properties": {"id": 663}, "geometry": {"type": "Polygon", "coordinates": [[[15.6733704, -4.4751183, 0.0], [15.6733704, -4.4764874, 0.0], [15.6747437, -4.4764874, 0.0], [15.6747437, -4.4751183, 0.0], [15.6733704, -4.4751183, 0.0]]]}}, {"type": "Feature", "properties": {"id": 664}, "geometry": {"type": "Polygon", "coordinates": [[[15.7653809, -4.4751183, 0.0], [15.7653809, -4.4764874, 0.0], [15.7667542, -4.4764874, 0.0], [15.7667542, -4.4751183, 0.0], [15.7653809, -4.4751183, 0.0]]]}}, {"type": "Feature", "properties": {"id": 665}, "geometry": {"type": "Polygon", "coordinates": [[[15.7585144, -4.4751183, 0.0], [15.7585144, -4.4764874, 0.0], [15.7598877, -4.4764874, 0.0], [15.7598877, -4.4751183, 0.0], [15.7585144, -4.4751183, 0.0]]]}}, {"type": "Feature", "properties": {"id": 666}, "geometry": {"type": "Polygon", "coordinates": [[[15.7296753, -4.4751183, 0.0], [15.7296753, -4.4764874, 0.0], [15.7310486, -4.4764874, 0.0], [15.7310486, -4.4751183, 0.0], [15.7296753, -4.4751183, 0.0]]]}}, {"type": "Feature", "properties": {"id": 667}, "geometry": {"type": "Polygon", "coordinates": [[[15.6925964, -4.4751183, 0.0], [15.6925964, -4.4764874, 0.0], [15.6939697, -4.4764874, 0.0], [15.6939697, -4.4751183, 0.0], [15.6925964, -4.4751183, 0.0]]]}}, {"type": "Feature", "properties": {"id": 668}, "geometry": {"type": "Polygon", "coordinates": [[[15.6802368, -4.4737492, 0.0], [15.6802368, -4.4751183, 0.0], [15.6816101, -4.4751183, 0.0], [15.6816101, -4.4737492, 0.0], [15.6802368, -4.4737492, 0.0]]]}}, {"type": "Feature", "properties": {"id": 669}, "geometry": {"type": "Polygon", "coordinates": [[[15.9274292, -4.4737492, 0.0], [15.9260559, -4.4737492, 0.0], [15.9260559, -4.4751183, 0.0], [15.9274292, -4.4751183, 0.0], [15.9288025, -4.4751183, 0.0], [15.9288025, -4.4737492, 0.0], [15.9274292, -4.4737492, 0.0]]]}}, {"type": "Feature", "properties": {"id": 670}, "geometry": {"type": "Polygon", "coordinates": [[[15.8175659, -4.4737492, 0.0], [15.8175659, -4.4723801, 0.0], [15.8175659, -4.471011, 0.0], [15.8161926, -4.471011, 0.0], [15.8148193, -4.471011, 0.0], [15.8148193, -4.4723801, 0.0], [15.8161926, -4.4723801, 0.0], [15.8161926, -4.4737492, 0.0], [15.8161926, -4.4751183, 0.0], [15.8175659, -4.4751183, 0.0], [15.8175659, -4.4737492, 0.0]]]}}, {"type": "Feature", "properties": {"id": 671}, "geometry": {"type": "Polygon", "coordinates": [[[15.7626343, -4.4737492, 0.0], [15.7626343, -4.4751183, 0.0], [15.7640076, -4.4751183, 0.0], [15.7640076, -4.4737492, 0.0], [15.7626343, -4.4737492, 0.0]]]}}, {"type": "Feature", "properties": {"id": 672}, "geometry": {"type": "Polygon", "coordinates": [[[15.7571411, -4.4737492, 0.0], [15.7557678, -4.4737492, 0.0], [15.7557678, -4.4751183, 0.0], [15.7571411, -4.4751183, 0.0], [15.7585144, -4.4751183, 0.0], [15.7585144, -4.4737492, 0.0], [15.7571411, -4.4737492, 0.0]]]}}, {"type": "Feature", "properties": {"id": 673}, "geometry": {"type": "Polygon", "coordinates": [[[15.6733704, -4.4737492, 0.0], [15.6733704, -4.4723801, 0.0], [15.6719971, -4.4723801, 0.0], [15.6719971, -4.4737492, 0.0], [15.6719971, -4.4751183, 0.0], [15.6733704, -4.4751183, 0.0], [15.6733704, -4.4737492, 0.0]]]}}, {"type": "Feature", "properties": {"id": 674}, "geometry": {"type": "Polygon", "coordinates": [[[15.695343, -4.4737492, 0.0], [15.695343, -4.4751183, 0.0], [15.6967163, -4.4751183, 0.0], [15.6967163, -4.4737492, 0.0], [15.695343, -4.4737492, 0.0]]]}}, {"type": "Feature", "properties": {"id": 675}, "geometry": {"type": "Polygon", "coordinates": [[[15.9576416, -4.471011, 0.0], [15.9576416, -4.4723801, 0.0], [15.9590149, -4.4723801, 0.0], [15.9590149, -4.471011, 0.0], [15.9576416, -4.471011, 0.0]]]}}, {"type": "Feature", "properties": {"id": 676}, "geometry": {"type": "Polygon", "coordinates": [[[15.728302, -4.471011, 0.0], [15.728302, -4.4723801, 0.0], [15.7296753, -4.4723801, 0.0], [15.7296753, -4.471011, 0.0], [15.728302, -4.471011, 0.0]]]}}, {"type": "Feature", "properties": {"id": 677}, "geometry": {"type": "Polygon", "coordinates": [[[15.8821106, -4.4682727, 0.0], [15.8821106, -4.4696418, 0.0], [15.8834839, -4.4696418, 0.0], [15.8834839, -4.4682727, 0.0], [15.8821106, -4.4682727, 0.0]]]}}, {"type": "Feature", "properties": {"id": 678}, "geometry": {"type": "Polygon", "coordinates": [[[15.827179, -4.471011, 0.0], [15.827179, -4.4723801, 0.0], [15.8285522, -4.4723801, 0.0], [15.8285522, -4.471011, 0.0], [15.827179, -4.471011, 0.0]]]}}, {"type": "Feature", "properties": {"id": 679}, "geometry": {"type": "Polygon", "coordinates": [[[15.7489014, -4.471011, 0.0], [15.7489014, -4.4723801, 0.0], [15.7502747, -4.4723801, 0.0], [15.7502747, -4.471011, 0.0], [15.7489014, -4.471011, 0.0]]]}}, {"type": "Feature", "properties": {"id": 680}, "geometry": {"type": "Polygon", "coordinates": [[[15.8203125, -4.4696418, 0.0], [15.8216858, -4.4696418, 0.0], [15.8216858, -4.4682727, 0.0], [15.8203125, -4.4682727, 0.0], [15.8189392, -4.4682727, 0.0], [15.8175659, -4.4682727, 0.0], [15.8175659, -4.4696418, 0.0], [15.8175659, -4.471011, 0.0], [15.8189392, -4.471011, 0.0], [15.8203125, -4.471011, 0.0], [15.8203125, -4.4696418, 0.0]]]}}, {"type": "Feature", "properties": {"id": 681}, "geometry": {"type": "Polygon", "coordinates": [[[15.8230591, -4.4696418, 0.0], [15.8230591, -4.471011, 0.0], [15.8244324, -4.471011, 0.0], [15.8244324, -4.4696418, 0.0], [15.8230591, -4.4696418, 0.0]]]}}, {"type": "Feature", "properties": {"id": 682}, "geometry": {"type": "Polygon", "coordinates": [[[15.8670044, -4.4696418, 0.0], [15.8670044, -4.471011, 0.0], [15.8683777, -4.471011, 0.0], [15.8683777, -4.4696418, 0.0], [15.8670044, -4.4696418, 0.0]]]}}, {"type": "Feature", "properties": {"id": 683}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.4696418, 0.0], [15.7667542, -4.471011, 0.0], [15.7681274, -4.471011, 0.0], [15.7681274, -4.4696418, 0.0], [15.7667542, -4.4696418, 0.0]]]}}, {"type": "Feature", "properties": {"id": 684}, "geometry": {"type": "Polygon", "coordinates": [[[15.8862305, -4.4696418, 0.0], [15.8862305, -4.471011, 0.0], [15.8876038, -4.471011, 0.0], [15.8876038, -4.4696418, 0.0], [15.8862305, -4.4696418, 0.0]]]}}, {"type": "Feature", "properties": {"id": 685}, "geometry": {"type": "Polygon", "coordinates": [[[15.921936, -4.4682727, 0.0], [15.921936, -4.4669036, 0.0], [15.9205627, -4.4669036, 0.0], [15.9205627, -4.4682727, 0.0], [15.9205627, -4.4696418, 0.0], [15.921936, -4.4696418, 0.0], [15.921936, -4.4682727, 0.0]]]}}, {"type": "Feature", "properties": {"id": 686}, "geometry": {"type": "Polygon", "coordinates": [[[15.7640076, -4.4682727, 0.0], [15.7640076, -4.4696418, 0.0], [15.7653809, -4.4696418, 0.0], [15.7653809, -4.4682727, 0.0], [15.7640076, -4.4682727, 0.0]]]}}, {"type": "Feature", "properties": {"id": 687}, "geometry": {"type": "Polygon", "coordinates": [[[15.7406616, -4.4669036, 0.0], [15.7406616, -4.4655345, 0.0], [15.7392883, -4.4655345, 0.0], [15.7392883, -4.4669036, 0.0], [15.7392883, -4.4682727, 0.0], [15.7406616, -4.4682727, 0.0], [15.7406616, -4.4669036, 0.0]]]}}, {"type": "Feature", "properties": {"id": 688}, "geometry": {"type": "Polygon", "coordinates": [[[15.869751, -4.4669036, 0.0], [15.869751, -4.4682727, 0.0], [15.8711243, -4.4682727, 0.0], [15.8711243, -4.4669036, 0.0], [15.869751, -4.4669036, 0.0]]]}}, {"type": "Feature", "properties": {"id": 689}, "geometry": {"type": "Polygon", "coordinates": [[[15.7269287, -4.4669036, 0.0], [15.7269287, -4.4682727, 0.0], [15.728302, -4.4682727, 0.0], [15.728302, -4.4669036, 0.0], [15.7269287, -4.4669036, 0.0]]]}}, {"type": "Feature", "properties": {"id": 690}, "geometry": {"type": "Polygon", "coordinates": [[[15.7420349, -4.4655345, 0.0], [15.7420349, -4.4669036, 0.0], [15.7434082, -4.4669036, 0.0], [15.7434082, -4.4655345, 0.0], [15.7420349, -4.4655345, 0.0]]]}}, {"type": "Feature", "properties": {"id": 691}, "geometry": {"type": "Polygon", "coordinates": [[[15.9466553, -4.4641654, 0.0], [15.9466553, -4.4627962, 0.0], [15.945282, -4.4627962, 0.0], [15.9439087, -4.4627962, 0.0], [15.9439087, -4.4641654, 0.0], [15.945282, -4.4641654, 0.0], [15.945282, -4.4655345, 0.0], [15.9466553, -4.4655345, 0.0], [15.9480286, -4.4655345, 0.0], [15.9480286, -4.4641654, 0.0], [15.9466553, -4.4641654, 0.0]]]}}, {"type": "Feature", "properties": {"id": 692}, "geometry": {"type": "Polygon", "coordinates": [[[15.8807373, -4.4655345, 0.0], [15.8807373, -4.4669036, 0.0], [15.8821106, -4.4669036, 0.0], [15.8821106, -4.4655345, 0.0], [15.8807373, -4.4655345, 0.0]]]}}, {"type": "Feature", "properties": {"id": 693}, "geometry": {"type": "Polygon", "coordinates": [[[15.8258057, -4.4641654, 0.0], [15.8258057, -4.4627962, 0.0], [15.8244324, -4.4627962, 0.0], [15.8230591, -4.4627962, 0.0], [15.8230591, -4.4641654, 0.0], [15.8230591, -4.4655345, 0.0], [15.8244324, -4.4655345, 0.0], [15.8258057, -4.4655345, 0.0], [15.8258057, -4.4641654, 0.0]]]}}, {"type": "Feature", "properties": {"id": 694}, "geometry": {"type": "Polygon", "coordinates": [[[15.6816101, -4.4627962, 0.0], [15.6829834, -4.4627962, 0.0], [15.6829834, -4.4614271, 0.0], [15.6843567, -4.4614271, 0.0], [15.6843567, -4.460058, 0.0], [15.6829834, -4.460058, 0.0], [15.6829834, -4.4586888, 0.0], [15.6816101, -4.4586888, 0.0], [15.6816101, -4.4573197, 0.0], [15.6802368, -4.4573197, 0.0], [15.6802368, -4.4586888, 0.0], [15.6802368, -4.460058, 0.0], [15.6802368, -4.4614271, 0.0], [15.6802368, -4.4627962, 0.0], [15.6802368, -4.4641654, 0.0], [15.6816101, -4.4641654, 0.0], [15.6816101, -4.4627962, 0.0]]]}}, {"type": "Feature", "properties": {"id": 695}, "geometry": {"type": "Polygon", "coordinates": [[[15.8189392, -4.4627962, 0.0], [15.8189392, -4.4614271, 0.0], [15.8175659, -4.4614271, 0.0], [15.8175659, -4.4627962, 0.0], [15.8175659, -4.4641654, 0.0], [15.8189392, -4.4641654, 0.0], [15.8189392, -4.4627962, 0.0]]]}}, {"type": "Feature", "properties": {"id": 696}, "geometry": {"type": "Polygon", "coordinates": [[[15.7859802, -4.4627962, 0.0], [15.7859802, -4.4641654, 0.0], [15.7873535, -4.4641654, 0.0], [15.7873535, -4.4627962, 0.0], [15.7859802, -4.4627962, 0.0]]]}}, {"type": "Feature", "properties": {"id": 697}, "geometry": {"type": "Polygon", "coordinates": [[[15.8285522, -4.4641654, 0.0], [15.8285522, -4.4627962, 0.0], [15.827179, -4.4627962, 0.0], [15.827179, -4.4641654, 0.0], [15.827179, -4.4655345, 0.0], [15.8285522, -4.4655345, 0.0], [15.8285522, -4.4641654, 0.0]]]}}, {"type": "Feature", "properties": {"id": 698}, "geometry": {"type": "Polygon", "coordinates": [[[15.8518982, -4.4627962, 0.0], [15.8518982, -4.4641654, 0.0], [15.8532715, -4.4641654, 0.0], [15.8532715, -4.4627962, 0.0], [15.8518982, -4.4627962, 0.0]]]}}, {"type": "Feature", "properties": {"id": 699}, "geometry": {"type": "Polygon", "coordinates": [[[15.869751, -4.4627962, 0.0], [15.869751, -4.4641654, 0.0], [15.8711243, -4.4641654, 0.0], [15.8711243, -4.4627962, 0.0], [15.869751, -4.4627962, 0.0]]]}}, {"type": "Feature", "properties": {"id": 700}, "geometry": {"type": "Polygon", "coordinates": [[[15.7008362, -4.4627962, 0.0], [15.7008362, -4.4614271, 0.0], [15.6994629, -4.4614271, 0.0], [15.6994629, -4.4627962, 0.0], [15.6994629, -4.4641654, 0.0], [15.7008362, -4.4641654, 0.0], [15.7008362, -4.4627962, 0.0]]]}}, {"type": "Feature", "properties": {"id": 701}, "geometry": {"type": "Polygon", "coordinates": [[[15.9260559, -4.4627962, 0.0], [15.9260559, -4.4641654, 0.0], [15.9274292, -4.4641654, 0.0], [15.9274292, -4.4627962, 0.0], [15.9260559, -4.4627962, 0.0]]]}}, {"type": "Feature", "properties": {"id": 702}, "geometry": {"type": "Polygon", "coordinates": [[[15.921936, -4.4627962, 0.0], [15.9205627, -4.4627962, 0.0], [15.9205627, -4.4641654, 0.0], [15.921936, -4.4641654, 0.0], [15.9233093, -4.4641654, 0.0], [15.9233093, -4.4627962, 0.0], [15.921936, -4.4627962, 0.0]]]}}, {"type": "Feature", "properties": {"id": 703}, "geometry": {"type": "Polygon", "coordinates": [[[15.8862305, -4.4627962, 0.0], [15.8862305, -4.4641654, 0.0], [15.8876038, -4.4641654, 0.0], [15.8876038, -4.4627962, 0.0], [15.8862305, -4.4627962, 0.0]]]}}, {"type": "Feature", "properties": {"id": 704}, "geometry": {"type": "Polygon", "coordinates": [[[15.9274292, -4.4614271, 0.0], [15.9274292, -4.4627962, 0.0], [15.9288025, -4.4627962, 0.0], [15.9288025, -4.4614271, 0.0], [15.9274292, -4.4614271, 0.0]]]}}, {"type": "Feature", "properties": {"id": 705}, "geometry": {"type": "Polygon", "coordinates": [[[15.8683777, -4.4614271, 0.0], [15.8683777, -4.4627962, 0.0], [15.869751, -4.4627962, 0.0], [15.869751, -4.4614271, 0.0], [15.8683777, -4.4614271, 0.0]]]}}, {"type": "Feature", "properties": {"id": 706}, "geometry": {"type": "Polygon", "coordinates": [[[15.7324219, -4.4614271, 0.0], [15.7324219, -4.4627962, 0.0], [15.7337952, -4.4627962, 0.0], [15.7337952, -4.4614271, 0.0], [15.7324219, -4.4614271, 0.0]]]}}, {"type": "Feature", "properties": {"id": 707}, "geometry": {"type": "Polygon", "coordinates": [[[15.8216858, -4.4614271, 0.0], [15.8216858, -4.460058, 0.0], [15.8203125, -4.460058, 0.0], [15.8203125, -4.4614271, 0.0], [15.8203125, -4.4627962, 0.0], [15.8216858, -4.4627962, 0.0], [15.8216858, -4.4614271, 0.0]]]}}, {"type": "Feature", "properties": {"id": 708}, "geometry": {"type": "Polygon", "coordinates": [[[15.7749939, -4.4614271, 0.0], [15.7749939, -4.460058, 0.0], [15.7736206, -4.460058, 0.0], [15.7736206, -4.4614271, 0.0], [15.7736206, -4.4627962, 0.0], [15.7749939, -4.4627962, 0.0], [15.7749939, -4.4614271, 0.0]]]}}, {"type": "Feature", "properties": {"id": 709}, "geometry": {"type": "Polygon", "coordinates": [[[15.8285522, -4.4614271, 0.0], [15.8285522, -4.4627962, 0.0], [15.8299255, -4.4627962, 0.0], [15.8299255, -4.4614271, 0.0], [15.8285522, -4.4614271, 0.0]]]}}, {"type": "Feature", "properties": {"id": 710}, "geometry": {"type": "Polygon", "coordinates": [[[15.8326721, -4.4614271, 0.0], [15.8326721, -4.4627962, 0.0], [15.8340454, -4.4627962, 0.0], [15.8340454, -4.4614271, 0.0], [15.8326721, -4.4614271, 0.0]]]}}, {"type": "Feature", "properties": {"id": 711}, "geometry": {"type": "Polygon", "coordinates": [[[15.813446, -4.460058, 0.0], [15.813446, -4.4586888, 0.0], [15.8120728, -4.4586888, 0.0], [15.8120728, -4.460058, 0.0], [15.8120728, -4.4614271, 0.0], [15.813446, -4.4614271, 0.0], [15.813446, -4.460058, 0.0]]]}}, {"type": "Feature", "properties": {"id": 712}, "geometry": {"type": "Polygon", "coordinates": [[[15.8642578, -4.460058, 0.0], [15.8642578, -4.4614271, 0.0], [15.8656311, -4.4614271, 0.0], [15.8656311, -4.460058, 0.0], [15.8642578, -4.460058, 0.0]]]}}, {"type": "Feature", "properties": {"id": 713}, "geometry": {"type": "Polygon", "coordinates": [[[15.8285522, -4.460058, 0.0], [15.8299255, -4.460058, 0.0], [15.8299255, -4.4586888, 0.0], [15.8285522, -4.4586888, 0.0], [15.8285522, -4.4573197, 0.0], [15.827179, -4.4573197, 0.0], [15.827179, -4.4586888, 0.0], [15.8258057, -4.4586888, 0.0], [15.8258057, -4.460058, 0.0], [15.827179, -4.460058, 0.0], [15.827179, -4.4614271, 0.0], [15.8285522, -4.4614271, 0.0], [15.8285522, -4.460058, 0.0]]]}}, {"type": "Feature", "properties": {"id": 714}, "geometry": {"type": "Polygon", "coordinates": [[[15.6898499, -4.4586888, 0.0], [15.6898499, -4.460058, 0.0], [15.6912231, -4.460058, 0.0], [15.6912231, -4.4586888, 0.0], [15.6898499, -4.4586888, 0.0]]]}}, {"type": "Feature", "properties": {"id": 715}, "geometry": {"type": "Polygon", "coordinates": [[[15.7447815, -4.460058, 0.0], [15.7447815, -4.4614271, 0.0], [15.7461548, -4.4614271, 0.0], [15.7475281, -4.4614271, 0.0], [15.7475281, -4.460058, 0.0], [15.7461548, -4.460058, 0.0], [15.7447815, -4.460058, 0.0]]]}}, {"type": "Feature", "properties": {"id": 716}, "geometry": {"type": "Polygon", "coordinates": [[[15.7543945, -4.460058, 0.0], [15.7557678, -4.460058, 0.0], [15.7557678, -4.4586888, 0.0], [15.7543945, -4.4586888, 0.0], [15.7530212, -4.4586888, 0.0], [15.7530212, -4.460058, 0.0], [15.7530212, -4.4614271, 0.0], [15.7543945, -4.4614271, 0.0], [15.7543945, -4.460058, 0.0]]]}}, {"type": "Feature", "properties": {"id": 717}, "geometry": {"type": "Polygon", "coordinates": [[[15.7434082, -4.4586888, 0.0], [15.7434082, -4.460058, 0.0], [15.7447815, -4.460058, 0.0], [15.7447815, -4.4586888, 0.0], [15.7434082, -4.4586888, 0.0]]]}}, {"type": "Feature", "properties": {"id": 718}, "geometry": {"type": "Polygon", "coordinates": [[[15.7736206, -4.4586888, 0.0], [15.7736206, -4.4573197, 0.0], [15.7722473, -4.4573197, 0.0], [15.7722473, -4.4586888, 0.0], [15.7722473, -4.460058, 0.0], [15.7736206, -4.460058, 0.0], [15.7736206, -4.4586888, 0.0]]]}}, {"type": "Feature", "properties": {"id": 719}, "geometry": {"type": "Polygon", "coordinates": [[[15.9301758, -4.4586888, 0.0], [15.9301758, -4.460058, 0.0], [15.9315491, -4.460058, 0.0], [15.9315491, -4.4586888, 0.0], [15.9301758, -4.4586888, 0.0]]]}}, {"type": "Feature", "properties": {"id": 720}, "geometry": {"type": "Polygon", "coordinates": [[[15.9590149, -4.4573197, 0.0], [15.9590149, -4.4586888, 0.0], [15.9603882, -4.4586888, 0.0], [15.9603882, -4.4573197, 0.0], [15.9590149, -4.4573197, 0.0]]]}}, {"type": "Feature", "properties": {"id": 721}, "geometry": {"type": "Polygon", "coordinates": [[[15.9246826, -4.4573197, 0.0], [15.9246826, -4.4586888, 0.0], [15.9260559, -4.4586888, 0.0], [15.9260559, -4.4573197, 0.0], [15.9246826, -4.4573197, 0.0]]]}}, {"type": "Feature", "properties": {"id": 722}, "geometry": {"type": "Polygon", "coordinates": [[[15.7406616, -4.4573197, 0.0], [15.7406616, -4.4586888, 0.0], [15.7420349, -4.4586888, 0.0], [15.7420349, -4.4573197, 0.0], [15.7406616, -4.4573197, 0.0]]]}}, {"type": "Feature", "properties": {"id": 723}, "geometry": {"type": "Polygon", "coordinates": [[[15.7351685, -4.4573197, 0.0], [15.7351685, -4.4586888, 0.0], [15.7365417, -4.4586888, 0.0], [15.7365417, -4.4573197, 0.0], [15.7351685, -4.4573197, 0.0]]]}}, {"type": "Feature", "properties": {"id": 724}, "geometry": {"type": "Polygon", "coordinates": [[[15.8230591, -4.4573197, 0.0], [15.8216858, -4.4573197, 0.0], [15.8203125, -4.4573197, 0.0], [15.8203125, -4.4586888, 0.0], [15.8216858, -4.4586888, 0.0], [15.8230591, -4.4586888, 0.0], [15.8244324, -4.4586888, 0.0], [15.8244324, -4.4573197, 0.0], [15.8230591, -4.4573197, 0.0]]]}}, {"type": "Feature", "properties": {"id": 725}, "geometry": {"type": "Polygon", "coordinates": [[[15.7983398, -4.4573197, 0.0], [15.7983398, -4.4586888, 0.0], [15.7997131, -4.4586888, 0.0], [15.7997131, -4.4573197, 0.0], [15.7983398, -4.4573197, 0.0]]]}}, {"type": "Feature", "properties": {"id": 726}, "geometry": {"type": "Polygon", "coordinates": [[[15.7310486, -4.450474, 0.0], [15.7324219, -4.450474, 0.0], [15.7324219, -4.4491048, 0.0], [15.7324219, -4.4477357, 0.0], [15.7310486, -4.4477357, 0.0], [15.7296753, -4.4477357, 0.0], [15.728302, -4.4477357, 0.0], [15.728302, -4.4491048, 0.0], [15.7269287, -4.4491048, 0.0], [15.7269287, -4.450474, 0.0], [15.728302, -4.450474, 0.0], [15.7296753, -4.450474, 0.0], [15.7296753, -4.4518431, 0.0], [15.7310486, -4.4518431, 0.0], [15.7310486, -4.450474, 0.0]]]}}, {"type": "Feature", "properties": {"id": 727}, "geometry": {"type": "Polygon", "coordinates": [[[15.827179, -4.4518431, 0.0], [15.827179, -4.4532123, 0.0], [15.8285522, -4.4532123, 0.0], [15.8285522, -4.4518431, 0.0], [15.827179, -4.4518431, 0.0]]]}}, {"type": "Feature", "properties": {"id": 728}, "geometry": {"type": "Polygon", "coordinates": [[[15.9837341, -4.450474, 0.0], [15.9837341, -4.4518431, 0.0], [15.9851074, -4.4518431, 0.0], [15.9851074, -4.450474, 0.0], [15.9837341, -4.450474, 0.0]]]}}, {"type": "Feature", "properties": {"id": 729}, "geometry": {"type": "Polygon", "coordinates": [[[15.9480286, -4.450474, 0.0], [15.9480286, -4.4518431, 0.0], [15.9494019, -4.4518431, 0.0], [15.9494019, -4.450474, 0.0], [15.9480286, -4.450474, 0.0]]]}}, {"type": "Feature", "properties": {"id": 730}, "geometry": {"type": "Polygon", "coordinates": [[[15.9356689, -4.450474, 0.0], [15.9356689, -4.4491048, 0.0], [15.9342957, -4.4491048, 0.0], [15.9342957, -4.450474, 0.0], [15.9342957, -4.4518431, 0.0], [15.9356689, -4.4518431, 0.0], [15.9356689, -4.450474, 0.0]]]}}, {"type": "Feature", "properties": {"id": 731}, "geometry": {"type": "Polygon", "coordinates": [[[15.9425354, -4.450474, 0.0], [15.9439087, -4.450474, 0.0], [15.9439087, -4.4491048, 0.0], [15.9425354, -4.4491048, 0.0], [15.9425354, -4.4477357, 0.0], [15.9411621, -4.4477357, 0.0], [15.9411621, -4.4491048, 0.0], [15.9411621, -4.450474, 0.0], [15.9411621, -4.4518431, 0.0], [15.9425354, -4.4518431, 0.0], [15.9425354, -4.450474, 0.0]]]}}, {"type": "Feature", "properties": {"id": 732}, "geometry": {"type": "Polygon", "coordinates": [[[15.9274292, -4.4518431, 0.0], [15.9274292, -4.4532123, 0.0], [15.9288025, -4.4532123, 0.0], [15.9288025, -4.4518431, 0.0], [15.9274292, -4.4518431, 0.0]]]}}, {"type": "Feature", "properties": {"id": 733}, "geometry": {"type": "Polygon", "coordinates": [[[15.8560181, -4.4491048, 0.0], [15.8560181, -4.450474, 0.0], [15.8573914, -4.450474, 0.0], [15.8573914, -4.4491048, 0.0], [15.8560181, -4.4491048, 0.0]]]}}, {"type": "Feature", "properties": {"id": 734}, "geometry": {"type": "Polygon", "coordinates": [[[15.9288025, -4.4491048, 0.0], [15.9288025, -4.4477357, 0.0], [15.9274292, -4.4477357, 0.0], [15.9274292, -4.4491048, 0.0], [15.9274292, -4.450474, 0.0], [15.9288025, -4.450474, 0.0], [15.9301758, -4.450474, 0.0], [15.9301758, -4.4491048, 0.0], [15.9288025, -4.4491048, 0.0]]]}}, {"type": "Feature", "properties": {"id": 735}, "geometry": {"type": "Polygon", "coordinates": [[[15.9288025, -4.4545814, 0.0], [15.9288025, -4.4559506, 0.0], [15.9301758, -4.4559506, 0.0], [15.9301758, -4.4545814, 0.0], [15.9288025, -4.4545814, 0.0]]]}}, {"type": "Feature", "properties": {"id": 736}, "geometry": {"type": "Polygon", "coordinates": [[[15.9260559, -4.4559506, 0.0], [15.9260559, -4.4573197, 0.0], [15.9274292, -4.4573197, 0.0], [15.9274292, -4.4559506, 0.0], [15.9260559, -4.4559506, 0.0]]]}}, {"type": "Feature", "properties": {"id": 737}, "geometry": {"type": "Polygon", "coordinates": [[[15.8120728, -4.4559506, 0.0], [15.8120728, -4.4573197, 0.0], [15.813446, -4.4573197, 0.0], [15.813446, -4.4559506, 0.0], [15.8120728, -4.4559506, 0.0]]]}}, {"type": "Feature", "properties": {"id": 738}, "geometry": {"type": "Polygon", "coordinates": [[[15.7928467, -4.4532123, 0.0], [15.7928467, -4.4545814, 0.0], [15.79422, -4.4545814, 0.0], [15.79422, -4.4532123, 0.0], [15.7928467, -4.4532123, 0.0]]]}}, {"type": "Feature", "properties": {"id": 739}, "geometry": {"type": "Polygon", "coordinates": [[[15.9246826, -4.4545814, 0.0], [15.9246826, -4.4559506, 0.0], [15.9260559, -4.4559506, 0.0], [15.9260559, -4.4545814, 0.0], [15.9246826, -4.4545814, 0.0]]]}}, {"type": "Feature", "properties": {"id": 740}, "geometry": {"type": "Polygon", "coordinates": [[[15.827179, -4.4545814, 0.0], [15.827179, -4.4532123, 0.0], [15.8258057, -4.4532123, 0.0], [15.8258057, -4.4545814, 0.0], [15.8258057, -4.4559506, 0.0], [15.827179, -4.4559506, 0.0], [15.8285522, -4.4559506, 0.0], [15.8285522, -4.4545814, 0.0], [15.827179, -4.4545814, 0.0]]]}}, {"type": "Feature", "properties": {"id": 741}, "geometry": {"type": "Polygon", "coordinates": [[[15.8093262, -4.4491048, 0.0], [15.8093262, -4.450474, 0.0], [15.8106995, -4.450474, 0.0], [15.8106995, -4.4491048, 0.0], [15.8093262, -4.4491048, 0.0]]]}}, {"type": "Feature", "properties": {"id": 742}, "geometry": {"type": "Polygon", "coordinates": [[[15.718689, -4.4491048, 0.0], [15.718689, -4.4477357, 0.0], [15.7173157, -4.4477357, 0.0], [15.7173157, -4.4463665, 0.0], [15.7173157, -4.4449974, 0.0], [15.7159424, -4.4449974, 0.0], [15.7159424, -4.4436282, 0.0], [15.7159424, -4.442259, 0.0], [15.7159424, -4.4408899, 0.0], [15.7145691, -4.4408899, 0.0], [15.7131958, -4.4408899, 0.0], [15.7131958, -4.442259, 0.0], [15.7145691, -4.442259, 0.0], [15.7145691, -4.4436282, 0.0], [15.7145691, -4.4449974, 0.0], [15.7145691, -4.4463665, 0.0], [15.7145691, -4.4477357, 0.0], [15.7159424, -4.4477357, 0.0], [15.7159424, -4.4491048, 0.0], [15.7159424, -4.450474, 0.0], [15.7173157, -4.450474, 0.0], [15.718689, -4.450474, 0.0], [15.718689, -4.4491048, 0.0]]]}}, {"type": "Feature", "properties": {"id": 743}, "geometry": {"type": "Polygon", "coordinates": [[[15.9439087, -4.4477357, 0.0], [15.9439087, -4.4491048, 0.0], [15.945282, -4.4491048, 0.0], [15.945282, -4.4477357, 0.0], [15.9439087, -4.4477357, 0.0]]]}}, {"type": "Feature", "properties": {"id": 744}, "geometry": {"type": "Polygon", "coordinates": [[[15.6788635, -4.4477357, 0.0], [15.6788635, -4.4491048, 0.0], [15.6802368, -4.4491048, 0.0], [15.6802368, -4.4477357, 0.0], [15.6788635, -4.4477357, 0.0]]]}}, {"type": "Feature", "properties": {"id": 745}, "geometry": {"type": "Polygon", "coordinates": [[[15.9233093, -4.4449974, 0.0], [15.921936, -4.4449974, 0.0], [15.921936, -4.4463665, 0.0], [15.921936, -4.4477357, 0.0], [15.9233093, -4.4477357, 0.0], [15.9246826, -4.4477357, 0.0], [15.9246826, -4.4463665, 0.0], [15.9246826, -4.4449974, 0.0], [15.9233093, -4.4449974, 0.0]]]}}, {"type": "Feature", "properties": {"id": 746}, "geometry": {"type": "Polygon", "coordinates": [[[15.8120728, -4.4477357, 0.0], [15.8120728, -4.4491048, 0.0], [15.813446, -4.4491048, 0.0], [15.813446, -4.4477357, 0.0], [15.8120728, -4.4477357, 0.0]]]}}, {"type": "Feature", "properties": {"id": 747}, "geometry": {"type": "Polygon", "coordinates": [[[15.9164429, -4.4463665, 0.0], [15.9164429, -4.4477357, 0.0], [15.9178162, -4.4477357, 0.0], [15.9178162, -4.4463665, 0.0], [15.9164429, -4.4463665, 0.0]]]}}, {"type": "Feature", "properties": {"id": 748}, "geometry": {"type": "Polygon", "coordinates": [[[15.7983398, -4.4463665, 0.0], [15.7983398, -4.4477357, 0.0], [15.7997131, -4.4477357, 0.0], [15.7997131, -4.4463665, 0.0], [15.7983398, -4.4463665, 0.0]]]}}, {"type": "Feature", "properties": {"id": 749}, "geometry": {"type": "Polygon", "coordinates": [[[15.9191895, -4.4449974, 0.0], [15.9191895, -4.4463665, 0.0], [15.9205627, -4.4463665, 0.0], [15.9205627, -4.4449974, 0.0], [15.9191895, -4.4449974, 0.0]]]}}, {"type": "Feature", "properties": {"id": 750}, "geometry": {"type": "Polygon", "coordinates": [[[15.9617615, -4.4449974, 0.0], [15.9617615, -4.4463665, 0.0], [15.9631348, -4.4463665, 0.0], [15.9631348, -4.4449974, 0.0], [15.9617615, -4.4449974, 0.0]]]}}, {"type": "Feature", "properties": {"id": 751}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.4449974, 0.0], [15.7667542, -4.4463665, 0.0], [15.7681274, -4.4463665, 0.0], [15.7681274, -4.4449974, 0.0], [15.7667542, -4.4449974, 0.0]]]}}, {"type": "Feature", "properties": {"id": 752}, "geometry": {"type": "Polygon", "coordinates": [[[15.7516479, -4.4449974, 0.0], [15.7516479, -4.4463665, 0.0], [15.7530212, -4.4463665, 0.0], [15.7530212, -4.4449974, 0.0], [15.7516479, -4.4449974, 0.0]]]}}, {"type": "Feature", "properties": {"id": 753}, "geometry": {"type": "Polygon", "coordinates": [[[15.7104492, -4.4436282, 0.0], [15.7104492, -4.4449974, 0.0], [15.7118225, -4.4449974, 0.0], [15.7118225, -4.4436282, 0.0], [15.7104492, -4.4436282, 0.0]]]}}, {"type": "Feature", "properties": {"id": 754}, "geometry": {"type": "Polygon", "coordinates": [[[15.9274292, -4.4436282, 0.0], [15.9274292, -4.4449974, 0.0], [15.9288025, -4.4449974, 0.0], [15.9288025, -4.4436282, 0.0], [15.9274292, -4.4436282, 0.0]]]}}, {"type": "Feature", "properties": {"id": 755}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.442259, 0.0], [15.7557678, -4.4408899, 0.0], [15.7543945, -4.4408899, 0.0], [15.7543945, -4.442259, 0.0], [15.7530212, -4.442259, 0.0], [15.7530212, -4.4436282, 0.0], [15.7530212, -4.4449974, 0.0], [15.7543945, -4.4449974, 0.0], [15.7557678, -4.4449974, 0.0], [15.7557678, -4.4436282, 0.0], [15.7557678, -4.442259, 0.0]]]}}, {"type": "Feature", "properties": {"id": 756}, "geometry": {"type": "Polygon", "coordinates": [[[15.9397888, -4.4436282, 0.0], [15.9397888, -4.4449974, 0.0], [15.9411621, -4.4449974, 0.0], [15.9411621, -4.4436282, 0.0], [15.9397888, -4.4436282, 0.0]]]}}, {"type": "Feature", "properties": {"id": 757}, "geometry": {"type": "Polygon", "coordinates": [[[15.9178162, -4.442259, 0.0], [15.9178162, -4.4436282, 0.0], [15.9191895, -4.4436282, 0.0], [15.9191895, -4.442259, 0.0], [15.9178162, -4.442259, 0.0]]]}}, {"type": "Feature", "properties": {"id": 758}, "geometry": {"type": "Polygon", "coordinates": [[[15.7420349, -4.442259, 0.0], [15.7420349, -4.4408899, 0.0], [15.7420349, -4.4395207, 0.0], [15.7406616, -4.4395207, 0.0], [15.7406616, -4.4408899, 0.0], [15.7392883, -4.4408899, 0.0], [15.7392883, -4.442259, 0.0], [15.737915, -4.442259, 0.0], [15.737915, -4.4436282, 0.0], [15.7392883, -4.4436282, 0.0], [15.7406616, -4.4436282, 0.0], [15.7420349, -4.4436282, 0.0], [15.7420349, -4.442259, 0.0]]]}}, {"type": "Feature", "properties": {"id": 759}, "geometry": {"type": "Polygon", "coordinates": [[[15.7214355, -4.442259, 0.0], [15.7200623, -4.442259, 0.0], [15.7200623, -4.4436282, 0.0], [15.7214355, -4.4436282, 0.0], [15.7228088, -4.4436282, 0.0], [15.7228088, -4.442259, 0.0], [15.7214355, -4.442259, 0.0]]]}}, {"type": "Feature", "properties": {"id": 760}, "geometry": {"type": "Polygon", "coordinates": [[[15.68573, -4.4408899, 0.0], [15.68573, -4.442259, 0.0], [15.6871033, -4.442259, 0.0], [15.6871033, -4.4408899, 0.0], [15.68573, -4.4408899, 0.0]]]}}, {"type": "Feature", "properties": {"id": 761}, "geometry": {"type": "Polygon", "coordinates": [[[15.8670044, -4.4395207, 0.0], [15.8656311, -4.4395207, 0.0], [15.8656311, -4.4408899, 0.0], [15.8670044, -4.4408899, 0.0], [15.8683777, -4.4408899, 0.0], [15.8683777, -4.4395207, 0.0], [15.8670044, -4.4395207, 0.0]]]}}, {"type": "Feature", "properties": {"id": 762}, "geometry": {"type": "Polygon", "coordinates": [[[15.9411621, -4.4395207, 0.0], [15.9411621, -4.4408899, 0.0], [15.9425354, -4.4408899, 0.0], [15.9425354, -4.4395207, 0.0], [15.9411621, -4.4395207, 0.0]]]}}, {"type": "Feature", "properties": {"id": 763}, "geometry": {"type": "Polygon", "coordinates": [[[15.9342957, -4.4395207, 0.0], [15.9342957, -4.4381515, 0.0], [15.9356689, -4.4381515, 0.0], [15.9356689, -4.4367824, 0.0], [15.9370422, -4.4367824, 0.0], [15.9370422, -4.4354132, 0.0], [15.9356689, -4.4354132, 0.0], [15.9356689, -4.434044, 0.0], [15.9370422, -4.434044, 0.0], [15.9384155, -4.434044, 0.0], [15.9397888, -4.434044, 0.0], [15.9397888, -4.4326748, 0.0], [15.9384155, -4.4326748, 0.0], [15.9370422, -4.4326748, 0.0], [15.9356689, -4.4326748, 0.0], [15.9342957, -4.4326748, 0.0], [15.9329224, -4.4326748, 0.0], [15.9315491, -4.4326748, 0.0], [15.9315491, -4.4313056, 0.0], [15.9315491, -4.4299365, 0.0], [15.9301758, -4.4299365, 0.0], [15.9301758, -4.4285673, 0.0], [15.9301758, -4.4271981, 0.0], [15.9301758, -4.4258289, 0.0], [15.9288025, -4.4258289, 0.0], [15.9274292, -4.4258289, 0.0], [15.9274292, -4.4271981, 0.0], [15.9288025, -4.4271981, 0.0], [15.9288025, -4.4285673, 0.0], [15.9274292, -4.4285673, 0.0], [15.9274292, -4.4299365, 0.0], [15.9288025, -4.4299365, 0.0], [15.9288025, -4.4313056, 0.0], [15.9288025, -4.4326748, 0.0], [15.9288025, -4.434044, 0.0], [15.9274292, -4.434044, 0.0], [15.9274292, -4.4354132, 0.0], [15.9288025, -4.4354132, 0.0], [15.9301758, -4.4354132, 0.0], [15.9301758, -4.4367824, 0.0], [15.9315491, -4.4367824, 0.0], [15.9315491, -4.4381515, 0.0], [15.9329224, -4.4381515, 0.0], [15.9329224, -4.4395207, 0.0], [15.9329224, -4.4408899, 0.0], [15.9342957, -4.4408899, 0.0], [15.9356689, -4.4408899, 0.0], [15.9356689, -4.4395207, 0.0], [15.9342957, -4.4395207, 0.0]]]}}, {"type": "Feature", "properties": {"id": 764}, "geometry": {"type": "Polygon", "coordinates": [[[15.9109497, -4.4381515, 0.0], [15.9109497, -4.4395207, 0.0], [15.912323, -4.4395207, 0.0], [15.9136963, -4.4395207, 0.0], [15.9136963, -4.4381515, 0.0], [15.912323, -4.4381515, 0.0], [15.9109497, -4.4381515, 0.0]]]}}, {"type": "Feature", "properties": {"id": 765}, "geometry": {"type": "Polygon", "coordinates": [[[15.7434082, -4.4381515, 0.0], [15.7434082, -4.4367824, 0.0], [15.7447815, -4.4367824, 0.0], [15.7447815, -4.4354132, 0.0], [15.7434082, -4.4354132, 0.0], [15.7420349, -4.4354132, 0.0], [15.7420349, -4.4367824, 0.0], [15.7420349, -4.4381515, 0.0], [15.7420349, -4.4395207, 0.0], [15.7434082, -4.4395207, 0.0], [15.7434082, -4.4381515, 0.0]]]}}, {"type": "Feature", "properties": {"id": 766}, "geometry": {"type": "Polygon", "coordinates": [[[15.7502747, -4.4381515, 0.0], [15.7516479, -4.4381515, 0.0], [15.7516479, -4.4367824, 0.0], [15.7502747, -4.4367824, 0.0], [15.7489014, -4.4367824, 0.0], [15.7489014, -4.4381515, 0.0], [15.7489014, -4.4395207, 0.0], [15.7502747, -4.4395207, 0.0], [15.7502747, -4.4381515, 0.0]]]}}, {"type": "Feature", "properties": {"id": 767}, "geometry": {"type": "Polygon", "coordinates": [[[15.921936, -4.4381515, 0.0], [15.921936, -4.4395207, 0.0], [15.9233093, -4.4395207, 0.0], [15.9233093, -4.4381515, 0.0], [15.921936, -4.4381515, 0.0]]]}}, {"type": "Feature", "properties": {"id": 768}, "geometry": {"type": "Polygon", "coordinates": [[[15.7763672, -4.4367824, 0.0], [15.7763672, -4.4381515, 0.0], [15.7777405, -4.4381515, 0.0], [15.7777405, -4.4367824, 0.0], [15.7763672, -4.4367824, 0.0]]]}}, {"type": "Feature", "properties": {"id": 769}, "geometry": {"type": "Polygon", "coordinates": [[[15.921936, -4.4354132, 0.0], [15.921936, -4.4367824, 0.0], [15.9233093, -4.4367824, 0.0], [15.9233093, -4.4354132, 0.0], [15.921936, -4.4354132, 0.0]]]}}, {"type": "Feature", "properties": {"id": 770}, "geometry": {"type": "Polygon", "coordinates": [[[15.7214355, -4.4354132, 0.0], [15.7214355, -4.4367824, 0.0], [15.7228088, -4.4367824, 0.0], [15.7228088, -4.4354132, 0.0], [15.7214355, -4.4354132, 0.0]]]}}, {"type": "Feature", "properties": {"id": 771}, "geometry": {"type": "Polygon", "coordinates": [[[15.7077026, -4.434044, 0.0], [15.7077026, -4.4326748, 0.0], [15.7063293, -4.4326748, 0.0], [15.7063293, -4.434044, 0.0], [15.7049561, -4.434044, 0.0], [15.7049561, -4.4354132, 0.0], [15.7063293, -4.4354132, 0.0], [15.7077026, -4.4354132, 0.0], [15.7077026, -4.434044, 0.0]]]}}, {"type": "Feature", "properties": {"id": 772}, "geometry": {"type": "Polygon", "coordinates": [[[15.9136963, -4.4354132, 0.0], [15.9136963, -4.4367824, 0.0], [15.9150696, -4.4367824, 0.0], [15.9150696, -4.4354132, 0.0], [15.9136963, -4.4354132, 0.0]]]}}, {"type": "Feature", "properties": {"id": 773}, "geometry": {"type": "Polygon", "coordinates": [[[15.7640076, -4.4354132, 0.0], [15.7640076, -4.4367824, 0.0], [15.7653809, -4.4367824, 0.0], [15.7653809, -4.4354132, 0.0], [15.7640076, -4.4354132, 0.0]]]}}, {"type": "Feature", "properties": {"id": 774}, "geometry": {"type": "Polygon", "coordinates": [[[15.7255554, -4.4354132, 0.0], [15.7255554, -4.434044, 0.0], [15.7255554, -4.4326748, 0.0], [15.7241821, -4.4326748, 0.0], [15.7241821, -4.434044, 0.0], [15.7241821, -4.4354132, 0.0], [15.7241821, -4.4367824, 0.0], [15.7255554, -4.4367824, 0.0], [15.7255554, -4.4354132, 0.0]]]}}, {"type": "Feature", "properties": {"id": 775}, "geometry": {"type": "Polygon", "coordinates": [[[15.9658813, -4.434044, 0.0], [15.9658813, -4.4354132, 0.0], [15.9672546, -4.4354132, 0.0], [15.9672546, -4.434044, 0.0], [15.9658813, -4.434044, 0.0]]]}}, {"type": "Feature", "properties": {"id": 776}, "geometry": {"type": "Polygon", "coordinates": [[[15.7200623, -4.434044, 0.0], [15.7200623, -4.4354132, 0.0], [15.7214355, -4.4354132, 0.0], [15.7214355, -4.434044, 0.0], [15.7200623, -4.434044, 0.0]]]}}, {"type": "Feature", "properties": {"id": 777}, "geometry": {"type": "Polygon", "coordinates": [[[15.9109497, -4.434044, 0.0], [15.9109497, -4.4354132, 0.0], [15.912323, -4.4354132, 0.0], [15.9136963, -4.4354132, 0.0], [15.9136963, -4.434044, 0.0], [15.912323, -4.434044, 0.0], [15.9109497, -4.434044, 0.0]]]}}, {"type": "Feature", "properties": {"id": 778}, "geometry": {"type": "Polygon", "coordinates": [[[15.7653809, -4.434044, 0.0], [15.7653809, -4.4354132, 0.0], [15.7667542, -4.4354132, 0.0], [15.7667542, -4.434044, 0.0], [15.7653809, -4.434044, 0.0]]]}}, {"type": "Feature", "properties": {"id": 779}, "geometry": {"type": "Polygon", "coordinates": [[[15.7008362, -4.4326748, 0.0], [15.7008362, -4.4313056, 0.0], [15.6994629, -4.4313056, 0.0], [15.6980896, -4.4313056, 0.0], [15.6967163, -4.4313056, 0.0], [15.6967163, -4.4326748, 0.0], [15.6980896, -4.4326748, 0.0], [15.6980896, -4.434044, 0.0], [15.6994629, -4.434044, 0.0], [15.7008362, -4.434044, 0.0], [15.7022095, -4.434044, 0.0], [15.7022095, -4.4326748, 0.0], [15.7008362, -4.4326748, 0.0]]]}}, {"type": "Feature", "properties": {"id": 780}, "geometry": {"type": "Polygon", "coordinates": [[[15.7159424, -4.4326748, 0.0], [15.7145691, -4.4326748, 0.0], [15.7145691, -4.434044, 0.0], [15.7159424, -4.434044, 0.0], [15.7173157, -4.434044, 0.0], [15.718689, -4.434044, 0.0], [15.7200623, -4.434044, 0.0], [15.7200623, -4.4326748, 0.0], [15.718689, -4.4326748, 0.0], [15.7173157, -4.4326748, 0.0], [15.7159424, -4.4326748, 0.0]]]}}, {"type": "Feature", "properties": {"id": 781}, "geometry": {"type": "Polygon", "coordinates": [[[15.8670044, -4.4326748, 0.0], [15.8670044, -4.434044, 0.0], [15.8683777, -4.434044, 0.0], [15.869751, -4.434044, 0.0], [15.869751, -4.4326748, 0.0], [15.8711243, -4.4326748, 0.0], [15.8711243, -4.4313056, 0.0], [15.869751, -4.4313056, 0.0], [15.869751, -4.4299365, 0.0], [15.869751, -4.4285673, 0.0], [15.869751, -4.4271981, 0.0], [15.869751, -4.4258289, 0.0], [15.869751, -4.4244597, 0.0], [15.8683777, -4.4244597, 0.0], [15.8683777, -4.4258289, 0.0], [15.8683777, -4.4271981, 0.0], [15.8683777, -4.4285673, 0.0], [15.8683777, -4.4299365, 0.0], [15.8683777, -4.4313056, 0.0], [15.8683777, -4.4326748, 0.0], [15.8670044, -4.4326748, 0.0]]]}}, {"type": "Feature", "properties": {"id": 782}, "geometry": {"type": "Polygon", "coordinates": [[[15.9919739, -4.4326748, 0.0], [15.9919739, -4.434044, 0.0], [15.9933472, -4.434044, 0.0], [15.9933472, -4.4326748, 0.0], [15.9919739, -4.4326748, 0.0]]]}}, {"type": "Feature", "properties": {"id": 783}, "geometry": {"type": "Polygon", "coordinates": [[[15.9082031, -4.4326748, 0.0], [15.9082031, -4.434044, 0.0], [15.9095764, -4.434044, 0.0], [15.9095764, -4.4326748, 0.0], [15.9082031, -4.4326748, 0.0]]]}}, {"type": "Feature", "properties": {"id": 784}, "geometry": {"type": "Polygon", "coordinates": [[[15.7365417, -4.4326748, 0.0], [15.7365417, -4.434044, 0.0], [15.737915, -4.434044, 0.0], [15.737915, -4.4326748, 0.0], [15.7365417, -4.4326748, 0.0]]]}}, {"type": "Feature", "properties": {"id": 785}, "geometry": {"type": "Polygon", "coordinates": [[[15.7420349, -4.4313056, 0.0], [15.7420349, -4.4326748, 0.0], [15.7434082, -4.4326748, 0.0], [15.7434082, -4.4313056, 0.0], [15.7420349, -4.4313056, 0.0]]]}}, {"type": "Feature", "properties": {"id": 786}, "geometry": {"type": "Polygon", "coordinates": [[[15.9439087, -4.4313056, 0.0], [15.9425354, -4.4313056, 0.0], [15.9425354, -4.4326748, 0.0], [15.9439087, -4.4326748, 0.0], [15.945282, -4.4326748, 0.0], [15.945282, -4.4313056, 0.0], [15.9439087, -4.4313056, 0.0]]]}}, {"type": "Feature", "properties": {"id": 787}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -4.4313056, 0.0], [15.7543945, -4.4313056, 0.0], [15.7543945, -4.4299365, 0.0], [15.7530212, -4.4299365, 0.0], [15.7516479, -4.4299365, 0.0], [15.7516479, -4.4313056, 0.0], [15.7516479, -4.4326748, 0.0], [15.7530212, -4.4326748, 0.0], [15.7530212, -4.4313056, 0.0]]]}}, {"type": "Feature", "properties": {"id": 788}, "geometry": {"type": "Polygon", "coordinates": [[[15.8889771, -4.4313056, 0.0], [15.8889771, -4.4299365, 0.0], [15.8876038, -4.4299365, 0.0], [15.8876038, -4.4313056, 0.0], [15.8876038, -4.4326748, 0.0], [15.8889771, -4.4326748, 0.0], [15.8889771, -4.4313056, 0.0]]]}}, {"type": "Feature", "properties": {"id": 789}, "geometry": {"type": "Polygon", "coordinates": [[[15.8985901, -4.4313056, 0.0], [15.8972168, -4.4313056, 0.0], [15.8972168, -4.4326748, 0.0], [15.8985901, -4.4326748, 0.0], [15.8999634, -4.4326748, 0.0], [15.8999634, -4.4313056, 0.0], [15.8985901, -4.4313056, 0.0]]]}}, {"type": "Feature", "properties": {"id": 790}, "geometry": {"type": "Polygon", "coordinates": [[[15.9260559, -4.4313056, 0.0], [15.9260559, -4.4326748, 0.0], [15.9274292, -4.4326748, 0.0], [15.9274292, -4.4313056, 0.0], [15.9260559, -4.4313056, 0.0]]]}}, {"type": "Feature", "properties": {"id": 791}, "geometry": {"type": "Polygon", "coordinates": [[[15.9851074, -4.4299365, 0.0], [15.9851074, -4.4313056, 0.0], [15.9864807, -4.4313056, 0.0], [15.9864807, -4.4299365, 0.0], [15.9851074, -4.4299365, 0.0]]]}}, {"type": "Feature", "properties": {"id": 792}, "geometry": {"type": "Polygon", "coordinates": [[[15.7228088, -4.4299365, 0.0], [15.7228088, -4.4285673, 0.0], [15.7214355, -4.4285673, 0.0], [15.7200623, -4.4285673, 0.0], [15.718689, -4.4285673, 0.0], [15.718689, -4.4299365, 0.0], [15.7200623, -4.4299365, 0.0], [15.7214355, -4.4299365, 0.0], [15.7214355, -4.4313056, 0.0], [15.7228088, -4.4313056, 0.0], [15.7228088, -4.4299365, 0.0]]]}}, {"type": "Feature", "properties": {"id": 793}, "geometry": {"type": "Polygon", "coordinates": [[[15.9672546, -4.4299365, 0.0], [15.9672546, -4.4313056, 0.0], [15.9686279, -4.4313056, 0.0], [15.9686279, -4.4299365, 0.0], [15.9672546, -4.4299365, 0.0]]]}}, {"type": "Feature", "properties": {"id": 794}, "geometry": {"type": "Polygon", "coordinates": [[[15.9136963, -4.4299365, 0.0], [15.9136963, -4.4313056, 0.0], [15.9150696, -4.4313056, 0.0], [15.9150696, -4.4299365, 0.0], [15.9136963, -4.4299365, 0.0]]]}}, {"type": "Feature", "properties": {"id": 795}, "geometry": {"type": "Polygon", "coordinates": [[[15.9466553, -4.4285673, 0.0], [15.9466553, -4.4299365, 0.0], [15.9480286, -4.4299365, 0.0], [15.9480286, -4.4285673, 0.0], [15.9466553, -4.4285673, 0.0]]]}}, {"type": "Feature", "properties": {"id": 796}, "geometry": {"type": "Polygon", "coordinates": [[[15.9150696, -4.4285673, 0.0], [15.9150696, -4.4299365, 0.0], [15.9164429, -4.4299365, 0.0], [15.9178162, -4.4299365, 0.0], [15.9178162, -4.4285673, 0.0], [15.9164429, -4.4285673, 0.0], [15.9150696, -4.4285673, 0.0]]]}}, {"type": "Feature", "properties": {"id": 797}, "geometry": {"type": "Polygon", "coordinates": [[[15.8120728, -4.4285673, 0.0], [15.8120728, -4.4299365, 0.0], [15.813446, -4.4299365, 0.0], [15.813446, -4.4285673, 0.0], [15.8120728, -4.4285673, 0.0]]]}}, {"type": "Feature", "properties": {"id": 798}, "geometry": {"type": "Polygon", "coordinates": [[[15.7406616, -4.4285673, 0.0], [15.7392883, -4.4285673, 0.0], [15.7392883, -4.4299365, 0.0], [15.7406616, -4.4299365, 0.0], [15.7420349, -4.4299365, 0.0], [15.7420349, -4.4285673, 0.0], [15.7406616, -4.4285673, 0.0]]]}}, {"type": "Feature", "properties": {"id": 799}, "geometry": {"type": "Polygon", "coordinates": [[[15.846405, -4.4271981, 0.0], [15.846405, -4.4285673, 0.0], [15.8477783, -4.4285673, 0.0], [15.8477783, -4.4271981, 0.0], [15.846405, -4.4271981, 0.0]]]}}, {"type": "Feature", "properties": {"id": 800}, "geometry": {"type": "Polygon", "coordinates": [[[15.9521484, -4.4258289, 0.0], [15.9521484, -4.4271981, 0.0], [15.9535217, -4.4271981, 0.0], [15.9535217, -4.4258289, 0.0], [15.9521484, -4.4258289, 0.0]]]}}, {"type": "Feature", "properties": {"id": 801}, "geometry": {"type": "Polygon", "coordinates": [[[15.7461548, -4.4258289, 0.0], [15.7475281, -4.4258289, 0.0], [15.7475281, -4.4244597, 0.0], [15.7475281, -4.4230905, 0.0], [15.7475281, -4.4217213, 0.0], [15.7475281, -4.4203521, 0.0], [15.7461548, -4.4203521, 0.0], [15.7461548, -4.4217213, 0.0], [15.7461548, -4.4230905, 0.0], [15.7447815, -4.4230905, 0.0], [15.7447815, -4.4244597, 0.0], [15.7447815, -4.4258289, 0.0], [15.7461548, -4.4258289, 0.0]]]}}, {"type": "Feature", "properties": {"id": 802}, "geometry": {"type": "Polygon", "coordinates": [[[15.7585144, -4.4258289, 0.0], [15.7585144, -4.4271981, 0.0], [15.7598877, -4.4271981, 0.0], [15.7598877, -4.4258289, 0.0], [15.7585144, -4.4258289, 0.0]]]}}, {"type": "Feature", "properties": {"id": 803}, "geometry": {"type": "Polygon", "coordinates": [[[15.8518982, -4.4258289, 0.0], [15.8518982, -4.4271981, 0.0], [15.8532715, -4.4271981, 0.0], [15.8532715, -4.4258289, 0.0], [15.8518982, -4.4258289, 0.0]]]}}, {"type": "Feature", "properties": {"id": 804}, "geometry": {"type": "Polygon", "coordinates": [[[15.7777405, -4.4258289, 0.0], [15.7777405, -4.4271981, 0.0], [15.7791138, -4.4271981, 0.0], [15.7791138, -4.4258289, 0.0], [15.7777405, -4.4258289, 0.0]]]}}, {"type": "Feature", "properties": {"id": 805}, "geometry": {"type": "Polygon", "coordinates": [[[15.7818604, -4.4244597, 0.0], [15.7818604, -4.4230905, 0.0], [15.7818604, -4.4217213, 0.0], [15.7804871, -4.4217213, 0.0], [15.7804871, -4.4230905, 0.0], [15.7804871, -4.4244597, 0.0], [15.7804871, -4.4258289, 0.0], [15.7818604, -4.4258289, 0.0], [15.7832336, -4.4258289, 0.0], [15.7832336, -4.4244597, 0.0], [15.7818604, -4.4244597, 0.0]]]}}, {"type": "Feature", "properties": {"id": 806}, "geometry": {"type": "Polygon", "coordinates": [[[15.8615112, -4.4244597, 0.0], [15.8615112, -4.4230905, 0.0], [15.8601379, -4.4230905, 0.0], [15.8601379, -4.4244597, 0.0], [15.8587646, -4.4244597, 0.0], [15.8587646, -4.4258289, 0.0], [15.8601379, -4.4258289, 0.0], [15.8615112, -4.4258289, 0.0], [15.8615112, -4.4244597, 0.0]]]}}, {"type": "Feature", "properties": {"id": 807}, "geometry": {"type": "Polygon", "coordinates": [[[15.8532715, -4.4244597, 0.0], [15.8532715, -4.4258289, 0.0], [15.8546448, -4.4258289, 0.0], [15.8546448, -4.4244597, 0.0], [15.8532715, -4.4244597, 0.0]]]}}, {"type": "Feature", "properties": {"id": 808}, "geometry": {"type": "Polygon", "coordinates": [[[15.9466553, -4.4244597, 0.0], [15.9466553, -4.4258289, 0.0], [15.9480286, -4.4258289, 0.0], [15.9480286, -4.4244597, 0.0], [15.9466553, -4.4244597, 0.0]]]}}, {"type": "Feature", "properties": {"id": 809}, "geometry": {"type": "Polygon", "coordinates": [[[15.8244324, -4.4244597, 0.0], [15.8244324, -4.4230905, 0.0], [15.8230591, -4.4230905, 0.0], [15.8230591, -4.4244597, 0.0], [15.8230591, -4.4258289, 0.0], [15.8244324, -4.4258289, 0.0], [15.8244324, -4.4244597, 0.0]]]}}, {"type": "Feature", "properties": {"id": 810}, "geometry": {"type": "Polygon", "coordinates": [[[15.7420349, -4.4244597, 0.0], [15.7420349, -4.4258289, 0.0], [15.7434082, -4.4258289, 0.0], [15.7434082, -4.4244597, 0.0], [15.7420349, -4.4244597, 0.0]]]}}, {"type": "Feature", "properties": {"id": 811}, "geometry": {"type": "Polygon", "coordinates": [[[15.7640076, -4.4244597, 0.0], [15.7640076, -4.4258289, 0.0], [15.7653809, -4.4258289, 0.0], [15.7653809, -4.4244597, 0.0], [15.7640076, -4.4244597, 0.0]]]}}, {"type": "Feature", "properties": {"id": 812}, "geometry": {"type": "Polygon", "coordinates": [[[15.7873535, -4.4244597, 0.0], [15.7873535, -4.4258289, 0.0], [15.7887268, -4.4258289, 0.0], [15.7887268, -4.4244597, 0.0], [15.7873535, -4.4244597, 0.0]]]}}, {"type": "Feature", "properties": {"id": 813}, "geometry": {"type": "Polygon", "coordinates": [[[15.8889771, -4.4230905, 0.0], [15.8889771, -4.4244597, 0.0], [15.8903503, -4.4244597, 0.0], [15.8903503, -4.4230905, 0.0], [15.8889771, -4.4230905, 0.0]]]}}, {"type": "Feature", "properties": {"id": 814}, "geometry": {"type": "Polygon", "coordinates": [[[15.8985901, -4.4217213, 0.0], [15.8985901, -4.4203521, 0.0], [15.8972168, -4.4203521, 0.0], [15.8972168, -4.4189829, 0.0], [15.8958435, -4.4189829, 0.0], [15.8958435, -4.4203521, 0.0], [15.8958435, -4.4217213, 0.0], [15.8972168, -4.4217213, 0.0], [15.8972168, -4.4230905, 0.0], [15.8985901, -4.4230905, 0.0], [15.8985901, -4.4217213, 0.0]]]}}, {"type": "Feature", "properties": {"id": 815}, "geometry": {"type": "Polygon", "coordinates": [[[15.912323, -4.4217213, 0.0], [15.912323, -4.4203521, 0.0], [15.9109497, -4.4203521, 0.0], [15.9095764, -4.4203521, 0.0], [15.9095764, -4.4217213, 0.0], [15.9095764, -4.4230905, 0.0], [15.9109497, -4.4230905, 0.0], [15.912323, -4.4230905, 0.0], [15.9136963, -4.4230905, 0.0], [15.9136963, -4.4217213, 0.0], [15.912323, -4.4217213, 0.0]]]}}, {"type": "Feature", "properties": {"id": 816}, "geometry": {"type": "Polygon", "coordinates": [[[15.8738708, -4.4217213, 0.0], [15.8738708, -4.4230905, 0.0], [15.8752441, -4.4230905, 0.0], [15.8752441, -4.4217213, 0.0], [15.8738708, -4.4217213, 0.0]]]}}, {"type": "Feature", "properties": {"id": 817}, "geometry": {"type": "Polygon", "coordinates": [[[15.945282, -4.4217213, 0.0], [15.945282, -4.4230905, 0.0], [15.9466553, -4.4230905, 0.0], [15.9480286, -4.4230905, 0.0], [15.9480286, -4.4217213, 0.0], [15.9466553, -4.4217213, 0.0], [15.945282, -4.4217213, 0.0]]]}}, {"type": "Feature", "properties": {"id": 818}, "geometry": {"type": "Polygon", "coordinates": [[[15.8079529, -4.4217213, 0.0], [15.8093262, -4.4217213, 0.0], [15.8093262, -4.4203521, 0.0], [15.8079529, -4.4203521, 0.0], [15.8065796, -4.4203521, 0.0], [15.8065796, -4.4217213, 0.0], [15.8065796, -4.4230905, 0.0], [15.8079529, -4.4230905, 0.0], [15.8079529, -4.4217213, 0.0]]]}}, {"type": "Feature", "properties": {"id": 819}, "geometry": {"type": "Polygon", "coordinates": [[[15.9301758, -4.4203521, 0.0], [15.9301758, -4.4189829, 0.0], [15.9288025, -4.4189829, 0.0], [15.9274292, -4.4189829, 0.0], [15.9274292, -4.4203521, 0.0], [15.9288025, -4.4203521, 0.0], [15.9288025, -4.4217213, 0.0], [15.9301758, -4.4217213, 0.0], [15.9301758, -4.4203521, 0.0]]]}}, {"type": "Feature", "properties": {"id": 820}, "geometry": {"type": "Polygon", "coordinates": [[[15.7873535, -4.4203521, 0.0], [15.7887268, -4.4203521, 0.0], [15.7887268, -4.4189829, 0.0], [15.7873535, -4.4189829, 0.0], [15.7859802, -4.4189829, 0.0], [15.7859802, -4.4203521, 0.0], [15.7859802, -4.4217213, 0.0], [15.7873535, -4.4217213, 0.0], [15.7873535, -4.4203521, 0.0]]]}}, {"type": "Feature", "properties": {"id": 821}, "geometry": {"type": "Polygon", "coordinates": [[[15.761261, -4.4203521, 0.0], [15.761261, -4.4217213, 0.0], [15.7626343, -4.4217213, 0.0], [15.7626343, -4.4203521, 0.0], [15.761261, -4.4203521, 0.0]]]}}, {"type": "Feature", "properties": {"id": 822}, "geometry": {"type": "Polygon", "coordinates": [[[15.7214355, -4.4203521, 0.0], [15.7214355, -4.4189829, 0.0], [15.7200623, -4.4189829, 0.0], [15.718689, -4.4189829, 0.0], [15.7173157, -4.4189829, 0.0], [15.7173157, -4.4203521, 0.0], [15.718689, -4.4203521, 0.0], [15.718689, -4.4217213, 0.0], [15.7200623, -4.4217213, 0.0], [15.7214355, -4.4217213, 0.0], [15.7228088, -4.4217213, 0.0], [15.7228088, -4.4203521, 0.0], [15.7214355, -4.4203521, 0.0]]]}}, {"type": "Feature", "properties": {"id": 823}, "geometry": {"type": "Polygon", "coordinates": [[[15.7502747, -4.4189829, 0.0], [15.7502747, -4.4203521, 0.0], [15.7516479, -4.4203521, 0.0], [15.7516479, -4.4189829, 0.0], [15.7502747, -4.4189829, 0.0]]]}}, {"type": "Feature", "properties": {"id": 824}, "geometry": {"type": "Polygon", "coordinates": [[[15.9054565, -4.4203521, 0.0], [15.9054565, -4.4217213, 0.0], [15.9068298, -4.4217213, 0.0], [15.9068298, -4.4203521, 0.0], [15.9054565, -4.4203521, 0.0]]]}}, {"type": "Feature", "properties": {"id": 825}, "geometry": {"type": "Polygon", "coordinates": [[[15.9013367, -4.4203521, 0.0], [15.9013367, -4.4189829, 0.0], [15.8999634, -4.4189829, 0.0], [15.8999634, -4.4203521, 0.0], [15.8999634, -4.4217213, 0.0], [15.9013367, -4.4217213, 0.0], [15.90271, -4.4217213, 0.0], [15.90271, -4.4203521, 0.0], [15.9013367, -4.4203521, 0.0]]]}}, {"type": "Feature", "properties": {"id": 826}, "geometry": {"type": "Polygon", "coordinates": [[[15.8834839, -4.4203521, 0.0], [15.8834839, -4.4217213, 0.0], [15.8848572, -4.4217213, 0.0], [15.8848572, -4.4203521, 0.0], [15.8834839, -4.4203521, 0.0]]]}}, {"type": "Feature", "properties": {"id": 827}, "geometry": {"type": "Polygon", "coordinates": [[[15.7228088, -4.4189829, 0.0], [15.7228088, -4.4203521, 0.0], [15.7241821, -4.4203521, 0.0], [15.7241821, -4.4189829, 0.0], [15.7228088, -4.4189829, 0.0]]]}}, {"type": "Feature", "properties": {"id": 828}, "geometry": {"type": "Polygon", "coordinates": [[[15.7626343, -4.4189829, 0.0], [15.7626343, -4.4203521, 0.0], [15.7640076, -4.4203521, 0.0], [15.7640076, -4.4189829, 0.0], [15.7626343, -4.4189829, 0.0]]]}}, {"type": "Feature", "properties": {"id": 829}, "geometry": {"type": "Polygon", "coordinates": [[[15.7736206, -4.4189829, 0.0], [15.7736206, -4.4203521, 0.0], [15.7749939, -4.4203521, 0.0], [15.7749939, -4.4189829, 0.0], [15.7736206, -4.4189829, 0.0]]]}}, {"type": "Feature", "properties": {"id": 830}, "geometry": {"type": "Polygon", "coordinates": [[[15.869751, -4.4189829, 0.0], [15.869751, -4.4176137, 0.0], [15.869751, -4.4162444, 0.0], [15.8711243, -4.4162444, 0.0], [15.8711243, -4.4148752, 0.0], [15.8711243, -4.413506, 0.0], [15.869751, -4.413506, 0.0], [15.869751, -4.4148752, 0.0], [15.8683777, -4.4148752, 0.0], [15.8683777, -4.4162444, 0.0], [15.8683777, -4.4176137, 0.0], [15.8670044, -4.4176137, 0.0], [15.8670044, -4.4189829, 0.0], [15.8683777, -4.4189829, 0.0], [15.8683777, -4.4203521, 0.0], [15.869751, -4.4203521, 0.0], [15.869751, -4.4189829, 0.0]]]}}, {"type": "Feature", "properties": {"id": 831}, "geometry": {"type": "Polygon", "coordinates": [[[15.8930969, -4.4176137, 0.0], [15.8944702, -4.4176137, 0.0], [15.8944702, -4.4189829, 0.0], [15.8958435, -4.4189829, 0.0], [15.8958435, -4.4176137, 0.0], [15.8958435, -4.4162444, 0.0], [15.8944702, -4.4162444, 0.0], [15.8930969, -4.4162444, 0.0], [15.8917236, -4.4162444, 0.0], [15.8917236, -4.4176137, 0.0], [15.8917236, -4.4189829, 0.0], [15.8930969, -4.4189829, 0.0], [15.8930969, -4.4176137, 0.0]]]}}, {"type": "Feature", "properties": {"id": 832}, "geometry": {"type": "Polygon", "coordinates": [[[15.9713745, -4.4176137, 0.0], [15.9713745, -4.4189829, 0.0], [15.9727478, -4.4189829, 0.0], [15.9727478, -4.4176137, 0.0], [15.9713745, -4.4176137, 0.0]]]}}, {"type": "Feature", "properties": {"id": 833}, "geometry": {"type": "Polygon", "coordinates": [[[15.8821106, -4.4176137, 0.0], [15.8821106, -4.4189829, 0.0], [15.8834839, -4.4189829, 0.0], [15.8834839, -4.4176137, 0.0], [15.8821106, -4.4176137, 0.0]]]}}, {"type": "Feature", "properties": {"id": 834}, "geometry": {"type": "Polygon", "coordinates": [[[15.879364, -4.4176137, 0.0], [15.879364, -4.4189829, 0.0], [15.8807373, -4.4189829, 0.0], [15.8807373, -4.4176137, 0.0], [15.879364, -4.4176137, 0.0]]]}}, {"type": "Feature", "properties": {"id": 835}, "geometry": {"type": "Polygon", "coordinates": [[[15.8161926, -4.4176137, 0.0], [15.8161926, -4.4162444, 0.0], [15.8148193, -4.4162444, 0.0], [15.813446, -4.4162444, 0.0], [15.813446, -4.4176137, 0.0], [15.813446, -4.4189829, 0.0], [15.8148193, -4.4189829, 0.0], [15.8161926, -4.4189829, 0.0], [15.8161926, -4.4176137, 0.0]]]}}, {"type": "Feature", "properties": {"id": 836}, "geometry": {"type": "Polygon", "coordinates": [[[15.9205627, -4.4176137, 0.0], [15.9205627, -4.4189829, 0.0], [15.921936, -4.4189829, 0.0], [15.921936, -4.4176137, 0.0], [15.9205627, -4.4176137, 0.0]]]}}, {"type": "Feature", "properties": {"id": 837}, "geometry": {"type": "Polygon", "coordinates": [[[15.8340454, -4.4176137, 0.0], [15.8340454, -4.4189829, 0.0], [15.8354187, -4.4189829, 0.0], [15.8354187, -4.4176137, 0.0], [15.8340454, -4.4176137, 0.0]]]}}, {"type": "Feature", "properties": {"id": 838}, "geometry": {"type": "Polygon", "coordinates": [[[15.8834839, -4.4162444, 0.0], [15.8834839, -4.4176137, 0.0], [15.8848572, -4.4176137, 0.0], [15.8848572, -4.4162444, 0.0], [15.8834839, -4.4162444, 0.0]]]}}, {"type": "Feature", "properties": {"id": 839}, "geometry": {"type": "Polygon", "coordinates": [[[15.7214355, -4.4162444, 0.0], [15.7214355, -4.4176137, 0.0], [15.7228088, -4.4176137, 0.0], [15.7228088, -4.4162444, 0.0], [15.7214355, -4.4162444, 0.0]]]}}, {"type": "Feature", "properties": {"id": 840}, "geometry": {"type": "Polygon", "coordinates": [[[15.8010864, -4.4148752, 0.0], [15.8010864, -4.4162444, 0.0], [15.8024597, -4.4162444, 0.0], [15.8024597, -4.4148752, 0.0], [15.8010864, -4.4148752, 0.0]]]}}, {"type": "Feature", "properties": {"id": 841}, "geometry": {"type": "Polygon", "coordinates": [[[15.718689, -4.4148752, 0.0], [15.718689, -4.4162444, 0.0], [15.7200623, -4.4162444, 0.0], [15.7214355, -4.4162444, 0.0], [15.7214355, -4.4148752, 0.0], [15.7214355, -4.413506, 0.0], [15.7200623, -4.413506, 0.0], [15.7200623, -4.4148752, 0.0], [15.718689, -4.4148752, 0.0]]]}}, {"type": "Feature", "properties": {"id": 842}, "geometry": {"type": "Polygon", "coordinates": [[[15.8848572, -4.4148752, 0.0], [15.8848572, -4.4162444, 0.0], [15.8862305, -4.4162444, 0.0], [15.8862305, -4.4148752, 0.0], [15.8848572, -4.4148752, 0.0]]]}}, {"type": "Feature", "properties": {"id": 843}, "geometry": {"type": "Polygon", "coordinates": [[[15.7502747, -4.413506, 0.0], [15.7502747, -4.4148752, 0.0], [15.7516479, -4.4148752, 0.0], [15.7516479, -4.413506, 0.0], [15.7502747, -4.413506, 0.0]]]}}, {"type": "Feature", "properties": {"id": 844}, "geometry": {"type": "Polygon", "coordinates": [[[15.7846069, -4.4148752, 0.0], [15.7846069, -4.413506, 0.0], [15.7832336, -4.413506, 0.0], [15.7818604, -4.413506, 0.0], [15.7818604, -4.4148752, 0.0], [15.7832336, -4.4148752, 0.0], [15.7832336, -4.4162444, 0.0], [15.7846069, -4.4162444, 0.0], [15.7846069, -4.4148752, 0.0]]]}}, {"type": "Feature", "properties": {"id": 845}, "geometry": {"type": "Polygon", "coordinates": [[[15.8120728, -4.4148752, 0.0], [15.8120728, -4.4162444, 0.0], [15.813446, -4.4162444, 0.0], [15.813446, -4.4148752, 0.0], [15.8120728, -4.4148752, 0.0]]]}}, {"type": "Feature", "properties": {"id": 846}, "geometry": {"type": "Polygon", "coordinates": [[[15.9054565, -4.413506, 0.0], [15.9054565, -4.4148752, 0.0], [15.9068298, -4.4148752, 0.0], [15.9082031, -4.4148752, 0.0], [15.9082031, -4.413506, 0.0], [15.9082031, -4.4121368, 0.0], [15.9068298, -4.4121368, 0.0], [15.9068298, -4.413506, 0.0], [15.9054565, -4.413506, 0.0]]]}}, {"type": "Feature", "properties": {"id": 847}, "geometry": {"type": "Polygon", "coordinates": [[[15.8285522, -4.413506, 0.0], [15.8285522, -4.4121368, 0.0], [15.8285522, -4.4107676, 0.0], [15.8299255, -4.4107676, 0.0], [15.8299255, -4.4093983, 0.0], [15.8285522, -4.4093983, 0.0], [15.827179, -4.4093983, 0.0], [15.827179, -4.4107676, 0.0], [15.827179, -4.4121368, 0.0], [15.8258057, -4.4121368, 0.0], [15.8244324, -4.4121368, 0.0], [15.8244324, -4.413506, 0.0], [15.8258057, -4.413506, 0.0], [15.8258057, -4.4148752, 0.0], [15.827179, -4.4148752, 0.0], [15.8285522, -4.4148752, 0.0], [15.8299255, -4.4148752, 0.0], [15.8299255, -4.413506, 0.0], [15.8285522, -4.413506, 0.0]]]}}, {"type": "Feature", "properties": {"id": 848}, "geometry": {"type": "Polygon", "coordinates": [[[15.7035828, -4.413506, 0.0], [15.7035828, -4.4121368, 0.0], [15.7022095, -4.4121368, 0.0], [15.7022095, -4.413506, 0.0], [15.7022095, -4.4148752, 0.0], [15.7035828, -4.4148752, 0.0], [15.7035828, -4.413506, 0.0]]]}}, {"type": "Feature", "properties": {"id": 849}, "geometry": {"type": "Polygon", "coordinates": [[[15.7145691, -4.413506, 0.0], [15.7145691, -4.4148752, 0.0], [15.7159424, -4.4148752, 0.0], [15.7159424, -4.413506, 0.0], [15.7145691, -4.413506, 0.0]]]}}, {"type": "Feature", "properties": {"id": 850}, "geometry": {"type": "Polygon", "coordinates": [[[15.7571411, -4.413506, 0.0], [15.7571411, -4.4148752, 0.0], [15.7585144, -4.4148752, 0.0], [15.7585144, -4.413506, 0.0], [15.7571411, -4.413506, 0.0]]]}}, {"type": "Feature", "properties": {"id": 851}, "geometry": {"type": "Polygon", "coordinates": [[[15.7736206, -4.413506, 0.0], [15.7736206, -4.4148752, 0.0], [15.7749939, -4.4148752, 0.0], [15.7749939, -4.413506, 0.0], [15.7736206, -4.413506, 0.0]]]}}, {"type": "Feature", "properties": {"id": 852}, "geometry": {"type": "Polygon", "coordinates": [[[15.7777405, -4.413506, 0.0], [15.7777405, -4.4148752, 0.0], [15.7791138, -4.4148752, 0.0], [15.7791138, -4.413506, 0.0], [15.7777405, -4.413506, 0.0]]]}}, {"type": "Feature", "properties": {"id": 853}, "geometry": {"type": "Polygon", "coordinates": [[[15.803833, -4.4121368, 0.0], [15.8052063, -4.4121368, 0.0], [15.8052063, -4.4107676, 0.0], [15.803833, -4.4107676, 0.0], [15.803833, -4.4093983, 0.0], [15.8024597, -4.4093983, 0.0], [15.8024597, -4.4080291, 0.0], [15.8010864, -4.4080291, 0.0], [15.7997131, -4.4080291, 0.0], [15.7983398, -4.4080291, 0.0], [15.7969666, -4.4080291, 0.0], [15.7969666, -4.4093983, 0.0], [15.7969666, -4.4107676, 0.0], [15.7983398, -4.4107676, 0.0], [15.7997131, -4.4107676, 0.0], [15.7997131, -4.4121368, 0.0], [15.8010864, -4.4121368, 0.0], [15.8024597, -4.4121368, 0.0], [15.8024597, -4.413506, 0.0], [15.803833, -4.413506, 0.0], [15.803833, -4.4121368, 0.0]]]}}, {"type": "Feature", "properties": {"id": 854}, "geometry": {"type": "Polygon", "coordinates": [[[15.7653809, -4.4121368, 0.0], [15.7653809, -4.413506, 0.0], [15.7667542, -4.413506, 0.0], [15.7667542, -4.4121368, 0.0], [15.7653809, -4.4121368, 0.0]]]}}, {"type": "Feature", "properties": {"id": 855}, "geometry": {"type": "Polygon", "coordinates": [[[15.8711243, -4.4121368, 0.0], [15.8711243, -4.413506, 0.0], [15.8724976, -4.413506, 0.0], [15.8724976, -4.4121368, 0.0], [15.8711243, -4.4121368, 0.0]]]}}, {"type": "Feature", "properties": {"id": 856}, "geometry": {"type": "Polygon", "coordinates": [[[15.8477783, -4.4121368, 0.0], [15.8477783, -4.413506, 0.0], [15.8491516, -4.413506, 0.0], [15.8491516, -4.4121368, 0.0], [15.8477783, -4.4121368, 0.0]]]}}, {"type": "Feature", "properties": {"id": 857}, "geometry": {"type": "Polygon", "coordinates": [[[15.7406616, -4.4121368, 0.0], [15.7406616, -4.413506, 0.0], [15.7420349, -4.413506, 0.0], [15.7420349, -4.4121368, 0.0], [15.7406616, -4.4121368, 0.0]]]}}, {"type": "Feature", "properties": {"id": 858}, "geometry": {"type": "Polygon", "coordinates": [[[15.737915, -4.4121368, 0.0], [15.7365417, -4.4121368, 0.0], [15.7365417, -4.413506, 0.0], [15.737915, -4.413506, 0.0], [15.7392883, -4.413506, 0.0], [15.7392883, -4.4121368, 0.0], [15.737915, -4.4121368, 0.0]]]}}, {"type": "Feature", "properties": {"id": 859}, "geometry": {"type": "Polygon", "coordinates": [[[15.7241821, -4.4121368, 0.0], [15.7228088, -4.4121368, 0.0], [15.7228088, -4.413506, 0.0], [15.7241821, -4.413506, 0.0], [15.7255554, -4.413506, 0.0], [15.7255554, -4.4121368, 0.0], [15.7241821, -4.4121368, 0.0]]]}}, {"type": "Feature", "properties": {"id": 860}, "geometry": {"type": "Polygon", "coordinates": [[[15.7090759, -4.4121368, 0.0], [15.7090759, -4.413506, 0.0], [15.7104492, -4.413506, 0.0], [15.7104492, -4.4121368, 0.0], [15.7090759, -4.4121368, 0.0]]]}}, {"type": "Feature", "properties": {"id": 861}, "geometry": {"type": "Polygon", "coordinates": [[[15.9411621, -4.4107676, 0.0], [15.9411621, -4.4121368, 0.0], [15.9425354, -4.4121368, 0.0], [15.9425354, -4.4107676, 0.0], [15.9411621, -4.4107676, 0.0]]]}}, {"type": "Feature", "properties": {"id": 862}, "geometry": {"type": "Polygon", "coordinates": [[[15.879364, -4.4121368, 0.0], [15.879364, -4.413506, 0.0], [15.8807373, -4.413506, 0.0], [15.8807373, -4.4121368, 0.0], [15.879364, -4.4121368, 0.0]]]}}, {"type": "Feature", "properties": {"id": 863}, "geometry": {"type": "Polygon", "coordinates": [[[15.8340454, -4.4107676, 0.0], [15.8340454, -4.4121368, 0.0], [15.8354187, -4.4121368, 0.0], [15.8354187, -4.4107676, 0.0], [15.8340454, -4.4107676, 0.0]]]}}, {"type": "Feature", "properties": {"id": 864}, "geometry": {"type": "Polygon", "coordinates": [[[15.8312988, -4.4107676, 0.0], [15.8312988, -4.4121368, 0.0], [15.8326721, -4.4121368, 0.0], [15.8326721, -4.4107676, 0.0], [15.8312988, -4.4107676, 0.0]]]}}, {"type": "Feature", "properties": {"id": 865}, "geometry": {"type": "Polygon", "coordinates": [[[15.7228088, -4.4093983, 0.0], [15.7228088, -4.4107676, 0.0], [15.7241821, -4.4107676, 0.0], [15.7255554, -4.4107676, 0.0], [15.7255554, -4.4093983, 0.0], [15.7241821, -4.4093983, 0.0], [15.7228088, -4.4093983, 0.0]]]}}, {"type": "Feature", "properties": {"id": 866}, "geometry": {"type": "Polygon", "coordinates": [[[15.8999634, -4.4093983, 0.0], [15.8999634, -4.4107676, 0.0], [15.9013367, -4.4107676, 0.0], [15.9013367, -4.4093983, 0.0], [15.8999634, -4.4093983, 0.0]]]}}, {"type": "Feature", "properties": {"id": 867}, "geometry": {"type": "Polygon", "coordinates": [[[15.7296753, -4.4093983, 0.0], [15.7296753, -4.4107676, 0.0], [15.7310486, -4.4107676, 0.0], [15.7310486, -4.4093983, 0.0], [15.7296753, -4.4093983, 0.0]]]}}, {"type": "Feature", "properties": {"id": 868}, "geometry": {"type": "Polygon", "coordinates": [[[15.8052063, -4.4093983, 0.0], [15.8052063, -4.4107676, 0.0], [15.8065796, -4.4107676, 0.0], [15.8065796, -4.4093983, 0.0], [15.8052063, -4.4093983, 0.0]]]}}, {"type": "Feature", "properties": {"id": 869}, "geometry": {"type": "Polygon", "coordinates": [[[15.8724976, -4.4093983, 0.0], [15.8738708, -4.4093983, 0.0], [15.8738708, -4.4080291, 0.0], [15.8724976, -4.4080291, 0.0], [15.8711243, -4.4080291, 0.0], [15.8711243, -4.4093983, 0.0], [15.8711243, -4.4107676, 0.0], [15.8724976, -4.4107676, 0.0], [15.8724976, -4.4093983, 0.0]]]}}, {"type": "Feature", "properties": {"id": 870}, "geometry": {"type": "Polygon", "coordinates": [[[15.8477783, -4.4093983, 0.0], [15.8477783, -4.4107676, 0.0], [15.8491516, -4.4107676, 0.0], [15.8491516, -4.4093983, 0.0], [15.8477783, -4.4093983, 0.0]]]}}, {"type": "Feature", "properties": {"id": 871}, "geometry": {"type": "Polygon", "coordinates": [[[15.9906006, -4.4093983, 0.0], [15.9906006, -4.4107676, 0.0], [15.9919739, -4.4107676, 0.0], [15.9919739, -4.4093983, 0.0], [15.9906006, -4.4093983, 0.0]]]}}, {"type": "Feature", "properties": {"id": 872}, "geometry": {"type": "Polygon", "coordinates": [[[15.9191895, -4.4093983, 0.0], [15.9191895, -4.4107676, 0.0], [15.9205627, -4.4107676, 0.0], [15.9205627, -4.4093983, 0.0], [15.9191895, -4.4093983, 0.0]]]}}, {"type": "Feature", "properties": {"id": 873}, "geometry": {"type": "Polygon", "coordinates": [[[15.7077026, -4.4080291, 0.0], [15.7077026, -4.4093983, 0.0], [15.7090759, -4.4093983, 0.0], [15.7090759, -4.4080291, 0.0], [15.7077026, -4.4080291, 0.0]]]}}, {"type": "Feature", "properties": {"id": 874}, "geometry": {"type": "Polygon", "coordinates": [[[15.9288025, -4.4080291, 0.0], [15.9288025, -4.4093983, 0.0], [15.9301758, -4.4093983, 0.0], [15.9301758, -4.4080291, 0.0], [15.9288025, -4.4080291, 0.0]]]}}, {"type": "Feature", "properties": {"id": 875}, "geometry": {"type": "Polygon", "coordinates": [[[15.8972168, -4.4080291, 0.0], [15.8972168, -4.4093983, 0.0], [15.8985901, -4.4093983, 0.0], [15.8985901, -4.4080291, 0.0], [15.8972168, -4.4080291, 0.0]]]}}, {"type": "Feature", "properties": {"id": 876}, "geometry": {"type": "Polygon", "coordinates": [[[15.7131958, -4.4080291, 0.0], [15.7131958, -4.4093983, 0.0], [15.7145691, -4.4093983, 0.0], [15.7145691, -4.4080291, 0.0], [15.7131958, -4.4080291, 0.0]]]}}, {"type": "Feature", "properties": {"id": 877}, "geometry": {"type": "Polygon", "coordinates": [[[15.8065796, -4.4080291, 0.0], [15.8065796, -4.4093983, 0.0], [15.8079529, -4.4093983, 0.0], [15.8079529, -4.4080291, 0.0], [15.8065796, -4.4080291, 0.0]]]}}, {"type": "Feature", "properties": {"id": 878}, "geometry": {"type": "Polygon", "coordinates": [[[15.8106995, -4.4080291, 0.0], [15.8106995, -4.4093983, 0.0], [15.8120728, -4.4093983, 0.0], [15.8120728, -4.4080291, 0.0], [15.8106995, -4.4080291, 0.0]]]}}, {"type": "Feature", "properties": {"id": 879}, "geometry": {"type": "Polygon", "coordinates": [[[15.8930969, -4.4080291, 0.0], [15.8917236, -4.4080291, 0.0], [15.8917236, -4.4093983, 0.0], [15.8930969, -4.4093983, 0.0], [15.8944702, -4.4093983, 0.0], [15.8944702, -4.4080291, 0.0], [15.8930969, -4.4080291, 0.0]]]}}, {"type": "Feature", "properties": {"id": 880}, "geometry": {"type": "Polygon", "coordinates": [[[15.7640076, -4.4066599, 0.0], [15.7640076, -4.4080291, 0.0], [15.7653809, -4.4080291, 0.0], [15.7653809, -4.4066599, 0.0], [15.7640076, -4.4066599, 0.0]]]}}, {"type": "Feature", "properties": {"id": 881}, "geometry": {"type": "Polygon", "coordinates": [[[15.7255554, -4.4066599, 0.0], [15.7255554, -4.4080291, 0.0], [15.7269287, -4.4080291, 0.0], [15.7269287, -4.4066599, 0.0], [15.7255554, -4.4066599, 0.0]]]}}, {"type": "Feature", "properties": {"id": 882}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.4066599, 0.0], [15.7173157, -4.4080291, 0.0], [15.718689, -4.4080291, 0.0], [15.718689, -4.4066599, 0.0], [15.7173157, -4.4066599, 0.0]]]}}, {"type": "Feature", "properties": {"id": 883}, "geometry": {"type": "Polygon", "coordinates": [[[15.9906006, -4.4066599, 0.0], [15.9906006, -4.4080291, 0.0], [15.9919739, -4.4080291, 0.0], [15.9919739, -4.4066599, 0.0], [15.9906006, -4.4066599, 0.0]]]}}, {"type": "Feature", "properties": {"id": 884}, "geometry": {"type": "Polygon", "coordinates": [[[15.9370422, -4.4066599, 0.0], [15.9370422, -4.4080291, 0.0], [15.9384155, -4.4080291, 0.0], [15.9384155, -4.4066599, 0.0], [15.9370422, -4.4066599, 0.0]]]}}, {"type": "Feature", "properties": {"id": 885}, "geometry": {"type": "Polygon", "coordinates": [[[15.8958435, -4.4066599, 0.0], [15.8958435, -4.4080291, 0.0], [15.8972168, -4.4080291, 0.0], [15.8972168, -4.4066599, 0.0], [15.8958435, -4.4066599, 0.0]]]}}, {"type": "Feature", "properties": {"id": 886}, "geometry": {"type": "Polygon", "coordinates": [[[15.8958435, -4.4052907, 0.0], [15.8972168, -4.4052907, 0.0], [15.8972168, -4.4039214, 0.0], [15.8958435, -4.4039214, 0.0], [15.8944702, -4.4039214, 0.0], [15.8944702, -4.4052907, 0.0], [15.8944702, -4.4066599, 0.0], [15.8958435, -4.4066599, 0.0], [15.8958435, -4.4052907, 0.0]]]}}, {"type": "Feature", "properties": {"id": 887}, "geometry": {"type": "Polygon", "coordinates": [[[15.8491516, -4.4066599, 0.0], [15.8491516, -4.4080291, 0.0], [15.8505249, -4.4080291, 0.0], [15.8505249, -4.4066599, 0.0], [15.8491516, -4.4066599, 0.0]]]}}, {"type": "Feature", "properties": {"id": 888}, "geometry": {"type": "Polygon", "coordinates": [[[15.8848572, -4.4066599, 0.0], [15.8848572, -4.4080291, 0.0], [15.8862305, -4.4080291, 0.0], [15.8862305, -4.4066599, 0.0], [15.8848572, -4.4066599, 0.0]]]}}, {"type": "Feature", "properties": {"id": 889}, "geometry": {"type": "Polygon", "coordinates": [[[15.8766174, -4.4080291, 0.0], [15.8766174, -4.4093983, 0.0], [15.8779907, -4.4093983, 0.0], [15.8779907, -4.4080291, 0.0], [15.8766174, -4.4080291, 0.0]]]}}, {"type": "Feature", "properties": {"id": 890}, "geometry": {"type": "Polygon", "coordinates": [[[15.8670044, -4.4080291, 0.0], [15.8670044, -4.4093983, 0.0], [15.8683777, -4.4093983, 0.0], [15.8683777, -4.4080291, 0.0], [15.8670044, -4.4080291, 0.0]]]}}, {"type": "Feature", "properties": {"id": 891}, "geometry": {"type": "Polygon", "coordinates": [[[15.8175659, -4.4052907, 0.0], [15.8175659, -4.4066599, 0.0], [15.8189392, -4.4066599, 0.0], [15.8189392, -4.4052907, 0.0], [15.8175659, -4.4052907, 0.0]]]}}, {"type": "Feature", "properties": {"id": 892}, "geometry": {"type": "Polygon", "coordinates": [[[15.7640076, -4.4052907, 0.0], [15.7653809, -4.4052907, 0.0], [15.7653809, -4.4039214, 0.0], [15.7640076, -4.4039214, 0.0], [15.7626343, -4.4039214, 0.0], [15.7626343, -4.4052907, 0.0], [15.7626343, -4.4066599, 0.0], [15.7640076, -4.4066599, 0.0], [15.7640076, -4.4052907, 0.0]]]}}, {"type": "Feature", "properties": {"id": 893}, "geometry": {"type": "Polygon", "coordinates": [[[15.8862305, -4.4052907, 0.0], [15.8862305, -4.4066599, 0.0], [15.8876038, -4.4066599, 0.0], [15.8876038, -4.4052907, 0.0], [15.8862305, -4.4052907, 0.0]]]}}, {"type": "Feature", "properties": {"id": 894}, "geometry": {"type": "Polygon", "coordinates": [[[15.8738708, -4.4052907, 0.0], [15.8724976, -4.4052907, 0.0], [15.8724976, -4.4066599, 0.0], [15.8738708, -4.4066599, 0.0], [15.8752441, -4.4066599, 0.0], [15.8752441, -4.4052907, 0.0], [15.8738708, -4.4052907, 0.0]]]}}, {"type": "Feature", "properties": {"id": 895}, "geometry": {"type": "Polygon", "coordinates": [[[15.813446, -4.4052907, 0.0], [15.813446, -4.4066599, 0.0], [15.8148193, -4.4066599, 0.0], [15.8148193, -4.4052907, 0.0], [15.813446, -4.4052907, 0.0]]]}}, {"type": "Feature", "properties": {"id": 896}, "geometry": {"type": "Polygon", "coordinates": [[[15.8010864, -4.4052907, 0.0], [15.7997131, -4.4052907, 0.0], [15.7997131, -4.4066599, 0.0], [15.8010864, -4.4066599, 0.0], [15.8024597, -4.4066599, 0.0], [15.8024597, -4.4052907, 0.0], [15.8010864, -4.4052907, 0.0]]]}}, {"type": "Feature", "properties": {"id": 897}, "geometry": {"type": "Polygon", "coordinates": [[[15.7969666, -4.4052907, 0.0], [15.7969666, -4.4066599, 0.0], [15.7983398, -4.4066599, 0.0], [15.7983398, -4.4052907, 0.0], [15.7969666, -4.4052907, 0.0]]]}}, {"type": "Feature", "properties": {"id": 898}, "geometry": {"type": "Polygon", "coordinates": [[[15.79422, -4.4052907, 0.0], [15.79422, -4.4039214, 0.0], [15.7928467, -4.4039214, 0.0], [15.7928467, -4.4052907, 0.0], [15.7928467, -4.4066599, 0.0], [15.79422, -4.4066599, 0.0], [15.79422, -4.4052907, 0.0]]]}}, {"type": "Feature", "properties": {"id": 899}, "geometry": {"type": "Polygon", "coordinates": [[[15.7832336, -4.4052907, 0.0], [15.7818604, -4.4052907, 0.0], [15.7818604, -4.4066599, 0.0], [15.7832336, -4.4066599, 0.0], [15.7846069, -4.4066599, 0.0], [15.7846069, -4.4052907, 0.0], [15.7832336, -4.4052907, 0.0]]]}}, {"type": "Feature", "properties": {"id": 900}, "geometry": {"type": "Polygon", "coordinates": [[[15.8395386, -4.4039214, 0.0], [15.8409119, -4.4039214, 0.0], [15.8409119, -4.4025522, 0.0], [15.8395386, -4.4025522, 0.0], [15.8395386, -4.4011829, 0.0], [15.8381653, -4.4011829, 0.0], [15.836792, -4.4011829, 0.0], [15.8354187, -4.4011829, 0.0], [15.8340454, -4.4011829, 0.0], [15.8340454, -4.4025522, 0.0], [15.8354187, -4.4025522, 0.0], [15.8354187, -4.4039214, 0.0], [15.836792, -4.4039214, 0.0], [15.8381653, -4.4039214, 0.0], [15.8381653, -4.4052907, 0.0], [15.8395386, -4.4052907, 0.0], [15.8395386, -4.4039214, 0.0]]]}}, {"type": "Feature", "properties": {"id": 901}, "geometry": {"type": "Polygon", "coordinates": [[[15.8587646, -4.4039214, 0.0], [15.8587646, -4.4052907, 0.0], [15.8601379, -4.4052907, 0.0], [15.8601379, -4.4039214, 0.0], [15.8587646, -4.4039214, 0.0]]]}}, {"type": "Feature", "properties": {"id": 902}, "geometry": {"type": "Polygon", "coordinates": [[[15.7969666, -4.4039214, 0.0], [15.7983398, -4.4039214, 0.0], [15.7983398, -4.4025522, 0.0], [15.7969666, -4.4025522, 0.0], [15.7955933, -4.4025522, 0.0], [15.7955933, -4.4039214, 0.0], [15.7955933, -4.4052907, 0.0], [15.7969666, -4.4052907, 0.0], [15.7969666, -4.4039214, 0.0]]]}}, {"type": "Feature", "properties": {"id": 903}, "geometry": {"type": "Polygon", "coordinates": [[[15.9507751, -4.4039214, 0.0], [15.9507751, -4.4052907, 0.0], [15.9521484, -4.4052907, 0.0], [15.9521484, -4.4039214, 0.0], [15.9507751, -4.4039214, 0.0]]]}}, {"type": "Feature", "properties": {"id": 904}, "geometry": {"type": "Polygon", "coordinates": [[[15.9892273, -4.4039214, 0.0], [15.9892273, -4.4052907, 0.0], [15.9906006, -4.4052907, 0.0], [15.9906006, -4.4039214, 0.0], [15.9892273, -4.4039214, 0.0]]]}}, {"type": "Feature", "properties": {"id": 905}, "geometry": {"type": "Polygon", "coordinates": [[[15.7804871, -4.4039214, 0.0], [15.7804871, -4.4052907, 0.0], [15.7818604, -4.4052907, 0.0], [15.7818604, -4.4039214, 0.0], [15.7804871, -4.4039214, 0.0]]]}}, {"type": "Feature", "properties": {"id": 906}, "geometry": {"type": "Polygon", "coordinates": [[[15.9370422, -4.4039214, 0.0], [15.9370422, -4.4052907, 0.0], [15.9384155, -4.4052907, 0.0], [15.9384155, -4.4039214, 0.0], [15.9370422, -4.4039214, 0.0]]]}}, {"type": "Feature", "properties": {"id": 907}, "geometry": {"type": "Polygon", "coordinates": [[[15.9136963, -4.4039214, 0.0], [15.9136963, -4.4052907, 0.0], [15.9150696, -4.4052907, 0.0], [15.9150696, -4.4039214, 0.0], [15.9136963, -4.4039214, 0.0]]]}}, {"type": "Feature", "properties": {"id": 908}, "geometry": {"type": "Polygon", "coordinates": [[[15.9411621, -4.4025522, 0.0], [15.9411621, -4.4039214, 0.0], [15.9425354, -4.4039214, 0.0], [15.9425354, -4.4025522, 0.0], [15.9411621, -4.4025522, 0.0]]]}}, {"type": "Feature", "properties": {"id": 909}, "geometry": {"type": "Polygon", "coordinates": [[[15.9040833, -4.4025522, 0.0], [15.9040833, -4.4039214, 0.0], [15.9054565, -4.4039214, 0.0], [15.9054565, -4.4025522, 0.0], [15.9040833, -4.4025522, 0.0]]]}}, {"type": "Feature", "properties": {"id": 910}, "geometry": {"type": "Polygon", "coordinates": [[[15.8299255, -4.4039214, 0.0], [15.8312988, -4.4039214, 0.0], [15.8312988, -4.4025522, 0.0], [15.8326721, -4.4025522, 0.0], [15.8326721, -4.4011829, 0.0], [15.8312988, -4.4011829, 0.0], [15.8299255, -4.4011829, 0.0], [15.8285522, -4.4011829, 0.0], [15.8285522, -4.4025522, 0.0], [15.8285522, -4.4039214, 0.0], [15.8285522, -4.4052907, 0.0], [15.8299255, -4.4052907, 0.0], [15.8299255, -4.4039214, 0.0]]]}}, {"type": "Feature", "properties": {"id": 911}, "geometry": {"type": "Polygon", "coordinates": [[[15.7901001, -4.4025522, 0.0], [15.7901001, -4.4039214, 0.0], [15.7914734, -4.4039214, 0.0], [15.7914734, -4.4025522, 0.0], [15.7901001, -4.4025522, 0.0]]]}}, {"type": "Feature", "properties": {"id": 912}, "geometry": {"type": "Polygon", "coordinates": [[[15.9480286, -4.4025522, 0.0], [15.9480286, -4.4039214, 0.0], [15.9494019, -4.4039214, 0.0], [15.9507751, -4.4039214, 0.0], [15.9507751, -4.4025522, 0.0], [15.9494019, -4.4025522, 0.0], [15.9480286, -4.4025522, 0.0]]]}}, {"type": "Feature", "properties": {"id": 913}, "geometry": {"type": "Polygon", "coordinates": [[[15.8889771, -4.4025522, 0.0], [15.8889771, -4.4039214, 0.0], [15.8903503, -4.4039214, 0.0], [15.8903503, -4.4025522, 0.0], [15.8889771, -4.4025522, 0.0]]]}}, {"type": "Feature", "properties": {"id": 914}, "geometry": {"type": "Polygon", "coordinates": [[[15.8258057, -4.4025522, 0.0], [15.8258057, -4.4011829, 0.0], [15.8244324, -4.4011829, 0.0], [15.8244324, -4.4025522, 0.0], [15.8244324, -4.4039214, 0.0], [15.8258057, -4.4039214, 0.0], [15.8258057, -4.4025522, 0.0]]]}}, {"type": "Feature", "properties": {"id": 915}, "geometry": {"type": "Polygon", "coordinates": [[[15.879364, -4.4025522, 0.0], [15.879364, -4.4011829, 0.0], [15.879364, -4.3998137, 0.0], [15.8779907, -4.3998137, 0.0], [15.8779907, -4.4011829, 0.0], [15.8766174, -4.4011829, 0.0], [15.8766174, -4.4025522, 0.0], [15.8779907, -4.4025522, 0.0], [15.8779907, -4.4039214, 0.0], [15.879364, -4.4039214, 0.0], [15.879364, -4.4025522, 0.0]]]}}, {"type": "Feature", "properties": {"id": 916}, "geometry": {"type": "Polygon", "coordinates": [[[15.803833, -4.4025522, 0.0], [15.8052063, -4.4025522, 0.0], [15.8052063, -4.4011829, 0.0], [15.803833, -4.4011829, 0.0], [15.803833, -4.3998137, 0.0], [15.8024597, -4.3998137, 0.0], [15.8024597, -4.4011829, 0.0], [15.8024597, -4.4025522, 0.0], [15.803833, -4.4025522, 0.0]]]}}, {"type": "Feature", "properties": {"id": 917}, "geometry": {"type": "Polygon", "coordinates": [[[15.8656311, -4.4011829, 0.0], [15.8642578, -4.4011829, 0.0], [15.8642578, -4.4025522, 0.0], [15.8656311, -4.4025522, 0.0], [15.8670044, -4.4025522, 0.0], [15.8670044, -4.4011829, 0.0], [15.8656311, -4.4011829, 0.0]]]}}, {"type": "Feature", "properties": {"id": 918}, "geometry": {"type": "Polygon", "coordinates": [[[15.9397888, -4.4011829, 0.0], [15.9397888, -4.4025522, 0.0], [15.9411621, -4.4025522, 0.0], [15.9411621, -4.4011829, 0.0], [15.9397888, -4.4011829, 0.0]]]}}, {"type": "Feature", "properties": {"id": 919}, "geometry": {"type": "Polygon", "coordinates": [[[15.7077026, -4.4011829, 0.0], [15.7077026, -4.4025522, 0.0], [15.7090759, -4.4025522, 0.0], [15.7090759, -4.4011829, 0.0], [15.7077026, -4.4011829, 0.0]]]}}, {"type": "Feature", "properties": {"id": 920}, "geometry": {"type": "Polygon", "coordinates": [[[15.8903503, -4.4011829, 0.0], [15.8903503, -4.4025522, 0.0], [15.8917236, -4.4025522, 0.0], [15.8930969, -4.4025522, 0.0], [15.8930969, -4.4011829, 0.0], [15.8917236, -4.4011829, 0.0], [15.8903503, -4.4011829, 0.0]]]}}, {"type": "Feature", "properties": {"id": 921}, "geometry": {"type": "Polygon", "coordinates": [[[15.8985901, -4.4011829, 0.0], [15.8985901, -4.4025522, 0.0], [15.8999634, -4.4025522, 0.0], [15.8999634, -4.4011829, 0.0], [15.8985901, -4.4011829, 0.0]]]}}, {"type": "Feature", "properties": {"id": 922}, "geometry": {"type": "Polygon", "coordinates": [[[15.7887268, -4.4011829, 0.0], [15.7887268, -4.3998137, 0.0], [15.7873535, -4.3998137, 0.0], [15.7873535, -4.4011829, 0.0], [15.7873535, -4.4025522, 0.0], [15.7887268, -4.4025522, 0.0], [15.7887268, -4.4011829, 0.0]]]}}, {"type": "Feature", "properties": {"id": 923}, "geometry": {"type": "Polygon", "coordinates": [[[15.7928467, -4.4011829, 0.0], [15.7928467, -4.4025522, 0.0], [15.79422, -4.4025522, 0.0], [15.79422, -4.4011829, 0.0], [15.7928467, -4.4011829, 0.0]]]}}, {"type": "Feature", "properties": {"id": 924}, "geometry": {"type": "Polygon", "coordinates": [[[15.9136963, -4.3998137, 0.0], [15.9136963, -4.3984445, 0.0], [15.912323, -4.3984445, 0.0], [15.912323, -4.3998137, 0.0], [15.912323, -4.4011829, 0.0], [15.9136963, -4.4011829, 0.0], [15.9136963, -4.3998137, 0.0]]]}}, {"type": "Feature", "properties": {"id": 925}, "geometry": {"type": "Polygon", "coordinates": [[[15.8601379, -4.4011829, 0.0], [15.8601379, -4.4025522, 0.0], [15.8615112, -4.4025522, 0.0], [15.8615112, -4.4011829, 0.0], [15.8601379, -4.4011829, 0.0]]]}}, {"type": "Feature", "properties": {"id": 926}, "geometry": {"type": "Polygon", "coordinates": [[[15.9315491, -4.3998137, 0.0], [15.9315491, -4.4011829, 0.0], [15.9329224, -4.4011829, 0.0], [15.9329224, -4.3998137, 0.0], [15.9315491, -4.3998137, 0.0]]]}}, {"type": "Feature", "properties": {"id": 927}, "geometry": {"type": "Polygon", "coordinates": [[[15.9864807, -4.3984445, 0.0], [15.9864807, -4.3998137, 0.0], [15.987854, -4.3998137, 0.0], [15.987854, -4.3984445, 0.0], [15.9864807, -4.3984445, 0.0]]]}}, {"type": "Feature", "properties": {"id": 928}, "geometry": {"type": "Polygon", "coordinates": [[[15.8889771, -4.3998137, 0.0], [15.8889771, -4.4011829, 0.0], [15.8903503, -4.4011829, 0.0], [15.8903503, -4.3998137, 0.0], [15.8889771, -4.3998137, 0.0]]]}}, {"type": "Feature", "properties": {"id": 929}, "geometry": {"type": "Polygon", "coordinates": [[[15.79422, -4.3998137, 0.0], [15.79422, -4.4011829, 0.0], [15.7955933, -4.4011829, 0.0], [15.7955933, -4.3998137, 0.0], [15.79422, -4.3998137, 0.0]]]}}, {"type": "Feature", "properties": {"id": 930}, "geometry": {"type": "Polygon", "coordinates": [[[15.8711243, -4.3998137, 0.0], [15.8711243, -4.4011829, 0.0], [15.8724976, -4.4011829, 0.0], [15.8724976, -4.3998137, 0.0], [15.8711243, -4.3998137, 0.0]]]}}, {"type": "Feature", "properties": {"id": 931}, "geometry": {"type": "Polygon", "coordinates": [[[15.8738708, -4.3998137, 0.0], [15.8738708, -4.4011829, 0.0], [15.8752441, -4.4011829, 0.0], [15.8766174, -4.4011829, 0.0], [15.8766174, -4.3998137, 0.0], [15.8779907, -4.3998137, 0.0], [15.8779907, -4.3984445, 0.0], [15.8766174, -4.3984445, 0.0], [15.8752441, -4.3984445, 0.0], [15.8752441, -4.3998137, 0.0], [15.8738708, -4.3998137, 0.0]]]}}, {"type": "Feature", "properties": {"id": 932}, "geometry": {"type": "Polygon", "coordinates": [[[15.7914734, -4.3984445, 0.0], [15.7914734, -4.3998137, 0.0], [15.7928467, -4.3998137, 0.0], [15.79422, -4.3998137, 0.0], [15.79422, -4.3984445, 0.0], [15.7928467, -4.3984445, 0.0], [15.7914734, -4.3984445, 0.0]]]}}, {"type": "Feature", "properties": {"id": 933}, "geometry": {"type": "Polygon", "coordinates": [[[15.8299255, -4.3984445, 0.0], [15.8299255, -4.3970752, 0.0], [15.8285522, -4.3970752, 0.0], [15.8285522, -4.3984445, 0.0], [15.8285522, -4.3998137, 0.0], [15.8299255, -4.3998137, 0.0], [15.8299255, -4.3984445, 0.0]]]}}, {"type": "Feature", "properties": {"id": 934}, "geometry": {"type": "Polygon", "coordinates": [[[15.8518982, -4.3984445, 0.0], [15.8518982, -4.3998137, 0.0], [15.8532715, -4.3998137, 0.0], [15.8532715, -4.3984445, 0.0], [15.8518982, -4.3984445, 0.0]]]}}, {"type": "Feature", "properties": {"id": 935}, "geometry": {"type": "Polygon", "coordinates": [[[15.879364, -4.3984445, 0.0], [15.879364, -4.3998137, 0.0], [15.8807373, -4.3998137, 0.0], [15.8807373, -4.3984445, 0.0], [15.879364, -4.3984445, 0.0]]]}}, {"type": "Feature", "properties": {"id": 936}, "geometry": {"type": "Polygon", "coordinates": [[[15.921936, -4.3970752, 0.0], [15.921936, -4.3984445, 0.0], [15.9233093, -4.3984445, 0.0], [15.9233093, -4.3970752, 0.0], [15.921936, -4.3970752, 0.0]]]}}, {"type": "Feature", "properties": {"id": 937}, "geometry": {"type": "Polygon", "coordinates": [[[15.8546448, -4.3970752, 0.0], [15.8546448, -4.3984445, 0.0], [15.8560181, -4.3984445, 0.0], [15.8560181, -4.3970752, 0.0], [15.8546448, -4.3970752, 0.0]]]}}, {"type": "Feature", "properties": {"id": 938}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.3970752, 0.0], [15.7667542, -4.3984445, 0.0], [15.7681274, -4.3984445, 0.0], [15.7681274, -4.3970752, 0.0], [15.7667542, -4.3970752, 0.0]]]}}, {"type": "Feature", "properties": {"id": 939}, "geometry": {"type": "Polygon", "coordinates": [[[15.7640076, -4.3970752, 0.0], [15.7640076, -4.395706, 0.0], [15.7640076, -4.3943367, 0.0], [15.7626343, -4.3943367, 0.0], [15.7626343, -4.3929674, 0.0], [15.761261, -4.3929674, 0.0], [15.7598877, -4.3929674, 0.0], [15.7598877, -4.3943367, 0.0], [15.7598877, -4.395706, 0.0], [15.7598877, -4.3970752, 0.0], [15.761261, -4.3970752, 0.0], [15.7626343, -4.3970752, 0.0], [15.7626343, -4.3984445, 0.0], [15.7640076, -4.3984445, 0.0], [15.7640076, -4.3970752, 0.0]]]}}, {"type": "Feature", "properties": {"id": 940}, "geometry": {"type": "Polygon", "coordinates": [[[15.8862305, -4.3984445, 0.0], [15.8862305, -4.3998137, 0.0], [15.8876038, -4.3998137, 0.0], [15.8876038, -4.3984445, 0.0], [15.8862305, -4.3984445, 0.0]]]}}, {"type": "Feature", "properties": {"id": 941}, "geometry": {"type": "Polygon", "coordinates": [[[15.8972168, -4.3970752, 0.0], [15.8972168, -4.395706, 0.0], [15.8958435, -4.395706, 0.0], [15.8958435, -4.3970752, 0.0], [15.8958435, -4.3984445, 0.0], [15.8972168, -4.3984445, 0.0], [15.8972168, -4.3970752, 0.0]]]}}, {"type": "Feature", "properties": {"id": 942}, "geometry": {"type": "Polygon", "coordinates": [[[15.8848572, -4.395706, 0.0], [15.8848572, -4.3970752, 0.0], [15.8862305, -4.3970752, 0.0], [15.8876038, -4.3970752, 0.0], [15.8876038, -4.395706, 0.0], [15.8862305, -4.395706, 0.0], [15.8848572, -4.395706, 0.0]]]}}, {"type": "Feature", "properties": {"id": 943}, "geometry": {"type": "Polygon", "coordinates": [[[15.8093262, -4.395706, 0.0], [15.8093262, -4.3970752, 0.0], [15.8106995, -4.3970752, 0.0], [15.8106995, -4.395706, 0.0], [15.8093262, -4.395706, 0.0]]]}}, {"type": "Feature", "properties": {"id": 944}, "geometry": {"type": "Polygon", "coordinates": [[[15.803833, -4.395706, 0.0], [15.803833, -4.3970752, 0.0], [15.8052063, -4.3970752, 0.0], [15.8052063, -4.395706, 0.0], [15.803833, -4.395706, 0.0]]]}}, {"type": "Feature", "properties": {"id": 945}, "geometry": {"type": "Polygon", "coordinates": [[[15.8312988, -4.395706, 0.0], [15.8299255, -4.395706, 0.0], [15.8299255, -4.3970752, 0.0], [15.8312988, -4.3970752, 0.0], [15.8326721, -4.3970752, 0.0], [15.8326721, -4.395706, 0.0], [15.8312988, -4.395706, 0.0]]]}}, {"type": "Feature", "properties": {"id": 946}, "geometry": {"type": "Polygon", "coordinates": [[[15.9892273, -4.395706, 0.0], [15.9892273, -4.3970752, 0.0], [15.9906006, -4.3970752, 0.0], [15.9906006, -4.395706, 0.0], [15.9892273, -4.395706, 0.0]]]}}, {"type": "Feature", "properties": {"id": 947}, "geometry": {"type": "Polygon", "coordinates": [[[15.8615112, -4.395706, 0.0], [15.8615112, -4.3970752, 0.0], [15.8628845, -4.3970752, 0.0], [15.8628845, -4.395706, 0.0], [15.8615112, -4.395706, 0.0]]]}}, {"type": "Feature", "properties": {"id": 948}, "geometry": {"type": "Polygon", "coordinates": [[[15.8642578, -4.395706, 0.0], [15.8642578, -4.3970752, 0.0], [15.8656311, -4.3970752, 0.0], [15.8656311, -4.395706, 0.0], [15.8642578, -4.395706, 0.0]]]}}, {"type": "Feature", "properties": {"id": 949}, "geometry": {"type": "Polygon", "coordinates": [[[15.9329224, -4.395706, 0.0], [15.9329224, -4.3970752, 0.0], [15.9342957, -4.3970752, 0.0], [15.9342957, -4.395706, 0.0], [15.9329224, -4.395706, 0.0]]]}}, {"type": "Feature", "properties": {"id": 950}, "geometry": {"type": "Polygon", "coordinates": [[[15.7791138, -4.3943367, 0.0], [15.7791138, -4.395706, 0.0], [15.7804871, -4.395706, 0.0], [15.7804871, -4.3943367, 0.0], [15.7791138, -4.3943367, 0.0]]]}}, {"type": "Feature", "properties": {"id": 951}, "geometry": {"type": "Polygon", "coordinates": [[[15.8876038, -4.3943367, 0.0], [15.8876038, -4.395706, 0.0], [15.8889771, -4.395706, 0.0], [15.8889771, -4.3943367, 0.0], [15.8876038, -4.3943367, 0.0]]]}}, {"type": "Feature", "properties": {"id": 952}, "geometry": {"type": "Polygon", "coordinates": [[[15.8587646, -4.3943367, 0.0], [15.8573914, -4.3943367, 0.0], [15.8573914, -4.395706, 0.0], [15.8587646, -4.395706, 0.0], [15.8601379, -4.395706, 0.0], [15.8601379, -4.3943367, 0.0], [15.8587646, -4.3943367, 0.0]]]}}, {"type": "Feature", "properties": {"id": 953}, "geometry": {"type": "Polygon", "coordinates": [[[15.7928467, -4.3943367, 0.0], [15.7928467, -4.395706, 0.0], [15.79422, -4.395706, 0.0], [15.79422, -4.3943367, 0.0], [15.7928467, -4.3943367, 0.0]]]}}, {"type": "Feature", "properties": {"id": 954}, "geometry": {"type": "Polygon", "coordinates": [[[15.7901001, -4.3943367, 0.0], [15.7914734, -4.3943367, 0.0], [15.7914734, -4.3929674, 0.0], [15.7914734, -4.3915982, 0.0], [15.7901001, -4.3915982, 0.0], [15.7901001, -4.3929674, 0.0], [15.7887268, -4.3929674, 0.0], [15.7887268, -4.3943367, 0.0], [15.7887268, -4.395706, 0.0], [15.7901001, -4.395706, 0.0], [15.7901001, -4.3943367, 0.0]]]}}, {"type": "Feature", "properties": {"id": 955}, "geometry": {"type": "Polygon", "coordinates": [[[15.9933472, -4.3929674, 0.0], [15.9933472, -4.3943367, 0.0], [15.9947205, -4.3943367, 0.0], [15.9947205, -4.3929674, 0.0], [15.9933472, -4.3929674, 0.0]]]}}, {"type": "Feature", "properties": {"id": 956}, "geometry": {"type": "Polygon", "coordinates": [[[15.7585144, -4.3929674, 0.0], [15.7598877, -4.3929674, 0.0], [15.7598877, -4.3915982, 0.0], [15.7585144, -4.3915982, 0.0], [15.7585144, -4.3902289, 0.0], [15.7585144, -4.3888597, 0.0], [15.7571411, -4.3888597, 0.0], [15.7571411, -4.3874904, 0.0], [15.7571411, -4.3861211, 0.0], [15.7585144, -4.3861211, 0.0], [15.7585144, -4.3847519, 0.0], [15.7585144, -4.3833826, 0.0], [15.7585144, -4.3820133, 0.0], [15.7585144, -4.380644, 0.0], [15.7571411, -4.380644, 0.0], [15.7571411, -4.3792748, 0.0], [15.7571411, -4.3779055, 0.0], [15.7557678, -4.3779055, 0.0], [15.7557678, -4.3792748, 0.0], [15.7557678, -4.380644, 0.0], [15.7557678, -4.3820133, 0.0], [15.7557678, -4.3833826, 0.0], [15.7557678, -4.3847519, 0.0], [15.7557678, -4.3861211, 0.0], [15.7557678, -4.3874904, 0.0], [15.7557678, -4.3888597, 0.0], [15.7557678, -4.3902289, 0.0], [15.7543945, -4.3902289, 0.0], [15.7543945, -4.3915982, 0.0], [15.7543945, -4.3929674, 0.0], [15.7557678, -4.3929674, 0.0], [15.7557678, -4.3943367, 0.0], [15.7571411, -4.3943367, 0.0], [15.7585144, -4.3943367, 0.0], [15.7585144, -4.3929674, 0.0]]]}}, {"type": "Feature", "properties": {"id": 957}, "geometry": {"type": "Polygon", "coordinates": [[[15.8917236, -4.3929674, 0.0], [15.8917236, -4.3943367, 0.0], [15.8930969, -4.3943367, 0.0], [15.8930969, -4.3929674, 0.0], [15.8917236, -4.3929674, 0.0]]]}}, {"type": "Feature", "properties": {"id": 958}, "geometry": {"type": "Polygon", "coordinates": [[[15.8312988, -4.3929674, 0.0], [15.8312988, -4.3915982, 0.0], [15.8299255, -4.3915982, 0.0], [15.8299255, -4.3929674, 0.0], [15.8299255, -4.3943367, 0.0], [15.8312988, -4.3943367, 0.0], [15.8312988, -4.3929674, 0.0]]]}}, {"type": "Feature", "properties": {"id": 959}, "geometry": {"type": "Polygon", "coordinates": [[[15.8258057, -4.3929674, 0.0], [15.8258057, -4.3943367, 0.0], [15.827179, -4.3943367, 0.0], [15.827179, -4.3929674, 0.0], [15.8258057, -4.3929674, 0.0]]]}}, {"type": "Feature", "properties": {"id": 960}, "geometry": {"type": "Polygon", "coordinates": [[[15.8340454, -4.3929674, 0.0], [15.8340454, -4.3943367, 0.0], [15.8354187, -4.3943367, 0.0], [15.8354187, -4.3929674, 0.0], [15.8340454, -4.3929674, 0.0]]]}}, {"type": "Feature", "properties": {"id": 961}, "geometry": {"type": "Polygon", "coordinates": [[[15.8972168, -4.3929674, 0.0], [15.8972168, -4.3943367, 0.0], [15.8985901, -4.3943367, 0.0], [15.8985901, -4.3929674, 0.0], [15.8972168, -4.3929674, 0.0]]]}}, {"type": "Feature", "properties": {"id": 962}, "geometry": {"type": "Polygon", "coordinates": [[[15.9150696, -4.3929674, 0.0], [15.9150696, -4.3943367, 0.0], [15.9164429, -4.3943367, 0.0], [15.9164429, -4.3929674, 0.0], [15.9150696, -4.3929674, 0.0]]]}}, {"type": "Feature", "properties": {"id": 963}, "geometry": {"type": "Polygon", "coordinates": [[[15.8834839, -4.3929674, 0.0], [15.8834839, -4.3943367, 0.0], [15.8848572, -4.3943367, 0.0], [15.8848572, -4.3929674, 0.0], [15.8834839, -4.3929674, 0.0]]]}}, {"type": "Feature", "properties": {"id": 964}, "geometry": {"type": "Polygon", "coordinates": [[[15.90271, -4.3929674, 0.0], [15.90271, -4.3943367, 0.0], [15.9040833, -4.3943367, 0.0], [15.9040833, -4.3929674, 0.0], [15.90271, -4.3929674, 0.0]]]}}, {"type": "Feature", "properties": {"id": 965}, "geometry": {"type": "Polygon", "coordinates": [[[15.7653809, -4.3915982, 0.0], [15.7653809, -4.3929674, 0.0], [15.7667542, -4.3929674, 0.0], [15.7667542, -4.3915982, 0.0], [15.7653809, -4.3915982, 0.0]]]}}, {"type": "Feature", "properties": {"id": 966}, "geometry": {"type": "Polygon", "coordinates": [[[15.8065796, -4.3915982, 0.0], [15.8065796, -4.3929674, 0.0], [15.8079529, -4.3929674, 0.0], [15.8079529, -4.3915982, 0.0], [15.8065796, -4.3915982, 0.0]]]}}, {"type": "Feature", "properties": {"id": 967}, "geometry": {"type": "Polygon", "coordinates": [[[15.7791138, -4.3915982, 0.0], [15.7791138, -4.3929674, 0.0], [15.7804871, -4.3929674, 0.0], [15.7804871, -4.3915982, 0.0], [15.7791138, -4.3915982, 0.0]]]}}, {"type": "Feature", "properties": {"id": 968}, "geometry": {"type": "Polygon", "coordinates": [[[15.7118225, -4.3915982, 0.0], [15.7118225, -4.3929674, 0.0], [15.7131958, -4.3929674, 0.0], [15.7131958, -4.3915982, 0.0], [15.7118225, -4.3915982, 0.0]]]}}, {"type": "Feature", "properties": {"id": 969}, "geometry": {"type": "Polygon", "coordinates": [[[15.9040833, -4.3902289, 0.0], [15.9040833, -4.3915982, 0.0], [15.9054565, -4.3915982, 0.0], [15.9054565, -4.3902289, 0.0], [15.9040833, -4.3902289, 0.0]]]}}, {"type": "Feature", "properties": {"id": 970}, "geometry": {"type": "Polygon", "coordinates": [[[15.7832336, -4.3915982, 0.0], [15.7832336, -4.3929674, 0.0], [15.7846069, -4.3929674, 0.0], [15.7846069, -4.3915982, 0.0], [15.7832336, -4.3915982, 0.0]]]}}, {"type": "Feature", "properties": {"id": 971}, "geometry": {"type": "Polygon", "coordinates": [[[15.8889771, -4.3902289, 0.0], [15.8889771, -4.3888597, 0.0], [15.8876038, -4.3888597, 0.0], [15.8876038, -4.3902289, 0.0], [15.8876038, -4.3915982, 0.0], [15.8889771, -4.3915982, 0.0], [15.8889771, -4.3902289, 0.0]]]}}, {"type": "Feature", "properties": {"id": 972}, "geometry": {"type": "Polygon", "coordinates": [[[15.761261, -4.3902289, 0.0], [15.761261, -4.3915982, 0.0], [15.7626343, -4.3915982, 0.0], [15.7640076, -4.3915982, 0.0], [15.7640076, -4.3902289, 0.0], [15.7640076, -4.3888597, 0.0], [15.7626343, -4.3888597, 0.0], [15.7626343, -4.3902289, 0.0], [15.761261, -4.3902289, 0.0]]]}}, {"type": "Feature", "properties": {"id": 973}, "geometry": {"type": "Polygon", "coordinates": [[[15.8642578, -4.3902289, 0.0], [15.8642578, -4.3888597, 0.0], [15.8628845, -4.3888597, 0.0], [15.8628845, -4.3902289, 0.0], [15.8628845, -4.3915982, 0.0], [15.8642578, -4.3915982, 0.0], [15.8642578, -4.3902289, 0.0]]]}}, {"type": "Feature", "properties": {"id": 974}, "geometry": {"type": "Polygon", "coordinates": [[[15.8120728, -4.3888597, 0.0], [15.8106995, -4.3888597, 0.0], [15.8106995, -4.3902289, 0.0], [15.8120728, -4.3902289, 0.0], [15.813446, -4.3902289, 0.0], [15.813446, -4.3888597, 0.0], [15.8120728, -4.3888597, 0.0]]]}}, {"type": "Feature", "properties": {"id": 975}, "geometry": {"type": "Polygon", "coordinates": [[[15.7241821, -4.3888597, 0.0], [15.7241821, -4.3874904, 0.0], [15.7228088, -4.3874904, 0.0], [15.7214355, -4.3874904, 0.0], [15.7200623, -4.3874904, 0.0], [15.7200623, -4.3888597, 0.0], [15.7200623, -4.3902289, 0.0], [15.7214355, -4.3902289, 0.0], [15.7228088, -4.3902289, 0.0], [15.7241821, -4.3902289, 0.0], [15.7241821, -4.3888597, 0.0]]]}}, {"type": "Feature", "properties": {"id": 976}, "geometry": {"type": "Polygon", "coordinates": [[[15.7969666, -4.3902289, 0.0], [15.7969666, -4.3915982, 0.0], [15.7983398, -4.3915982, 0.0], [15.7983398, -4.3902289, 0.0], [15.7969666, -4.3902289, 0.0]]]}}, {"type": "Feature", "properties": {"id": 977}, "geometry": {"type": "Polygon", "coordinates": [[[15.803833, -4.3888597, 0.0], [15.8024597, -4.3888597, 0.0], [15.8024597, -4.3902289, 0.0], [15.803833, -4.3902289, 0.0], [15.8052063, -4.3902289, 0.0], [15.8052063, -4.3888597, 0.0], [15.803833, -4.3888597, 0.0]]]}}, {"type": "Feature", "properties": {"id": 978}, "geometry": {"type": "Polygon", "coordinates": [[[15.7873535, -4.3888597, 0.0], [15.7873535, -4.3902289, 0.0], [15.7887268, -4.3902289, 0.0], [15.7887268, -4.3888597, 0.0], [15.7873535, -4.3888597, 0.0]]]}}, {"type": "Feature", "properties": {"id": 979}, "geometry": {"type": "Polygon", "coordinates": [[[15.7777405, -4.3888597, 0.0], [15.7777405, -4.3902289, 0.0], [15.7791138, -4.3902289, 0.0], [15.7791138, -4.3888597, 0.0], [15.7777405, -4.3888597, 0.0]]]}}, {"type": "Feature", "properties": {"id": 980}, "geometry": {"type": "Polygon", "coordinates": [[[15.8299255, -4.3888597, 0.0], [15.8299255, -4.3902289, 0.0], [15.8312988, -4.3902289, 0.0], [15.8312988, -4.3888597, 0.0], [15.8299255, -4.3888597, 0.0]]]}}, {"type": "Feature", "properties": {"id": 981}, "geometry": {"type": "Polygon", "coordinates": [[[15.9013367, -4.3888597, 0.0], [15.9013367, -4.3902289, 0.0], [15.90271, -4.3902289, 0.0], [15.90271, -4.3888597, 0.0], [15.9013367, -4.3888597, 0.0]]]}}, {"type": "Feature", "properties": {"id": 982}, "geometry": {"type": "Polygon", "coordinates": [[[15.9892273, -4.3888597, 0.0], [15.9892273, -4.3902289, 0.0], [15.9906006, -4.3902289, 0.0], [15.9906006, -4.3888597, 0.0], [15.9892273, -4.3888597, 0.0]]]}}, {"type": "Feature", "properties": {"id": 983}, "geometry": {"type": "Polygon", "coordinates": [[[15.8944702, -4.3888597, 0.0], [15.8944702, -4.3902289, 0.0], [15.8958435, -4.3902289, 0.0], [15.8958435, -4.3888597, 0.0], [15.8944702, -4.3888597, 0.0]]]}}, {"type": "Feature", "properties": {"id": 984}, "geometry": {"type": "Polygon", "coordinates": [[[15.7063293, -4.3874904, 0.0], [15.7063293, -4.3888597, 0.0], [15.7077026, -4.3888597, 0.0], [15.7077026, -4.3874904, 0.0], [15.7063293, -4.3874904, 0.0]]]}}, {"type": "Feature", "properties": {"id": 985}, "geometry": {"type": "Polygon", "coordinates": [[[15.9356689, -4.3874904, 0.0], [15.9356689, -4.3888597, 0.0], [15.9370422, -4.3888597, 0.0], [15.9370422, -4.3874904, 0.0], [15.9356689, -4.3874904, 0.0]]]}}, {"type": "Feature", "properties": {"id": 986}, "geometry": {"type": "Polygon", "coordinates": [[[15.8601379, -4.3874904, 0.0], [15.8601379, -4.3888597, 0.0], [15.8615112, -4.3888597, 0.0], [15.8615112, -4.3874904, 0.0], [15.8601379, -4.3874904, 0.0]]]}}, {"type": "Feature", "properties": {"id": 987}, "geometry": {"type": "Polygon", "coordinates": [[[15.8175659, -4.3874904, 0.0], [15.8175659, -4.3888597, 0.0], [15.8189392, -4.3888597, 0.0], [15.8189392, -4.3874904, 0.0], [15.8175659, -4.3874904, 0.0]]]}}, {"type": "Feature", "properties": {"id": 988}, "geometry": {"type": "Polygon", "coordinates": [[[15.7653809, -4.3874904, 0.0], [15.7653809, -4.3888597, 0.0], [15.7667542, -4.3888597, 0.0], [15.7667542, -4.3874904, 0.0], [15.7653809, -4.3874904, 0.0]]]}}, {"type": "Feature", "properties": {"id": 989}, "geometry": {"type": "Polygon", "coordinates": [[[15.8203125, -4.3874904, 0.0], [15.8203125, -4.3888597, 0.0], [15.8216858, -4.3888597, 0.0], [15.8216858, -4.3874904, 0.0], [15.8203125, -4.3874904, 0.0]]]}}, {"type": "Feature", "properties": {"id": 990}, "geometry": {"type": "Polygon", "coordinates": [[[15.8958435, -4.3861211, 0.0], [15.8958435, -4.3874904, 0.0], [15.8972168, -4.3874904, 0.0], [15.8972168, -4.3861211, 0.0], [15.8958435, -4.3861211, 0.0]]]}}, {"type": "Feature", "properties": {"id": 991}, "geometry": {"type": "Polygon", "coordinates": [[[15.7914734, -4.3861211, 0.0], [15.7914734, -4.3847519, 0.0], [15.7901001, -4.3847519, 0.0], [15.7887268, -4.3847519, 0.0], [15.7887268, -4.3861211, 0.0], [15.7901001, -4.3861211, 0.0], [15.7901001, -4.3874904, 0.0], [15.7914734, -4.3874904, 0.0], [15.7914734, -4.3861211, 0.0]]]}}, {"type": "Feature", "properties": {"id": 992}, "geometry": {"type": "Polygon", "coordinates": [[[15.8518982, -4.3861211, 0.0], [15.8518982, -4.3874904, 0.0], [15.8532715, -4.3874904, 0.0], [15.8532715, -4.3861211, 0.0], [15.8518982, -4.3861211, 0.0]]]}}, {"type": "Feature", "properties": {"id": 993}, "geometry": {"type": "Polygon", "coordinates": [[[15.827179, -4.3861211, 0.0], [15.827179, -4.3874904, 0.0], [15.8285522, -4.3874904, 0.0], [15.8285522, -4.3861211, 0.0], [15.827179, -4.3861211, 0.0]]]}}, {"type": "Feature", "properties": {"id": 994}, "geometry": {"type": "Polygon", "coordinates": [[[15.813446, -4.3861211, 0.0], [15.8120728, -4.3861211, 0.0], [15.8120728, -4.3874904, 0.0], [15.813446, -4.3874904, 0.0], [15.8148193, -4.3874904, 0.0], [15.8148193, -4.3861211, 0.0], [15.813446, -4.3861211, 0.0]]]}}, {"type": "Feature", "properties": {"id": 995}, "geometry": {"type": "Polygon", "coordinates": [[[15.9233093, -4.3861211, 0.0], [15.9233093, -4.3874904, 0.0], [15.9246826, -4.3874904, 0.0], [15.9246826, -4.3861211, 0.0], [15.9233093, -4.3861211, 0.0]]]}}, {"type": "Feature", "properties": {"id": 996}, "geometry": {"type": "Polygon", "coordinates": [[[15.987854, -4.3861211, 0.0], [15.987854, -4.3847519, 0.0], [15.9864807, -4.3847519, 0.0], [15.9864807, -4.3861211, 0.0], [15.9864807, -4.3874904, 0.0], [15.987854, -4.3874904, 0.0], [15.987854, -4.3861211, 0.0]]]}}, {"type": "Feature", "properties": {"id": 997}, "geometry": {"type": "Polygon", "coordinates": [[[15.8917236, -4.3861211, 0.0], [15.8917236, -4.3847519, 0.0], [15.8930969, -4.3847519, 0.0], [15.8930969, -4.3833826, 0.0], [15.8930969, -4.3820133, 0.0], [15.8930969, -4.380644, 0.0], [15.8944702, -4.380644, 0.0], [15.8958435, -4.380644, 0.0], [15.8958435, -4.3792748, 0.0], [15.8944702, -4.3792748, 0.0], [15.8944702, -4.3779055, 0.0], [15.8944702, -4.3765362, 0.0], [15.8958435, -4.3765362, 0.0], [15.8958435, -4.3751669, 0.0], [15.8958435, -4.3737976, 0.0], [15.8972168, -4.3737976, 0.0], [15.8972168, -4.3724283, 0.0], [15.8972168, -4.371059, 0.0], [15.8972168, -4.3696897, 0.0], [15.8972168, -4.3683204, 0.0], [15.8958435, -4.3683204, 0.0], [15.8944702, -4.3683204, 0.0], [15.8944702, -4.3696897, 0.0], [15.8944702, -4.371059, 0.0], [15.8944702, -4.3724283, 0.0], [15.8930969, -4.3724283, 0.0], [15.8930969, -4.3737976, 0.0], [15.8917236, -4.3737976, 0.0], [15.8917236, -4.3751669, 0.0], [15.8917236, -4.3765362, 0.0], [15.8917236, -4.3779055, 0.0], [15.8917236, -4.3792748, 0.0], [15.8917236, -4.380644, 0.0], [15.8903503, -4.380644, 0.0], [15.8903503, -4.3820133, 0.0], [15.8903503, -4.3833826, 0.0], [15.8903503, -4.3847519, 0.0], [15.8903503, -4.3861211, 0.0], [15.8903503, -4.3874904, 0.0], [15.8917236, -4.3874904, 0.0], [15.8917236, -4.3861211, 0.0]]]}}, {"type": "Feature", "properties": {"id": 998}, "geometry": {"type": "Polygon", "coordinates": [[[15.8766174, -4.3861211, 0.0], [15.8766174, -4.3847519, 0.0], [15.8779907, -4.3847519, 0.0], [15.8779907, -4.3833826, 0.0], [15.8766174, -4.3833826, 0.0], [15.8752441, -4.3833826, 0.0], [15.8752441, -4.3847519, 0.0], [15.8738708, -4.3847519, 0.0], [15.8738708, -4.3861211, 0.0], [15.8752441, -4.3861211, 0.0], [15.8752441, -4.3874904, 0.0], [15.8766174, -4.3874904, 0.0], [15.8766174, -4.3861211, 0.0]]]}}, {"type": "Feature", "properties": {"id": 999}, "geometry": {"type": "Polygon", "coordinates": [[[15.9301758, -4.3847519, 0.0], [15.9301758, -4.3861211, 0.0], [15.9315491, -4.3861211, 0.0], [15.9315491, -4.3847519, 0.0], [15.9301758, -4.3847519, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1000}, "geometry": {"type": "Polygon", "coordinates": [[[15.9054565, -4.3847519, 0.0], [15.9054565, -4.3861211, 0.0], [15.9068298, -4.3861211, 0.0], [15.9068298, -4.3847519, 0.0], [15.9054565, -4.3847519, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1001}, "geometry": {"type": "Polygon", "coordinates": [[[15.9274292, -4.3847519, 0.0], [15.9274292, -4.3861211, 0.0], [15.9288025, -4.3861211, 0.0], [15.9288025, -4.3847519, 0.0], [15.9274292, -4.3847519, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1002}, "geometry": {"type": "Polygon", "coordinates": [[[15.9521484, -4.3847519, 0.0], [15.9521484, -4.3861211, 0.0], [15.9535217, -4.3861211, 0.0], [15.9535217, -4.3847519, 0.0], [15.9521484, -4.3847519, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1003}, "geometry": {"type": "Polygon", "coordinates": [[[15.761261, -4.3847519, 0.0], [15.761261, -4.3861211, 0.0], [15.7626343, -4.3861211, 0.0], [15.7626343, -4.3847519, 0.0], [15.761261, -4.3847519, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1004}, "geometry": {"type": "Polygon", "coordinates": [[[15.8587646, -4.3847519, 0.0], [15.8587646, -4.3861211, 0.0], [15.8601379, -4.3861211, 0.0], [15.8601379, -4.3847519, 0.0], [15.8587646, -4.3847519, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1005}, "geometry": {"type": "Polygon", "coordinates": [[[15.8093262, -4.3847519, 0.0], [15.8093262, -4.3861211, 0.0], [15.8106995, -4.3861211, 0.0], [15.8106995, -4.3847519, 0.0], [15.8093262, -4.3847519, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1006}, "geometry": {"type": "Polygon", "coordinates": [[[15.7928467, -4.3833826, 0.0], [15.7928467, -4.3847519, 0.0], [15.79422, -4.3847519, 0.0], [15.79422, -4.3833826, 0.0], [15.7928467, -4.3833826, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1007}, "geometry": {"type": "Polygon", "coordinates": [[[15.9906006, -4.3833826, 0.0], [15.9906006, -4.3847519, 0.0], [15.9919739, -4.3847519, 0.0], [15.9919739, -4.3833826, 0.0], [15.9906006, -4.3833826, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1008}, "geometry": {"type": "Polygon", "coordinates": [[[15.8065796, -4.3847519, 0.0], [15.8065796, -4.3861211, 0.0], [15.8079529, -4.3861211, 0.0], [15.8079529, -4.3847519, 0.0], [15.8065796, -4.3847519, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1009}, "geometry": {"type": "Polygon", "coordinates": [[[15.9480286, -4.3833826, 0.0], [15.9480286, -4.3847519, 0.0], [15.9494019, -4.3847519, 0.0], [15.9494019, -4.3833826, 0.0], [15.9480286, -4.3833826, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1010}, "geometry": {"type": "Polygon", "coordinates": [[[15.9439087, -4.3833826, 0.0], [15.9439087, -4.3847519, 0.0], [15.945282, -4.3847519, 0.0], [15.945282, -4.3833826, 0.0], [15.9439087, -4.3833826, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1011}, "geometry": {"type": "Polygon", "coordinates": [[[15.9136963, -4.3833826, 0.0], [15.9136963, -4.3847519, 0.0], [15.9150696, -4.3847519, 0.0], [15.9150696, -4.3833826, 0.0], [15.9136963, -4.3833826, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1012}, "geometry": {"type": "Polygon", "coordinates": [[[15.8573914, -4.3833826, 0.0], [15.8573914, -4.3847519, 0.0], [15.8587646, -4.3847519, 0.0], [15.8587646, -4.3833826, 0.0], [15.8573914, -4.3833826, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1013}, "geometry": {"type": "Polygon", "coordinates": [[[15.945282, -4.3820133, 0.0], [15.945282, -4.3833826, 0.0], [15.9466553, -4.3833826, 0.0], [15.9466553, -4.3820133, 0.0], [15.945282, -4.3820133, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1014}, "geometry": {"type": "Polygon", "coordinates": [[[15.8628845, -4.3820133, 0.0], [15.8628845, -4.3833826, 0.0], [15.8642578, -4.3833826, 0.0], [15.8642578, -4.3820133, 0.0], [15.8628845, -4.3820133, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1015}, "geometry": {"type": "Polygon", "coordinates": [[[15.8189392, -4.3820133, 0.0], [15.8189392, -4.3833826, 0.0], [15.8203125, -4.3833826, 0.0], [15.8203125, -4.3820133, 0.0], [15.8189392, -4.3820133, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1016}, "geometry": {"type": "Polygon", "coordinates": [[[15.7653809, -4.3820133, 0.0], [15.7640076, -4.3820133, 0.0], [15.7640076, -4.3833826, 0.0], [15.7653809, -4.3833826, 0.0], [15.7667542, -4.3833826, 0.0], [15.7667542, -4.3820133, 0.0], [15.7653809, -4.3820133, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1017}, "geometry": {"type": "Polygon", "coordinates": [[[15.9384155, -4.3820133, 0.0], [15.9397888, -4.3820133, 0.0], [15.9397888, -4.380644, 0.0], [15.9397888, -4.3792748, 0.0], [15.9384155, -4.3792748, 0.0], [15.9370422, -4.3792748, 0.0], [15.9370422, -4.380644, 0.0], [15.9370422, -4.3820133, 0.0], [15.9384155, -4.3820133, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1018}, "geometry": {"type": "Polygon", "coordinates": [[[15.9329224, -4.380644, 0.0], [15.9329224, -4.3820133, 0.0], [15.9342957, -4.3820133, 0.0], [15.9342957, -4.380644, 0.0], [15.9329224, -4.380644, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1019}, "geometry": {"type": "Polygon", "coordinates": [[[15.9768677, -4.380644, 0.0], [15.9768677, -4.3820133, 0.0], [15.978241, -4.3820133, 0.0], [15.978241, -4.380644, 0.0], [15.9768677, -4.380644, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1020}, "geometry": {"type": "Polygon", "coordinates": [[[15.9411621, -4.380644, 0.0], [15.9411621, -4.3820133, 0.0], [15.9425354, -4.3820133, 0.0], [15.9425354, -4.380644, 0.0], [15.9411621, -4.380644, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1021}, "geometry": {"type": "Polygon", "coordinates": [[[15.7901001, -4.380644, 0.0], [15.7901001, -4.3792748, 0.0], [15.7887268, -4.3792748, 0.0], [15.7887268, -4.380644, 0.0], [15.7887268, -4.3820133, 0.0], [15.7901001, -4.3820133, 0.0], [15.7914734, -4.3820133, 0.0], [15.7928467, -4.3820133, 0.0], [15.79422, -4.3820133, 0.0], [15.79422, -4.380644, 0.0], [15.7928467, -4.380644, 0.0], [15.7914734, -4.380644, 0.0], [15.7901001, -4.380644, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1022}, "geometry": {"type": "Polygon", "coordinates": [[[15.8670044, -4.380644, 0.0], [15.8670044, -4.3820133, 0.0], [15.8683777, -4.3820133, 0.0], [15.8683777, -4.380644, 0.0], [15.8670044, -4.380644, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1023}, "geometry": {"type": "Polygon", "coordinates": [[[15.8642578, -4.380644, 0.0], [15.8642578, -4.3820133, 0.0], [15.8656311, -4.3820133, 0.0], [15.8656311, -4.380644, 0.0], [15.8642578, -4.380644, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1024}, "geometry": {"type": "Polygon", "coordinates": [[[15.879364, -4.380644, 0.0], [15.879364, -4.3820133, 0.0], [15.8807373, -4.3820133, 0.0], [15.8807373, -4.380644, 0.0], [15.879364, -4.380644, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1025}, "geometry": {"type": "Polygon", "coordinates": [[[15.8711243, -4.380644, 0.0], [15.8711243, -4.3820133, 0.0], [15.8724976, -4.3820133, 0.0], [15.8724976, -4.380644, 0.0], [15.8711243, -4.380644, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1026}, "geometry": {"type": "Polygon", "coordinates": [[[15.7736206, -4.380644, 0.0], [15.7736206, -4.3820133, 0.0], [15.7749939, -4.3820133, 0.0], [15.7749939, -4.380644, 0.0], [15.7736206, -4.380644, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1027}, "geometry": {"type": "Polygon", "coordinates": [[[15.8258057, -4.3792748, 0.0], [15.8258057, -4.380644, 0.0], [15.827179, -4.380644, 0.0], [15.827179, -4.3792748, 0.0], [15.8258057, -4.3792748, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1028}, "geometry": {"type": "Polygon", "coordinates": [[[15.8216858, -4.3792748, 0.0], [15.8203125, -4.3792748, 0.0], [15.8203125, -4.380644, 0.0], [15.8216858, -4.380644, 0.0], [15.8230591, -4.380644, 0.0], [15.8230591, -4.3792748, 0.0], [15.8216858, -4.3792748, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1029}, "geometry": {"type": "Polygon", "coordinates": [[[15.8052063, -4.3792748, 0.0], [15.8052063, -4.380644, 0.0], [15.8065796, -4.380644, 0.0], [15.8065796, -4.3792748, 0.0], [15.8052063, -4.3792748, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1030}, "geometry": {"type": "Polygon", "coordinates": [[[15.9851074, -4.3792748, 0.0], [15.9864807, -4.3792748, 0.0], [15.9864807, -4.3779055, 0.0], [15.9851074, -4.3779055, 0.0], [15.9837341, -4.3779055, 0.0], [15.9837341, -4.3792748, 0.0], [15.9823608, -4.3792748, 0.0], [15.9823608, -4.380644, 0.0], [15.9837341, -4.380644, 0.0], [15.9851074, -4.380644, 0.0], [15.9851074, -4.3792748, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1031}, "geometry": {"type": "Polygon", "coordinates": [[[15.7337952, -4.3792748, 0.0], [15.7337952, -4.380644, 0.0], [15.7351685, -4.380644, 0.0], [15.7351685, -4.3792748, 0.0], [15.7337952, -4.3792748, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1032}, "geometry": {"type": "Polygon", "coordinates": [[[15.761261, -4.3792748, 0.0], [15.7626343, -4.3792748, 0.0], [15.7626343, -4.3779055, 0.0], [15.761261, -4.3779055, 0.0], [15.7598877, -4.3779055, 0.0], [15.7598877, -4.3792748, 0.0], [15.7598877, -4.380644, 0.0], [15.761261, -4.380644, 0.0], [15.761261, -4.3792748, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1033}, "geometry": {"type": "Polygon", "coordinates": [[[15.9246826, -4.3779055, 0.0], [15.9246826, -4.3765362, 0.0], [15.9233093, -4.3765362, 0.0], [15.9233093, -4.3779055, 0.0], [15.9233093, -4.3792748, 0.0], [15.9246826, -4.3792748, 0.0], [15.9246826, -4.3779055, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1034}, "geometry": {"type": "Polygon", "coordinates": [[[15.7640076, -4.3779055, 0.0], [15.7640076, -4.3792748, 0.0], [15.7653809, -4.3792748, 0.0], [15.7653809, -4.3779055, 0.0], [15.7640076, -4.3779055, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1035}, "geometry": {"type": "Polygon", "coordinates": [[[15.8821106, -4.3792748, 0.0], [15.8821106, -4.380644, 0.0], [15.8834839, -4.380644, 0.0], [15.8834839, -4.3792748, 0.0], [15.8821106, -4.3792748, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1036}, "geometry": {"type": "Polygon", "coordinates": [[[15.869751, -4.3792748, 0.0], [15.869751, -4.380644, 0.0], [15.8711243, -4.380644, 0.0], [15.8711243, -4.3792748, 0.0], [15.869751, -4.3792748, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1037}, "geometry": {"type": "Polygon", "coordinates": [[[15.8532715, -4.3792748, 0.0], [15.8532715, -4.380644, 0.0], [15.8546448, -4.380644, 0.0], [15.8546448, -4.3792748, 0.0], [15.8532715, -4.3792748, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1038}, "geometry": {"type": "Polygon", "coordinates": [[[15.8299255, -4.3792748, 0.0], [15.8312988, -4.3792748, 0.0], [15.8312988, -4.3779055, 0.0], [15.8299255, -4.3779055, 0.0], [15.8299255, -4.3765362, 0.0], [15.8285522, -4.3765362, 0.0], [15.8285522, -4.3779055, 0.0], [15.8285522, -4.3792748, 0.0], [15.8285522, -4.380644, 0.0], [15.8299255, -4.380644, 0.0], [15.8299255, -4.3792748, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1039}, "geometry": {"type": "Polygon", "coordinates": [[[15.8573914, -4.3779055, 0.0], [15.8573914, -4.3792748, 0.0], [15.8587646, -4.3792748, 0.0], [15.8587646, -4.3779055, 0.0], [15.8573914, -4.3779055, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1040}, "geometry": {"type": "Polygon", "coordinates": [[[15.9864807, -4.3765362, 0.0], [15.9864807, -4.3779055, 0.0], [15.987854, -4.3779055, 0.0], [15.987854, -4.3765362, 0.0], [15.9864807, -4.3765362, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1041}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.3765362, 0.0], [15.7667542, -4.3779055, 0.0], [15.7681274, -4.3779055, 0.0], [15.7681274, -4.3765362, 0.0], [15.7667542, -4.3765362, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1042}, "geometry": {"type": "Polygon", "coordinates": [[[15.770874, -4.3779055, 0.0], [15.770874, -4.3792748, 0.0], [15.7722473, -4.3792748, 0.0], [15.7722473, -4.3779055, 0.0], [15.770874, -4.3779055, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1043}, "geometry": {"type": "Polygon", "coordinates": [[[15.9095764, -4.3765362, 0.0], [15.9082031, -4.3765362, 0.0], [15.9082031, -4.3779055, 0.0], [15.9095764, -4.3779055, 0.0], [15.9109497, -4.3779055, 0.0], [15.912323, -4.3779055, 0.0], [15.912323, -4.3765362, 0.0], [15.9109497, -4.3765362, 0.0], [15.9095764, -4.3765362, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1044}, "geometry": {"type": "Polygon", "coordinates": [[[15.90271, -4.3765362, 0.0], [15.90271, -4.3751669, 0.0], [15.9013367, -4.3751669, 0.0], [15.9013367, -4.3765362, 0.0], [15.9013367, -4.3779055, 0.0], [15.90271, -4.3779055, 0.0], [15.90271, -4.3765362, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1045}, "geometry": {"type": "Polygon", "coordinates": [[[15.9040833, -4.3765362, 0.0], [15.9040833, -4.3779055, 0.0], [15.9054565, -4.3779055, 0.0], [15.9054565, -4.3765362, 0.0], [15.9040833, -4.3765362, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1046}, "geometry": {"type": "Polygon", "coordinates": [[[15.9411621, -4.3765362, 0.0], [15.9411621, -4.3779055, 0.0], [15.9425354, -4.3779055, 0.0], [15.9425354, -4.3765362, 0.0], [15.9411621, -4.3765362, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1047}, "geometry": {"type": "Polygon", "coordinates": [[[15.8340454, -4.3765362, 0.0], [15.8340454, -4.3779055, 0.0], [15.8354187, -4.3779055, 0.0], [15.8354187, -4.3765362, 0.0], [15.8340454, -4.3765362, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1048}, "geometry": {"type": "Polygon", "coordinates": [[[15.8670044, -4.3765362, 0.0], [15.8670044, -4.3751669, 0.0], [15.8656311, -4.3751669, 0.0], [15.8656311, -4.3765362, 0.0], [15.8656311, -4.3779055, 0.0], [15.8670044, -4.3779055, 0.0], [15.8670044, -4.3765362, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1049}, "geometry": {"type": "Polygon", "coordinates": [[[15.8079529, -4.3765362, 0.0], [15.8079529, -4.3779055, 0.0], [15.8093262, -4.3779055, 0.0], [15.8093262, -4.3765362, 0.0], [15.8079529, -4.3765362, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1050}, "geometry": {"type": "Polygon", "coordinates": [[[15.7901001, -4.3765362, 0.0], [15.7901001, -4.3779055, 0.0], [15.7914734, -4.3779055, 0.0], [15.7914734, -4.3765362, 0.0], [15.7901001, -4.3765362, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1051}, "geometry": {"type": "Polygon", "coordinates": [[[15.7598877, -4.3751669, 0.0], [15.7598877, -4.3737976, 0.0], [15.7585144, -4.3737976, 0.0], [15.7571411, -4.3737976, 0.0], [15.7571411, -4.3751669, 0.0], [15.7571411, -4.3765362, 0.0], [15.7585144, -4.3765362, 0.0], [15.7598877, -4.3765362, 0.0], [15.7598877, -4.3751669, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1052}, "geometry": {"type": "Polygon", "coordinates": [[[15.7695007, -4.3751669, 0.0], [15.7695007, -4.3737976, 0.0], [15.7681274, -4.3737976, 0.0], [15.7681274, -4.3751669, 0.0], [15.7681274, -4.3765362, 0.0], [15.7695007, -4.3765362, 0.0], [15.7695007, -4.3751669, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1053}, "geometry": {"type": "Polygon", "coordinates": [[[15.9356689, -4.3751669, 0.0], [15.9356689, -4.3765362, 0.0], [15.9370422, -4.3765362, 0.0], [15.9370422, -4.3751669, 0.0], [15.9356689, -4.3751669, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1054}, "geometry": {"type": "Polygon", "coordinates": [[[15.9823608, -4.3737976, 0.0], [15.9823608, -4.3751669, 0.0], [15.9837341, -4.3751669, 0.0], [15.9837341, -4.3737976, 0.0], [15.9823608, -4.3737976, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1055}, "geometry": {"type": "Polygon", "coordinates": [[[15.9411621, -4.3737976, 0.0], [15.9411621, -4.3751669, 0.0], [15.9425354, -4.3751669, 0.0], [15.9425354, -4.3737976, 0.0], [15.9411621, -4.3737976, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1056}, "geometry": {"type": "Polygon", "coordinates": [[[15.8560181, -4.3737976, 0.0], [15.8560181, -4.3751669, 0.0], [15.8573914, -4.3751669, 0.0], [15.8573914, -4.3737976, 0.0], [15.8560181, -4.3737976, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1057}, "geometry": {"type": "Polygon", "coordinates": [[[15.9136963, -4.3737976, 0.0], [15.9136963, -4.3751669, 0.0], [15.9150696, -4.3751669, 0.0], [15.9150696, -4.3737976, 0.0], [15.9136963, -4.3737976, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1058}, "geometry": {"type": "Polygon", "coordinates": [[[15.7928467, -4.3737976, 0.0], [15.7928467, -4.3751669, 0.0], [15.79422, -4.3751669, 0.0], [15.79422, -4.3737976, 0.0], [15.7928467, -4.3737976, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1059}, "geometry": {"type": "Polygon", "coordinates": [[[15.7901001, -4.3737976, 0.0], [15.7901001, -4.3751669, 0.0], [15.7914734, -4.3751669, 0.0], [15.7914734, -4.3737976, 0.0], [15.7901001, -4.3737976, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1060}, "geometry": {"type": "Polygon", "coordinates": [[[15.8079529, -4.3737976, 0.0], [15.8079529, -4.3751669, 0.0], [15.8093262, -4.3751669, 0.0], [15.8093262, -4.3737976, 0.0], [15.8079529, -4.3737976, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1061}, "geometry": {"type": "Polygon", "coordinates": [[[15.8670044, -4.3724283, 0.0], [15.8670044, -4.3737976, 0.0], [15.8683777, -4.3737976, 0.0], [15.869751, -4.3737976, 0.0], [15.8711243, -4.3737976, 0.0], [15.8711243, -4.3724283, 0.0], [15.869751, -4.3724283, 0.0], [15.8683777, -4.3724283, 0.0], [15.8670044, -4.3724283, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1062}, "geometry": {"type": "Polygon", "coordinates": [[[15.8299255, -4.3724283, 0.0], [15.8312988, -4.3724283, 0.0], [15.8326721, -4.3724283, 0.0], [15.8326721, -4.371059, 0.0], [15.8326721, -4.3696897, 0.0], [15.8326721, -4.3683204, 0.0], [15.8312988, -4.3683204, 0.0], [15.8299255, -4.3683204, 0.0], [15.8299255, -4.3696897, 0.0], [15.8312988, -4.3696897, 0.0], [15.8312988, -4.371059, 0.0], [15.8299255, -4.371059, 0.0], [15.8285522, -4.371059, 0.0], [15.827179, -4.371059, 0.0], [15.827179, -4.3724283, 0.0], [15.827179, -4.3737976, 0.0], [15.8285522, -4.3737976, 0.0], [15.8299255, -4.3737976, 0.0], [15.8299255, -4.3724283, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1063}, "geometry": {"type": "Polygon", "coordinates": [[[15.8834839, -4.3724283, 0.0], [15.8834839, -4.3737976, 0.0], [15.8848572, -4.3737976, 0.0], [15.8848572, -4.3724283, 0.0], [15.8834839, -4.3724283, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1064}, "geometry": {"type": "Polygon", "coordinates": [[[15.79422, -4.3724283, 0.0], [15.79422, -4.3737976, 0.0], [15.7955933, -4.3737976, 0.0], [15.7969666, -4.3737976, 0.0], [15.7969666, -4.3724283, 0.0], [15.7955933, -4.3724283, 0.0], [15.79422, -4.3724283, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1065}, "geometry": {"type": "Polygon", "coordinates": [[[15.7571411, -4.3724283, 0.0], [15.7571411, -4.371059, 0.0], [15.7571411, -4.3696897, 0.0], [15.7557678, -4.3696897, 0.0], [15.7557678, -4.3683204, 0.0], [15.7571411, -4.3683204, 0.0], [15.7571411, -4.3669511, 0.0], [15.7585144, -4.3669511, 0.0], [15.7585144, -4.3655818, 0.0], [15.7598877, -4.3655818, 0.0], [15.7598877, -4.3642125, 0.0], [15.7598877, -4.3628432, 0.0], [15.7598877, -4.3614739, 0.0], [15.7585144, -4.3614739, 0.0], [15.7585144, -4.3628432, 0.0], [15.7585144, -4.3642125, 0.0], [15.7571411, -4.3642125, 0.0], [15.7571411, -4.3655818, 0.0], [15.7557678, -4.3655818, 0.0], [15.7557678, -4.3642125, 0.0], [15.7557678, -4.3628432, 0.0], [15.7543945, -4.3628432, 0.0], [15.7543945, -4.3642125, 0.0], [15.7543945, -4.3655818, 0.0], [15.7543945, -4.3669511, 0.0], [15.7543945, -4.3683204, 0.0], [15.7543945, -4.3696897, 0.0], [15.7543945, -4.371059, 0.0], [15.7543945, -4.3724283, 0.0], [15.7557678, -4.3724283, 0.0], [15.7557678, -4.3737976, 0.0], [15.7571411, -4.3737976, 0.0], [15.7571411, -4.3724283, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1066}, "geometry": {"type": "Polygon", "coordinates": [[[15.8175659, -4.371059, 0.0], [15.8175659, -4.3724283, 0.0], [15.8189392, -4.3724283, 0.0], [15.8203125, -4.3724283, 0.0], [15.8216858, -4.3724283, 0.0], [15.8216858, -4.371059, 0.0], [15.8203125, -4.371059, 0.0], [15.8189392, -4.371059, 0.0], [15.8175659, -4.371059, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1067}, "geometry": {"type": "Polygon", "coordinates": [[[15.8340454, -4.371059, 0.0], [15.8340454, -4.3724283, 0.0], [15.8354187, -4.3724283, 0.0], [15.8354187, -4.371059, 0.0], [15.8340454, -4.371059, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1068}, "geometry": {"type": "Polygon", "coordinates": [[[15.921936, -4.371059, 0.0], [15.921936, -4.3724283, 0.0], [15.9233093, -4.3724283, 0.0], [15.9233093, -4.371059, 0.0], [15.921936, -4.371059, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1069}, "geometry": {"type": "Polygon", "coordinates": [[[15.9150696, -4.371059, 0.0], [15.9150696, -4.3724283, 0.0], [15.9164429, -4.3724283, 0.0], [15.9164429, -4.371059, 0.0], [15.9150696, -4.371059, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1070}, "geometry": {"type": "Polygon", "coordinates": [[[15.9260559, -4.371059, 0.0], [15.9260559, -4.3724283, 0.0], [15.9274292, -4.3724283, 0.0], [15.9274292, -4.371059, 0.0], [15.9260559, -4.371059, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1071}, "geometry": {"type": "Polygon", "coordinates": [[[15.7598877, -4.371059, 0.0], [15.7598877, -4.3724283, 0.0], [15.761261, -4.3724283, 0.0], [15.761261, -4.371059, 0.0], [15.7598877, -4.371059, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1072}, "geometry": {"type": "Polygon", "coordinates": [[[15.7928467, -4.3696897, 0.0], [15.7928467, -4.371059, 0.0], [15.79422, -4.371059, 0.0], [15.79422, -4.3696897, 0.0], [15.7928467, -4.3696897, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1073}, "geometry": {"type": "Polygon", "coordinates": [[[15.8354187, -4.3696897, 0.0], [15.8354187, -4.371059, 0.0], [15.836792, -4.371059, 0.0], [15.836792, -4.3696897, 0.0], [15.8354187, -4.3696897, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1074}, "geometry": {"type": "Polygon", "coordinates": [[[15.8670044, -4.3696897, 0.0], [15.8670044, -4.371059, 0.0], [15.8683777, -4.371059, 0.0], [15.8683777, -4.3696897, 0.0], [15.8670044, -4.3696897, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1075}, "geometry": {"type": "Polygon", "coordinates": [[[15.8711243, -4.3696897, 0.0], [15.8711243, -4.371059, 0.0], [15.8724976, -4.371059, 0.0], [15.8738708, -4.371059, 0.0], [15.8738708, -4.3696897, 0.0], [15.8724976, -4.3696897, 0.0], [15.8711243, -4.3696897, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1076}, "geometry": {"type": "Polygon", "coordinates": [[[15.9617615, -4.3669511, 0.0], [15.9617615, -4.3655818, 0.0], [15.9617615, -4.3642125, 0.0], [15.9603882, -4.3642125, 0.0], [15.9603882, -4.3655818, 0.0], [15.9590149, -4.3655818, 0.0], [15.9590149, -4.3669511, 0.0], [15.9603882, -4.3669511, 0.0], [15.9603882, -4.3683204, 0.0], [15.9617615, -4.3683204, 0.0], [15.9631348, -4.3683204, 0.0], [15.9631348, -4.3669511, 0.0], [15.9617615, -4.3669511, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1077}, "geometry": {"type": "Polygon", "coordinates": [[[15.8052063, -4.3683204, 0.0], [15.8052063, -4.3696897, 0.0], [15.8065796, -4.3696897, 0.0], [15.8065796, -4.3683204, 0.0], [15.8052063, -4.3683204, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1078}, "geometry": {"type": "Polygon", "coordinates": [[[15.9246826, -4.3669511, 0.0], [15.9246826, -4.3683204, 0.0], [15.9260559, -4.3683204, 0.0], [15.9260559, -4.3669511, 0.0], [15.9246826, -4.3669511, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1079}, "geometry": {"type": "Polygon", "coordinates": [[[15.8972168, -4.3669511, 0.0], [15.8972168, -4.3683204, 0.0], [15.8985901, -4.3683204, 0.0], [15.8985901, -4.3669511, 0.0], [15.8972168, -4.3669511, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1080}, "geometry": {"type": "Polygon", "coordinates": [[[15.8326721, -4.3669511, 0.0], [15.8326721, -4.3683204, 0.0], [15.8340454, -4.3683204, 0.0], [15.8340454, -4.3669511, 0.0], [15.8326721, -4.3669511, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1081}, "geometry": {"type": "Polygon", "coordinates": [[[15.8766174, -4.3669511, 0.0], [15.8766174, -4.3683204, 0.0], [15.8779907, -4.3683204, 0.0], [15.8779907, -4.3669511, 0.0], [15.8766174, -4.3669511, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1082}, "geometry": {"type": "Polygon", "coordinates": [[[15.8354187, -4.3669511, 0.0], [15.8354187, -4.3683204, 0.0], [15.836792, -4.3683204, 0.0], [15.836792, -4.3669511, 0.0], [15.8354187, -4.3669511, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1083}, "geometry": {"type": "Polygon", "coordinates": [[[15.8161926, -4.3669511, 0.0], [15.8161926, -4.3683204, 0.0], [15.8175659, -4.3683204, 0.0], [15.8175659, -4.3669511, 0.0], [15.8161926, -4.3669511, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1084}, "geometry": {"type": "Polygon", "coordinates": [[[15.8930969, -4.3669511, 0.0], [15.8930969, -4.3683204, 0.0], [15.8944702, -4.3683204, 0.0], [15.8944702, -4.3669511, 0.0], [15.8930969, -4.3669511, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1085}, "geometry": {"type": "Polygon", "coordinates": [[[15.8065796, -4.3669511, 0.0], [15.8065796, -4.3683204, 0.0], [15.8079529, -4.3683204, 0.0], [15.8079529, -4.3669511, 0.0], [15.8065796, -4.3669511, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1086}, "geometry": {"type": "Polygon", "coordinates": [[[15.8093262, -4.3655818, 0.0], [15.8093262, -4.3669511, 0.0], [15.8106995, -4.3669511, 0.0], [15.8106995, -4.3655818, 0.0], [15.8093262, -4.3655818, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1087}, "geometry": {"type": "Polygon", "coordinates": [[[15.9013367, -4.3655818, 0.0], [15.9013367, -4.3669511, 0.0], [15.90271, -4.3669511, 0.0], [15.90271, -4.3655818, 0.0], [15.9013367, -4.3655818, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1088}, "geometry": {"type": "Polygon", "coordinates": [[[15.8052063, -4.3655818, 0.0], [15.8052063, -4.3669511, 0.0], [15.8065796, -4.3669511, 0.0], [15.8065796, -4.3655818, 0.0], [15.8052063, -4.3655818, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1089}, "geometry": {"type": "Polygon", "coordinates": [[[15.8120728, -4.3655818, 0.0], [15.8120728, -4.3669511, 0.0], [15.813446, -4.3669511, 0.0], [15.813446, -4.3655818, 0.0], [15.8120728, -4.3655818, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1090}, "geometry": {"type": "Polygon", "coordinates": [[[15.9082031, -4.3642125, 0.0], [15.9082031, -4.3628432, 0.0], [15.9068298, -4.3628432, 0.0], [15.9068298, -4.3642125, 0.0], [15.9068298, -4.3655818, 0.0], [15.9082031, -4.3655818, 0.0], [15.9082031, -4.3642125, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1091}, "geometry": {"type": "Polygon", "coordinates": [[[15.8189392, -4.3655818, 0.0], [15.8189392, -4.3669511, 0.0], [15.8203125, -4.3669511, 0.0], [15.8203125, -4.3655818, 0.0], [15.8189392, -4.3655818, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1092}, "geometry": {"type": "Polygon", "coordinates": [[[15.8312988, -4.3655818, 0.0], [15.8312988, -4.3669511, 0.0], [15.8326721, -4.3669511, 0.0], [15.8326721, -4.3655818, 0.0], [15.8312988, -4.3655818, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1093}, "geometry": {"type": "Polygon", "coordinates": [[[15.879364, -4.3655818, 0.0], [15.879364, -4.3669511, 0.0], [15.8807373, -4.3669511, 0.0], [15.8821106, -4.3669511, 0.0], [15.8821106, -4.3655818, 0.0], [15.8807373, -4.3655818, 0.0], [15.879364, -4.3655818, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1094}, "geometry": {"type": "Polygon", "coordinates": [[[15.90271, -4.3628432, 0.0], [15.90271, -4.3642125, 0.0], [15.9040833, -4.3642125, 0.0], [15.9040833, -4.3628432, 0.0], [15.90271, -4.3628432, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1095}, "geometry": {"type": "Polygon", "coordinates": [[[15.7131958, -4.3628432, 0.0], [15.7145691, -4.3628432, 0.0], [15.7159424, -4.3628432, 0.0], [15.7159424, -4.3614739, 0.0], [15.7173157, -4.3614739, 0.0], [15.7173157, -4.3601046, 0.0], [15.7159424, -4.3601046, 0.0], [15.7145691, -4.3601046, 0.0], [15.7145691, -4.3614739, 0.0], [15.7131958, -4.3614739, 0.0], [15.7118225, -4.3614739, 0.0], [15.7118225, -4.3628432, 0.0], [15.7104492, -4.3628432, 0.0], [15.7104492, -4.3642125, 0.0], [15.7118225, -4.3642125, 0.0], [15.7131958, -4.3642125, 0.0], [15.7131958, -4.3628432, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1096}, "geometry": {"type": "Polygon", "coordinates": [[[15.7337952, -4.3628432, 0.0], [15.7337952, -4.3642125, 0.0], [15.7351685, -4.3642125, 0.0], [15.7351685, -4.3628432, 0.0], [15.7337952, -4.3628432, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1097}, "geometry": {"type": "Polygon", "coordinates": [[[15.803833, -4.3628432, 0.0], [15.803833, -4.3614739, 0.0], [15.8024597, -4.3614739, 0.0], [15.8024597, -4.3628432, 0.0], [15.8024597, -4.3642125, 0.0], [15.803833, -4.3642125, 0.0], [15.803833, -4.3628432, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1098}, "geometry": {"type": "Polygon", "coordinates": [[[15.8821106, -4.3628432, 0.0], [15.8821106, -4.3642125, 0.0], [15.8834839, -4.3642125, 0.0], [15.8834839, -4.3628432, 0.0], [15.8821106, -4.3628432, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1099}, "geometry": {"type": "Polygon", "coordinates": [[[15.8148193, -4.3628432, 0.0], [15.8148193, -4.3614739, 0.0], [15.813446, -4.3614739, 0.0], [15.813446, -4.3601046, 0.0], [15.8120728, -4.3601046, 0.0], [15.8120728, -4.3614739, 0.0], [15.8106995, -4.3614739, 0.0], [15.8106995, -4.3628432, 0.0], [15.8093262, -4.3628432, 0.0], [15.8079529, -4.3628432, 0.0], [15.8079529, -4.3642125, 0.0], [15.8093262, -4.3642125, 0.0], [15.8106995, -4.3642125, 0.0], [15.8120728, -4.3642125, 0.0], [15.8120728, -4.3628432, 0.0], [15.813446, -4.3628432, 0.0], [15.813446, -4.3642125, 0.0], [15.8148193, -4.3642125, 0.0], [15.8161926, -4.3642125, 0.0], [15.8175659, -4.3642125, 0.0], [15.8175659, -4.3628432, 0.0], [15.8161926, -4.3628432, 0.0], [15.8148193, -4.3628432, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1100}, "geometry": {"type": "Polygon", "coordinates": [[[15.987854, -4.3628432, 0.0], [15.9864807, -4.3628432, 0.0], [15.9864807, -4.3642125, 0.0], [15.987854, -4.3642125, 0.0], [15.9892273, -4.3642125, 0.0], [15.9892273, -4.3628432, 0.0], [15.987854, -4.3628432, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1101}, "geometry": {"type": "Polygon", "coordinates": [[[15.8738708, -4.3614739, 0.0], [15.8738708, -4.3628432, 0.0], [15.8752441, -4.3628432, 0.0], [15.8752441, -4.3614739, 0.0], [15.8738708, -4.3614739, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1102}, "geometry": {"type": "Polygon", "coordinates": [[[15.9727478, -4.3614739, 0.0], [15.9727478, -4.3628432, 0.0], [15.9741211, -4.3628432, 0.0], [15.9741211, -4.3614739, 0.0], [15.9727478, -4.3614739, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1103}, "geometry": {"type": "Polygon", "coordinates": [[[15.9645081, -4.3614739, 0.0], [15.9631348, -4.3614739, 0.0], [15.9631348, -4.3628432, 0.0], [15.9645081, -4.3628432, 0.0], [15.9658813, -4.3628432, 0.0], [15.9658813, -4.3614739, 0.0], [15.9645081, -4.3614739, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1104}, "geometry": {"type": "Polygon", "coordinates": [[[15.9260559, -4.3614739, 0.0], [15.9260559, -4.3628432, 0.0], [15.9274292, -4.3628432, 0.0], [15.9274292, -4.3614739, 0.0], [15.9260559, -4.3614739, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1105}, "geometry": {"type": "Polygon", "coordinates": [[[15.8010864, -4.3614739, 0.0], [15.8010864, -4.3601046, 0.0], [15.7997131, -4.3601046, 0.0], [15.7997131, -4.3614739, 0.0], [15.7997131, -4.3628432, 0.0], [15.8010864, -4.3628432, 0.0], [15.8010864, -4.3614739, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1106}, "geometry": {"type": "Polygon", "coordinates": [[[15.8711243, -4.3614739, 0.0], [15.8711243, -4.3628432, 0.0], [15.8724976, -4.3628432, 0.0], [15.8724976, -4.3614739, 0.0], [15.8711243, -4.3614739, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1107}, "geometry": {"type": "Polygon", "coordinates": [[[15.8299255, -4.3614739, 0.0], [15.8299255, -4.3628432, 0.0], [15.8312988, -4.3628432, 0.0], [15.8312988, -4.3614739, 0.0], [15.8299255, -4.3614739, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1108}, "geometry": {"type": "Polygon", "coordinates": [[[15.9837341, -4.3601046, 0.0], [15.9837341, -4.3614739, 0.0], [15.9851074, -4.3614739, 0.0], [15.9851074, -4.3601046, 0.0], [15.9837341, -4.3601046, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1109}, "geometry": {"type": "Polygon", "coordinates": [[[15.9768677, -4.3601046, 0.0], [15.9768677, -4.3614739, 0.0], [15.978241, -4.3614739, 0.0], [15.978241, -4.3601046, 0.0], [15.9768677, -4.3601046, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1110}, "geometry": {"type": "Polygon", "coordinates": [[[15.8656311, -4.3601046, 0.0], [15.8656311, -4.3614739, 0.0], [15.8670044, -4.3614739, 0.0], [15.8670044, -4.3601046, 0.0], [15.8656311, -4.3601046, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1111}, "geometry": {"type": "Polygon", "coordinates": [[[15.827179, -4.3601046, 0.0], [15.827179, -4.3587352, 0.0], [15.8258057, -4.3587352, 0.0], [15.8244324, -4.3587352, 0.0], [15.8244324, -4.3601046, 0.0], [15.8258057, -4.3601046, 0.0], [15.8258057, -4.3614739, 0.0], [15.827179, -4.3614739, 0.0], [15.8285522, -4.3614739, 0.0], [15.8285522, -4.3601046, 0.0], [15.827179, -4.3601046, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1112}, "geometry": {"type": "Polygon", "coordinates": [[[15.803833, -4.3587352, 0.0], [15.803833, -4.3573659, 0.0], [15.8052063, -4.3573659, 0.0], [15.8052063, -4.3559966, 0.0], [15.803833, -4.3559966, 0.0], [15.8024597, -4.3559966, 0.0], [15.8010864, -4.3559966, 0.0], [15.8010864, -4.3573659, 0.0], [15.8024597, -4.3573659, 0.0], [15.8024597, -4.3587352, 0.0], [15.8024597, -4.3601046, 0.0], [15.803833, -4.3601046, 0.0], [15.803833, -4.3587352, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1113}, "geometry": {"type": "Polygon", "coordinates": [[[15.8395386, -4.3587352, 0.0], [15.8395386, -4.3601046, 0.0], [15.8409119, -4.3601046, 0.0], [15.8409119, -4.3587352, 0.0], [15.8395386, -4.3587352, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1114}, "geometry": {"type": "Polygon", "coordinates": [[[15.8052063, -4.3587352, 0.0], [15.8052063, -4.3601046, 0.0], [15.8065796, -4.3601046, 0.0], [15.8065796, -4.3587352, 0.0], [15.8052063, -4.3587352, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1115}, "geometry": {"type": "Polygon", "coordinates": [[[15.8203125, -4.3587352, 0.0], [15.8203125, -4.3601046, 0.0], [15.8216858, -4.3601046, 0.0], [15.8216858, -4.3587352, 0.0], [15.8203125, -4.3587352, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1116}, "geometry": {"type": "Polygon", "coordinates": [[[15.8285522, -4.3587352, 0.0], [15.8285522, -4.3601046, 0.0], [15.8299255, -4.3601046, 0.0], [15.8299255, -4.3587352, 0.0], [15.8285522, -4.3587352, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1117}, "geometry": {"type": "Polygon", "coordinates": [[[15.7571411, -4.3587352, 0.0], [15.7571411, -4.3601046, 0.0], [15.7585144, -4.3601046, 0.0], [15.7585144, -4.3587352, 0.0], [15.7571411, -4.3587352, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1118}, "geometry": {"type": "Polygon", "coordinates": [[[15.9246826, -4.3587352, 0.0], [15.9246826, -4.3601046, 0.0], [15.9260559, -4.3601046, 0.0], [15.9260559, -4.3587352, 0.0], [15.9246826, -4.3587352, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1119}, "geometry": {"type": "Polygon", "coordinates": [[[15.9686279, -4.3587352, 0.0], [15.9686279, -4.3601046, 0.0], [15.9700012, -4.3601046, 0.0], [15.9700012, -4.3587352, 0.0], [15.9686279, -4.3587352, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1120}, "geometry": {"type": "Polygon", "coordinates": [[[15.9191895, -4.3587352, 0.0], [15.9191895, -4.3601046, 0.0], [15.9205627, -4.3601046, 0.0], [15.9205627, -4.3587352, 0.0], [15.9191895, -4.3587352, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1121}, "geometry": {"type": "Polygon", "coordinates": [[[15.9082031, -4.3587352, 0.0], [15.9082031, -4.3573659, 0.0], [15.9068298, -4.3573659, 0.0], [15.9054565, -4.3573659, 0.0], [15.9040833, -4.3573659, 0.0], [15.9040833, -4.3587352, 0.0], [15.9054565, -4.3587352, 0.0], [15.9068298, -4.3587352, 0.0], [15.9068298, -4.3601046, 0.0], [15.9082031, -4.3601046, 0.0], [15.9082031, -4.3587352, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1122}, "geometry": {"type": "Polygon", "coordinates": [[[15.9095764, -4.3587352, 0.0], [15.9095764, -4.3601046, 0.0], [15.9109497, -4.3601046, 0.0], [15.9109497, -4.3587352, 0.0], [15.9095764, -4.3587352, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1123}, "geometry": {"type": "Polygon", "coordinates": [[[15.9233093, -4.3573659, 0.0], [15.9233093, -4.3587352, 0.0], [15.9246826, -4.3587352, 0.0], [15.9246826, -4.3573659, 0.0], [15.9233093, -4.3573659, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1124}, "geometry": {"type": "Polygon", "coordinates": [[[15.7640076, -4.3573659, 0.0], [15.7640076, -4.3559966, 0.0], [15.7626343, -4.3559966, 0.0], [15.761261, -4.3559966, 0.0], [15.761261, -4.3573659, 0.0], [15.7626343, -4.3573659, 0.0], [15.7626343, -4.3587352, 0.0], [15.7640076, -4.3587352, 0.0], [15.7653809, -4.3587352, 0.0], [15.7653809, -4.3573659, 0.0], [15.7640076, -4.3573659, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1125}, "geometry": {"type": "Polygon", "coordinates": [[[15.7681274, -4.3573659, 0.0], [15.7695007, -4.3573659, 0.0], [15.7695007, -4.3559966, 0.0], [15.7695007, -4.3546273, 0.0], [15.7681274, -4.3546273, 0.0], [15.7681274, -4.3559966, 0.0], [15.7667542, -4.3559966, 0.0], [15.7667542, -4.3573659, 0.0], [15.7667542, -4.3587352, 0.0], [15.7681274, -4.3587352, 0.0], [15.7681274, -4.3573659, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1126}, "geometry": {"type": "Polygon", "coordinates": [[[15.7846069, -4.3573659, 0.0], [15.7846069, -4.3587352, 0.0], [15.7859802, -4.3587352, 0.0], [15.7859802, -4.3573659, 0.0], [15.7846069, -4.3573659, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1127}, "geometry": {"type": "Polygon", "coordinates": [[[15.7873535, -4.3573659, 0.0], [15.7873535, -4.3587352, 0.0], [15.7887268, -4.3587352, 0.0], [15.7887268, -4.3573659, 0.0], [15.7873535, -4.3573659, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1128}, "geometry": {"type": "Polygon", "coordinates": [[[15.9700012, -4.3559966, 0.0], [15.9700012, -4.3573659, 0.0], [15.9713745, -4.3573659, 0.0], [15.9713745, -4.3559966, 0.0], [15.9700012, -4.3559966, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1129}, "geometry": {"type": "Polygon", "coordinates": [[[15.7145691, -4.3559966, 0.0], [15.7145691, -4.3573659, 0.0], [15.7159424, -4.3573659, 0.0], [15.7159424, -4.3559966, 0.0], [15.7145691, -4.3559966, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1130}, "geometry": {"type": "Polygon", "coordinates": [[[15.7447815, -4.3573659, 0.0], [15.7461548, -4.3573659, 0.0], [15.7461548, -4.3559966, 0.0], [15.7461548, -4.3546273, 0.0], [15.7461548, -4.353258, 0.0], [15.7447815, -4.353258, 0.0], [15.7447815, -4.3518886, 0.0], [15.7434082, -4.3518886, 0.0], [15.7434082, -4.353258, 0.0], [15.7434082, -4.3546273, 0.0], [15.7434082, -4.3559966, 0.0], [15.7434082, -4.3573659, 0.0], [15.7447815, -4.3573659, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1131}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.3573659, 0.0], [15.7557678, -4.3587352, 0.0], [15.7571411, -4.3587352, 0.0], [15.7571411, -4.3573659, 0.0], [15.7557678, -4.3573659, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1132}, "geometry": {"type": "Polygon", "coordinates": [[[15.8065796, -4.3573659, 0.0], [15.8065796, -4.3587352, 0.0], [15.8079529, -4.3587352, 0.0], [15.8079529, -4.3573659, 0.0], [15.8065796, -4.3573659, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1133}, "geometry": {"type": "Polygon", "coordinates": [[[15.8093262, -4.3573659, 0.0], [15.8093262, -4.3587352, 0.0], [15.8106995, -4.3587352, 0.0], [15.8106995, -4.3573659, 0.0], [15.8093262, -4.3573659, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1134}, "geometry": {"type": "Polygon", "coordinates": [[[15.9040833, -4.3559966, 0.0], [15.9040833, -4.3546273, 0.0], [15.90271, -4.3546273, 0.0], [15.90271, -4.3559966, 0.0], [15.90271, -4.3573659, 0.0], [15.9040833, -4.3573659, 0.0], [15.9040833, -4.3559966, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1135}, "geometry": {"type": "Polygon", "coordinates": [[[15.8395386, -4.3559966, 0.0], [15.8395386, -4.3573659, 0.0], [15.8409119, -4.3573659, 0.0], [15.8409119, -4.3559966, 0.0], [15.8395386, -4.3559966, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1136}, "geometry": {"type": "Polygon", "coordinates": [[[15.79422, -4.3559966, 0.0], [15.7928467, -4.3559966, 0.0], [15.7914734, -4.3559966, 0.0], [15.7914734, -4.3573659, 0.0], [15.7928467, -4.3573659, 0.0], [15.79422, -4.3573659, 0.0], [15.7955933, -4.3573659, 0.0], [15.7955933, -4.3559966, 0.0], [15.79422, -4.3559966, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1137}, "geometry": {"type": "Polygon", "coordinates": [[[15.9150696, -4.3546273, 0.0], [15.9150696, -4.3559966, 0.0], [15.9164429, -4.3559966, 0.0], [15.9164429, -4.3546273, 0.0], [15.9150696, -4.3546273, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1138}, "geometry": {"type": "Polygon", "coordinates": [[[15.7791138, -4.3546273, 0.0], [15.7777405, -4.3546273, 0.0], [15.7777405, -4.3559966, 0.0], [15.7791138, -4.3559966, 0.0], [15.7804871, -4.3559966, 0.0], [15.7804871, -4.3546273, 0.0], [15.7791138, -4.3546273, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1139}, "geometry": {"type": "Polygon", "coordinates": [[[15.8285522, -4.3546273, 0.0], [15.8285522, -4.353258, 0.0], [15.827179, -4.353258, 0.0], [15.827179, -4.3546273, 0.0], [15.827179, -4.3559966, 0.0], [15.8285522, -4.3559966, 0.0], [15.8285522, -4.3546273, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1140}, "geometry": {"type": "Polygon", "coordinates": [[[15.7200623, -4.3546273, 0.0], [15.7200623, -4.353258, 0.0], [15.718689, -4.353258, 0.0], [15.718689, -4.3546273, 0.0], [15.718689, -4.3559966, 0.0], [15.7200623, -4.3559966, 0.0], [15.7200623, -4.3546273, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1141}, "geometry": {"type": "Polygon", "coordinates": [[[15.7749939, -4.3546273, 0.0], [15.7749939, -4.3559966, 0.0], [15.7763672, -4.3559966, 0.0], [15.7763672, -4.3546273, 0.0], [15.7749939, -4.3546273, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1142}, "geometry": {"type": "Polygon", "coordinates": [[[15.7859802, -4.3546273, 0.0], [15.7859802, -4.353258, 0.0], [15.7859802, -4.3518886, 0.0], [15.7846069, -4.3518886, 0.0], [15.7832336, -4.3518886, 0.0], [15.7832336, -4.353258, 0.0], [15.7846069, -4.353258, 0.0], [15.7846069, -4.3546273, 0.0], [15.7846069, -4.3559966, 0.0], [15.7859802, -4.3559966, 0.0], [15.7859802, -4.3546273, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1143}, "geometry": {"type": "Polygon", "coordinates": [[[15.9288025, -4.353258, 0.0], [15.9288025, -4.3546273, 0.0], [15.9301758, -4.3546273, 0.0], [15.9301758, -4.353258, 0.0], [15.9288025, -4.353258, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1144}, "geometry": {"type": "Polygon", "coordinates": [[[15.8752441, -4.353258, 0.0], [15.8752441, -4.3546273, 0.0], [15.8766174, -4.3546273, 0.0], [15.8766174, -4.353258, 0.0], [15.8752441, -4.353258, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1145}, "geometry": {"type": "Polygon", "coordinates": [[[15.761261, -4.353258, 0.0], [15.761261, -4.3518886, 0.0], [15.7626343, -4.3518886, 0.0], [15.7626343, -4.3505193, 0.0], [15.7626343, -4.34915, 0.0], [15.761261, -4.34915, 0.0], [15.761261, -4.3505193, 0.0], [15.7598877, -4.3505193, 0.0], [15.7598877, -4.34915, 0.0], [15.7598877, -4.3477806, 0.0], [15.7585144, -4.3477806, 0.0], [15.7585144, -4.3464113, 0.0], [15.7598877, -4.3464113, 0.0], [15.7598877, -4.3450419, 0.0], [15.7585144, -4.3450419, 0.0], [15.7585144, -4.3436726, 0.0], [15.7571411, -4.3436726, 0.0], [15.7571411, -4.3423032, 0.0], [15.7571411, -4.3409339, 0.0], [15.7571411, -4.3395645, 0.0], [15.7571411, -4.3381952, 0.0], [15.7557678, -4.3381952, 0.0], [15.7557678, -4.3368258, 0.0], [15.7557678, -4.3354565, 0.0], [15.7557678, -4.3340871, 0.0], [15.7543945, -4.3340871, 0.0], [15.7530212, -4.3340871, 0.0], [15.7530212, -4.3354565, 0.0], [15.7530212, -4.3368258, 0.0], [15.7543945, -4.3368258, 0.0], [15.7543945, -4.3381952, 0.0], [15.7543945, -4.3395645, 0.0], [15.7543945, -4.3409339, 0.0], [15.7530212, -4.3409339, 0.0], [15.7530212, -4.3395645, 0.0], [15.7516479, -4.3395645, 0.0], [15.7516479, -4.3409339, 0.0], [15.7516479, -4.3423032, 0.0], [15.7516479, -4.3436726, 0.0], [15.7530212, -4.3436726, 0.0], [15.7530212, -4.3450419, 0.0], [15.7516479, -4.3450419, 0.0], [15.7516479, -4.3464113, 0.0], [15.7530212, -4.3464113, 0.0], [15.7543945, -4.3464113, 0.0], [15.7557678, -4.3464113, 0.0], [15.7571411, -4.3464113, 0.0], [15.7571411, -4.3477806, 0.0], [15.7571411, -4.34915, 0.0], [15.7585144, -4.34915, 0.0], [15.7585144, -4.3505193, 0.0], [15.7571411, -4.3505193, 0.0], [15.7571411, -4.3518886, 0.0], [15.7571411, -4.353258, 0.0], [15.7585144, -4.353258, 0.0], [15.7585144, -4.3546273, 0.0], [15.7598877, -4.3546273, 0.0], [15.761261, -4.3546273, 0.0], [15.761261, -4.353258, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1146}, "geometry": {"type": "Polygon", "coordinates": [[[15.8518982, -4.353258, 0.0], [15.8518982, -4.3546273, 0.0], [15.8532715, -4.3546273, 0.0], [15.8532715, -4.353258, 0.0], [15.8518982, -4.353258, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1147}, "geometry": {"type": "Polygon", "coordinates": [[[15.9562683, -4.3518886, 0.0], [15.9562683, -4.353258, 0.0], [15.9576416, -4.353258, 0.0], [15.9576416, -4.3518886, 0.0], [15.9562683, -4.3518886, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1148}, "geometry": {"type": "Polygon", "coordinates": [[[15.8848572, -4.3518886, 0.0], [15.8848572, -4.353258, 0.0], [15.8862305, -4.353258, 0.0], [15.8862305, -4.3518886, 0.0], [15.8848572, -4.3518886, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1149}, "geometry": {"type": "Polygon", "coordinates": [[[15.8724976, -4.3518886, 0.0], [15.8724976, -4.353258, 0.0], [15.8738708, -4.353258, 0.0], [15.8738708, -4.3518886, 0.0], [15.8724976, -4.3518886, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1150}, "geometry": {"type": "Polygon", "coordinates": [[[15.8148193, -4.353258, 0.0], [15.8148193, -4.3546273, 0.0], [15.8161926, -4.3546273, 0.0], [15.8161926, -4.353258, 0.0], [15.8148193, -4.353258, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1151}, "geometry": {"type": "Polygon", "coordinates": [[[15.79422, -4.353258, 0.0], [15.7955933, -4.353258, 0.0], [15.7955933, -4.3518886, 0.0], [15.79422, -4.3518886, 0.0], [15.79422, -4.3505193, 0.0], [15.7928467, -4.3505193, 0.0], [15.7928467, -4.3518886, 0.0], [15.7928467, -4.353258, 0.0], [15.7928467, -4.3546273, 0.0], [15.79422, -4.3546273, 0.0], [15.79422, -4.353258, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1152}, "geometry": {"type": "Polygon", "coordinates": [[[15.8024597, -4.353258, 0.0], [15.8024597, -4.3546273, 0.0], [15.803833, -4.3546273, 0.0], [15.803833, -4.353258, 0.0], [15.8024597, -4.353258, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1153}, "geometry": {"type": "Polygon", "coordinates": [[[15.8972168, -4.3518886, 0.0], [15.8958435, -4.3518886, 0.0], [15.8958435, -4.353258, 0.0], [15.8972168, -4.353258, 0.0], [15.8985901, -4.353258, 0.0], [15.8985901, -4.3518886, 0.0], [15.8972168, -4.3518886, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1154}, "geometry": {"type": "Polygon", "coordinates": [[[15.9068298, -4.3518886, 0.0], [15.9068298, -4.353258, 0.0], [15.9082031, -4.353258, 0.0], [15.9095764, -4.353258, 0.0], [15.9095764, -4.3518886, 0.0], [15.9082031, -4.3518886, 0.0], [15.9068298, -4.3518886, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1155}, "geometry": {"type": "Polygon", "coordinates": [[[15.8326721, -4.3518886, 0.0], [15.8312988, -4.3518886, 0.0], [15.8312988, -4.353258, 0.0], [15.8326721, -4.353258, 0.0], [15.8340454, -4.353258, 0.0], [15.8340454, -4.3518886, 0.0], [15.8326721, -4.3518886, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1156}, "geometry": {"type": "Polygon", "coordinates": [[[15.9233093, -4.3518886, 0.0], [15.9233093, -4.353258, 0.0], [15.9246826, -4.353258, 0.0], [15.9246826, -4.3518886, 0.0], [15.9233093, -4.3518886, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1157}, "geometry": {"type": "Polygon", "coordinates": [[[15.8491516, -4.3518886, 0.0], [15.8491516, -4.353258, 0.0], [15.8505249, -4.353258, 0.0], [15.8505249, -4.3518886, 0.0], [15.8491516, -4.3518886, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1158}, "geometry": {"type": "Polygon", "coordinates": [[[15.7200623, -4.3518886, 0.0], [15.7200623, -4.353258, 0.0], [15.7214355, -4.353258, 0.0], [15.7214355, -4.3518886, 0.0], [15.7200623, -4.3518886, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1159}, "geometry": {"type": "Polygon", "coordinates": [[[15.7901001, -4.3518886, 0.0], [15.7901001, -4.353258, 0.0], [15.7914734, -4.353258, 0.0], [15.7914734, -4.3518886, 0.0], [15.7901001, -4.3518886, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1160}, "geometry": {"type": "Polygon", "coordinates": [[[15.7763672, -4.3518886, 0.0], [15.7763672, -4.353258, 0.0], [15.7777405, -4.353258, 0.0], [15.7777405, -4.3518886, 0.0], [15.7763672, -4.3518886, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1161}, "geometry": {"type": "Polygon", "coordinates": [[[15.7681274, -4.3518886, 0.0], [15.7681274, -4.3505193, 0.0], [15.7667542, -4.3505193, 0.0], [15.7667542, -4.3518886, 0.0], [15.7667542, -4.353258, 0.0], [15.7681274, -4.353258, 0.0], [15.7681274, -4.3518886, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1162}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -4.3518886, 0.0], [15.7530212, -4.3505193, 0.0], [15.7516479, -4.3505193, 0.0], [15.7516479, -4.34915, 0.0], [15.7502747, -4.34915, 0.0], [15.7502747, -4.3505193, 0.0], [15.7502747, -4.3518886, 0.0], [15.7502747, -4.353258, 0.0], [15.7516479, -4.353258, 0.0], [15.7530212, -4.353258, 0.0], [15.7530212, -4.3518886, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1163}, "geometry": {"type": "Polygon", "coordinates": [[[15.8615112, -4.3518886, 0.0], [15.8615112, -4.353258, 0.0], [15.8628845, -4.353258, 0.0], [15.8628845, -4.3518886, 0.0], [15.8615112, -4.3518886, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1164}, "geometry": {"type": "Polygon", "coordinates": [[[15.8477783, -4.3518886, 0.0], [15.8477783, -4.3505193, 0.0], [15.846405, -4.3505193, 0.0], [15.846405, -4.34915, 0.0], [15.846405, -4.3477806, 0.0], [15.8450317, -4.3477806, 0.0], [15.8436584, -4.3477806, 0.0], [15.8436584, -4.34915, 0.0], [15.8450317, -4.34915, 0.0], [15.8450317, -4.3505193, 0.0], [15.8450317, -4.3518886, 0.0], [15.846405, -4.3518886, 0.0], [15.846405, -4.353258, 0.0], [15.8477783, -4.353258, 0.0], [15.8477783, -4.3518886, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1165}, "geometry": {"type": "Polygon", "coordinates": [[[15.8161926, -4.3505193, 0.0], [15.8161926, -4.34915, 0.0], [15.8175659, -4.34915, 0.0], [15.8189392, -4.34915, 0.0], [15.8203125, -4.34915, 0.0], [15.8216858, -4.34915, 0.0], [15.8216858, -4.3477806, 0.0], [15.8203125, -4.3477806, 0.0], [15.8189392, -4.3477806, 0.0], [15.8175659, -4.3477806, 0.0], [15.8161926, -4.3477806, 0.0], [15.8148193, -4.3477806, 0.0], [15.8148193, -4.34915, 0.0], [15.8148193, -4.3505193, 0.0], [15.8148193, -4.3518886, 0.0], [15.8161926, -4.3518886, 0.0], [15.8175659, -4.3518886, 0.0], [15.8175659, -4.3505193, 0.0], [15.8161926, -4.3505193, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1166}, "geometry": {"type": "Polygon", "coordinates": [[[15.869751, -4.3505193, 0.0], [15.869751, -4.3518886, 0.0], [15.8711243, -4.3518886, 0.0], [15.8711243, -4.3505193, 0.0], [15.869751, -4.3505193, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1167}, "geometry": {"type": "Polygon", "coordinates": [[[15.8930969, -4.3505193, 0.0], [15.8930969, -4.3518886, 0.0], [15.8944702, -4.3518886, 0.0], [15.8944702, -4.3505193, 0.0], [15.8930969, -4.3505193, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1168}, "geometry": {"type": "Polygon", "coordinates": [[[15.7461548, -4.3505193, 0.0], [15.7461548, -4.3518886, 0.0], [15.7475281, -4.3518886, 0.0], [15.7475281, -4.3505193, 0.0], [15.7461548, -4.3505193, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1169}, "geometry": {"type": "Polygon", "coordinates": [[[15.8532715, -4.3505193, 0.0], [15.8532715, -4.3518886, 0.0], [15.8546448, -4.3518886, 0.0], [15.8546448, -4.3505193, 0.0], [15.8532715, -4.3505193, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1170}, "geometry": {"type": "Polygon", "coordinates": [[[15.7695007, -4.3505193, 0.0], [15.7695007, -4.3518886, 0.0], [15.770874, -4.3518886, 0.0], [15.7722473, -4.3518886, 0.0], [15.7722473, -4.3505193, 0.0], [15.770874, -4.3505193, 0.0], [15.7695007, -4.3505193, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1171}, "geometry": {"type": "Polygon", "coordinates": [[[15.7351685, -4.34915, 0.0], [15.7337952, -4.34915, 0.0], [15.7337952, -4.3505193, 0.0], [15.7351685, -4.3505193, 0.0], [15.7365417, -4.3505193, 0.0], [15.7365417, -4.34915, 0.0], [15.7351685, -4.34915, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1172}, "geometry": {"type": "Polygon", "coordinates": [[[15.8285522, -4.34915, 0.0], [15.8285522, -4.3505193, 0.0], [15.8299255, -4.3505193, 0.0], [15.8299255, -4.34915, 0.0], [15.8285522, -4.34915, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1173}, "geometry": {"type": "Polygon", "coordinates": [[[15.827179, -4.34915, 0.0], [15.8285522, -4.34915, 0.0], [15.8285522, -4.3477806, 0.0], [15.8285522, -4.3464113, 0.0], [15.827179, -4.3464113, 0.0], [15.8258057, -4.3464113, 0.0], [15.8258057, -4.3450419, 0.0], [15.8244324, -4.3450419, 0.0], [15.8244324, -4.3464113, 0.0], [15.8230591, -4.3464113, 0.0], [15.8230591, -4.3477806, 0.0], [15.8230591, -4.34915, 0.0], [15.8216858, -4.34915, 0.0], [15.8216858, -4.3505193, 0.0], [15.8230591, -4.3505193, 0.0], [15.8244324, -4.3505193, 0.0], [15.8258057, -4.3505193, 0.0], [15.827179, -4.3505193, 0.0], [15.827179, -4.34915, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1174}, "geometry": {"type": "Polygon", "coordinates": [[[15.9068298, -4.34915, 0.0], [15.9068298, -4.3477806, 0.0], [15.9068298, -4.3464113, 0.0], [15.9082031, -4.3464113, 0.0], [15.9095764, -4.3464113, 0.0], [15.9095764, -4.3450419, 0.0], [15.9082031, -4.3450419, 0.0], [15.9082031, -4.3436726, 0.0], [15.9082031, -4.3423032, 0.0], [15.9082031, -4.3409339, 0.0], [15.9082031, -4.3395645, 0.0], [15.9095764, -4.3395645, 0.0], [15.9109497, -4.3395645, 0.0], [15.912323, -4.3395645, 0.0], [15.912323, -4.3381952, 0.0], [15.9136963, -4.3381952, 0.0], [15.9136963, -4.3368258, 0.0], [15.9136963, -4.3354565, 0.0], [15.9150696, -4.3354565, 0.0], [15.9150696, -4.3340871, 0.0], [15.9150696, -4.3327177, 0.0], [15.9136963, -4.3327177, 0.0], [15.9136963, -4.3340871, 0.0], [15.912323, -4.3340871, 0.0], [15.912323, -4.3354565, 0.0], [15.9109497, -4.3354565, 0.0], [15.9109497, -4.3368258, 0.0], [15.9095764, -4.3368258, 0.0], [15.9082031, -4.3368258, 0.0], [15.9082031, -4.3381952, 0.0], [15.9068298, -4.3381952, 0.0], [15.9054565, -4.3381952, 0.0], [15.9054565, -4.3395645, 0.0], [15.9054565, -4.3409339, 0.0], [15.9054565, -4.3423032, 0.0], [15.9054565, -4.3436726, 0.0], [15.9040833, -4.3436726, 0.0], [15.9040833, -4.3450419, 0.0], [15.9040833, -4.3464113, 0.0], [15.9054565, -4.3464113, 0.0], [15.9054565, -4.3477806, 0.0], [15.9040833, -4.3477806, 0.0], [15.9040833, -4.34915, 0.0], [15.9040833, -4.3505193, 0.0], [15.9054565, -4.3505193, 0.0], [15.9068298, -4.3505193, 0.0], [15.9068298, -4.34915, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1175}, "geometry": {"type": "Polygon", "coordinates": [[[15.7434082, -4.34915, 0.0], [15.7434082, -4.3505193, 0.0], [15.7447815, -4.3505193, 0.0], [15.7447815, -4.34915, 0.0], [15.7434082, -4.34915, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1176}, "geometry": {"type": "Polygon", "coordinates": [[[15.737915, -4.34915, 0.0], [15.737915, -4.3505193, 0.0], [15.7392883, -4.3505193, 0.0], [15.7392883, -4.34915, 0.0], [15.737915, -4.34915, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1177}, "geometry": {"type": "Polygon", "coordinates": [[[15.7145691, -4.34915, 0.0], [15.7145691, -4.3505193, 0.0], [15.7159424, -4.3505193, 0.0], [15.7159424, -4.34915, 0.0], [15.7145691, -4.34915, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1178}, "geometry": {"type": "Polygon", "coordinates": [[[15.8422852, -4.34915, 0.0], [15.8422852, -4.3505193, 0.0], [15.8436584, -4.3505193, 0.0], [15.8436584, -4.34915, 0.0], [15.8422852, -4.34915, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1179}, "geometry": {"type": "Polygon", "coordinates": [[[15.79422, -4.34915, 0.0], [15.79422, -4.3505193, 0.0], [15.7955933, -4.3505193, 0.0], [15.7969666, -4.3505193, 0.0], [15.7969666, -4.34915, 0.0], [15.7955933, -4.34915, 0.0], [15.79422, -4.34915, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1180}, "geometry": {"type": "Polygon", "coordinates": [[[15.7818604, -4.34915, 0.0], [15.7818604, -4.3505193, 0.0], [15.7832336, -4.3505193, 0.0], [15.7832336, -4.34915, 0.0], [15.7818604, -4.34915, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1181}, "geometry": {"type": "Polygon", "coordinates": [[[15.8985901, -4.34915, 0.0], [15.8972168, -4.34915, 0.0], [15.8972168, -4.3505193, 0.0], [15.8985901, -4.3505193, 0.0], [15.8999634, -4.3505193, 0.0], [15.8999634, -4.34915, 0.0], [15.8985901, -4.34915, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1182}, "geometry": {"type": "Polygon", "coordinates": [[[15.7722473, -4.34915, 0.0], [15.7722473, -4.3505193, 0.0], [15.7736206, -4.3505193, 0.0], [15.7736206, -4.34915, 0.0], [15.7722473, -4.34915, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1183}, "geometry": {"type": "Polygon", "coordinates": [[[15.7695007, -4.34915, 0.0], [15.7695007, -4.3477806, 0.0], [15.7681274, -4.3477806, 0.0], [15.7681274, -4.34915, 0.0], [15.7681274, -4.3505193, 0.0], [15.7695007, -4.3505193, 0.0], [15.7695007, -4.34915, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1184}, "geometry": {"type": "Polygon", "coordinates": [[[15.8972168, -4.3477806, 0.0], [15.8972168, -4.3464113, 0.0], [15.8958435, -4.3464113, 0.0], [15.8958435, -4.3477806, 0.0], [15.8944702, -4.3477806, 0.0], [15.8944702, -4.34915, 0.0], [15.8958435, -4.34915, 0.0], [15.8972168, -4.34915, 0.0], [15.8972168, -4.3477806, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1185}, "geometry": {"type": "Polygon", "coordinates": [[[15.7928467, -4.3477806, 0.0], [15.7928467, -4.34915, 0.0], [15.79422, -4.34915, 0.0], [15.79422, -4.3477806, 0.0], [15.7928467, -4.3477806, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1186}, "geometry": {"type": "Polygon", "coordinates": [[[15.8711243, -4.3477806, 0.0], [15.8711243, -4.34915, 0.0], [15.8724976, -4.34915, 0.0], [15.8724976, -4.3477806, 0.0], [15.8711243, -4.3477806, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1187}, "geometry": {"type": "Polygon", "coordinates": [[[15.9754944, -4.3477806, 0.0], [15.9741211, -4.3477806, 0.0], [15.9741211, -4.34915, 0.0], [15.9754944, -4.34915, 0.0], [15.9768677, -4.34915, 0.0], [15.9768677, -4.3477806, 0.0], [15.9754944, -4.3477806, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1188}, "geometry": {"type": "Polygon", "coordinates": [[[15.8656311, -4.3477806, 0.0], [15.8656311, -4.3464113, 0.0], [15.8642578, -4.3464113, 0.0], [15.8642578, -4.3477806, 0.0], [15.8642578, -4.34915, 0.0], [15.8656311, -4.34915, 0.0], [15.8656311, -4.3477806, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1189}, "geometry": {"type": "Polygon", "coordinates": [[[15.7090759, -4.3477806, 0.0], [15.7090759, -4.34915, 0.0], [15.7104492, -4.34915, 0.0], [15.7104492, -4.3477806, 0.0], [15.7090759, -4.3477806, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1190}, "geometry": {"type": "Polygon", "coordinates": [[[15.7118225, -4.3477806, 0.0], [15.7118225, -4.34915, 0.0], [15.7131958, -4.34915, 0.0], [15.7131958, -4.3477806, 0.0], [15.7118225, -4.3477806, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1191}, "geometry": {"type": "Polygon", "coordinates": [[[15.7626343, -4.3464113, 0.0], [15.7640076, -4.3464113, 0.0], [15.7640076, -4.3450419, 0.0], [15.7626343, -4.3450419, 0.0], [15.7626343, -4.3436726, 0.0], [15.761261, -4.3436726, 0.0], [15.761261, -4.3450419, 0.0], [15.761261, -4.3464113, 0.0], [15.761261, -4.3477806, 0.0], [15.7626343, -4.3477806, 0.0], [15.7626343, -4.3464113, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1192}, "geometry": {"type": "Polygon", "coordinates": [[[15.7846069, -4.3464113, 0.0], [15.7846069, -4.3450419, 0.0], [15.7846069, -4.3436726, 0.0], [15.7832336, -4.3436726, 0.0], [15.7832336, -4.3423032, 0.0], [15.7832336, -4.3409339, 0.0], [15.7818604, -4.3409339, 0.0], [15.7804871, -4.3409339, 0.0], [15.7791138, -4.3409339, 0.0], [15.7791138, -4.3423032, 0.0], [15.7804871, -4.3423032, 0.0], [15.7818604, -4.3423032, 0.0], [15.7818604, -4.3436726, 0.0], [15.7804871, -4.3436726, 0.0], [15.7804871, -4.3450419, 0.0], [15.7818604, -4.3450419, 0.0], [15.7818604, -4.3464113, 0.0], [15.7818604, -4.3477806, 0.0], [15.7832336, -4.3477806, 0.0], [15.7846069, -4.3477806, 0.0], [15.7846069, -4.3464113, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1193}, "geometry": {"type": "Polygon", "coordinates": [[[15.8821106, -4.3464113, 0.0], [15.8821106, -4.3477806, 0.0], [15.8834839, -4.3477806, 0.0], [15.8834839, -4.3464113, 0.0], [15.8821106, -4.3464113, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1194}, "geometry": {"type": "Polygon", "coordinates": [[[15.8024597, -4.3464113, 0.0], [15.8024597, -4.3477806, 0.0], [15.803833, -4.3477806, 0.0], [15.803833, -4.3464113, 0.0], [15.8024597, -4.3464113, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1195}, "geometry": {"type": "Polygon", "coordinates": [[[15.836792, -4.3464113, 0.0], [15.836792, -4.3477806, 0.0], [15.8381653, -4.3477806, 0.0], [15.8395386, -4.3477806, 0.0], [15.8395386, -4.3464113, 0.0], [15.8381653, -4.3464113, 0.0], [15.836792, -4.3464113, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1196}, "geometry": {"type": "Polygon", "coordinates": [[[15.7447815, -4.3464113, 0.0], [15.7447815, -4.3477806, 0.0], [15.7461548, -4.3477806, 0.0], [15.7461548, -4.3464113, 0.0], [15.7447815, -4.3464113, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1197}, "geometry": {"type": "Polygon", "coordinates": [[[15.7502747, -4.3464113, 0.0], [15.7502747, -4.3477806, 0.0], [15.7516479, -4.3477806, 0.0], [15.7516479, -4.3464113, 0.0], [15.7502747, -4.3464113, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1198}, "geometry": {"type": "Polygon", "coordinates": [[[15.9823608, -4.3450419, 0.0], [15.9823608, -4.3464113, 0.0], [15.9837341, -4.3464113, 0.0], [15.9837341, -4.3450419, 0.0], [15.9823608, -4.3450419, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1199}, "geometry": {"type": "Polygon", "coordinates": [[[15.9658813, -4.3450419, 0.0], [15.9658813, -4.3464113, 0.0], [15.9672546, -4.3464113, 0.0], [15.9672546, -4.3450419, 0.0], [15.9658813, -4.3450419, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1200}, "geometry": {"type": "Polygon", "coordinates": [[[15.9590149, -4.3450419, 0.0], [15.9590149, -4.3464113, 0.0], [15.9603882, -4.3464113, 0.0], [15.9603882, -4.3450419, 0.0], [15.9590149, -4.3450419, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1201}, "geometry": {"type": "Polygon", "coordinates": [[[15.7763672, -4.3450419, 0.0], [15.7763672, -4.3436726, 0.0], [15.7749939, -4.3436726, 0.0], [15.7749939, -4.3450419, 0.0], [15.7749939, -4.3464113, 0.0], [15.7763672, -4.3464113, 0.0], [15.7763672, -4.3450419, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1202}, "geometry": {"type": "Polygon", "coordinates": [[[15.7104492, -4.3450419, 0.0], [15.7104492, -4.3436726, 0.0], [15.7090759, -4.3436726, 0.0], [15.7090759, -4.3450419, 0.0], [15.7090759, -4.3464113, 0.0], [15.7104492, -4.3464113, 0.0], [15.7104492, -4.3450419, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1203}, "geometry": {"type": "Polygon", "coordinates": [[[15.813446, -4.3450419, 0.0], [15.813446, -4.3436726, 0.0], [15.8120728, -4.3436726, 0.0], [15.8106995, -4.3436726, 0.0], [15.8106995, -4.3450419, 0.0], [15.8120728, -4.3450419, 0.0], [15.8120728, -4.3464113, 0.0], [15.813446, -4.3464113, 0.0], [15.813446, -4.3450419, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1204}, "geometry": {"type": "Polygon", "coordinates": [[[15.803833, -4.3450419, 0.0], [15.803833, -4.3464113, 0.0], [15.8052063, -4.3464113, 0.0], [15.8052063, -4.3450419, 0.0], [15.803833, -4.3450419, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1205}, "geometry": {"type": "Polygon", "coordinates": [[[15.9466553, -4.3436726, 0.0], [15.9466553, -4.3450419, 0.0], [15.9480286, -4.3450419, 0.0], [15.9480286, -4.3436726, 0.0], [15.9466553, -4.3436726, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1206}, "geometry": {"type": "Polygon", "coordinates": [[[15.954895, -4.3436726, 0.0], [15.954895, -4.3450419, 0.0], [15.9562683, -4.3450419, 0.0], [15.9562683, -4.3436726, 0.0], [15.954895, -4.3436726, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1207}, "geometry": {"type": "Polygon", "coordinates": [[[15.8999634, -4.3450419, 0.0], [15.8999634, -4.3464113, 0.0], [15.9013367, -4.3464113, 0.0], [15.9013367, -4.3450419, 0.0], [15.8999634, -4.3450419, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1208}, "geometry": {"type": "Polygon", "coordinates": [[[15.827179, -4.3436726, 0.0], [15.827179, -4.3423032, 0.0], [15.8258057, -4.3423032, 0.0], [15.8258057, -4.3436726, 0.0], [15.8258057, -4.3450419, 0.0], [15.827179, -4.3450419, 0.0], [15.827179, -4.3436726, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1209}, "geometry": {"type": "Polygon", "coordinates": [[[15.803833, -4.3436726, 0.0], [15.803833, -4.3423032, 0.0], [15.8024597, -4.3423032, 0.0], [15.8024597, -4.3436726, 0.0], [15.8010864, -4.3436726, 0.0], [15.8010864, -4.3450419, 0.0], [15.8024597, -4.3450419, 0.0], [15.803833, -4.3450419, 0.0], [15.803833, -4.3436726, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1210}, "geometry": {"type": "Polygon", "coordinates": [[[15.8230591, -4.3436726, 0.0], [15.8216858, -4.3436726, 0.0], [15.8216858, -4.3450419, 0.0], [15.8230591, -4.3450419, 0.0], [15.8244324, -4.3450419, 0.0], [15.8244324, -4.3436726, 0.0], [15.8230591, -4.3436726, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1211}, "geometry": {"type": "Polygon", "coordinates": [[[15.7681274, -4.3436726, 0.0], [15.7681274, -4.3450419, 0.0], [15.7695007, -4.3450419, 0.0], [15.770874, -4.3450419, 0.0], [15.770874, -4.3436726, 0.0], [15.7695007, -4.3436726, 0.0], [15.7681274, -4.3436726, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1212}, "geometry": {"type": "Polygon", "coordinates": [[[15.8093262, -4.3423032, 0.0], [15.8093262, -4.3436726, 0.0], [15.8106995, -4.3436726, 0.0], [15.8106995, -4.3423032, 0.0], [15.8093262, -4.3423032, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1213}, "geometry": {"type": "Polygon", "coordinates": [[[15.8175659, -4.3423032, 0.0], [15.8175659, -4.3436726, 0.0], [15.8189392, -4.3436726, 0.0], [15.8189392, -4.3423032, 0.0], [15.8175659, -4.3423032, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1214}, "geometry": {"type": "Polygon", "coordinates": [[[15.9260559, -4.3423032, 0.0], [15.9260559, -4.3409339, 0.0], [15.9246826, -4.3409339, 0.0], [15.9233093, -4.3409339, 0.0], [15.9233093, -4.3423032, 0.0], [15.9233093, -4.3436726, 0.0], [15.9246826, -4.3436726, 0.0], [15.9260559, -4.3436726, 0.0], [15.9260559, -4.3423032, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1215}, "geometry": {"type": "Polygon", "coordinates": [[[15.7681274, -4.3409339, 0.0], [15.7667542, -4.3409339, 0.0], [15.7667542, -4.3423032, 0.0], [15.7681274, -4.3423032, 0.0], [15.7695007, -4.3423032, 0.0], [15.7695007, -4.3409339, 0.0], [15.7681274, -4.3409339, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1216}, "geometry": {"type": "Polygon", "coordinates": [[[15.761261, -4.3409339, 0.0], [15.761261, -4.3423032, 0.0], [15.7626343, -4.3423032, 0.0], [15.7626343, -4.3409339, 0.0], [15.761261, -4.3409339, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1217}, "geometry": {"type": "Polygon", "coordinates": [[[15.7969666, -4.3409339, 0.0], [15.7969666, -4.3395645, 0.0], [15.7955933, -4.3395645, 0.0], [15.7955933, -4.3409339, 0.0], [15.7955933, -4.3423032, 0.0], [15.7969666, -4.3423032, 0.0], [15.7983398, -4.3423032, 0.0], [15.7983398, -4.3409339, 0.0], [15.7969666, -4.3409339, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1218}, "geometry": {"type": "Polygon", "coordinates": [[[15.8024597, -4.3409339, 0.0], [15.8024597, -4.3395645, 0.0], [15.8010864, -4.3395645, 0.0], [15.8010864, -4.3409339, 0.0], [15.8010864, -4.3423032, 0.0], [15.8024597, -4.3423032, 0.0], [15.8024597, -4.3409339, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1219}, "geometry": {"type": "Polygon", "coordinates": [[[15.8079529, -4.3409339, 0.0], [15.8079529, -4.3423032, 0.0], [15.8093262, -4.3423032, 0.0], [15.8093262, -4.3409339, 0.0], [15.8079529, -4.3409339, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1220}, "geometry": {"type": "Polygon", "coordinates": [[[15.7901001, -4.3409339, 0.0], [15.7901001, -4.3423032, 0.0], [15.7914734, -4.3423032, 0.0], [15.7914734, -4.3409339, 0.0], [15.7901001, -4.3409339, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1221}, "geometry": {"type": "Polygon", "coordinates": [[[15.8052063, -4.3395645, 0.0], [15.8052063, -4.3409339, 0.0], [15.8065796, -4.3409339, 0.0], [15.8079529, -4.3409339, 0.0], [15.8079529, -4.3395645, 0.0], [15.8065796, -4.3395645, 0.0], [15.8052063, -4.3395645, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1222}, "geometry": {"type": "Polygon", "coordinates": [[[15.7461548, -4.3395645, 0.0], [15.7461548, -4.3381952, 0.0], [15.7461548, -4.3368258, 0.0], [15.7447815, -4.3368258, 0.0], [15.7434082, -4.3368258, 0.0], [15.7434082, -4.3381952, 0.0], [15.7434082, -4.3395645, 0.0], [15.7447815, -4.3395645, 0.0], [15.7447815, -4.3409339, 0.0], [15.7461548, -4.3409339, 0.0], [15.7461548, -4.3395645, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1223}, "geometry": {"type": "Polygon", "coordinates": [[[15.8546448, -4.3395645, 0.0], [15.8546448, -4.3409339, 0.0], [15.8560181, -4.3409339, 0.0], [15.8560181, -4.3395645, 0.0], [15.8546448, -4.3395645, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1224}, "geometry": {"type": "Polygon", "coordinates": [[[15.8477783, -4.3395645, 0.0], [15.8477783, -4.3409339, 0.0], [15.8491516, -4.3409339, 0.0], [15.8491516, -4.3395645, 0.0], [15.8477783, -4.3395645, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1225}, "geometry": {"type": "Polygon", "coordinates": [[[15.7859802, -4.3395645, 0.0], [15.7859802, -4.3409339, 0.0], [15.7873535, -4.3409339, 0.0], [15.7873535, -4.3395645, 0.0], [15.7859802, -4.3395645, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1226}, "geometry": {"type": "Polygon", "coordinates": [[[15.921936, -4.3395645, 0.0], [15.921936, -4.3409339, 0.0], [15.9233093, -4.3409339, 0.0], [15.9233093, -4.3395645, 0.0], [15.921936, -4.3395645, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1227}, "geometry": {"type": "Polygon", "coordinates": [[[15.8889771, -4.3395645, 0.0], [15.8889771, -4.3409339, 0.0], [15.8903503, -4.3409339, 0.0], [15.8903503, -4.3395645, 0.0], [15.8889771, -4.3395645, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1228}, "geometry": {"type": "Polygon", "coordinates": [[[15.8917236, -4.3381952, 0.0], [15.8917236, -4.3395645, 0.0], [15.8930969, -4.3395645, 0.0], [15.8930969, -4.3381952, 0.0], [15.8917236, -4.3381952, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1229}, "geometry": {"type": "Polygon", "coordinates": [[[15.7983398, -4.3381952, 0.0], [15.7983398, -4.3395645, 0.0], [15.7997131, -4.3395645, 0.0], [15.7997131, -4.3381952, 0.0], [15.7983398, -4.3381952, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1230}, "geometry": {"type": "Polygon", "coordinates": [[[15.7804871, -4.3381952, 0.0], [15.7804871, -4.3368258, 0.0], [15.7791138, -4.3368258, 0.0], [15.7777405, -4.3368258, 0.0], [15.7777405, -4.3381952, 0.0], [15.7791138, -4.3381952, 0.0], [15.7791138, -4.3395645, 0.0], [15.7804871, -4.3395645, 0.0], [15.7818604, -4.3395645, 0.0], [15.7818604, -4.3381952, 0.0], [15.7804871, -4.3381952, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1231}, "geometry": {"type": "Polygon", "coordinates": [[[15.8079529, -4.3381952, 0.0], [15.8079529, -4.3395645, 0.0], [15.8093262, -4.3395645, 0.0], [15.8093262, -4.3381952, 0.0], [15.8079529, -4.3381952, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1232}, "geometry": {"type": "Polygon", "coordinates": [[[15.7489014, -4.3381952, 0.0], [15.7489014, -4.3395645, 0.0], [15.7502747, -4.3395645, 0.0], [15.7502747, -4.3381952, 0.0], [15.7489014, -4.3381952, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1233}, "geometry": {"type": "Polygon", "coordinates": [[[15.7901001, -4.3381952, 0.0], [15.7901001, -4.3395645, 0.0], [15.7914734, -4.3395645, 0.0], [15.7914734, -4.3381952, 0.0], [15.7901001, -4.3381952, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1234}, "geometry": {"type": "Polygon", "coordinates": [[[15.7749939, -4.3381952, 0.0], [15.7749939, -4.3395645, 0.0], [15.7763672, -4.3395645, 0.0], [15.7763672, -4.3381952, 0.0], [15.7749939, -4.3381952, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1235}, "geometry": {"type": "Polygon", "coordinates": [[[15.8807373, -4.3368258, 0.0], [15.8807373, -4.3354565, 0.0], [15.879364, -4.3354565, 0.0], [15.879364, -4.3368258, 0.0], [15.879364, -4.3381952, 0.0], [15.8807373, -4.3381952, 0.0], [15.8807373, -4.3368258, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1236}, "geometry": {"type": "Polygon", "coordinates": [[[15.803833, -4.3368258, 0.0], [15.803833, -4.3381952, 0.0], [15.8052063, -4.3381952, 0.0], [15.8065796, -4.3381952, 0.0], [15.8079529, -4.3381952, 0.0], [15.8079529, -4.3368258, 0.0], [15.8065796, -4.3368258, 0.0], [15.8052063, -4.3368258, 0.0], [15.803833, -4.3368258, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1237}, "geometry": {"type": "Polygon", "coordinates": [[[15.9658813, -4.3368258, 0.0], [15.9658813, -4.3354565, 0.0], [15.9645081, -4.3354565, 0.0], [15.9645081, -4.3368258, 0.0], [15.9645081, -4.3381952, 0.0], [15.9658813, -4.3381952, 0.0], [15.9658813, -4.3368258, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1238}, "geometry": {"type": "Polygon", "coordinates": [[[15.9590149, -4.3368258, 0.0], [15.9603882, -4.3368258, 0.0], [15.9617615, -4.3368258, 0.0], [15.9617615, -4.3354565, 0.0], [15.9617615, -4.3340871, 0.0], [15.9603882, -4.3340871, 0.0], [15.9590149, -4.3340871, 0.0], [15.9590149, -4.3354565, 0.0], [15.9576416, -4.3354565, 0.0], [15.9562683, -4.3354565, 0.0], [15.9562683, -4.3368258, 0.0], [15.9562683, -4.3381952, 0.0], [15.9576416, -4.3381952, 0.0], [15.9590149, -4.3381952, 0.0], [15.9590149, -4.3368258, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1239}, "geometry": {"type": "Polygon", "coordinates": [[[15.7873535, -4.3368258, 0.0], [15.7873535, -4.3354565, 0.0], [15.7859802, -4.3354565, 0.0], [15.7846069, -4.3354565, 0.0], [15.7846069, -4.3340871, 0.0], [15.7846069, -4.3327177, 0.0], [15.7832336, -4.3327177, 0.0], [15.7832336, -4.3340871, 0.0], [15.7832336, -4.3354565, 0.0], [15.7832336, -4.3368258, 0.0], [15.7846069, -4.3368258, 0.0], [15.7859802, -4.3368258, 0.0], [15.7859802, -4.3381952, 0.0], [15.7873535, -4.3381952, 0.0], [15.7873535, -4.3368258, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1240}, "geometry": {"type": "Polygon", "coordinates": [[[15.9370422, -4.3368258, 0.0], [15.9370422, -4.3381952, 0.0], [15.9384155, -4.3381952, 0.0], [15.9384155, -4.3368258, 0.0], [15.9370422, -4.3368258, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1241}, "geometry": {"type": "Polygon", "coordinates": [[[15.8175659, -4.3368258, 0.0], [15.8175659, -4.3354565, 0.0], [15.8161926, -4.3354565, 0.0], [15.8161926, -4.3368258, 0.0], [15.8161926, -4.3381952, 0.0], [15.8175659, -4.3381952, 0.0], [15.8175659, -4.3368258, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1242}, "geometry": {"type": "Polygon", "coordinates": [[[15.8477783, -4.3368258, 0.0], [15.8477783, -4.3381952, 0.0], [15.8491516, -4.3381952, 0.0], [15.8491516, -4.3368258, 0.0], [15.8477783, -4.3368258, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1243}, "geometry": {"type": "Polygon", "coordinates": [[[15.8230591, -4.3368258, 0.0], [15.8230591, -4.3381952, 0.0], [15.8244324, -4.3381952, 0.0], [15.8244324, -4.3368258, 0.0], [15.8230591, -4.3368258, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1244}, "geometry": {"type": "Polygon", "coordinates": [[[15.827179, -4.3354565, 0.0], [15.827179, -4.3368258, 0.0], [15.8285522, -4.3368258, 0.0], [15.8285522, -4.3354565, 0.0], [15.827179, -4.3354565, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1245}, "geometry": {"type": "Polygon", "coordinates": [[[15.9068298, -4.3354565, 0.0], [15.9068298, -4.3368258, 0.0], [15.9082031, -4.3368258, 0.0], [15.9082031, -4.3354565, 0.0], [15.9068298, -4.3354565, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1246}, "geometry": {"type": "Polygon", "coordinates": [[[15.8024597, -4.3354565, 0.0], [15.8024597, -4.3368258, 0.0], [15.803833, -4.3368258, 0.0], [15.803833, -4.3354565, 0.0], [15.8024597, -4.3354565, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1247}, "geometry": {"type": "Polygon", "coordinates": [[[15.7777405, -4.3340871, 0.0], [15.7763672, -4.3340871, 0.0], [15.7763672, -4.3354565, 0.0], [15.7777405, -4.3354565, 0.0], [15.7791138, -4.3354565, 0.0], [15.7791138, -4.3340871, 0.0], [15.7777405, -4.3340871, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1248}, "geometry": {"type": "Polygon", "coordinates": [[[15.8518982, -4.3354565, 0.0], [15.8518982, -4.3368258, 0.0], [15.8532715, -4.3368258, 0.0], [15.8532715, -4.3354565, 0.0], [15.8518982, -4.3354565, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1249}, "geometry": {"type": "Polygon", "coordinates": [[[15.7804871, -4.3354565, 0.0], [15.7804871, -4.3368258, 0.0], [15.7818604, -4.3368258, 0.0], [15.7818604, -4.3354565, 0.0], [15.7804871, -4.3354565, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1250}, "geometry": {"type": "Polygon", "coordinates": [[[15.7983398, -4.3354565, 0.0], [15.7983398, -4.3340871, 0.0], [15.7969666, -4.3340871, 0.0], [15.7969666, -4.3354565, 0.0], [15.7969666, -4.3368258, 0.0], [15.7983398, -4.3368258, 0.0], [15.7983398, -4.3354565, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1251}, "geometry": {"type": "Polygon", "coordinates": [[[15.8972168, -4.3340871, 0.0], [15.8972168, -4.3354565, 0.0], [15.8985901, -4.3354565, 0.0], [15.8985901, -4.3340871, 0.0], [15.8972168, -4.3340871, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1252}, "geometry": {"type": "Polygon", "coordinates": [[[15.7598877, -4.3340871, 0.0], [15.7598877, -4.3354565, 0.0], [15.761261, -4.3354565, 0.0], [15.7626343, -4.3354565, 0.0], [15.7626343, -4.3340871, 0.0], [15.761261, -4.3340871, 0.0], [15.7598877, -4.3340871, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1253}, "geometry": {"type": "Polygon", "coordinates": [[[15.8560181, -4.3340871, 0.0], [15.8560181, -4.3354565, 0.0], [15.8573914, -4.3354565, 0.0], [15.8573914, -4.3340871, 0.0], [15.8560181, -4.3340871, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1254}, "geometry": {"type": "Polygon", "coordinates": [[[15.8560181, -4.3327177, 0.0], [15.8560181, -4.3313484, 0.0], [15.8546448, -4.3313484, 0.0], [15.8546448, -4.3327177, 0.0], [15.8546448, -4.3340871, 0.0], [15.8560181, -4.3340871, 0.0], [15.8560181, -4.3327177, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1255}, "geometry": {"type": "Polygon", "coordinates": [[[15.8024597, -4.3327177, 0.0], [15.8010864, -4.3327177, 0.0], [15.8010864, -4.3340871, 0.0], [15.8024597, -4.3340871, 0.0], [15.803833, -4.3340871, 0.0], [15.803833, -4.3327177, 0.0], [15.8024597, -4.3327177, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1256}, "geometry": {"type": "Polygon", "coordinates": [[[15.7928467, -4.3327177, 0.0], [15.7928467, -4.3340871, 0.0], [15.79422, -4.3340871, 0.0], [15.79422, -4.3327177, 0.0], [15.7928467, -4.3327177, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1257}, "geometry": {"type": "Polygon", "coordinates": [[[15.7681274, -4.3327177, 0.0], [15.7667542, -4.3327177, 0.0], [15.7667542, -4.3340871, 0.0], [15.7681274, -4.3340871, 0.0], [15.7695007, -4.3340871, 0.0], [15.7695007, -4.3327177, 0.0], [15.7681274, -4.3327177, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1258}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.3327177, 0.0], [15.7557678, -4.3340871, 0.0], [15.7571411, -4.3340871, 0.0], [15.7571411, -4.3327177, 0.0], [15.7557678, -4.3327177, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1259}, "geometry": {"type": "Polygon", "coordinates": [[[15.7887268, -4.3327177, 0.0], [15.7887268, -4.3340871, 0.0], [15.7901001, -4.3340871, 0.0], [15.7901001, -4.3327177, 0.0], [15.7887268, -4.3327177, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1260}, "geometry": {"type": "Polygon", "coordinates": [[[15.7997131, -4.3327177, 0.0], [15.8010864, -4.3327177, 0.0], [15.8010864, -4.3313484, 0.0], [15.7997131, -4.3313484, 0.0], [15.7997131, -4.329979, 0.0], [15.7983398, -4.329979, 0.0], [15.7983398, -4.3313484, 0.0], [15.7983398, -4.3327177, 0.0], [15.7997131, -4.3327177, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1261}, "geometry": {"type": "Polygon", "coordinates": [[[15.8093262, -4.3313484, 0.0], [15.8093262, -4.329979, 0.0], [15.8079529, -4.329979, 0.0], [15.8079529, -4.3286096, 0.0], [15.8065796, -4.3286096, 0.0], [15.8065796, -4.329979, 0.0], [15.8065796, -4.3313484, 0.0], [15.8065796, -4.3327177, 0.0], [15.8079529, -4.3327177, 0.0], [15.8093262, -4.3327177, 0.0], [15.8093262, -4.3313484, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1262}, "geometry": {"type": "Polygon", "coordinates": [[[15.7873535, -4.3313484, 0.0], [15.7859802, -4.3313484, 0.0], [15.7859802, -4.3327177, 0.0], [15.7873535, -4.3327177, 0.0], [15.7887268, -4.3327177, 0.0], [15.7887268, -4.3313484, 0.0], [15.7873535, -4.3313484, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1263}, "geometry": {"type": "Polygon", "coordinates": [[[15.9150696, -4.3313484, 0.0], [15.9150696, -4.3327177, 0.0], [15.9164429, -4.3327177, 0.0], [15.9178162, -4.3327177, 0.0], [15.9178162, -4.3313484, 0.0], [15.9191895, -4.3313484, 0.0], [15.9191895, -4.329979, 0.0], [15.9205627, -4.329979, 0.0], [15.9205627, -4.3286096, 0.0], [15.921936, -4.3286096, 0.0], [15.921936, -4.3272403, 0.0], [15.9233093, -4.3272403, 0.0], [15.9233093, -4.3258709, 0.0], [15.9233093, -4.3245015, 0.0], [15.9246826, -4.3245015, 0.0], [15.9246826, -4.3231321, 0.0], [15.9260559, -4.3231321, 0.0], [15.9260559, -4.3217627, 0.0], [15.9274292, -4.3217627, 0.0], [15.9274292, -4.3203933, 0.0], [15.9274292, -4.3190239, 0.0], [15.9288025, -4.3190239, 0.0], [15.9288025, -4.3176546, 0.0], [15.9288025, -4.3162852, 0.0], [15.9301758, -4.3162852, 0.0], [15.9301758, -4.3149158, 0.0], [15.9315491, -4.3149158, 0.0], [15.9329224, -4.3149158, 0.0], [15.9342957, -4.3149158, 0.0], [15.9342957, -4.3135464, 0.0], [15.9342957, -4.312177, 0.0], [15.9342957, -4.3108076, 0.0], [15.9329224, -4.3108076, 0.0], [15.9329224, -4.3094381, 0.0], [15.9315491, -4.3094381, 0.0], [15.9315491, -4.3080687, 0.0], [15.9315491, -4.3066993, 0.0], [15.9315491, -4.3053299, 0.0], [15.9315491, -4.3039605, 0.0], [15.9315491, -4.3025911, 0.0], [15.9301758, -4.3025911, 0.0], [15.9301758, -4.3012217, 0.0], [15.9301758, -4.2998522, 0.0], [15.9301758, -4.2984828, 0.0], [15.9288025, -4.2984828, 0.0], [15.9288025, -4.2971134, 0.0], [15.9288025, -4.2957439, 0.0], [15.9288025, -4.2943745, 0.0], [15.9288025, -4.2930051, 0.0], [15.9274292, -4.2930051, 0.0], [15.9274292, -4.2943745, 0.0], [15.9274292, -4.2957439, 0.0], [15.9274292, -4.2971134, 0.0], [15.9274292, -4.2984828, 0.0], [15.9274292, -4.2998522, 0.0], [15.9274292, -4.3012217, 0.0], [15.9274292, -4.3025911, 0.0], [15.9274292, -4.3039605, 0.0], [15.9274292, -4.3053299, 0.0], [15.9274292, -4.3066993, 0.0], [15.9274292, -4.3080687, 0.0], [15.9274292, -4.3094381, 0.0], [15.9260559, -4.3094381, 0.0], [15.9260559, -4.3108076, 0.0], [15.9274292, -4.3108076, 0.0], [15.9274292, -4.312177, 0.0], [15.9260559, -4.312177, 0.0], [15.9260559, -4.3135464, 0.0], [15.9260559, -4.3149158, 0.0], [15.9274292, -4.3149158, 0.0], [15.9274292, -4.3162852, 0.0], [15.9260559, -4.3162852, 0.0], [15.9260559, -4.3176546, 0.0], [15.9246826, -4.3176546, 0.0], [15.9246826, -4.3190239, 0.0], [15.9246826, -4.3203933, 0.0], [15.9233093, -4.3203933, 0.0], [15.9233093, -4.3217627, 0.0], [15.9233093, -4.3231321, 0.0], [15.921936, -4.3231321, 0.0], [15.9205627, -4.3231321, 0.0], [15.9205627, -4.3245015, 0.0], [15.921936, -4.3245015, 0.0], [15.921936, -4.3258709, 0.0], [15.9205627, -4.3258709, 0.0], [15.9191895, -4.3258709, 0.0], [15.9191895, -4.3272403, 0.0], [15.9178162, -4.3272403, 0.0], [15.9178162, -4.3286096, 0.0], [15.9178162, -4.329979, 0.0], [15.9164429, -4.329979, 0.0], [15.9164429, -4.3313484, 0.0], [15.9150696, -4.3313484, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1264}, "geometry": {"type": "Polygon", "coordinates": [[[15.8917236, -4.329979, 0.0], [15.8917236, -4.3286096, 0.0], [15.8917236, -4.3272403, 0.0], [15.8903503, -4.3272403, 0.0], [15.8903503, -4.3286096, 0.0], [15.8903503, -4.329979, 0.0], [15.8903503, -4.3313484, 0.0], [15.8917236, -4.3313484, 0.0], [15.8930969, -4.3313484, 0.0], [15.8930969, -4.329979, 0.0], [15.8917236, -4.329979, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1265}, "geometry": {"type": "Polygon", "coordinates": [[[15.7818604, -4.329979, 0.0], [15.7818604, -4.3313484, 0.0], [15.7832336, -4.3313484, 0.0], [15.7832336, -4.329979, 0.0], [15.7818604, -4.329979, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1266}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.329979, 0.0], [15.7667542, -4.3313484, 0.0], [15.7681274, -4.3313484, 0.0], [15.7681274, -4.329979, 0.0], [15.7667542, -4.329979, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1267}, "geometry": {"type": "Polygon", "coordinates": [[[15.79422, -4.329979, 0.0], [15.79422, -4.3313484, 0.0], [15.7955933, -4.3313484, 0.0], [15.7955933, -4.329979, 0.0], [15.79422, -4.329979, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1268}, "geometry": {"type": "Polygon", "coordinates": [[[15.7035828, -4.3286096, 0.0], [15.7035828, -4.329979, 0.0], [15.7049561, -4.329979, 0.0], [15.7049561, -4.3286096, 0.0], [15.7035828, -4.3286096, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1269}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.329979, 0.0], [15.7557678, -4.3313484, 0.0], [15.7571411, -4.3313484, 0.0], [15.7571411, -4.329979, 0.0], [15.7557678, -4.329979, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1270}, "geometry": {"type": "Polygon", "coordinates": [[[15.9301758, -4.3286096, 0.0], [15.9301758, -4.3272403, 0.0], [15.9288025, -4.3272403, 0.0], [15.9288025, -4.3286096, 0.0], [15.9288025, -4.329979, 0.0], [15.9301758, -4.329979, 0.0], [15.9301758, -4.3286096, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1271}, "geometry": {"type": "Polygon", "coordinates": [[[15.8779907, -4.329979, 0.0], [15.8779907, -4.3313484, 0.0], [15.879364, -4.3313484, 0.0], [15.879364, -4.329979, 0.0], [15.8779907, -4.329979, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1272}, "geometry": {"type": "Polygon", "coordinates": [[[15.8258057, -4.329979, 0.0], [15.8258057, -4.3313484, 0.0], [15.827179, -4.3313484, 0.0], [15.827179, -4.329979, 0.0], [15.8258057, -4.329979, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1273}, "geometry": {"type": "Polygon", "coordinates": [[[15.7846069, -4.3286096, 0.0], [15.7846069, -4.329979, 0.0], [15.7859802, -4.329979, 0.0], [15.7859802, -4.3286096, 0.0], [15.7846069, -4.3286096, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1274}, "geometry": {"type": "Polygon", "coordinates": [[[15.7887268, -4.3286096, 0.0], [15.7887268, -4.3272403, 0.0], [15.7887268, -4.3258709, 0.0], [15.7887268, -4.3245015, 0.0], [15.7873535, -4.3245015, 0.0], [15.7873535, -4.3258709, 0.0], [15.7859802, -4.3258709, 0.0], [15.7859802, -4.3245015, 0.0], [15.7846069, -4.3245015, 0.0], [15.7832336, -4.3245015, 0.0], [15.7832336, -4.3258709, 0.0], [15.7832336, -4.3272403, 0.0], [15.7818604, -4.3272403, 0.0], [15.7818604, -4.3286096, 0.0], [15.7832336, -4.3286096, 0.0], [15.7846069, -4.3286096, 0.0], [15.7846069, -4.3272403, 0.0], [15.7859802, -4.3272403, 0.0], [15.7873535, -4.3272403, 0.0], [15.7873535, -4.3286096, 0.0], [15.7873535, -4.329979, 0.0], [15.7887268, -4.329979, 0.0], [15.7901001, -4.329979, 0.0], [15.7901001, -4.3286096, 0.0], [15.7887268, -4.3286096, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1275}, "geometry": {"type": "Polygon", "coordinates": [[[15.8546448, -4.3286096, 0.0], [15.8546448, -4.329979, 0.0], [15.8560181, -4.329979, 0.0], [15.8560181, -4.3286096, 0.0], [15.8546448, -4.3286096, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1276}, "geometry": {"type": "Polygon", "coordinates": [[[15.8505249, -4.3286096, 0.0], [15.8505249, -4.329979, 0.0], [15.8518982, -4.329979, 0.0], [15.8518982, -4.3286096, 0.0], [15.8505249, -4.3286096, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1277}, "geometry": {"type": "Polygon", "coordinates": [[[15.8285522, -4.3286096, 0.0], [15.8285522, -4.3272403, 0.0], [15.827179, -4.3272403, 0.0], [15.827179, -4.3286096, 0.0], [15.827179, -4.329979, 0.0], [15.8285522, -4.329979, 0.0], [15.8285522, -4.3286096, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1278}, "geometry": {"type": "Polygon", "coordinates": [[[15.8258057, -4.3286096, 0.0], [15.8258057, -4.3272403, 0.0], [15.8244324, -4.3272403, 0.0], [15.8244324, -4.3286096, 0.0], [15.8244324, -4.329979, 0.0], [15.8258057, -4.329979, 0.0], [15.8258057, -4.3286096, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1279}, "geometry": {"type": "Polygon", "coordinates": [[[15.7997131, -4.3286096, 0.0], [15.7997131, -4.329979, 0.0], [15.8010864, -4.329979, 0.0], [15.8010864, -4.3286096, 0.0], [15.7997131, -4.3286096, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1280}, "geometry": {"type": "Polygon", "coordinates": [[[15.9109497, -4.3286096, 0.0], [15.9109497, -4.3272403, 0.0], [15.9095764, -4.3272403, 0.0], [15.9082031, -4.3272403, 0.0], [15.9082031, -4.3286096, 0.0], [15.9082031, -4.329979, 0.0], [15.9095764, -4.329979, 0.0], [15.9109497, -4.329979, 0.0], [15.9109497, -4.3286096, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1281}, "geometry": {"type": "Polygon", "coordinates": [[[15.8161926, -4.3286096, 0.0], [15.8161926, -4.329979, 0.0], [15.8175659, -4.329979, 0.0], [15.8175659, -4.3286096, 0.0], [15.8161926, -4.3286096, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1282}, "geometry": {"type": "Polygon", "coordinates": [[[15.8216858, -4.3272403, 0.0], [15.8216858, -4.3286096, 0.0], [15.8230591, -4.3286096, 0.0], [15.8230591, -4.3272403, 0.0], [15.8216858, -4.3272403, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1283}, "geometry": {"type": "Polygon", "coordinates": [[[15.9480286, -4.3272403, 0.0], [15.9480286, -4.3286096, 0.0], [15.9494019, -4.3286096, 0.0], [15.9494019, -4.3272403, 0.0], [15.9480286, -4.3272403, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1284}, "geometry": {"type": "Polygon", "coordinates": [[[15.9356689, -4.3272403, 0.0], [15.9356689, -4.3286096, 0.0], [15.9370422, -4.3286096, 0.0], [15.9370422, -4.3272403, 0.0], [15.9356689, -4.3272403, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1285}, "geometry": {"type": "Polygon", "coordinates": [[[15.7516479, -4.3272403, 0.0], [15.7516479, -4.3286096, 0.0], [15.7530212, -4.3286096, 0.0], [15.7530212, -4.3272403, 0.0], [15.7516479, -4.3272403, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1286}, "geometry": {"type": "Polygon", "coordinates": [[[15.9109497, -4.3258709, 0.0], [15.9109497, -4.3272403, 0.0], [15.912323, -4.3272403, 0.0], [15.912323, -4.3258709, 0.0], [15.9109497, -4.3258709, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1287}, "geometry": {"type": "Polygon", "coordinates": [[[15.8010864, -4.3258709, 0.0], [15.8010864, -4.3245015, 0.0], [15.8010864, -4.3231321, 0.0], [15.8010864, -4.3217627, 0.0], [15.7997131, -4.3217627, 0.0], [15.7997131, -4.3231321, 0.0], [15.7997131, -4.3245015, 0.0], [15.7997131, -4.3258709, 0.0], [15.7997131, -4.3272403, 0.0], [15.8010864, -4.3272403, 0.0], [15.8010864, -4.3258709, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1288}, "geometry": {"type": "Polygon", "coordinates": [[[15.7543945, -4.3258709, 0.0], [15.7543945, -4.3245015, 0.0], [15.7557678, -4.3245015, 0.0], [15.7557678, -4.3231321, 0.0], [15.7557678, -4.3217627, 0.0], [15.7557678, -4.3203933, 0.0], [15.7571411, -4.3203933, 0.0], [15.7585144, -4.3203933, 0.0], [15.7585144, -4.3190239, 0.0], [15.7598877, -4.3190239, 0.0], [15.7598877, -4.3176546, 0.0], [15.7598877, -4.3162852, 0.0], [15.7598877, -4.3149158, 0.0], [15.761261, -4.3149158, 0.0], [15.761261, -4.3135464, 0.0], [15.761261, -4.312177, 0.0], [15.7598877, -4.312177, 0.0], [15.7585144, -4.312177, 0.0], [15.7585144, -4.3135464, 0.0], [15.7585144, -4.3149158, 0.0], [15.7585144, -4.3162852, 0.0], [15.7571411, -4.3162852, 0.0], [15.7571411, -4.3149158, 0.0], [15.7557678, -4.3149158, 0.0], [15.7557678, -4.3135464, 0.0], [15.7557678, -4.312177, 0.0], [15.7557678, -4.3108076, 0.0], [15.7543945, -4.3108076, 0.0], [15.7543945, -4.312177, 0.0], [15.7543945, -4.3135464, 0.0], [15.7543945, -4.3149158, 0.0], [15.7530212, -4.3149158, 0.0], [15.7530212, -4.3162852, 0.0], [15.7530212, -4.3176546, 0.0], [15.7516479, -4.3176546, 0.0], [15.7516479, -4.3190239, 0.0], [15.7516479, -4.3203933, 0.0], [15.7530212, -4.3203933, 0.0], [15.7530212, -4.3217627, 0.0], [15.7530212, -4.3231321, 0.0], [15.7530212, -4.3245015, 0.0], [15.7516479, -4.3245015, 0.0], [15.7516479, -4.3258709, 0.0], [15.7530212, -4.3258709, 0.0], [15.7530212, -4.3272403, 0.0], [15.7543945, -4.3272403, 0.0], [15.7543945, -4.3258709, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1289}, "geometry": {"type": "Polygon", "coordinates": [[[15.9809875, -4.3258709, 0.0], [15.9809875, -4.3245015, 0.0], [15.9809875, -4.3231321, 0.0], [15.9796143, -4.3231321, 0.0], [15.978241, -4.3231321, 0.0], [15.978241, -4.3245015, 0.0], [15.9796143, -4.3245015, 0.0], [15.9796143, -4.3258709, 0.0], [15.9796143, -4.3272403, 0.0], [15.9809875, -4.3272403, 0.0], [15.9809875, -4.3258709, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1290}, "geometry": {"type": "Polygon", "coordinates": [[[15.79422, -4.3258709, 0.0], [15.79422, -4.3272403, 0.0], [15.7955933, -4.3272403, 0.0], [15.7955933, -4.3258709, 0.0], [15.79422, -4.3258709, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1291}, "geometry": {"type": "Polygon", "coordinates": [[[15.8573914, -4.3258709, 0.0], [15.8573914, -4.3245015, 0.0], [15.8560181, -4.3245015, 0.0], [15.8560181, -4.3258709, 0.0], [15.8560181, -4.3272403, 0.0], [15.8573914, -4.3272403, 0.0], [15.8573914, -4.3258709, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1292}, "geometry": {"type": "Polygon", "coordinates": [[[15.8120728, -4.3245015, 0.0], [15.8120728, -4.3258709, 0.0], [15.813446, -4.3258709, 0.0], [15.813446, -4.3245015, 0.0], [15.8120728, -4.3245015, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1293}, "geometry": {"type": "Polygon", "coordinates": [[[15.8395386, -4.3245015, 0.0], [15.8395386, -4.3258709, 0.0], [15.8409119, -4.3258709, 0.0], [15.8409119, -4.3245015, 0.0], [15.8395386, -4.3245015, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1294}, "geometry": {"type": "Polygon", "coordinates": [[[15.8807373, -4.3231321, 0.0], [15.8807373, -4.3245015, 0.0], [15.8821106, -4.3245015, 0.0], [15.8821106, -4.3231321, 0.0], [15.8807373, -4.3231321, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1295}, "geometry": {"type": "Polygon", "coordinates": [[[15.9150696, -4.3231321, 0.0], [15.9150696, -4.3245015, 0.0], [15.9164429, -4.3245015, 0.0], [15.9178162, -4.3245015, 0.0], [15.9191895, -4.3245015, 0.0], [15.9191895, -4.3231321, 0.0], [15.9178162, -4.3231321, 0.0], [15.9164429, -4.3231321, 0.0], [15.9150696, -4.3231321, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1296}, "geometry": {"type": "Polygon", "coordinates": [[[15.8546448, -4.3231321, 0.0], [15.8546448, -4.3245015, 0.0], [15.8560181, -4.3245015, 0.0], [15.8560181, -4.3231321, 0.0], [15.8546448, -4.3231321, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1297}, "geometry": {"type": "Polygon", "coordinates": [[[15.7969666, -4.3231321, 0.0], [15.7969666, -4.3217627, 0.0], [15.7955933, -4.3217627, 0.0], [15.7955933, -4.3203933, 0.0], [15.79422, -4.3203933, 0.0], [15.7928467, -4.3203933, 0.0], [15.7928467, -4.3190239, 0.0], [15.7914734, -4.3190239, 0.0], [15.7914734, -4.3203933, 0.0], [15.7914734, -4.3217627, 0.0], [15.7914734, -4.3231321, 0.0], [15.7928467, -4.3231321, 0.0], [15.79422, -4.3231321, 0.0], [15.7955933, -4.3231321, 0.0], [15.7955933, -4.3245015, 0.0], [15.7969666, -4.3245015, 0.0], [15.7969666, -4.3231321, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1298}, "geometry": {"type": "Polygon", "coordinates": [[[15.7901001, -4.3231321, 0.0], [15.7901001, -4.3217627, 0.0], [15.7887268, -4.3217627, 0.0], [15.7873535, -4.3217627, 0.0], [15.7873535, -4.3231321, 0.0], [15.7887268, -4.3231321, 0.0], [15.7887268, -4.3245015, 0.0], [15.7901001, -4.3245015, 0.0], [15.7901001, -4.3231321, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1299}, "geometry": {"type": "Polygon", "coordinates": [[[15.7749939, -4.3231321, 0.0], [15.7749939, -4.3245015, 0.0], [15.7763672, -4.3245015, 0.0], [15.7763672, -4.3231321, 0.0], [15.7749939, -4.3231321, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1300}, "geometry": {"type": "Polygon", "coordinates": [[[15.7598877, -4.3217627, 0.0], [15.7598877, -4.3231321, 0.0], [15.761261, -4.3231321, 0.0], [15.761261, -4.3217627, 0.0], [15.7598877, -4.3217627, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1301}, "geometry": {"type": "Polygon", "coordinates": [[[15.7846069, -4.3217627, 0.0], [15.7832336, -4.3217627, 0.0], [15.7832336, -4.3231321, 0.0], [15.7846069, -4.3231321, 0.0], [15.7859802, -4.3231321, 0.0], [15.7859802, -4.3217627, 0.0], [15.7846069, -4.3217627, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1302}, "geometry": {"type": "Polygon", "coordinates": [[[15.7777405, -4.3217627, 0.0], [15.7763672, -4.3217627, 0.0], [15.7763672, -4.3231321, 0.0], [15.7777405, -4.3231321, 0.0], [15.7791138, -4.3231321, 0.0], [15.7791138, -4.3217627, 0.0], [15.7777405, -4.3217627, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1303}, "geometry": {"type": "Polygon", "coordinates": [[[15.7722473, -4.3217627, 0.0], [15.770874, -4.3217627, 0.0], [15.770874, -4.3231321, 0.0], [15.7722473, -4.3231321, 0.0], [15.7736206, -4.3231321, 0.0], [15.7736206, -4.3217627, 0.0], [15.7722473, -4.3217627, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1304}, "geometry": {"type": "Polygon", "coordinates": [[[15.8079529, -4.3217627, 0.0], [15.8079529, -4.3231321, 0.0], [15.8093262, -4.3231321, 0.0], [15.8093262, -4.3217627, 0.0], [15.8079529, -4.3217627, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1305}, "geometry": {"type": "Polygon", "coordinates": [[[15.8903503, -4.3217627, 0.0], [15.8903503, -4.3231321, 0.0], [15.8917236, -4.3231321, 0.0], [15.8917236, -4.3217627, 0.0], [15.8903503, -4.3217627, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1306}, "geometry": {"type": "Polygon", "coordinates": [[[15.9040833, -4.3203933, 0.0], [15.9040833, -4.3217627, 0.0], [15.9054565, -4.3217627, 0.0], [15.9054565, -4.3203933, 0.0], [15.9040833, -4.3203933, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1307}, "geometry": {"type": "Polygon", "coordinates": [[[15.6925964, -4.3203933, 0.0], [15.6925964, -4.3217627, 0.0], [15.6939697, -4.3217627, 0.0], [15.6939697, -4.3203933, 0.0], [15.6925964, -4.3203933, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1308}, "geometry": {"type": "Polygon", "coordinates": [[[15.9864807, -4.3203933, 0.0], [15.9864807, -4.3217627, 0.0], [15.987854, -4.3217627, 0.0], [15.987854, -4.3203933, 0.0], [15.9864807, -4.3203933, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1309}, "geometry": {"type": "Polygon", "coordinates": [[[15.7791138, -4.3203933, 0.0], [15.7791138, -4.3217627, 0.0], [15.7804871, -4.3217627, 0.0], [15.7818604, -4.3217627, 0.0], [15.7818604, -4.3203933, 0.0], [15.7804871, -4.3203933, 0.0], [15.7791138, -4.3203933, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1310}, "geometry": {"type": "Polygon", "coordinates": [[[15.8052063, -4.3203933, 0.0], [15.8052063, -4.3217627, 0.0], [15.8065796, -4.3217627, 0.0], [15.8065796, -4.3203933, 0.0], [15.8052063, -4.3203933, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1311}, "geometry": {"type": "Polygon", "coordinates": [[[15.8230591, -4.3217627, 0.0], [15.8244324, -4.3217627, 0.0], [15.8244324, -4.3203933, 0.0], [15.8230591, -4.3203933, 0.0], [15.8230591, -4.3190239, 0.0], [15.8216858, -4.3190239, 0.0], [15.8216858, -4.3203933, 0.0], [15.8216858, -4.3217627, 0.0], [15.8230591, -4.3217627, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1312}, "geometry": {"type": "Polygon", "coordinates": [[[15.7695007, -4.3203933, 0.0], [15.7695007, -4.3217627, 0.0], [15.770874, -4.3217627, 0.0], [15.770874, -4.3203933, 0.0], [15.7695007, -4.3203933, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1313}, "geometry": {"type": "Polygon", "coordinates": [[[15.9013367, -4.3203933, 0.0], [15.9013367, -4.3190239, 0.0], [15.8999634, -4.3190239, 0.0], [15.8999634, -4.3203933, 0.0], [15.8999634, -4.3217627, 0.0], [15.9013367, -4.3217627, 0.0], [15.9013367, -4.3203933, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1314}, "geometry": {"type": "Polygon", "coordinates": [[[15.6939697, -4.3190239, 0.0], [15.6939697, -4.3203933, 0.0], [15.695343, -4.3203933, 0.0], [15.695343, -4.3190239, 0.0], [15.6939697, -4.3190239, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1315}, "geometry": {"type": "Polygon", "coordinates": [[[15.7983398, -4.3190239, 0.0], [15.7983398, -4.3203933, 0.0], [15.7997131, -4.3203933, 0.0], [15.7997131, -4.3190239, 0.0], [15.7983398, -4.3190239, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1316}, "geometry": {"type": "Polygon", "coordinates": [[[15.8587646, -4.3203933, 0.0], [15.8587646, -4.3190239, 0.0], [15.8573914, -4.3190239, 0.0], [15.8560181, -4.3190239, 0.0], [15.8560181, -4.3203933, 0.0], [15.8573914, -4.3203933, 0.0], [15.8573914, -4.3217627, 0.0], [15.8587646, -4.3217627, 0.0], [15.8587646, -4.3203933, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1317}, "geometry": {"type": "Polygon", "coordinates": [[[15.8930969, -4.3190239, 0.0], [15.8930969, -4.3203933, 0.0], [15.8944702, -4.3203933, 0.0], [15.8944702, -4.3190239, 0.0], [15.8930969, -4.3190239, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1318}, "geometry": {"type": "Polygon", "coordinates": [[[15.7653809, -4.3190239, 0.0], [15.7653809, -4.3203933, 0.0], [15.7667542, -4.3203933, 0.0], [15.7667542, -4.3190239, 0.0], [15.7653809, -4.3190239, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1319}, "geometry": {"type": "Polygon", "coordinates": [[[15.7887268, -4.3190239, 0.0], [15.7887268, -4.3176546, 0.0], [15.7873535, -4.3176546, 0.0], [15.7873535, -4.3190239, 0.0], [15.7873535, -4.3203933, 0.0], [15.7887268, -4.3203933, 0.0], [15.7887268, -4.3190239, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1320}, "geometry": {"type": "Polygon", "coordinates": [[[15.7832336, -4.3190239, 0.0], [15.7832336, -4.3203933, 0.0], [15.7846069, -4.3203933, 0.0], [15.7846069, -4.3190239, 0.0], [15.7832336, -4.3190239, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1321}, "geometry": {"type": "Polygon", "coordinates": [[[15.7310486, -4.3190239, 0.0], [15.7310486, -4.3176546, 0.0], [15.7296753, -4.3176546, 0.0], [15.7296753, -4.3190239, 0.0], [15.7296753, -4.3203933, 0.0], [15.7310486, -4.3203933, 0.0], [15.7310486, -4.3190239, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1322}, "geometry": {"type": "Polygon", "coordinates": [[[15.9288025, -4.3190239, 0.0], [15.9288025, -4.3203933, 0.0], [15.9301758, -4.3203933, 0.0], [15.9301758, -4.3190239, 0.0], [15.9288025, -4.3190239, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1323}, "geometry": {"type": "Polygon", "coordinates": [[[15.921936, -4.3190239, 0.0], [15.921936, -4.3203933, 0.0], [15.9233093, -4.3203933, 0.0], [15.9233093, -4.3190239, 0.0], [15.921936, -4.3190239, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1324}, "geometry": {"type": "Polygon", "coordinates": [[[15.8244324, -4.3190239, 0.0], [15.8244324, -4.3203933, 0.0], [15.8258057, -4.3203933, 0.0], [15.8258057, -4.3190239, 0.0], [15.8244324, -4.3190239, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1325}, "geometry": {"type": "Polygon", "coordinates": [[[15.8285522, -4.3190239, 0.0], [15.8285522, -4.3203933, 0.0], [15.8299255, -4.3203933, 0.0], [15.8299255, -4.3190239, 0.0], [15.8285522, -4.3190239, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1326}, "geometry": {"type": "Polygon", "coordinates": [[[15.7777405, -4.3190239, 0.0], [15.7777405, -4.3203933, 0.0], [15.7791138, -4.3203933, 0.0], [15.7791138, -4.3190239, 0.0], [15.7777405, -4.3190239, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1327}, "geometry": {"type": "Polygon", "coordinates": [[[15.7695007, -4.3176546, 0.0], [15.7695007, -4.3190239, 0.0], [15.770874, -4.3190239, 0.0], [15.770874, -4.3176546, 0.0], [15.7695007, -4.3176546, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1328}, "geometry": {"type": "Polygon", "coordinates": [[[15.7722473, -4.3176546, 0.0], [15.7722473, -4.3190239, 0.0], [15.7736206, -4.3190239, 0.0], [15.7736206, -4.3176546, 0.0], [15.7722473, -4.3176546, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1329}, "geometry": {"type": "Polygon", "coordinates": [[[15.7804871, -4.3176546, 0.0], [15.7804871, -4.3190239, 0.0], [15.7818604, -4.3190239, 0.0], [15.7818604, -4.3176546, 0.0], [15.7804871, -4.3176546, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1330}, "geometry": {"type": "Polygon", "coordinates": [[[15.827179, -4.3176546, 0.0], [15.827179, -4.3162852, 0.0], [15.8285522, -4.3162852, 0.0], [15.8285522, -4.3149158, 0.0], [15.8285522, -4.3135464, 0.0], [15.827179, -4.3135464, 0.0], [15.8258057, -4.3135464, 0.0], [15.8258057, -4.3149158, 0.0], [15.8258057, -4.3162852, 0.0], [15.8258057, -4.3176546, 0.0], [15.8258057, -4.3190239, 0.0], [15.827179, -4.3190239, 0.0], [15.827179, -4.3176546, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1331}, "geometry": {"type": "Polygon", "coordinates": [[[15.9136963, -4.3176546, 0.0], [15.9136963, -4.3190239, 0.0], [15.9150696, -4.3190239, 0.0], [15.9150696, -4.3176546, 0.0], [15.9136963, -4.3176546, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1332}, "geometry": {"type": "Polygon", "coordinates": [[[15.7214355, -4.3176546, 0.0], [15.7200623, -4.3176546, 0.0], [15.7200623, -4.3190239, 0.0], [15.7214355, -4.3190239, 0.0], [15.7228088, -4.3190239, 0.0], [15.7228088, -4.3176546, 0.0], [15.7214355, -4.3176546, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1333}, "geometry": {"type": "Polygon", "coordinates": [[[15.8972168, -4.3176546, 0.0], [15.8972168, -4.3162852, 0.0], [15.8958435, -4.3162852, 0.0], [15.8958435, -4.3176546, 0.0], [15.8958435, -4.3190239, 0.0], [15.8972168, -4.3190239, 0.0], [15.8972168, -4.3176546, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1334}, "geometry": {"type": "Polygon", "coordinates": [[[15.9013367, -4.3162852, 0.0], [15.9013367, -4.3176546, 0.0], [15.90271, -4.3176546, 0.0], [15.9040833, -4.3176546, 0.0], [15.9040833, -4.3162852, 0.0], [15.9040833, -4.3149158, 0.0], [15.90271, -4.3149158, 0.0], [15.90271, -4.3162852, 0.0], [15.9013367, -4.3162852, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1335}, "geometry": {"type": "Polygon", "coordinates": [[[15.7832336, -4.3162852, 0.0], [15.7832336, -4.3176546, 0.0], [15.7846069, -4.3176546, 0.0], [15.7859802, -4.3176546, 0.0], [15.7859802, -4.3162852, 0.0], [15.7846069, -4.3162852, 0.0], [15.7832336, -4.3162852, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1336}, "geometry": {"type": "Polygon", "coordinates": [[[15.7022095, -4.3162852, 0.0], [15.7022095, -4.3176546, 0.0], [15.7035828, -4.3176546, 0.0], [15.7035828, -4.3162852, 0.0], [15.7022095, -4.3162852, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1337}, "geometry": {"type": "Polygon", "coordinates": [[[15.7914734, -4.3162852, 0.0], [15.7914734, -4.3176546, 0.0], [15.7928467, -4.3176546, 0.0], [15.7928467, -4.3162852, 0.0], [15.7914734, -4.3162852, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1338}, "geometry": {"type": "Polygon", "coordinates": [[[15.8079529, -4.3162852, 0.0], [15.8093262, -4.3162852, 0.0], [15.8093262, -4.3149158, 0.0], [15.8093262, -4.3135464, 0.0], [15.8079529, -4.3135464, 0.0], [15.8079529, -4.3149158, 0.0], [15.8065796, -4.3149158, 0.0], [15.8065796, -4.3162852, 0.0], [15.8065796, -4.3176546, 0.0], [15.8079529, -4.3176546, 0.0], [15.8079529, -4.3162852, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1339}, "geometry": {"type": "Polygon", "coordinates": [[[15.8175659, -4.3162852, 0.0], [15.8175659, -4.3149158, 0.0], [15.8161926, -4.3149158, 0.0], [15.8161926, -4.3162852, 0.0], [15.8161926, -4.3176546, 0.0], [15.8175659, -4.3176546, 0.0], [15.8175659, -4.3162852, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1340}, "geometry": {"type": "Polygon", "coordinates": [[[15.8203125, -4.3162852, 0.0], [15.8203125, -4.3176546, 0.0], [15.8216858, -4.3176546, 0.0], [15.8216858, -4.3162852, 0.0], [15.8203125, -4.3162852, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1341}, "geometry": {"type": "Polygon", "coordinates": [[[15.7077026, -4.3149158, 0.0], [15.7077026, -4.3162852, 0.0], [15.7090759, -4.3162852, 0.0], [15.7104492, -4.3162852, 0.0], [15.7104492, -4.3149158, 0.0], [15.7090759, -4.3149158, 0.0], [15.7077026, -4.3149158, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1342}, "geometry": {"type": "Polygon", "coordinates": [[[15.7653809, -4.3162852, 0.0], [15.7653809, -4.3176546, 0.0], [15.7667542, -4.3176546, 0.0], [15.7667542, -4.3162852, 0.0], [15.7653809, -4.3162852, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1343}, "geometry": {"type": "Polygon", "coordinates": [[[15.8930969, -4.3149158, 0.0], [15.8930969, -4.3135464, 0.0], [15.8917236, -4.3135464, 0.0], [15.8917236, -4.3149158, 0.0], [15.8917236, -4.3162852, 0.0], [15.8930969, -4.3162852, 0.0], [15.8930969, -4.3149158, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1344}, "geometry": {"type": "Polygon", "coordinates": [[[15.8972168, -4.3149158, 0.0], [15.8972168, -4.3162852, 0.0], [15.8985901, -4.3162852, 0.0], [15.8999634, -4.3162852, 0.0], [15.8999634, -4.3149158, 0.0], [15.8985901, -4.3149158, 0.0], [15.8972168, -4.3149158, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1345}, "geometry": {"type": "Polygon", "coordinates": [[[15.8560181, -4.3162852, 0.0], [15.8560181, -4.3176546, 0.0], [15.8573914, -4.3176546, 0.0], [15.8587646, -4.3176546, 0.0], [15.8601379, -4.3176546, 0.0], [15.8601379, -4.3162852, 0.0], [15.8587646, -4.3162852, 0.0], [15.8573914, -4.3162852, 0.0], [15.8560181, -4.3162852, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1346}, "geometry": {"type": "Polygon", "coordinates": [[[15.836792, -4.3149158, 0.0], [15.836792, -4.3162852, 0.0], [15.8381653, -4.3162852, 0.0], [15.8381653, -4.3149158, 0.0], [15.836792, -4.3149158, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1347}, "geometry": {"type": "Polygon", "coordinates": [[[15.8120728, -4.3149158, 0.0], [15.8120728, -4.3162852, 0.0], [15.813446, -4.3162852, 0.0], [15.813446, -4.3149158, 0.0], [15.8120728, -4.3149158, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1348}, "geometry": {"type": "Polygon", "coordinates": [[[15.8010864, -4.3149158, 0.0], [15.8010864, -4.3162852, 0.0], [15.8024597, -4.3162852, 0.0], [15.803833, -4.3162852, 0.0], [15.803833, -4.3149158, 0.0], [15.803833, -4.3135464, 0.0], [15.8024597, -4.3135464, 0.0], [15.8024597, -4.3149158, 0.0], [15.8010864, -4.3149158, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1349}, "geometry": {"type": "Polygon", "coordinates": [[[15.7640076, -4.3135464, 0.0], [15.7640076, -4.3149158, 0.0], [15.7653809, -4.3149158, 0.0], [15.7653809, -4.3135464, 0.0], [15.7640076, -4.3135464, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1350}, "geometry": {"type": "Polygon", "coordinates": [[[15.7859802, -4.3135464, 0.0], [15.7859802, -4.3149158, 0.0], [15.7873535, -4.3149158, 0.0], [15.7873535, -4.3135464, 0.0], [15.7859802, -4.3135464, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1351}, "geometry": {"type": "Polygon", "coordinates": [[[15.8175659, -4.3135464, 0.0], [15.8175659, -4.3149158, 0.0], [15.8189392, -4.3149158, 0.0], [15.8189392, -4.3135464, 0.0], [15.8175659, -4.3135464, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1352}, "geometry": {"type": "Polygon", "coordinates": [[[15.7475281, -4.3135464, 0.0], [15.7475281, -4.3149158, 0.0], [15.7489014, -4.3149158, 0.0], [15.7489014, -4.3135464, 0.0], [15.7475281, -4.3135464, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1353}, "geometry": {"type": "Polygon", "coordinates": [[[15.7722473, -4.312177, 0.0], [15.7722473, -4.3135464, 0.0], [15.7736206, -4.3135464, 0.0], [15.7736206, -4.312177, 0.0], [15.7722473, -4.312177, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1354}, "geometry": {"type": "Polygon", "coordinates": [[[15.7818604, -4.312177, 0.0], [15.7804871, -4.312177, 0.0], [15.7804871, -4.3135464, 0.0], [15.7818604, -4.3135464, 0.0], [15.7832336, -4.3135464, 0.0], [15.7832336, -4.312177, 0.0], [15.7818604, -4.312177, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1355}, "geometry": {"type": "Polygon", "coordinates": [[[15.7873535, -4.312177, 0.0], [15.7873535, -4.3135464, 0.0], [15.7887268, -4.3135464, 0.0], [15.7901001, -4.3135464, 0.0], [15.7901001, -4.312177, 0.0], [15.7887268, -4.312177, 0.0], [15.7873535, -4.312177, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1356}, "geometry": {"type": "Polygon", "coordinates": [[[15.7406616, -4.312177, 0.0], [15.7406616, -4.3108076, 0.0], [15.7392883, -4.3108076, 0.0], [15.7392883, -4.312177, 0.0], [15.7392883, -4.3135464, 0.0], [15.7406616, -4.3135464, 0.0], [15.7406616, -4.312177, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1357}, "geometry": {"type": "Polygon", "coordinates": [[[15.8683777, -4.312177, 0.0], [15.8683777, -4.3135464, 0.0], [15.869751, -4.3135464, 0.0], [15.869751, -4.312177, 0.0], [15.8683777, -4.312177, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1358}, "geometry": {"type": "Polygon", "coordinates": [[[15.8299255, -4.3108076, 0.0], [15.8299255, -4.3094381, 0.0], [15.8285522, -4.3094381, 0.0], [15.8285522, -4.3108076, 0.0], [15.8285522, -4.312177, 0.0], [15.8299255, -4.312177, 0.0], [15.8299255, -4.3108076, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1359}, "geometry": {"type": "Polygon", "coordinates": [[[15.9686279, -4.3108076, 0.0], [15.9686279, -4.312177, 0.0], [15.9700012, -4.312177, 0.0], [15.9700012, -4.3108076, 0.0], [15.9686279, -4.3108076, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1360}, "geometry": {"type": "Polygon", "coordinates": [[[15.8093262, -4.3108076, 0.0], [15.8093262, -4.312177, 0.0], [15.8106995, -4.312177, 0.0], [15.8106995, -4.3108076, 0.0], [15.8093262, -4.3108076, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1361}, "geometry": {"type": "Polygon", "coordinates": [[[15.7791138, -4.3108076, 0.0], [15.7791138, -4.3094381, 0.0], [15.7777405, -4.3094381, 0.0], [15.7763672, -4.3094381, 0.0], [15.7763672, -4.3108076, 0.0], [15.7763672, -4.312177, 0.0], [15.7777405, -4.312177, 0.0], [15.7791138, -4.312177, 0.0], [15.7791138, -4.3108076, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1362}, "geometry": {"type": "Polygon", "coordinates": [[[15.7681274, -4.3108076, 0.0], [15.7681274, -4.312177, 0.0], [15.7695007, -4.312177, 0.0], [15.7695007, -4.3108076, 0.0], [15.7681274, -4.3108076, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1363}, "geometry": {"type": "Polygon", "coordinates": [[[15.7626343, -4.3108076, 0.0], [15.7626343, -4.312177, 0.0], [15.7640076, -4.312177, 0.0], [15.7640076, -4.3108076, 0.0], [15.7626343, -4.3108076, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1364}, "geometry": {"type": "Polygon", "coordinates": [[[15.8203125, -4.3108076, 0.0], [15.8203125, -4.3094381, 0.0], [15.8203125, -4.3080687, 0.0], [15.8189392, -4.3080687, 0.0], [15.8189392, -4.3094381, 0.0], [15.8175659, -4.3094381, 0.0], [15.8175659, -4.3108076, 0.0], [15.8189392, -4.3108076, 0.0], [15.8189392, -4.312177, 0.0], [15.8203125, -4.312177, 0.0], [15.8203125, -4.3108076, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1365}, "geometry": {"type": "Polygon", "coordinates": [[[15.7818604, -4.3094381, 0.0], [15.7818604, -4.3108076, 0.0], [15.7832336, -4.3108076, 0.0], [15.7832336, -4.3094381, 0.0], [15.7818604, -4.3094381, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1366}, "geometry": {"type": "Polygon", "coordinates": [[[15.9164429, -4.3094381, 0.0], [15.9164429, -4.3108076, 0.0], [15.9178162, -4.3108076, 0.0], [15.9178162, -4.3094381, 0.0], [15.9164429, -4.3094381, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1367}, "geometry": {"type": "Polygon", "coordinates": [[[15.7736206, -4.3094381, 0.0], [15.7736206, -4.3080687, 0.0], [15.7722473, -4.3080687, 0.0], [15.7722473, -4.3066993, 0.0], [15.770874, -4.3066993, 0.0], [15.770874, -4.3080687, 0.0], [15.770874, -4.3094381, 0.0], [15.7722473, -4.3094381, 0.0], [15.7722473, -4.3108076, 0.0], [15.7736206, -4.3108076, 0.0], [15.7736206, -4.3094381, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1368}, "geometry": {"type": "Polygon", "coordinates": [[[15.9370422, -4.3094381, 0.0], [15.9370422, -4.3080687, 0.0], [15.9356689, -4.3080687, 0.0], [15.9356689, -4.3094381, 0.0], [15.9356689, -4.3108076, 0.0], [15.9370422, -4.3108076, 0.0], [15.9370422, -4.3094381, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1369}, "geometry": {"type": "Polygon", "coordinates": [[[15.7791138, -4.3080687, 0.0], [15.7791138, -4.3094381, 0.0], [15.7804871, -4.3094381, 0.0], [15.7818604, -4.3094381, 0.0], [15.7818604, -4.3080687, 0.0], [15.7832336, -4.3080687, 0.0], [15.7832336, -4.3066993, 0.0], [15.7818604, -4.3066993, 0.0], [15.7804871, -4.3066993, 0.0], [15.7804871, -4.3080687, 0.0], [15.7791138, -4.3080687, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1370}, "geometry": {"type": "Polygon", "coordinates": [[[15.9768677, -4.3080687, 0.0], [15.9768677, -4.3094381, 0.0], [15.978241, -4.3094381, 0.0], [15.978241, -4.3080687, 0.0], [15.9768677, -4.3080687, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1371}, "geometry": {"type": "Polygon", "coordinates": [[[15.8546448, -4.3080687, 0.0], [15.8546448, -4.3094381, 0.0], [15.8560181, -4.3094381, 0.0], [15.8573914, -4.3094381, 0.0], [15.8573914, -4.3080687, 0.0], [15.8573914, -4.3066993, 0.0], [15.8573914, -4.3053299, 0.0], [15.8560181, -4.3053299, 0.0], [15.8560181, -4.3066993, 0.0], [15.8560181, -4.3080687, 0.0], [15.8546448, -4.3080687, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1372}, "geometry": {"type": "Polygon", "coordinates": [[[15.8738708, -4.3066993, 0.0], [15.8738708, -4.3053299, 0.0], [15.8724976, -4.3053299, 0.0], [15.8724976, -4.3066993, 0.0], [15.8724976, -4.3080687, 0.0], [15.8738708, -4.3080687, 0.0], [15.8738708, -4.3066993, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1373}, "geometry": {"type": "Polygon", "coordinates": [[[15.8642578, -4.3066993, 0.0], [15.8642578, -4.3053299, 0.0], [15.8628845, -4.3053299, 0.0], [15.8628845, -4.3066993, 0.0], [15.8628845, -4.3080687, 0.0], [15.8642578, -4.3080687, 0.0], [15.8642578, -4.3066993, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1374}, "geometry": {"type": "Polygon", "coordinates": [[[15.8422852, -4.3066993, 0.0], [15.8422852, -4.3080687, 0.0], [15.8436584, -4.3080687, 0.0], [15.8436584, -4.3066993, 0.0], [15.8422852, -4.3066993, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1375}, "geometry": {"type": "Polygon", "coordinates": [[[15.8326721, -4.3066993, 0.0], [15.8326721, -4.3080687, 0.0], [15.8340454, -4.3080687, 0.0], [15.8340454, -4.3066993, 0.0], [15.8326721, -4.3066993, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1376}, "geometry": {"type": "Polygon", "coordinates": [[[15.8010864, -4.3053299, 0.0], [15.7997131, -4.3053299, 0.0], [15.7997131, -4.3039605, 0.0], [15.7983398, -4.3039605, 0.0], [15.7983398, -4.3053299, 0.0], [15.7969666, -4.3053299, 0.0], [15.7969666, -4.3066993, 0.0], [15.7983398, -4.3066993, 0.0], [15.7997131, -4.3066993, 0.0], [15.8010864, -4.3066993, 0.0], [15.8024597, -4.3066993, 0.0], [15.8024597, -4.3053299, 0.0], [15.8010864, -4.3053299, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1377}, "geometry": {"type": "Polygon", "coordinates": [[[15.7777405, -4.3053299, 0.0], [15.7777405, -4.3066993, 0.0], [15.7791138, -4.3066993, 0.0], [15.7791138, -4.3053299, 0.0], [15.7777405, -4.3053299, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1378}, "geometry": {"type": "Polygon", "coordinates": [[[15.8670044, -4.3053299, 0.0], [15.8670044, -4.3066993, 0.0], [15.8683777, -4.3066993, 0.0], [15.8683777, -4.3053299, 0.0], [15.8670044, -4.3053299, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1379}, "geometry": {"type": "Polygon", "coordinates": [[[15.761261, -4.3053299, 0.0], [15.7626343, -4.3053299, 0.0], [15.7626343, -4.3039605, 0.0], [15.7626343, -4.3025911, 0.0], [15.7626343, -4.3012217, 0.0], [15.7640076, -4.3012217, 0.0], [15.7653809, -4.3012217, 0.0], [15.7653809, -4.2998522, 0.0], [15.7640076, -4.2998522, 0.0], [15.7626343, -4.2998522, 0.0], [15.7626343, -4.2984828, 0.0], [15.761261, -4.2984828, 0.0], [15.7598877, -4.2984828, 0.0], [15.7585144, -4.2984828, 0.0], [15.7585144, -4.2998522, 0.0], [15.7585144, -4.3012217, 0.0], [15.7585144, -4.3025911, 0.0], [15.7598877, -4.3025911, 0.0], [15.7598877, -4.3039605, 0.0], [15.7598877, -4.3053299, 0.0], [15.7598877, -4.3066993, 0.0], [15.761261, -4.3066993, 0.0], [15.761261, -4.3053299, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1380}, "geometry": {"type": "Polygon", "coordinates": [[[15.7832336, -4.3053299, 0.0], [15.7832336, -4.3066993, 0.0], [15.7846069, -4.3066993, 0.0], [15.7846069, -4.3053299, 0.0], [15.7832336, -4.3053299, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1381}, "geometry": {"type": "Polygon", "coordinates": [[[15.7928467, -4.3053299, 0.0], [15.7928467, -4.3066993, 0.0], [15.79422, -4.3066993, 0.0], [15.79422, -4.3053299, 0.0], [15.7928467, -4.3053299, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1382}, "geometry": {"type": "Polygon", "coordinates": [[[15.7736206, -4.3039605, 0.0], [15.7736206, -4.3053299, 0.0], [15.7749939, -4.3053299, 0.0], [15.7749939, -4.3039605, 0.0], [15.7736206, -4.3039605, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1383}, "geometry": {"type": "Polygon", "coordinates": [[[15.827179, -4.3039605, 0.0], [15.827179, -4.3025911, 0.0], [15.8258057, -4.3025911, 0.0], [15.8244324, -4.3025911, 0.0], [15.8244324, -4.3039605, 0.0], [15.8244324, -4.3053299, 0.0], [15.8258057, -4.3053299, 0.0], [15.827179, -4.3053299, 0.0], [15.8285522, -4.3053299, 0.0], [15.8299255, -4.3053299, 0.0], [15.8299255, -4.3039605, 0.0], [15.8285522, -4.3039605, 0.0], [15.827179, -4.3039605, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1384}, "geometry": {"type": "Polygon", "coordinates": [[[15.8052063, -4.3039605, 0.0], [15.8065796, -4.3039605, 0.0], [15.8065796, -4.3025911, 0.0], [15.8052063, -4.3025911, 0.0], [15.803833, -4.3025911, 0.0], [15.803833, -4.3039605, 0.0], [15.803833, -4.3053299, 0.0], [15.8052063, -4.3053299, 0.0], [15.8052063, -4.3039605, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1385}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.3039605, 0.0], [15.7667542, -4.3053299, 0.0], [15.7681274, -4.3053299, 0.0], [15.7695007, -4.3053299, 0.0], [15.7695007, -4.3039605, 0.0], [15.7681274, -4.3039605, 0.0], [15.7667542, -4.3039605, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1386}, "geometry": {"type": "Polygon", "coordinates": [[[15.8670044, -4.3025911, 0.0], [15.8670044, -4.3039605, 0.0], [15.8683777, -4.3039605, 0.0], [15.869751, -4.3039605, 0.0], [15.869751, -4.3025911, 0.0], [15.8683777, -4.3025911, 0.0], [15.8670044, -4.3025911, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1387}, "geometry": {"type": "Polygon", "coordinates": [[[15.9741211, -4.3025911, 0.0], [15.9741211, -4.3012217, 0.0], [15.9727478, -4.3012217, 0.0], [15.9727478, -4.3025911, 0.0], [15.9727478, -4.3039605, 0.0], [15.9741211, -4.3039605, 0.0], [15.9741211, -4.3025911, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1388}, "geometry": {"type": "Polygon", "coordinates": [[[15.7022095, -4.3025911, 0.0], [15.7022095, -4.3039605, 0.0], [15.7035828, -4.3039605, 0.0], [15.7035828, -4.3025911, 0.0], [15.7022095, -4.3025911, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1389}, "geometry": {"type": "Polygon", "coordinates": [[[15.770874, -4.3025911, 0.0], [15.770874, -4.3039605, 0.0], [15.7722473, -4.3039605, 0.0], [15.7736206, -4.3039605, 0.0], [15.7736206, -4.3025911, 0.0], [15.7722473, -4.3025911, 0.0], [15.770874, -4.3025911, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1390}, "geometry": {"type": "Polygon", "coordinates": [[[15.9658813, -4.3025911, 0.0], [15.9658813, -4.3039605, 0.0], [15.9672546, -4.3039605, 0.0], [15.9672546, -4.3025911, 0.0], [15.9658813, -4.3025911, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1391}, "geometry": {"type": "Polygon", "coordinates": [[[15.8148193, -4.3025911, 0.0], [15.8148193, -4.3039605, 0.0], [15.8161926, -4.3039605, 0.0], [15.8161926, -4.3025911, 0.0], [15.8148193, -4.3025911, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1392}, "geometry": {"type": "Polygon", "coordinates": [[[15.8120728, -4.3025911, 0.0], [15.8120728, -4.3039605, 0.0], [15.813446, -4.3039605, 0.0], [15.813446, -4.3025911, 0.0], [15.8120728, -4.3025911, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1393}, "geometry": {"type": "Polygon", "coordinates": [[[15.7763672, -4.3025911, 0.0], [15.7763672, -4.3039605, 0.0], [15.7777405, -4.3039605, 0.0], [15.7777405, -4.3025911, 0.0], [15.7763672, -4.3025911, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1394}, "geometry": {"type": "Polygon", "coordinates": [[[15.8079529, -4.3012217, 0.0], [15.8079529, -4.2998522, 0.0], [15.8079529, -4.2984828, 0.0], [15.8065796, -4.2984828, 0.0], [15.8065796, -4.2998522, 0.0], [15.8065796, -4.3012217, 0.0], [15.8065796, -4.3025911, 0.0], [15.8079529, -4.3025911, 0.0], [15.8079529, -4.3012217, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1395}, "geometry": {"type": "Polygon", "coordinates": [[[15.68573, -4.3012217, 0.0], [15.68573, -4.3025911, 0.0], [15.6871033, -4.3025911, 0.0], [15.6871033, -4.3012217, 0.0], [15.68573, -4.3012217, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1396}, "geometry": {"type": "Polygon", "coordinates": [[[15.8161926, -4.3012217, 0.0], [15.8161926, -4.3025911, 0.0], [15.8175659, -4.3025911, 0.0], [15.8189392, -4.3025911, 0.0], [15.8189392, -4.3012217, 0.0], [15.8175659, -4.3012217, 0.0], [15.8161926, -4.3012217, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1397}, "geometry": {"type": "Polygon", "coordinates": [[[15.9892273, -4.3012217, 0.0], [15.9892273, -4.3025911, 0.0], [15.9906006, -4.3025911, 0.0], [15.9906006, -4.3012217, 0.0], [15.9892273, -4.3012217, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1398}, "geometry": {"type": "Polygon", "coordinates": [[[15.945282, -4.3012217, 0.0], [15.945282, -4.2998522, 0.0], [15.9439087, -4.2998522, 0.0], [15.9439087, -4.3012217, 0.0], [15.9425354, -4.3012217, 0.0], [15.9425354, -4.3025911, 0.0], [15.9439087, -4.3025911, 0.0], [15.945282, -4.3025911, 0.0], [15.945282, -4.3012217, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1399}, "geometry": {"type": "Polygon", "coordinates": [[[15.9013367, -4.3012217, 0.0], [15.9013367, -4.2998522, 0.0], [15.8999634, -4.2998522, 0.0], [15.8999634, -4.3012217, 0.0], [15.8999634, -4.3025911, 0.0], [15.9013367, -4.3025911, 0.0], [15.9013367, -4.3012217, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1400}, "geometry": {"type": "Polygon", "coordinates": [[[15.9507751, -4.2998522, 0.0], [15.9507751, -4.3012217, 0.0], [15.9521484, -4.3012217, 0.0], [15.9521484, -4.2998522, 0.0], [15.9507751, -4.2998522, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1401}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.2998522, 0.0], [15.7557678, -4.3012217, 0.0], [15.7571411, -4.3012217, 0.0], [15.7571411, -4.2998522, 0.0], [15.7557678, -4.2998522, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1402}, "geometry": {"type": "Polygon", "coordinates": [[[15.827179, -4.2998522, 0.0], [15.8285522, -4.2998522, 0.0], [15.8299255, -4.2998522, 0.0], [15.8299255, -4.2984828, 0.0], [15.8299255, -4.2971134, 0.0], [15.8312988, -4.2971134, 0.0], [15.8312988, -4.2957439, 0.0], [15.8299255, -4.2957439, 0.0], [15.8285522, -4.2957439, 0.0], [15.827179, -4.2957439, 0.0], [15.827179, -4.2943745, 0.0], [15.8285522, -4.2943745, 0.0], [15.8285522, -4.2930051, 0.0], [15.8285522, -4.2916356, 0.0], [15.827179, -4.2916356, 0.0], [15.8258057, -4.2916356, 0.0], [15.8258057, -4.2930051, 0.0], [15.8244324, -4.2930051, 0.0], [15.8244324, -4.2943745, 0.0], [15.8244324, -4.2957439, 0.0], [15.8230591, -4.2957439, 0.0], [15.8230591, -4.2971134, 0.0], [15.8244324, -4.2971134, 0.0], [15.8244324, -4.2984828, 0.0], [15.8258057, -4.2984828, 0.0], [15.8258057, -4.2998522, 0.0], [15.8258057, -4.3012217, 0.0], [15.827179, -4.3012217, 0.0], [15.827179, -4.2998522, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1403}, "geometry": {"type": "Polygon", "coordinates": [[[15.8670044, -4.2984828, 0.0], [15.8670044, -4.2971134, 0.0], [15.8656311, -4.2971134, 0.0], [15.8656311, -4.2984828, 0.0], [15.8656311, -4.2998522, 0.0], [15.8670044, -4.2998522, 0.0], [15.8670044, -4.2984828, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1404}, "geometry": {"type": "Polygon", "coordinates": [[[15.8381653, -4.2984828, 0.0], [15.8381653, -4.2971134, 0.0], [15.836792, -4.2971134, 0.0], [15.836792, -4.2984828, 0.0], [15.836792, -4.2998522, 0.0], [15.8381653, -4.2998522, 0.0], [15.8381653, -4.2984828, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1405}, "geometry": {"type": "Polygon", "coordinates": [[[15.8807373, -4.2984828, 0.0], [15.8807373, -4.2998522, 0.0], [15.8821106, -4.2998522, 0.0], [15.8821106, -4.2984828, 0.0], [15.8807373, -4.2984828, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1406}, "geometry": {"type": "Polygon", "coordinates": [[[15.7749939, -4.2984828, 0.0], [15.7749939, -4.2998522, 0.0], [15.7763672, -4.2998522, 0.0], [15.7777405, -4.2998522, 0.0], [15.7777405, -4.2984828, 0.0], [15.7763672, -4.2984828, 0.0], [15.7749939, -4.2984828, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1407}, "geometry": {"type": "Polygon", "coordinates": [[[15.7955933, -4.2971134, 0.0], [15.79422, -4.2971134, 0.0], [15.79422, -4.2984828, 0.0], [15.79422, -4.2998522, 0.0], [15.7955933, -4.2998522, 0.0], [15.7969666, -4.2998522, 0.0], [15.7969666, -4.2984828, 0.0], [15.7969666, -4.2971134, 0.0], [15.7955933, -4.2971134, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1408}, "geometry": {"type": "Polygon", "coordinates": [[[15.8312988, -4.2971134, 0.0], [15.8312988, -4.2984828, 0.0], [15.8326721, -4.2984828, 0.0], [15.8326721, -4.2971134, 0.0], [15.8312988, -4.2971134, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1409}, "geometry": {"type": "Polygon", "coordinates": [[[15.8148193, -4.2971134, 0.0], [15.8148193, -4.2984828, 0.0], [15.8161926, -4.2984828, 0.0], [15.8161926, -4.2971134, 0.0], [15.8148193, -4.2971134, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1410}, "geometry": {"type": "Polygon", "coordinates": [[[15.7722473, -4.2971134, 0.0], [15.7722473, -4.2957439, 0.0], [15.770874, -4.2957439, 0.0], [15.770874, -4.2971134, 0.0], [15.770874, -4.2984828, 0.0], [15.7722473, -4.2984828, 0.0], [15.7722473, -4.2971134, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1411}, "geometry": {"type": "Polygon", "coordinates": [[[15.6925964, -4.2971134, 0.0], [15.6925964, -4.2984828, 0.0], [15.6939697, -4.2984828, 0.0], [15.6939697, -4.2971134, 0.0], [15.6925964, -4.2971134, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1412}, "geometry": {"type": "Polygon", "coordinates": [[[15.7516479, -4.2971134, 0.0], [15.7516479, -4.2984828, 0.0], [15.7530212, -4.2984828, 0.0], [15.7530212, -4.2971134, 0.0], [15.7516479, -4.2971134, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1413}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.2957439, 0.0], [15.7557678, -4.2971134, 0.0], [15.7571411, -4.2971134, 0.0], [15.7571411, -4.2957439, 0.0], [15.7557678, -4.2957439, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1414}, "geometry": {"type": "Polygon", "coordinates": [[[15.8546448, -4.2957439, 0.0], [15.8546448, -4.2971134, 0.0], [15.8560181, -4.2971134, 0.0], [15.8560181, -4.2957439, 0.0], [15.8546448, -4.2957439, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1415}, "geometry": {"type": "Polygon", "coordinates": [[[15.8340454, -4.2957439, 0.0], [15.8340454, -4.2971134, 0.0], [15.8354187, -4.2971134, 0.0], [15.8354187, -4.2957439, 0.0], [15.8340454, -4.2957439, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1416}, "geometry": {"type": "Polygon", "coordinates": [[[15.7749939, -4.2957439, 0.0], [15.7749939, -4.2943745, 0.0], [15.7736206, -4.2943745, 0.0], [15.7736206, -4.2957439, 0.0], [15.7736206, -4.2971134, 0.0], [15.7749939, -4.2971134, 0.0], [15.7749939, -4.2957439, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1417}, "geometry": {"type": "Polygon", "coordinates": [[[15.8436584, -4.2943745, 0.0], [15.8422852, -4.2943745, 0.0], [15.8422852, -4.2957439, 0.0], [15.8436584, -4.2957439, 0.0], [15.8450317, -4.2957439, 0.0], [15.8450317, -4.2943745, 0.0], [15.8436584, -4.2943745, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1418}, "geometry": {"type": "Polygon", "coordinates": [[[15.9082031, -4.2943745, 0.0], [15.9082031, -4.2957439, 0.0], [15.9095764, -4.2957439, 0.0], [15.9095764, -4.2943745, 0.0], [15.9082031, -4.2943745, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1419}, "geometry": {"type": "Polygon", "coordinates": [[[15.9054565, -4.2943745, 0.0], [15.9054565, -4.2957439, 0.0], [15.9068298, -4.2957439, 0.0], [15.9068298, -4.2943745, 0.0], [15.9054565, -4.2943745, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1420}, "geometry": {"type": "Polygon", "coordinates": [[[15.836792, -4.2943745, 0.0], [15.836792, -4.2957439, 0.0], [15.8381653, -4.2957439, 0.0], [15.8381653, -4.2943745, 0.0], [15.836792, -4.2943745, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1421}, "geometry": {"type": "Polygon", "coordinates": [[[15.6898499, -4.2943745, 0.0], [15.6898499, -4.2930051, 0.0], [15.6884766, -4.2930051, 0.0], [15.6871033, -4.2930051, 0.0], [15.6871033, -4.2943745, 0.0], [15.6884766, -4.2943745, 0.0], [15.6884766, -4.2957439, 0.0], [15.6898499, -4.2957439, 0.0], [15.6912231, -4.2957439, 0.0], [15.6912231, -4.2943745, 0.0], [15.6898499, -4.2943745, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1422}, "geometry": {"type": "Polygon", "coordinates": [[[15.7543945, -4.2943745, 0.0], [15.7543945, -4.2957439, 0.0], [15.7557678, -4.2957439, 0.0], [15.7557678, -4.2943745, 0.0], [15.7543945, -4.2943745, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1423}, "geometry": {"type": "Polygon", "coordinates": [[[15.7598877, -4.2943745, 0.0], [15.7598877, -4.2957439, 0.0], [15.761261, -4.2957439, 0.0], [15.7626343, -4.2957439, 0.0], [15.7626343, -4.2943745, 0.0], [15.761261, -4.2943745, 0.0], [15.7598877, -4.2943745, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1424}, "geometry": {"type": "Polygon", "coordinates": [[[15.9233093, -4.2930051, 0.0], [15.9233093, -4.2943745, 0.0], [15.9246826, -4.2943745, 0.0], [15.9246826, -4.2930051, 0.0], [15.9233093, -4.2930051, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1425}, "geometry": {"type": "Polygon", "coordinates": [[[15.7681274, -4.2943745, 0.0], [15.7681274, -4.2957439, 0.0], [15.7695007, -4.2957439, 0.0], [15.770874, -4.2957439, 0.0], [15.770874, -4.2943745, 0.0], [15.7695007, -4.2943745, 0.0], [15.7681274, -4.2943745, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1426}, "geometry": {"type": "Polygon", "coordinates": [[[15.7571411, -4.2943745, 0.0], [15.7585144, -4.2943745, 0.0], [15.7585144, -4.2930051, 0.0], [15.7571411, -4.2930051, 0.0], [15.7571411, -4.2916356, 0.0], [15.7557678, -4.2916356, 0.0], [15.7557678, -4.2930051, 0.0], [15.7557678, -4.2943745, 0.0], [15.7571411, -4.2943745, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1427}, "geometry": {"type": "Polygon", "coordinates": [[[15.7653809, -4.2930051, 0.0], [15.7667542, -4.2930051, 0.0], [15.7667542, -4.2916356, 0.0], [15.7653809, -4.2916356, 0.0], [15.7640076, -4.2916356, 0.0], [15.7640076, -4.2930051, 0.0], [15.7626343, -4.2930051, 0.0], [15.7626343, -4.2943745, 0.0], [15.7640076, -4.2943745, 0.0], [15.7653809, -4.2943745, 0.0], [15.7653809, -4.2930051, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1428}, "geometry": {"type": "Polygon", "coordinates": [[[15.8573914, -4.2930051, 0.0], [15.8573914, -4.2943745, 0.0], [15.8587646, -4.2943745, 0.0], [15.8587646, -4.2930051, 0.0], [15.8573914, -4.2930051, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1429}, "geometry": {"type": "Polygon", "coordinates": [[[15.8711243, -4.2930051, 0.0], [15.8711243, -4.2943745, 0.0], [15.8724976, -4.2943745, 0.0], [15.8724976, -4.2930051, 0.0], [15.8711243, -4.2930051, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1430}, "geometry": {"type": "Polygon", "coordinates": [[[15.9658813, -4.2916356, 0.0], [15.9658813, -4.2902662, 0.0], [15.9658813, -4.2888967, 0.0], [15.9658813, -4.2875273, 0.0], [15.9658813, -4.2861579, 0.0], [15.9645081, -4.2861579, 0.0], [15.9631348, -4.2861579, 0.0], [15.9617615, -4.2861579, 0.0], [15.9603882, -4.2861579, 0.0], [15.9590149, -4.2861579, 0.0], [15.9590149, -4.2875273, 0.0], [15.9590149, -4.2888967, 0.0], [15.9603882, -4.2888967, 0.0], [15.9603882, -4.2902662, 0.0], [15.9603882, -4.2916356, 0.0], [15.9617615, -4.2916356, 0.0], [15.9617615, -4.2930051, 0.0], [15.9631348, -4.2930051, 0.0], [15.9645081, -4.2930051, 0.0], [15.9658813, -4.2930051, 0.0], [15.9658813, -4.2916356, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1431}, "geometry": {"type": "Polygon", "coordinates": [[[15.7475281, -4.2916356, 0.0], [15.7475281, -4.2902662, 0.0], [15.7461548, -4.2902662, 0.0], [15.7461548, -4.2916356, 0.0], [15.7461548, -4.2930051, 0.0], [15.7475281, -4.2930051, 0.0], [15.7475281, -4.2916356, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1432}, "geometry": {"type": "Polygon", "coordinates": [[[15.761261, -4.2916356, 0.0], [15.761261, -4.2930051, 0.0], [15.7626343, -4.2930051, 0.0], [15.7626343, -4.2916356, 0.0], [15.761261, -4.2916356, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1433}, "geometry": {"type": "Polygon", "coordinates": [[[15.9274292, -4.2916356, 0.0], [15.9274292, -4.2902662, 0.0], [15.9274292, -4.2888967, 0.0], [15.9260559, -4.2888967, 0.0], [15.9260559, -4.2902662, 0.0], [15.9260559, -4.2916356, 0.0], [15.9260559, -4.2930051, 0.0], [15.9274292, -4.2930051, 0.0], [15.9274292, -4.2916356, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1434}, "geometry": {"type": "Polygon", "coordinates": [[[15.8821106, -4.2916356, 0.0], [15.8821106, -4.2930051, 0.0], [15.8834839, -4.2930051, 0.0], [15.8834839, -4.2916356, 0.0], [15.8821106, -4.2916356, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1435}, "geometry": {"type": "Polygon", "coordinates": [[[15.8999634, -4.2916356, 0.0], [15.8999634, -4.2930051, 0.0], [15.9013367, -4.2930051, 0.0], [15.90271, -4.2930051, 0.0], [15.90271, -4.2916356, 0.0], [15.9013367, -4.2916356, 0.0], [15.8999634, -4.2916356, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1436}, "geometry": {"type": "Polygon", "coordinates": [[[15.9068298, -4.2916356, 0.0], [15.9082031, -4.2916356, 0.0], [15.9082031, -4.2902662, 0.0], [15.9068298, -4.2902662, 0.0], [15.9054565, -4.2902662, 0.0], [15.9054565, -4.2916356, 0.0], [15.9040833, -4.2916356, 0.0], [15.9040833, -4.2930051, 0.0], [15.9054565, -4.2930051, 0.0], [15.9068298, -4.2930051, 0.0], [15.9068298, -4.2916356, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1437}, "geometry": {"type": "Polygon", "coordinates": [[[15.7749939, -4.2902662, 0.0], [15.7763672, -4.2902662, 0.0], [15.7763672, -4.2888967, 0.0], [15.7763672, -4.2875273, 0.0], [15.7749939, -4.2875273, 0.0], [15.7736206, -4.2875273, 0.0], [15.7736206, -4.2888967, 0.0], [15.7722473, -4.2888967, 0.0], [15.7722473, -4.2902662, 0.0], [15.7736206, -4.2902662, 0.0], [15.7736206, -4.2916356, 0.0], [15.7749939, -4.2916356, 0.0], [15.7749939, -4.2902662, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1438}, "geometry": {"type": "Polygon", "coordinates": [[[15.8065796, -4.2902662, 0.0], [15.8065796, -4.2888967, 0.0], [15.8052063, -4.2888967, 0.0], [15.8052063, -4.2902662, 0.0], [15.8052063, -4.2916356, 0.0], [15.8065796, -4.2916356, 0.0], [15.8065796, -4.2902662, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1439}, "geometry": {"type": "Polygon", "coordinates": [[[15.8395386, -4.2902662, 0.0], [15.8395386, -4.2916356, 0.0], [15.8409119, -4.2916356, 0.0], [15.8422852, -4.2916356, 0.0], [15.8422852, -4.2902662, 0.0], [15.8409119, -4.2902662, 0.0], [15.8395386, -4.2902662, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1440}, "geometry": {"type": "Polygon", "coordinates": [[[15.7626343, -4.2902662, 0.0], [15.7626343, -4.2916356, 0.0], [15.7640076, -4.2916356, 0.0], [15.7640076, -4.2902662, 0.0], [15.7626343, -4.2902662, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1441}, "geometry": {"type": "Polygon", "coordinates": [[[15.90271, -4.2902662, 0.0], [15.90271, -4.2916356, 0.0], [15.9040833, -4.2916356, 0.0], [15.9040833, -4.2902662, 0.0], [15.90271, -4.2902662, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1442}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -4.2888967, 0.0], [15.7543945, -4.2888967, 0.0], [15.7543945, -4.2875273, 0.0], [15.7530212, -4.2875273, 0.0], [15.7516479, -4.2875273, 0.0], [15.7516479, -4.2861579, 0.0], [15.7516479, -4.2847884, 0.0], [15.7502747, -4.2847884, 0.0], [15.7502747, -4.2834189, 0.0], [15.7502747, -4.2820495, 0.0], [15.7489014, -4.2820495, 0.0], [15.7475281, -4.2820495, 0.0], [15.7475281, -4.2834189, 0.0], [15.7475281, -4.2847884, 0.0], [15.7489014, -4.2847884, 0.0], [15.7489014, -4.2861579, 0.0], [15.7502747, -4.2861579, 0.0], [15.7502747, -4.2875273, 0.0], [15.7502747, -4.2888967, 0.0], [15.7516479, -4.2888967, 0.0], [15.7516479, -4.2902662, 0.0], [15.7530212, -4.2902662, 0.0], [15.7530212, -4.2888967, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1443}, "geometry": {"type": "Polygon", "coordinates": [[[15.7681274, -4.2888967, 0.0], [15.7681274, -4.2902662, 0.0], [15.7695007, -4.2902662, 0.0], [15.7695007, -4.2888967, 0.0], [15.7681274, -4.2888967, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1444}, "geometry": {"type": "Polygon", "coordinates": [[[15.8573914, -4.2888967, 0.0], [15.8560181, -4.2888967, 0.0], [15.8560181, -4.2902662, 0.0], [15.8573914, -4.2902662, 0.0], [15.8587646, -4.2902662, 0.0], [15.8587646, -4.2888967, 0.0], [15.8573914, -4.2888967, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1445}, "geometry": {"type": "Polygon", "coordinates": [[[15.8244324, -4.2888967, 0.0], [15.8244324, -4.2902662, 0.0], [15.8258057, -4.2902662, 0.0], [15.8258057, -4.2888967, 0.0], [15.8244324, -4.2888967, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1446}, "geometry": {"type": "Polygon", "coordinates": [[[15.8436584, -4.2888967, 0.0], [15.8436584, -4.2875273, 0.0], [15.8422852, -4.2875273, 0.0], [15.8422852, -4.2888967, 0.0], [15.8422852, -4.2902662, 0.0], [15.8436584, -4.2902662, 0.0], [15.8436584, -4.2888967, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1447}, "geometry": {"type": "Polygon", "coordinates": [[[15.9274292, -4.2875273, 0.0], [15.9274292, -4.2888967, 0.0], [15.9288025, -4.2888967, 0.0], [15.9288025, -4.2875273, 0.0], [15.9274292, -4.2875273, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1448}, "geometry": {"type": "Polygon", "coordinates": [[[15.8656311, -4.2875273, 0.0], [15.8656311, -4.2888967, 0.0], [15.8670044, -4.2888967, 0.0], [15.8670044, -4.2875273, 0.0], [15.8656311, -4.2875273, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1449}, "geometry": {"type": "Polygon", "coordinates": [[[15.8711243, -4.2875273, 0.0], [15.8711243, -4.2888967, 0.0], [15.8724976, -4.2888967, 0.0], [15.8724976, -4.2875273, 0.0], [15.8711243, -4.2875273, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1450}, "geometry": {"type": "Polygon", "coordinates": [[[15.8752441, -4.2875273, 0.0], [15.8752441, -4.2888967, 0.0], [15.8766174, -4.2888967, 0.0], [15.8766174, -4.2875273, 0.0], [15.8752441, -4.2875273, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1451}, "geometry": {"type": "Polygon", "coordinates": [[[15.9727478, -4.2875273, 0.0], [15.9727478, -4.2888967, 0.0], [15.9741211, -4.2888967, 0.0], [15.9741211, -4.2875273, 0.0], [15.9727478, -4.2875273, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1452}, "geometry": {"type": "Polygon", "coordinates": [[[15.8670044, -4.2861579, 0.0], [15.8670044, -4.2875273, 0.0], [15.8683777, -4.2875273, 0.0], [15.8683777, -4.2861579, 0.0], [15.8670044, -4.2861579, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1453}, "geometry": {"type": "Polygon", "coordinates": [[[15.9370422, -4.2861579, 0.0], [15.9370422, -4.2847884, 0.0], [15.9356689, -4.2847884, 0.0], [15.9342957, -4.2847884, 0.0], [15.9329224, -4.2847884, 0.0], [15.9329224, -4.2834189, 0.0], [15.9315491, -4.2834189, 0.0], [15.9301758, -4.2834189, 0.0], [15.9288025, -4.2834189, 0.0], [15.9274292, -4.2834189, 0.0], [15.9274292, -4.2820495, 0.0], [15.9260559, -4.2820495, 0.0], [15.9260559, -4.28068, 0.0], [15.9260559, -4.2793106, 0.0], [15.9260559, -4.2779411, 0.0], [15.9246826, -4.2779411, 0.0], [15.9233093, -4.2779411, 0.0], [15.9233093, -4.2793106, 0.0], [15.921936, -4.2793106, 0.0], [15.9205627, -4.2793106, 0.0], [15.9191895, -4.2793106, 0.0], [15.9178162, -4.2793106, 0.0], [15.9178162, -4.2779411, 0.0], [15.9164429, -4.2779411, 0.0], [15.9150696, -4.2779411, 0.0], [15.9136963, -4.2779411, 0.0], [15.9136963, -4.2793106, 0.0], [15.912323, -4.2793106, 0.0], [15.9109497, -4.2793106, 0.0], [15.9109497, -4.28068, 0.0], [15.912323, -4.28068, 0.0], [15.9136963, -4.28068, 0.0], [15.9136963, -4.2820495, 0.0], [15.9150696, -4.2820495, 0.0], [15.9164429, -4.2820495, 0.0], [15.9178162, -4.2820495, 0.0], [15.9191895, -4.2820495, 0.0], [15.9205627, -4.2820495, 0.0], [15.9205627, -4.2834189, 0.0], [15.921936, -4.2834189, 0.0], [15.9233093, -4.2834189, 0.0], [15.9233093, -4.2847884, 0.0], [15.9233093, -4.2861579, 0.0], [15.9246826, -4.2861579, 0.0], [15.9260559, -4.2861579, 0.0], [15.9274292, -4.2861579, 0.0], [15.9288025, -4.2861579, 0.0], [15.9301758, -4.2861579, 0.0], [15.9315491, -4.2861579, 0.0], [15.9329224, -4.2861579, 0.0], [15.9342957, -4.2861579, 0.0], [15.9356689, -4.2861579, 0.0], [15.9356689, -4.2875273, 0.0], [15.9370422, -4.2875273, 0.0], [15.9370422, -4.2861579, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1454}, "geometry": {"type": "Polygon", "coordinates": [[[15.8175659, -4.2861579, 0.0], [15.8175659, -4.2875273, 0.0], [15.8189392, -4.2875273, 0.0], [15.8189392, -4.2861579, 0.0], [15.8175659, -4.2861579, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1455}, "geometry": {"type": "Polygon", "coordinates": [[[15.8354187, -4.2861579, 0.0], [15.8354187, -4.2875273, 0.0], [15.836792, -4.2875273, 0.0], [15.836792, -4.2861579, 0.0], [15.8354187, -4.2861579, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1456}, "geometry": {"type": "Polygon", "coordinates": [[[15.8821106, -4.2861579, 0.0], [15.8807373, -4.2861579, 0.0], [15.8807373, -4.2875273, 0.0], [15.8821106, -4.2875273, 0.0], [15.8834839, -4.2875273, 0.0], [15.8834839, -4.2861579, 0.0], [15.8821106, -4.2861579, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1457}, "geometry": {"type": "Polygon", "coordinates": [[[15.8381653, -4.2847884, 0.0], [15.836792, -4.2847884, 0.0], [15.836792, -4.2861579, 0.0], [15.8381653, -4.2861579, 0.0], [15.8395386, -4.2861579, 0.0], [15.8409119, -4.2861579, 0.0], [15.8409119, -4.2847884, 0.0], [15.8395386, -4.2847884, 0.0], [15.8381653, -4.2847884, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1458}, "geometry": {"type": "Polygon", "coordinates": [[[15.79422, -4.2847884, 0.0], [15.79422, -4.2834189, 0.0], [15.7928467, -4.2834189, 0.0], [15.7914734, -4.2834189, 0.0], [15.7914734, -4.2847884, 0.0], [15.7928467, -4.2847884, 0.0], [15.7928467, -4.2861579, 0.0], [15.79422, -4.2861579, 0.0], [15.79422, -4.2847884, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1459}, "geometry": {"type": "Polygon", "coordinates": [[[15.8628845, -4.2847884, 0.0], [15.8628845, -4.2861579, 0.0], [15.8642578, -4.2861579, 0.0], [15.8642578, -4.2847884, 0.0], [15.8628845, -4.2847884, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1460}, "geometry": {"type": "Polygon", "coordinates": [[[15.945282, -4.2847884, 0.0], [15.945282, -4.2861579, 0.0], [15.9466553, -4.2861579, 0.0], [15.9466553, -4.2847884, 0.0], [15.945282, -4.2847884, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1461}, "geometry": {"type": "Polygon", "coordinates": [[[15.8862305, -4.2847884, 0.0], [15.8862305, -4.2834189, 0.0], [15.8848572, -4.2834189, 0.0], [15.8834839, -4.2834189, 0.0], [15.8834839, -4.2847884, 0.0], [15.8848572, -4.2847884, 0.0], [15.8848572, -4.2861579, 0.0], [15.8862305, -4.2861579, 0.0], [15.8862305, -4.2847884, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1462}, "geometry": {"type": "Polygon", "coordinates": [[[15.879364, -4.2847884, 0.0], [15.8807373, -4.2847884, 0.0], [15.8821106, -4.2847884, 0.0], [15.8821106, -4.2834189, 0.0], [15.8807373, -4.2834189, 0.0], [15.879364, -4.2834189, 0.0], [15.8779907, -4.2834189, 0.0], [15.8779907, -4.2847884, 0.0], [15.8766174, -4.2847884, 0.0], [15.8766174, -4.2861579, 0.0], [15.8779907, -4.2861579, 0.0], [15.879364, -4.2861579, 0.0], [15.879364, -4.2847884, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1463}, "geometry": {"type": "Polygon", "coordinates": [[[15.9713745, -4.2847884, 0.0], [15.9713745, -4.2861579, 0.0], [15.9727478, -4.2861579, 0.0], [15.9727478, -4.2847884, 0.0], [15.9713745, -4.2847884, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1464}, "geometry": {"type": "Polygon", "coordinates": [[[15.7351685, -4.2834189, 0.0], [15.7351685, -4.2847884, 0.0], [15.7365417, -4.2847884, 0.0], [15.7365417, -4.2834189, 0.0], [15.7351685, -4.2834189, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1465}, "geometry": {"type": "Polygon", "coordinates": [[[15.8518982, -4.2834189, 0.0], [15.8518982, -4.2820495, 0.0], [15.8505249, -4.2820495, 0.0], [15.8505249, -4.2834189, 0.0], [15.8491516, -4.2834189, 0.0], [15.8491516, -4.2847884, 0.0], [15.8505249, -4.2847884, 0.0], [15.8518982, -4.2847884, 0.0], [15.8518982, -4.2834189, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1466}, "geometry": {"type": "Polygon", "coordinates": [[[15.8299255, -4.2834189, 0.0], [15.8299255, -4.2820495, 0.0], [15.8285522, -4.2820495, 0.0], [15.8285522, -4.2834189, 0.0], [15.8285522, -4.2847884, 0.0], [15.8299255, -4.2847884, 0.0], [15.8299255, -4.2834189, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1467}, "geometry": {"type": "Polygon", "coordinates": [[[15.8106995, -4.2834189, 0.0], [15.8106995, -4.2847884, 0.0], [15.8120728, -4.2847884, 0.0], [15.8120728, -4.2834189, 0.0], [15.8106995, -4.2834189, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1468}, "geometry": {"type": "Polygon", "coordinates": [[[15.8587646, -4.2834189, 0.0], [15.8587646, -4.2847884, 0.0], [15.8601379, -4.2847884, 0.0], [15.8601379, -4.2834189, 0.0], [15.8587646, -4.2834189, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1469}, "geometry": {"type": "Polygon", "coordinates": [[[15.7777405, -4.2834189, 0.0], [15.7777405, -4.2847884, 0.0], [15.7791138, -4.2847884, 0.0], [15.7791138, -4.2834189, 0.0], [15.7777405, -4.2834189, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1470}, "geometry": {"type": "Polygon", "coordinates": [[[15.9466553, -4.2834189, 0.0], [15.9466553, -4.2847884, 0.0], [15.9480286, -4.2847884, 0.0], [15.9480286, -4.2834189, 0.0], [15.9466553, -4.2834189, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1471}, "geometry": {"type": "Polygon", "coordinates": [[[15.7365417, -4.2820495, 0.0], [15.7365417, -4.2834189, 0.0], [15.737915, -4.2834189, 0.0], [15.737915, -4.2820495, 0.0], [15.7365417, -4.2820495, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1472}, "geometry": {"type": "Polygon", "coordinates": [[[15.7392883, -4.2820495, 0.0], [15.7392883, -4.2834189, 0.0], [15.7406616, -4.2834189, 0.0], [15.7420349, -4.2834189, 0.0], [15.7434082, -4.2834189, 0.0], [15.7434082, -4.2820495, 0.0], [15.7447815, -4.2820495, 0.0], [15.7447815, -4.28068, 0.0], [15.7434082, -4.28068, 0.0], [15.7420349, -4.28068, 0.0], [15.7406616, -4.28068, 0.0], [15.7406616, -4.2820495, 0.0], [15.7392883, -4.2820495, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1473}, "geometry": {"type": "Polygon", "coordinates": [[[15.9370422, -4.2820495, 0.0], [15.9370422, -4.2834189, 0.0], [15.9384155, -4.2834189, 0.0], [15.9384155, -4.2820495, 0.0], [15.9370422, -4.2820495, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1474}, "geometry": {"type": "Polygon", "coordinates": [[[15.8422852, -4.2820495, 0.0], [15.8436584, -4.2820495, 0.0], [15.8436584, -4.28068, 0.0], [15.8422852, -4.28068, 0.0], [15.8409119, -4.28068, 0.0], [15.8409119, -4.2820495, 0.0], [15.8409119, -4.2834189, 0.0], [15.8422852, -4.2834189, 0.0], [15.8422852, -4.2820495, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1475}, "geometry": {"type": "Polygon", "coordinates": [[[15.7736206, -4.2820495, 0.0], [15.7736206, -4.28068, 0.0], [15.7722473, -4.28068, 0.0], [15.770874, -4.28068, 0.0], [15.770874, -4.2820495, 0.0], [15.770874, -4.2834189, 0.0], [15.7722473, -4.2834189, 0.0], [15.7736206, -4.2834189, 0.0], [15.7736206, -4.2820495, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1476}, "geometry": {"type": "Polygon", "coordinates": [[[15.7626343, -4.28068, 0.0], [15.7626343, -4.2820495, 0.0], [15.7640076, -4.2820495, 0.0], [15.7640076, -4.28068, 0.0], [15.7626343, -4.28068, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1477}, "geometry": {"type": "Polygon", "coordinates": [[[15.8807373, -4.28068, 0.0], [15.8807373, -4.2820495, 0.0], [15.8821106, -4.2820495, 0.0], [15.8821106, -4.28068, 0.0], [15.8807373, -4.28068, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1478}, "geometry": {"type": "Polygon", "coordinates": [[[15.8752441, -4.28068, 0.0], [15.8752441, -4.2820495, 0.0], [15.8766174, -4.2820495, 0.0], [15.8766174, -4.28068, 0.0], [15.8752441, -4.28068, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1479}, "geometry": {"type": "Polygon", "coordinates": [[[15.7681274, -4.28068, 0.0], [15.7681274, -4.2820495, 0.0], [15.7695007, -4.2820495, 0.0], [15.7695007, -4.28068, 0.0], [15.7681274, -4.28068, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1480}, "geometry": {"type": "Polygon", "coordinates": [[[15.9700012, -4.2793106, 0.0], [15.9700012, -4.28068, 0.0], [15.9713745, -4.28068, 0.0], [15.9727478, -4.28068, 0.0], [15.9727478, -4.2793106, 0.0], [15.9713745, -4.2793106, 0.0], [15.9700012, -4.2793106, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1481}, "geometry": {"type": "Polygon", "coordinates": [[[15.9494019, -4.2793106, 0.0], [15.9494019, -4.2779411, 0.0], [15.9480286, -4.2779411, 0.0], [15.9480286, -4.2793106, 0.0], [15.9480286, -4.28068, 0.0], [15.9494019, -4.28068, 0.0], [15.9494019, -4.2793106, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1482}, "geometry": {"type": "Polygon", "coordinates": [[[15.7846069, -4.2793106, 0.0], [15.7846069, -4.2779411, 0.0], [15.7832336, -4.2779411, 0.0], [15.7832336, -4.2765716, 0.0], [15.7818604, -4.2765716, 0.0], [15.7804871, -4.2765716, 0.0], [15.7804871, -4.2779411, 0.0], [15.7818604, -4.2779411, 0.0], [15.7818604, -4.2793106, 0.0], [15.7818604, -4.28068, 0.0], [15.7832336, -4.28068, 0.0], [15.7846069, -4.28068, 0.0], [15.7846069, -4.2793106, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1483}, "geometry": {"type": "Polygon", "coordinates": [[[15.8065796, -4.2793106, 0.0], [15.8065796, -4.28068, 0.0], [15.8079529, -4.28068, 0.0], [15.8079529, -4.2793106, 0.0], [15.8065796, -4.2793106, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1484}, "geometry": {"type": "Polygon", "coordinates": [[[15.879364, -4.2793106, 0.0], [15.879364, -4.28068, 0.0], [15.8807373, -4.28068, 0.0], [15.8807373, -4.2793106, 0.0], [15.879364, -4.2793106, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1485}, "geometry": {"type": "Polygon", "coordinates": [[[15.9603882, -4.2779411, 0.0], [15.9603882, -4.2793106, 0.0], [15.9617615, -4.2793106, 0.0], [15.9617615, -4.2779411, 0.0], [15.9603882, -4.2779411, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1486}, "geometry": {"type": "Polygon", "coordinates": [[[15.9686279, -4.2793106, 0.0], [15.9700012, -4.2793106, 0.0], [15.9700012, -4.2779411, 0.0], [15.9686279, -4.2779411, 0.0], [15.9686279, -4.2765716, 0.0], [15.9672546, -4.2765716, 0.0], [15.9672546, -4.2779411, 0.0], [15.9672546, -4.2793106, 0.0], [15.9686279, -4.2793106, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1487}, "geometry": {"type": "Polygon", "coordinates": [[[15.7447815, -4.2779411, 0.0], [15.7447815, -4.2793106, 0.0], [15.7461548, -4.2793106, 0.0], [15.7461548, -4.2779411, 0.0], [15.7447815, -4.2779411, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1488}, "geometry": {"type": "Polygon", "coordinates": [[[15.7736206, -4.2779411, 0.0], [15.7722473, -4.2779411, 0.0], [15.7722473, -4.2793106, 0.0], [15.7736206, -4.2793106, 0.0], [15.7749939, -4.2793106, 0.0], [15.7749939, -4.2779411, 0.0], [15.7736206, -4.2779411, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1489}, "geometry": {"type": "Polygon", "coordinates": [[[15.9054565, -4.2779411, 0.0], [15.9054565, -4.2765716, 0.0], [15.9040833, -4.2765716, 0.0], [15.9040833, -4.2779411, 0.0], [15.9040833, -4.2793106, 0.0], [15.9054565, -4.2793106, 0.0], [15.9054565, -4.2779411, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1490}, "geometry": {"type": "Polygon", "coordinates": [[[15.8148193, -4.2779411, 0.0], [15.8148193, -4.2765716, 0.0], [15.813446, -4.2765716, 0.0], [15.813446, -4.2779411, 0.0], [15.8120728, -4.2779411, 0.0], [15.8120728, -4.2793106, 0.0], [15.813446, -4.2793106, 0.0], [15.8148193, -4.2793106, 0.0], [15.8148193, -4.2779411, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1491}, "geometry": {"type": "Polygon", "coordinates": [[[15.7640076, -4.2765716, 0.0], [15.7640076, -4.2779411, 0.0], [15.7653809, -4.2779411, 0.0], [15.7653809, -4.2765716, 0.0], [15.7640076, -4.2765716, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1492}, "geometry": {"type": "Polygon", "coordinates": [[[15.8779907, -4.2765716, 0.0], [15.8779907, -4.2779411, 0.0], [15.879364, -4.2779411, 0.0], [15.879364, -4.2765716, 0.0], [15.8779907, -4.2765716, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1493}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.2752022, 0.0], [15.7667542, -4.2765716, 0.0], [15.7681274, -4.2765716, 0.0], [15.7681274, -4.2752022, 0.0], [15.7667542, -4.2752022, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1494}, "geometry": {"type": "Polygon", "coordinates": [[[15.9329224, -4.2752022, 0.0], [15.9329224, -4.2765716, 0.0], [15.9342957, -4.2765716, 0.0], [15.9342957, -4.2752022, 0.0], [15.9329224, -4.2752022, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1495}, "geometry": {"type": "Polygon", "coordinates": [[[15.7722473, -4.2752022, 0.0], [15.7722473, -4.2765716, 0.0], [15.7736206, -4.2765716, 0.0], [15.7736206, -4.2752022, 0.0], [15.7722473, -4.2752022, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1496}, "geometry": {"type": "Polygon", "coordinates": [[[15.9274292, -4.2752022, 0.0], [15.9274292, -4.2765716, 0.0], [15.9288025, -4.2765716, 0.0], [15.9288025, -4.2752022, 0.0], [15.9274292, -4.2752022, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1497}, "geometry": {"type": "Polygon", "coordinates": [[[15.8821106, -4.2752022, 0.0], [15.8821106, -4.2765716, 0.0], [15.8834839, -4.2765716, 0.0], [15.8834839, -4.2752022, 0.0], [15.8821106, -4.2752022, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1498}, "geometry": {"type": "Polygon", "coordinates": [[[15.7502747, -4.2752022, 0.0], [15.7502747, -4.2765716, 0.0], [15.7516479, -4.2765716, 0.0], [15.7516479, -4.2752022, 0.0], [15.7502747, -4.2752022, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1499}, "geometry": {"type": "Polygon", "coordinates": [[[15.6472778, -4.2710938, 0.0], [15.6472778, -4.2724632, 0.0], [15.6486511, -4.2724632, 0.0], [15.6486511, -4.2710938, 0.0], [15.6472778, -4.2710938, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1500}, "geometry": {"type": "Polygon", "coordinates": [[[15.8807373, -4.2710938, 0.0], [15.8807373, -4.2697243, 0.0], [15.879364, -4.2697243, 0.0], [15.8779907, -4.2697243, 0.0], [15.8779907, -4.2710938, 0.0], [15.8779907, -4.2724632, 0.0], [15.879364, -4.2724632, 0.0], [15.8807373, -4.2724632, 0.0], [15.8807373, -4.2710938, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1501}, "geometry": {"type": "Polygon", "coordinates": [[[15.8738708, -4.2697243, 0.0], [15.8738708, -4.2710938, 0.0], [15.8752441, -4.2710938, 0.0], [15.8752441, -4.2697243, 0.0], [15.8738708, -4.2697243, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1502}, "geometry": {"type": "Polygon", "coordinates": [[[15.7351685, -4.2683548, 0.0], [15.7365417, -4.2683548, 0.0], [15.7365417, -4.2669853, 0.0], [15.7351685, -4.2669853, 0.0], [15.7351685, -4.2656158, 0.0], [15.7337952, -4.2656158, 0.0], [15.7337952, -4.2669853, 0.0], [15.7337952, -4.2683548, 0.0], [15.7337952, -4.2697243, 0.0], [15.7351685, -4.2697243, 0.0], [15.7351685, -4.2683548, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1503}, "geometry": {"type": "Polygon", "coordinates": [[[15.7392883, -4.2710938, 0.0], [15.7392883, -4.2724632, 0.0], [15.7406616, -4.2724632, 0.0], [15.7406616, -4.2710938, 0.0], [15.7392883, -4.2710938, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1504}, "geometry": {"type": "Polygon", "coordinates": [[[15.7626343, -4.2710938, 0.0], [15.761261, -4.2710938, 0.0], [15.761261, -4.2724632, 0.0], [15.7626343, -4.2724632, 0.0], [15.7640076, -4.2724632, 0.0], [15.7640076, -4.2710938, 0.0], [15.7626343, -4.2710938, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1505}, "geometry": {"type": "Polygon", "coordinates": [[[15.7818604, -4.2710938, 0.0], [15.7818604, -4.2724632, 0.0], [15.7832336, -4.2724632, 0.0], [15.7832336, -4.2710938, 0.0], [15.7818604, -4.2710938, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1506}, "geometry": {"type": "Polygon", "coordinates": [[[15.7859802, -4.2710938, 0.0], [15.7859802, -4.2724632, 0.0], [15.7873535, -4.2724632, 0.0], [15.7873535, -4.2710938, 0.0], [15.7859802, -4.2710938, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1507}, "geometry": {"type": "Polygon", "coordinates": [[[15.8052063, -4.2710938, 0.0], [15.8052063, -4.2724632, 0.0], [15.8065796, -4.2724632, 0.0], [15.8065796, -4.2710938, 0.0], [15.8052063, -4.2710938, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1508}, "geometry": {"type": "Polygon", "coordinates": [[[15.7846069, -4.2697243, 0.0], [15.7846069, -4.2683548, 0.0], [15.7832336, -4.2683548, 0.0], [15.7832336, -4.2697243, 0.0], [15.7832336, -4.2710938, 0.0], [15.7846069, -4.2710938, 0.0], [15.7846069, -4.2697243, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1509}, "geometry": {"type": "Polygon", "coordinates": [[[15.8670044, -4.2669853, 0.0], [15.8670044, -4.2656158, 0.0], [15.8670044, -4.2642463, 0.0], [15.8656311, -4.2642463, 0.0], [15.8656311, -4.2656158, 0.0], [15.8656311, -4.2669853, 0.0], [15.8642578, -4.2669853, 0.0], [15.8642578, -4.2683548, 0.0], [15.8656311, -4.2683548, 0.0], [15.8670044, -4.2683548, 0.0], [15.8670044, -4.2669853, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1510}, "geometry": {"type": "Polygon", "coordinates": [[[15.652771, -4.2669853, 0.0], [15.652771, -4.2683548, 0.0], [15.6541443, -4.2683548, 0.0], [15.6555176, -4.2683548, 0.0], [15.6555176, -4.2669853, 0.0], [15.6541443, -4.2669853, 0.0], [15.652771, -4.2669853, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1511}, "geometry": {"type": "Polygon", "coordinates": [[[15.8615112, -4.2669853, 0.0], [15.8615112, -4.2683548, 0.0], [15.8628845, -4.2683548, 0.0], [15.8628845, -4.2669853, 0.0], [15.8615112, -4.2669853, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1512}, "geometry": {"type": "Polygon", "coordinates": [[[15.7763672, -4.2683548, 0.0], [15.7763672, -4.2697243, 0.0], [15.7777405, -4.2697243, 0.0], [15.7777405, -4.2683548, 0.0], [15.7763672, -4.2683548, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1513}, "geometry": {"type": "Polygon", "coordinates": [[[15.7969666, -4.2683548, 0.0], [15.7969666, -4.2669853, 0.0], [15.7969666, -4.2656158, 0.0], [15.7955933, -4.2656158, 0.0], [15.79422, -4.2656158, 0.0], [15.79422, -4.2669853, 0.0], [15.7928467, -4.2669853, 0.0], [15.7928467, -4.2683548, 0.0], [15.79422, -4.2683548, 0.0], [15.7955933, -4.2683548, 0.0], [15.7955933, -4.2697243, 0.0], [15.7969666, -4.2697243, 0.0], [15.7969666, -4.2683548, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1514}, "geometry": {"type": "Polygon", "coordinates": [[[15.8326721, -4.2683548, 0.0], [15.8326721, -4.2697243, 0.0], [15.8340454, -4.2697243, 0.0], [15.8340454, -4.2683548, 0.0], [15.8326721, -4.2683548, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1515}, "geometry": {"type": "Polygon", "coordinates": [[[15.8807373, -4.2669853, 0.0], [15.8807373, -4.2683548, 0.0], [15.8821106, -4.2683548, 0.0], [15.8821106, -4.2669853, 0.0], [15.8807373, -4.2669853, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1516}, "geometry": {"type": "Polygon", "coordinates": [[[15.6239319, -4.2669853, 0.0], [15.6239319, -4.2683548, 0.0], [15.6253052, -4.2683548, 0.0], [15.6253052, -4.2669853, 0.0], [15.6239319, -4.2669853, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1517}, "geometry": {"type": "Polygon", "coordinates": [[[15.9397888, -4.2656158, 0.0], [15.9397888, -4.2669853, 0.0], [15.9411621, -4.2669853, 0.0], [15.9411621, -4.2656158, 0.0], [15.9397888, -4.2656158, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1518}, "geometry": {"type": "Polygon", "coordinates": [[[15.8738708, -4.2656158, 0.0], [15.8738708, -4.2669853, 0.0], [15.8752441, -4.2669853, 0.0], [15.8752441, -4.2656158, 0.0], [15.8738708, -4.2656158, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1519}, "geometry": {"type": "Polygon", "coordinates": [[[15.8024597, -4.2656158, 0.0], [15.8024597, -4.2642463, 0.0], [15.8024597, -4.2628768, 0.0], [15.8024597, -4.2615074, 0.0], [15.803833, -4.2615074, 0.0], [15.803833, -4.2601379, 0.0], [15.803833, -4.2587684, 0.0], [15.803833, -4.2573989, 0.0], [15.8024597, -4.2573989, 0.0], [15.8010864, -4.2573989, 0.0], [15.8010864, -4.2587684, 0.0], [15.7997131, -4.2587684, 0.0], [15.7983398, -4.2587684, 0.0], [15.7969666, -4.2587684, 0.0], [15.7969666, -4.2601379, 0.0], [15.7969666, -4.2615074, 0.0], [15.7969666, -4.2628768, 0.0], [15.7969666, -4.2642463, 0.0], [15.7969666, -4.2656158, 0.0], [15.7983398, -4.2656158, 0.0], [15.7997131, -4.2656158, 0.0], [15.8010864, -4.2656158, 0.0], [15.8010864, -4.2669853, 0.0], [15.8024597, -4.2669853, 0.0], [15.8024597, -4.2656158, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1520}, "geometry": {"type": "Polygon", "coordinates": [[[15.8436584, -4.2656158, 0.0], [15.8436584, -4.2669853, 0.0], [15.8450317, -4.2669853, 0.0], [15.8450317, -4.2656158, 0.0], [15.8436584, -4.2656158, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1521}, "geometry": {"type": "Polygon", "coordinates": [[[15.8120728, -4.2656158, 0.0], [15.8120728, -4.2669853, 0.0], [15.813446, -4.2669853, 0.0], [15.813446, -4.2656158, 0.0], [15.8120728, -4.2656158, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1522}, "geometry": {"type": "Polygon", "coordinates": [[[15.8065796, -4.2656158, 0.0], [15.8065796, -4.2669853, 0.0], [15.8079529, -4.2669853, 0.0], [15.8079529, -4.2656158, 0.0], [15.8065796, -4.2656158, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1523}, "geometry": {"type": "Polygon", "coordinates": [[[15.7763672, -4.2656158, 0.0], [15.7763672, -4.2669853, 0.0], [15.7777405, -4.2669853, 0.0], [15.7777405, -4.2656158, 0.0], [15.7763672, -4.2656158, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1524}, "geometry": {"type": "Polygon", "coordinates": [[[15.7489014, -4.2656158, 0.0], [15.7489014, -4.2669853, 0.0], [15.7502747, -4.2669853, 0.0], [15.7502747, -4.2656158, 0.0], [15.7489014, -4.2656158, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1525}, "geometry": {"type": "Polygon", "coordinates": [[[15.879364, -4.2642463, 0.0], [15.879364, -4.2656158, 0.0], [15.8807373, -4.2656158, 0.0], [15.8807373, -4.2642463, 0.0], [15.879364, -4.2642463, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1526}, "geometry": {"type": "Polygon", "coordinates": [[[15.7832336, -4.2642463, 0.0], [15.7832336, -4.2656158, 0.0], [15.7846069, -4.2656158, 0.0], [15.7846069, -4.2642463, 0.0], [15.7832336, -4.2642463, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1527}, "geometry": {"type": "Polygon", "coordinates": [[[15.8079529, -4.2628768, 0.0], [15.8079529, -4.2615074, 0.0], [15.8065796, -4.2615074, 0.0], [15.8065796, -4.2628768, 0.0], [15.8065796, -4.2642463, 0.0], [15.8079529, -4.2642463, 0.0], [15.8079529, -4.2628768, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1528}, "geometry": {"type": "Polygon", "coordinates": [[[15.7351685, -4.2628768, 0.0], [15.7351685, -4.2642463, 0.0], [15.7365417, -4.2642463, 0.0], [15.7365417, -4.2628768, 0.0], [15.7351685, -4.2628768, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1529}, "geometry": {"type": "Polygon", "coordinates": [[[15.7502747, -4.2642463, 0.0], [15.7502747, -4.2656158, 0.0], [15.7516479, -4.2656158, 0.0], [15.7516479, -4.2642463, 0.0], [15.7502747, -4.2642463, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1530}, "geometry": {"type": "Polygon", "coordinates": [[[15.7585144, -4.2628768, 0.0], [15.7585144, -4.2642463, 0.0], [15.7598877, -4.2642463, 0.0], [15.7598877, -4.2628768, 0.0], [15.7585144, -4.2628768, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1531}, "geometry": {"type": "Polygon", "coordinates": [[[15.803833, -4.2642463, 0.0], [15.803833, -4.2656158, 0.0], [15.8052063, -4.2656158, 0.0], [15.8052063, -4.2642463, 0.0], [15.803833, -4.2642463, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1532}, "geometry": {"type": "Polygon", "coordinates": [[[15.8258057, -4.2628768, 0.0], [15.8258057, -4.2642463, 0.0], [15.827179, -4.2642463, 0.0], [15.8285522, -4.2642463, 0.0], [15.8285522, -4.2628768, 0.0], [15.827179, -4.2628768, 0.0], [15.8258057, -4.2628768, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1533}, "geometry": {"type": "Polygon", "coordinates": [[[15.6280518, -4.2628768, 0.0], [15.6280518, -4.2642463, 0.0], [15.629425, -4.2642463, 0.0], [15.629425, -4.2628768, 0.0], [15.6280518, -4.2628768, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1534}, "geometry": {"type": "Polygon", "coordinates": [[[15.7695007, -4.2628768, 0.0], [15.7695007, -4.2642463, 0.0], [15.770874, -4.2642463, 0.0], [15.770874, -4.2628768, 0.0], [15.7695007, -4.2628768, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1535}, "geometry": {"type": "Polygon", "coordinates": [[[15.9384155, -4.2615074, 0.0], [15.9384155, -4.2628768, 0.0], [15.9397888, -4.2628768, 0.0], [15.9397888, -4.2615074, 0.0], [15.9384155, -4.2615074, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1536}, "geometry": {"type": "Polygon", "coordinates": [[[15.5786133, -4.2615074, 0.0], [15.5786133, -4.2628768, 0.0], [15.5799866, -4.2628768, 0.0], [15.5799866, -4.2615074, 0.0], [15.5786133, -4.2615074, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1537}, "geometry": {"type": "Polygon", "coordinates": [[[15.8972168, -4.2615074, 0.0], [15.8985901, -4.2615074, 0.0], [15.8985901, -4.2601379, 0.0], [15.8972168, -4.2601379, 0.0], [15.8972168, -4.2587684, 0.0], [15.8972168, -4.2573989, 0.0], [15.8958435, -4.2573989, 0.0], [15.8958435, -4.2587684, 0.0], [15.8944702, -4.2587684, 0.0], [15.8930969, -4.2587684, 0.0], [15.8930969, -4.2573989, 0.0], [15.8917236, -4.2573989, 0.0], [15.8903503, -4.2573989, 0.0], [15.8903503, -4.2560294, 0.0], [15.8903503, -4.2546598, 0.0], [15.8889771, -4.2546598, 0.0], [15.8889771, -4.2560294, 0.0], [15.8889771, -4.2573989, 0.0], [15.8876038, -4.2573989, 0.0], [15.8876038, -4.2560294, 0.0], [15.8862305, -4.2560294, 0.0], [15.8848572, -4.2560294, 0.0], [15.8848572, -4.2546598, 0.0], [15.8834839, -4.2546598, 0.0], [15.8834839, -4.2532903, 0.0], [15.8821106, -4.2532903, 0.0], [15.8807373, -4.2532903, 0.0], [15.8807373, -4.2519208, 0.0], [15.8807373, -4.2505513, 0.0], [15.8807373, -4.2491818, 0.0], [15.879364, -4.2491818, 0.0], [15.879364, -4.2478123, 0.0], [15.8779907, -4.2478123, 0.0], [15.8766174, -4.2478123, 0.0], [15.8766174, -4.2491818, 0.0], [15.8752441, -4.2491818, 0.0], [15.8752441, -4.2478123, 0.0], [15.8738708, -4.2478123, 0.0], [15.8738708, -4.2464428, 0.0], [15.8738708, -4.2450732, 0.0], [15.8724976, -4.2450732, 0.0], [15.8724976, -4.2464428, 0.0], [15.8711243, -4.2464428, 0.0], [15.8711243, -4.2478123, 0.0], [15.869751, -4.2478123, 0.0], [15.869751, -4.2491818, 0.0], [15.8683777, -4.2491818, 0.0], [15.8683777, -4.2505513, 0.0], [15.869751, -4.2505513, 0.0], [15.869751, -4.2519208, 0.0], [15.8683777, -4.2519208, 0.0], [15.8670044, -4.2519208, 0.0], [15.8670044, -4.2532903, 0.0], [15.8670044, -4.2546598, 0.0], [15.8683777, -4.2546598, 0.0], [15.8683777, -4.2560294, 0.0], [15.8683777, -4.2573989, 0.0], [15.869751, -4.2573989, 0.0], [15.8711243, -4.2573989, 0.0], [15.8711243, -4.2587684, 0.0], [15.8724976, -4.2587684, 0.0], [15.8738708, -4.2587684, 0.0], [15.8738708, -4.2573989, 0.0], [15.8752441, -4.2573989, 0.0], [15.8766174, -4.2573989, 0.0], [15.8766174, -4.2587684, 0.0], [15.8779907, -4.2587684, 0.0], [15.8779907, -4.2601379, 0.0], [15.879364, -4.2601379, 0.0], [15.8807373, -4.2601379, 0.0], [15.8807373, -4.2587684, 0.0], [15.8821106, -4.2587684, 0.0], [15.8834839, -4.2587684, 0.0], [15.8848572, -4.2587684, 0.0], [15.8862305, -4.2587684, 0.0], [15.8876038, -4.2587684, 0.0], [15.8876038, -4.2601379, 0.0], [15.8889771, -4.2601379, 0.0], [15.8889771, -4.2587684, 0.0], [15.8903503, -4.2587684, 0.0], [15.8903503, -4.2601379, 0.0], [15.8917236, -4.2601379, 0.0], [15.8930969, -4.2601379, 0.0], [15.8930969, -4.2615074, 0.0], [15.8944702, -4.2615074, 0.0], [15.8944702, -4.2601379, 0.0], [15.8958435, -4.2601379, 0.0], [15.8958435, -4.2615074, 0.0], [15.8958435, -4.2628768, 0.0], [15.8972168, -4.2628768, 0.0], [15.8972168, -4.2615074, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1538}, "geometry": {"type": "Polygon", "coordinates": [[[15.8917236, -4.2628768, 0.0], [15.8917236, -4.2642463, 0.0], [15.8930969, -4.2642463, 0.0], [15.8930969, -4.2628768, 0.0], [15.8917236, -4.2628768, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1539}, "geometry": {"type": "Polygon", "coordinates": [[[15.8711243, -4.2628768, 0.0], [15.8711243, -4.2642463, 0.0], [15.8724976, -4.2642463, 0.0], [15.8724976, -4.2628768, 0.0], [15.8711243, -4.2628768, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1540}, "geometry": {"type": "Polygon", "coordinates": [[[15.6445312, -4.2615074, 0.0], [15.6445312, -4.2601379, 0.0], [15.643158, -4.2601379, 0.0], [15.6417847, -4.2601379, 0.0], [15.6417847, -4.2615074, 0.0], [15.643158, -4.2615074, 0.0], [15.643158, -4.2628768, 0.0], [15.6445312, -4.2628768, 0.0], [15.6445312, -4.2615074, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1541}, "geometry": {"type": "Polygon", "coordinates": [[[15.8518982, -4.2615074, 0.0], [15.8532715, -4.2615074, 0.0], [15.8532715, -4.2601379, 0.0], [15.8518982, -4.2601379, 0.0], [15.8505249, -4.2601379, 0.0], [15.8505249, -4.2615074, 0.0], [15.8505249, -4.2628768, 0.0], [15.8518982, -4.2628768, 0.0], [15.8518982, -4.2615074, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1542}, "geometry": {"type": "Polygon", "coordinates": [[[15.8848572, -4.2615074, 0.0], [15.8848572, -4.2628768, 0.0], [15.8862305, -4.2628768, 0.0], [15.8862305, -4.2615074, 0.0], [15.8848572, -4.2615074, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1543}, "geometry": {"type": "Polygon", "coordinates": [[[15.6074524, -4.2615074, 0.0], [15.6088257, -4.2615074, 0.0], [15.6088257, -4.2601379, 0.0], [15.6074524, -4.2601379, 0.0], [15.6074524, -4.2587684, 0.0], [15.6060791, -4.2587684, 0.0], [15.6060791, -4.2601379, 0.0], [15.6060791, -4.2615074, 0.0], [15.6060791, -4.2628768, 0.0], [15.6074524, -4.2628768, 0.0], [15.6074524, -4.2615074, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1544}, "geometry": {"type": "Polygon", "coordinates": [[[15.7571411, -4.2615074, 0.0], [15.7571411, -4.2628768, 0.0], [15.7585144, -4.2628768, 0.0], [15.7585144, -4.2615074, 0.0], [15.7571411, -4.2615074, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1545}, "geometry": {"type": "Polygon", "coordinates": [[[15.728302, -4.2615074, 0.0], [15.7296753, -4.2615074, 0.0], [15.7296753, -4.2601379, 0.0], [15.7310486, -4.2601379, 0.0], [15.7310486, -4.2587684, 0.0], [15.7296753, -4.2587684, 0.0], [15.7296753, -4.2573989, 0.0], [15.728302, -4.2573989, 0.0], [15.728302, -4.2560294, 0.0], [15.7269287, -4.2560294, 0.0], [15.7269287, -4.2573989, 0.0], [15.7269287, -4.2587684, 0.0], [15.7269287, -4.2601379, 0.0], [15.7269287, -4.2615074, 0.0], [15.7269287, -4.2628768, 0.0], [15.728302, -4.2628768, 0.0], [15.728302, -4.2615074, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1546}, "geometry": {"type": "Polygon", "coordinates": [[[15.7310486, -4.2615074, 0.0], [15.7296753, -4.2615074, 0.0], [15.7296753, -4.2628768, 0.0], [15.7310486, -4.2628768, 0.0], [15.7324219, -4.2628768, 0.0], [15.7337952, -4.2628768, 0.0], [15.7337952, -4.2615074, 0.0], [15.7324219, -4.2615074, 0.0], [15.7310486, -4.2615074, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1547}, "geometry": {"type": "Polygon", "coordinates": [[[15.6390381, -4.2601379, 0.0], [15.6390381, -4.2615074, 0.0], [15.6404114, -4.2615074, 0.0], [15.6404114, -4.2601379, 0.0], [15.6390381, -4.2601379, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1548}, "geometry": {"type": "Polygon", "coordinates": [[[15.5799866, -4.2601379, 0.0], [15.5799866, -4.2615074, 0.0], [15.5813599, -4.2615074, 0.0], [15.5813599, -4.2601379, 0.0], [15.5799866, -4.2601379, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1549}, "geometry": {"type": "Polygon", "coordinates": [[[15.8340454, -4.2601379, 0.0], [15.8340454, -4.2615074, 0.0], [15.8354187, -4.2615074, 0.0], [15.8354187, -4.2601379, 0.0], [15.8340454, -4.2601379, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1550}, "geometry": {"type": "Polygon", "coordinates": [[[15.9342957, -4.2601379, 0.0], [15.9342957, -4.2615074, 0.0], [15.9356689, -4.2615074, 0.0], [15.9356689, -4.2601379, 0.0], [15.9342957, -4.2601379, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1551}, "geometry": {"type": "Polygon", "coordinates": [[[15.770874, -4.2601379, 0.0], [15.770874, -4.2615074, 0.0], [15.7722473, -4.2615074, 0.0], [15.7722473, -4.2601379, 0.0], [15.770874, -4.2601379, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1552}, "geometry": {"type": "Polygon", "coordinates": [[[15.8862305, -4.2601379, 0.0], [15.8862305, -4.2615074, 0.0], [15.8876038, -4.2615074, 0.0], [15.8876038, -4.2601379, 0.0], [15.8862305, -4.2601379, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1553}, "geometry": {"type": "Polygon", "coordinates": [[[15.8683777, -4.2601379, 0.0], [15.8683777, -4.2615074, 0.0], [15.869751, -4.2615074, 0.0], [15.869751, -4.2601379, 0.0], [15.8683777, -4.2601379, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1554}, "geometry": {"type": "Polygon", "coordinates": [[[15.5786133, -4.2587684, 0.0], [15.5786133, -4.2573989, 0.0], [15.5799866, -4.2573989, 0.0], [15.5799866, -4.2587684, 0.0], [15.5813599, -4.2587684, 0.0], [15.5827332, -4.2587684, 0.0], [15.5827332, -4.2601379, 0.0], [15.5841064, -4.2601379, 0.0], [15.5841064, -4.2587684, 0.0], [15.5854797, -4.2587684, 0.0], [15.5854797, -4.2573989, 0.0], [15.5841064, -4.2573989, 0.0], [15.5827332, -4.2573989, 0.0], [15.5813599, -4.2573989, 0.0], [15.5813599, -4.2560294, 0.0], [15.5813599, -4.2546598, 0.0], [15.5813599, -4.2532903, 0.0], [15.5799866, -4.2532903, 0.0], [15.5799866, -4.2546598, 0.0], [15.5799866, -4.2560294, 0.0], [15.5786133, -4.2560294, 0.0], [15.5786133, -4.2546598, 0.0], [15.5786133, -4.2532903, 0.0], [15.57724, -4.2532903, 0.0], [15.5758667, -4.2532903, 0.0], [15.5758667, -4.2546598, 0.0], [15.5758667, -4.2560294, 0.0], [15.5758667, -4.2573989, 0.0], [15.5758667, -4.2587684, 0.0], [15.5758667, -4.2601379, 0.0], [15.57724, -4.2601379, 0.0], [15.5786133, -4.2601379, 0.0], [15.5786133, -4.2587684, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1555}, "geometry": {"type": "Polygon", "coordinates": [[[15.8752441, -4.2587684, 0.0], [15.8752441, -4.2601379, 0.0], [15.8766174, -4.2601379, 0.0], [15.8766174, -4.2587684, 0.0], [15.8752441, -4.2587684, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1556}, "geometry": {"type": "Polygon", "coordinates": [[[15.7818604, -4.2587684, 0.0], [15.7818604, -4.2601379, 0.0], [15.7832336, -4.2601379, 0.0], [15.7846069, -4.2601379, 0.0], [15.7846069, -4.2587684, 0.0], [15.7846069, -4.2573989, 0.0], [15.7832336, -4.2573989, 0.0], [15.7832336, -4.2587684, 0.0], [15.7818604, -4.2587684, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1557}, "geometry": {"type": "Polygon", "coordinates": [[[15.6239319, -4.2587684, 0.0], [15.6239319, -4.2573989, 0.0], [15.6225586, -4.2573989, 0.0], [15.6211853, -4.2573989, 0.0], [15.6211853, -4.2587684, 0.0], [15.6211853, -4.2601379, 0.0], [15.6225586, -4.2601379, 0.0], [15.6239319, -4.2601379, 0.0], [15.6239319, -4.2587684, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1558}, "geometry": {"type": "Polygon", "coordinates": [[[15.8491516, -4.2587684, 0.0], [15.8491516, -4.2601379, 0.0], [15.8505249, -4.2601379, 0.0], [15.8505249, -4.2587684, 0.0], [15.8491516, -4.2587684, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1559}, "geometry": {"type": "Polygon", "coordinates": [[[15.9246826, -4.2587684, 0.0], [15.9246826, -4.2601379, 0.0], [15.9260559, -4.2601379, 0.0], [15.9260559, -4.2587684, 0.0], [15.9246826, -4.2587684, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1560}, "geometry": {"type": "Polygon", "coordinates": [[[15.6349182, -4.2573989, 0.0], [15.6349182, -4.2560294, 0.0], [15.6335449, -4.2560294, 0.0], [15.6335449, -4.2573989, 0.0], [15.6335449, -4.2587684, 0.0], [15.6349182, -4.2587684, 0.0], [15.6349182, -4.2573989, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1561}, "geometry": {"type": "Polygon", "coordinates": [[[15.629425, -4.2573989, 0.0], [15.6280518, -4.2573989, 0.0], [15.6266785, -4.2573989, 0.0], [15.6266785, -4.2587684, 0.0], [15.6280518, -4.2587684, 0.0], [15.629425, -4.2587684, 0.0], [15.6307983, -4.2587684, 0.0], [15.6307983, -4.2573989, 0.0], [15.629425, -4.2573989, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1562}, "geometry": {"type": "Polygon", "coordinates": [[[15.7585144, -4.2573989, 0.0], [15.7585144, -4.2587684, 0.0], [15.7598877, -4.2587684, 0.0], [15.761261, -4.2587684, 0.0], [15.761261, -4.2573989, 0.0], [15.761261, -4.2560294, 0.0], [15.7598877, -4.2560294, 0.0], [15.7598877, -4.2573989, 0.0], [15.7585144, -4.2573989, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1563}, "geometry": {"type": "Polygon", "coordinates": [[[15.7928467, -4.2573989, 0.0], [15.7928467, -4.2587684, 0.0], [15.79422, -4.2587684, 0.0], [15.79422, -4.2573989, 0.0], [15.7928467, -4.2573989, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1564}, "geometry": {"type": "Polygon", "coordinates": [[[15.7873535, -4.2573989, 0.0], [15.7873535, -4.2560294, 0.0], [15.7859802, -4.2560294, 0.0], [15.7859802, -4.2573989, 0.0], [15.7859802, -4.2587684, 0.0], [15.7873535, -4.2587684, 0.0], [15.7873535, -4.2573989, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1565}, "geometry": {"type": "Polygon", "coordinates": [[[15.9233093, -4.2573989, 0.0], [15.9233093, -4.2587684, 0.0], [15.9246826, -4.2587684, 0.0], [15.9246826, -4.2573989, 0.0], [15.9233093, -4.2573989, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1566}, "geometry": {"type": "Polygon", "coordinates": [[[15.8450317, -4.2573989, 0.0], [15.8450317, -4.2587684, 0.0], [15.846405, -4.2587684, 0.0], [15.846405, -4.2573989, 0.0], [15.8450317, -4.2573989, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1567}, "geometry": {"type": "Polygon", "coordinates": [[[15.7804871, -4.2573989, 0.0], [15.7804871, -4.2560294, 0.0], [15.7791138, -4.2560294, 0.0], [15.7791138, -4.2573989, 0.0], [15.7791138, -4.2587684, 0.0], [15.7804871, -4.2587684, 0.0], [15.7818604, -4.2587684, 0.0], [15.7818604, -4.2573989, 0.0], [15.7804871, -4.2573989, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1568}, "geometry": {"type": "Polygon", "coordinates": [[[15.8670044, -4.2573989, 0.0], [15.8670044, -4.2587684, 0.0], [15.8683777, -4.2587684, 0.0], [15.8683777, -4.2573989, 0.0], [15.8670044, -4.2573989, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1569}, "geometry": {"type": "Polygon", "coordinates": [[[15.7722473, -4.2560294, 0.0], [15.770874, -4.2560294, 0.0], [15.770874, -4.2573989, 0.0], [15.7722473, -4.2573989, 0.0], [15.7736206, -4.2573989, 0.0], [15.7736206, -4.2560294, 0.0], [15.7722473, -4.2560294, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1570}, "geometry": {"type": "Polygon", "coordinates": [[[15.8175659, -4.2560294, 0.0], [15.8175659, -4.2546598, 0.0], [15.8161926, -4.2546598, 0.0], [15.8161926, -4.2560294, 0.0], [15.8161926, -4.2573989, 0.0], [15.8175659, -4.2573989, 0.0], [15.8189392, -4.2573989, 0.0], [15.8189392, -4.2560294, 0.0], [15.8175659, -4.2560294, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1571}, "geometry": {"type": "Polygon", "coordinates": [[[15.7997131, -4.2560294, 0.0], [15.7997131, -4.2573989, 0.0], [15.8010864, -4.2573989, 0.0], [15.8010864, -4.2560294, 0.0], [15.7997131, -4.2560294, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1572}, "geometry": {"type": "Polygon", "coordinates": [[[15.6060791, -4.2560294, 0.0], [15.6047058, -4.2560294, 0.0], [15.6047058, -4.2573989, 0.0], [15.6060791, -4.2573989, 0.0], [15.6074524, -4.2573989, 0.0], [15.6074524, -4.2560294, 0.0], [15.6060791, -4.2560294, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1573}, "geometry": {"type": "Polygon", "coordinates": [[[15.9191895, -4.2546598, 0.0], [15.9191895, -4.2560294, 0.0], [15.9205627, -4.2560294, 0.0], [15.9205627, -4.2546598, 0.0], [15.9191895, -4.2546598, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1574}, "geometry": {"type": "Polygon", "coordinates": [[[15.6307983, -4.2546598, 0.0], [15.6307983, -4.2560294, 0.0], [15.6321716, -4.2560294, 0.0], [15.6335449, -4.2560294, 0.0], [15.6335449, -4.2546598, 0.0], [15.6321716, -4.2546598, 0.0], [15.6307983, -4.2546598, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1575}, "geometry": {"type": "Polygon", "coordinates": [[[15.6211853, -4.2546598, 0.0], [15.6225586, -4.2546598, 0.0], [15.6239319, -4.2546598, 0.0], [15.6239319, -4.2532903, 0.0], [15.6253052, -4.2532903, 0.0], [15.6266785, -4.2532903, 0.0], [15.6280518, -4.2532903, 0.0], [15.6280518, -4.2519208, 0.0], [15.6266785, -4.2519208, 0.0], [15.6266785, -4.2505513, 0.0], [15.6266785, -4.2491818, 0.0], [15.6266785, -4.2478123, 0.0], [15.6253052, -4.2478123, 0.0], [15.6253052, -4.2464428, 0.0], [15.6239319, -4.2464428, 0.0], [15.6239319, -4.2478123, 0.0], [15.6225586, -4.2478123, 0.0], [15.6211853, -4.2478123, 0.0], [15.6211853, -4.2491818, 0.0], [15.6211853, -4.2505513, 0.0], [15.619812, -4.2505513, 0.0], [15.619812, -4.2519208, 0.0], [15.6211853, -4.2519208, 0.0], [15.6211853, -4.2532903, 0.0], [15.619812, -4.2532903, 0.0], [15.619812, -4.2546598, 0.0], [15.6184387, -4.2546598, 0.0], [15.6184387, -4.2560294, 0.0], [15.619812, -4.2560294, 0.0], [15.6211853, -4.2560294, 0.0], [15.6211853, -4.2546598, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1576}, "geometry": {"type": "Polygon", "coordinates": [[[15.8093262, -4.2546598, 0.0], [15.8093262, -4.2560294, 0.0], [15.8106995, -4.2560294, 0.0], [15.8106995, -4.2546598, 0.0], [15.8093262, -4.2546598, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1577}, "geometry": {"type": "Polygon", "coordinates": [[[15.7626343, -4.2546598, 0.0], [15.7626343, -4.2560294, 0.0], [15.7640076, -4.2560294, 0.0], [15.7640076, -4.2546598, 0.0], [15.7626343, -4.2546598, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1578}, "geometry": {"type": "Polygon", "coordinates": [[[15.8299255, -4.2546598, 0.0], [15.8299255, -4.2560294, 0.0], [15.8312988, -4.2560294, 0.0], [15.8312988, -4.2546598, 0.0], [15.8299255, -4.2546598, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1579}, "geometry": {"type": "Polygon", "coordinates": [[[15.5580139, -4.2546598, 0.0], [15.5580139, -4.2532903, 0.0], [15.5566406, -4.2532903, 0.0], [15.5566406, -4.2546598, 0.0], [15.5566406, -4.2560294, 0.0], [15.5580139, -4.2560294, 0.0], [15.5580139, -4.2546598, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1580}, "geometry": {"type": "Polygon", "coordinates": [[[15.5978394, -4.2546598, 0.0], [15.5978394, -4.2560294, 0.0], [15.5992126, -4.2560294, 0.0], [15.5992126, -4.2546598, 0.0], [15.5978394, -4.2546598, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1581}, "geometry": {"type": "Polygon", "coordinates": [[[15.803833, -4.2546598, 0.0], [15.803833, -4.2560294, 0.0], [15.8052063, -4.2560294, 0.0], [15.8052063, -4.2546598, 0.0], [15.803833, -4.2546598, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1582}, "geometry": {"type": "Polygon", "coordinates": [[[15.6019592, -4.2532903, 0.0], [15.6019592, -4.2519208, 0.0], [15.6005859, -4.2519208, 0.0], [15.5992126, -4.2519208, 0.0], [15.5992126, -4.2532903, 0.0], [15.5992126, -4.2546598, 0.0], [15.6005859, -4.2546598, 0.0], [15.6019592, -4.2546598, 0.0], [15.6033325, -4.2546598, 0.0], [15.6033325, -4.2532903, 0.0], [15.6019592, -4.2532903, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1583}, "geometry": {"type": "Polygon", "coordinates": [[[15.5923462, -4.2532903, 0.0], [15.5923462, -4.2546598, 0.0], [15.5937195, -4.2546598, 0.0], [15.5937195, -4.2532903, 0.0], [15.5923462, -4.2532903, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1584}, "geometry": {"type": "Polygon", "coordinates": [[[15.6156921, -4.2532903, 0.0], [15.6170654, -4.2532903, 0.0], [15.6170654, -4.2519208, 0.0], [15.6156921, -4.2519208, 0.0], [15.6143188, -4.2519208, 0.0], [15.6143188, -4.2532903, 0.0], [15.6129456, -4.2532903, 0.0], [15.6129456, -4.2546598, 0.0], [15.6143188, -4.2546598, 0.0], [15.6156921, -4.2546598, 0.0], [15.6156921, -4.2532903, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1585}, "geometry": {"type": "Polygon", "coordinates": [[[15.8065796, -4.2519208, 0.0], [15.8065796, -4.2532903, 0.0], [15.8079529, -4.2532903, 0.0], [15.8079529, -4.2519208, 0.0], [15.8065796, -4.2519208, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1586}, "geometry": {"type": "Polygon", "coordinates": [[[15.6060791, -4.2519208, 0.0], [15.6060791, -4.2532903, 0.0], [15.6074524, -4.2532903, 0.0], [15.6074524, -4.2519208, 0.0], [15.6060791, -4.2519208, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1587}, "geometry": {"type": "Polygon", "coordinates": [[[15.7502747, -4.2519208, 0.0], [15.7502747, -4.2505513, 0.0], [15.7489014, -4.2505513, 0.0], [15.7489014, -4.2519208, 0.0], [15.7489014, -4.2532903, 0.0], [15.7502747, -4.2532903, 0.0], [15.7516479, -4.2532903, 0.0], [15.7530212, -4.2532903, 0.0], [15.7530212, -4.2519208, 0.0], [15.7516479, -4.2519208, 0.0], [15.7502747, -4.2519208, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1588}, "geometry": {"type": "Polygon", "coordinates": [[[15.6184387, -4.2519208, 0.0], [15.6184387, -4.2532903, 0.0], [15.619812, -4.2532903, 0.0], [15.619812, -4.2519208, 0.0], [15.6184387, -4.2519208, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1589}, "geometry": {"type": "Polygon", "coordinates": [[[15.7255554, -4.2519208, 0.0], [15.7255554, -4.2505513, 0.0], [15.7255554, -4.2491818, 0.0], [15.7241821, -4.2491818, 0.0], [15.7228088, -4.2491818, 0.0], [15.7228088, -4.2505513, 0.0], [15.7228088, -4.2519208, 0.0], [15.7228088, -4.2532903, 0.0], [15.7241821, -4.2532903, 0.0], [15.7255554, -4.2532903, 0.0], [15.7255554, -4.2519208, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1590}, "geometry": {"type": "Polygon", "coordinates": [[[15.8862305, -4.2505513, 0.0], [15.8848572, -4.2505513, 0.0], [15.8848572, -4.2519208, 0.0], [15.8862305, -4.2519208, 0.0], [15.8876038, -4.2519208, 0.0], [15.8876038, -4.2505513, 0.0], [15.8862305, -4.2505513, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1591}, "geometry": {"type": "Polygon", "coordinates": [[[15.9205627, -4.2505513, 0.0], [15.9205627, -4.2519208, 0.0], [15.921936, -4.2519208, 0.0], [15.921936, -4.2505513, 0.0], [15.9205627, -4.2505513, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1592}, "geometry": {"type": "Polygon", "coordinates": [[[15.9178162, -4.2505513, 0.0], [15.9178162, -4.2519208, 0.0], [15.9191895, -4.2519208, 0.0], [15.9191895, -4.2505513, 0.0], [15.9178162, -4.2505513, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1593}, "geometry": {"type": "Polygon", "coordinates": [[[15.836792, -4.2505513, 0.0], [15.8381653, -4.2505513, 0.0], [15.8395386, -4.2505513, 0.0], [15.8395386, -4.2519208, 0.0], [15.8409119, -4.2519208, 0.0], [15.8409119, -4.2505513, 0.0], [15.8422852, -4.2505513, 0.0], [15.8436584, -4.2505513, 0.0], [15.8450317, -4.2505513, 0.0], [15.846405, -4.2505513, 0.0], [15.846405, -4.2491818, 0.0], [15.8477783, -4.2491818, 0.0], [15.8491516, -4.2491818, 0.0], [15.8505249, -4.2491818, 0.0], [15.8518982, -4.2491818, 0.0], [15.8518982, -4.2505513, 0.0], [15.8532715, -4.2505513, 0.0], [15.8546448, -4.2505513, 0.0], [15.8560181, -4.2505513, 0.0], [15.8573914, -4.2505513, 0.0], [15.8573914, -4.2519208, 0.0], [15.8587646, -4.2519208, 0.0], [15.8601379, -4.2519208, 0.0], [15.8601379, -4.2505513, 0.0], [15.8601379, -4.2491818, 0.0], [15.8587646, -4.2491818, 0.0], [15.8573914, -4.2491818, 0.0], [15.8560181, -4.2491818, 0.0], [15.8546448, -4.2491818, 0.0], [15.8532715, -4.2491818, 0.0], [15.8532715, -4.2478123, 0.0], [15.8518982, -4.2478123, 0.0], [15.8505249, -4.2478123, 0.0], [15.8505249, -4.2464428, 0.0], [15.8505249, -4.2450732, 0.0], [15.8491516, -4.2450732, 0.0], [15.8491516, -4.2464428, 0.0], [15.8491516, -4.2478123, 0.0], [15.8477783, -4.2478123, 0.0], [15.846405, -4.2478123, 0.0], [15.846405, -4.2464428, 0.0], [15.8450317, -4.2464428, 0.0], [15.8436584, -4.2464428, 0.0], [15.8422852, -4.2464428, 0.0], [15.8409119, -4.2464428, 0.0], [15.8395386, -4.2464428, 0.0], [15.8381653, -4.2464428, 0.0], [15.8381653, -4.2478123, 0.0], [15.836792, -4.2478123, 0.0], [15.8354187, -4.2478123, 0.0], [15.8340454, -4.2478123, 0.0], [15.8340454, -4.2491818, 0.0], [15.8354187, -4.2491818, 0.0], [15.8354187, -4.2505513, 0.0], [15.8340454, -4.2505513, 0.0], [15.8340454, -4.2519208, 0.0], [15.8354187, -4.2519208, 0.0], [15.836792, -4.2519208, 0.0], [15.836792, -4.2505513, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1594}, "geometry": {"type": "Polygon", "coordinates": [[[15.6486511, -4.2505513, 0.0], [15.6486511, -4.2519208, 0.0], [15.6500244, -4.2519208, 0.0], [15.6500244, -4.2505513, 0.0], [15.6486511, -4.2505513, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1595}, "geometry": {"type": "Polygon", "coordinates": [[[15.6115723, -4.2505513, 0.0], [15.6115723, -4.2519208, 0.0], [15.6129456, -4.2519208, 0.0], [15.6129456, -4.2505513, 0.0], [15.6115723, -4.2505513, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1596}, "geometry": {"type": "Polygon", "coordinates": [[[15.6088257, -4.2505513, 0.0], [15.6088257, -4.2519208, 0.0], [15.610199, -4.2519208, 0.0], [15.610199, -4.2505513, 0.0], [15.6088257, -4.2505513, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1597}, "geometry": {"type": "Polygon", "coordinates": [[[15.803833, -4.2505513, 0.0], [15.803833, -4.2519208, 0.0], [15.8052063, -4.2519208, 0.0], [15.8065796, -4.2519208, 0.0], [15.8065796, -4.2505513, 0.0], [15.8052063, -4.2505513, 0.0], [15.803833, -4.2505513, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1598}, "geometry": {"type": "Polygon", "coordinates": [[[15.7434082, -4.2505513, 0.0], [15.7434082, -4.2519208, 0.0], [15.7447815, -4.2519208, 0.0], [15.7447815, -4.2505513, 0.0], [15.7434082, -4.2505513, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1599}, "geometry": {"type": "Polygon", "coordinates": [[[15.7969666, -4.2505513, 0.0], [15.7969666, -4.2491818, 0.0], [15.7955933, -4.2491818, 0.0], [15.7955933, -4.2505513, 0.0], [15.7955933, -4.2519208, 0.0], [15.7969666, -4.2519208, 0.0], [15.7969666, -4.2505513, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1600}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -4.2505513, 0.0], [15.7530212, -4.2519208, 0.0], [15.7543945, -4.2519208, 0.0], [15.7543945, -4.2505513, 0.0], [15.7530212, -4.2505513, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1601}, "geometry": {"type": "Polygon", "coordinates": [[[15.6060791, -4.2491818, 0.0], [15.6060791, -4.2505513, 0.0], [15.6074524, -4.2505513, 0.0], [15.6088257, -4.2505513, 0.0], [15.6088257, -4.2491818, 0.0], [15.6074524, -4.2491818, 0.0], [15.6060791, -4.2491818, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1602}, "geometry": {"type": "Polygon", "coordinates": [[[15.9288025, -4.2491818, 0.0], [15.9288025, -4.2505513, 0.0], [15.9301758, -4.2505513, 0.0], [15.9301758, -4.2491818, 0.0], [15.9288025, -4.2491818, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1603}, "geometry": {"type": "Polygon", "coordinates": [[[15.9329224, -4.2491818, 0.0], [15.9329224, -4.2505513, 0.0], [15.9342957, -4.2505513, 0.0], [15.9356689, -4.2505513, 0.0], [15.9370422, -4.2505513, 0.0], [15.9370422, -4.2491818, 0.0], [15.9356689, -4.2491818, 0.0], [15.9342957, -4.2491818, 0.0], [15.9329224, -4.2491818, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1604}, "geometry": {"type": "Polygon", "coordinates": [[[15.8285522, -4.2491818, 0.0], [15.8285522, -4.2505513, 0.0], [15.8299255, -4.2505513, 0.0], [15.8312988, -4.2505513, 0.0], [15.8326721, -4.2505513, 0.0], [15.8326721, -4.2491818, 0.0], [15.8312988, -4.2491818, 0.0], [15.8312988, -4.2478123, 0.0], [15.8312988, -4.2464428, 0.0], [15.8299255, -4.2464428, 0.0], [15.8299255, -4.2478123, 0.0], [15.8299255, -4.2491818, 0.0], [15.8285522, -4.2491818, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1605}, "geometry": {"type": "Polygon", "coordinates": [[[15.8024597, -4.2491818, 0.0], [15.8024597, -4.2505513, 0.0], [15.803833, -4.2505513, 0.0], [15.803833, -4.2491818, 0.0], [15.8024597, -4.2491818, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1606}, "geometry": {"type": "Polygon", "coordinates": [[[15.6170654, -4.2491818, 0.0], [15.6170654, -4.2505513, 0.0], [15.6184387, -4.2505513, 0.0], [15.619812, -4.2505513, 0.0], [15.619812, -4.2491818, 0.0], [15.619812, -4.2478123, 0.0], [15.6184387, -4.2478123, 0.0], [15.6184387, -4.2491818, 0.0], [15.6170654, -4.2491818, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1607}, "geometry": {"type": "Polygon", "coordinates": [[[15.7928467, -4.2491818, 0.0], [15.7928467, -4.2505513, 0.0], [15.79422, -4.2505513, 0.0], [15.79422, -4.2491818, 0.0], [15.7928467, -4.2491818, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1608}, "geometry": {"type": "Polygon", "coordinates": [[[15.6898499, -4.2491818, 0.0], [15.6898499, -4.2505513, 0.0], [15.6912231, -4.2505513, 0.0], [15.6925964, -4.2505513, 0.0], [15.6925964, -4.2491818, 0.0], [15.6912231, -4.2491818, 0.0], [15.6898499, -4.2491818, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1609}, "geometry": {"type": "Polygon", "coordinates": [[[15.8628845, -4.2491818, 0.0], [15.8628845, -4.2505513, 0.0], [15.8642578, -4.2505513, 0.0], [15.8642578, -4.2491818, 0.0], [15.8628845, -4.2491818, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1610}, "geometry": {"type": "Polygon", "coordinates": [[[15.7200623, -4.2491818, 0.0], [15.7214355, -4.2491818, 0.0], [15.7214355, -4.2478123, 0.0], [15.7214355, -4.2464428, 0.0], [15.7200623, -4.2464428, 0.0], [15.7200623, -4.2478123, 0.0], [15.718689, -4.2478123, 0.0], [15.718689, -4.2491818, 0.0], [15.718689, -4.2505513, 0.0], [15.7200623, -4.2505513, 0.0], [15.7200623, -4.2491818, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1611}, "geometry": {"type": "Polygon", "coordinates": [[[15.7626343, -4.2478123, 0.0], [15.7626343, -4.2491818, 0.0], [15.7640076, -4.2491818, 0.0], [15.7653809, -4.2491818, 0.0], [15.7653809, -4.2478123, 0.0], [15.7653809, -4.2464428, 0.0], [15.7640076, -4.2464428, 0.0], [15.7640076, -4.2478123, 0.0], [15.7626343, -4.2478123, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1612}, "geometry": {"type": "Polygon", "coordinates": [[[15.7749939, -4.2478123, 0.0], [15.7749939, -4.2491818, 0.0], [15.7763672, -4.2491818, 0.0], [15.7763672, -4.2478123, 0.0], [15.7749939, -4.2478123, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1613}, "geometry": {"type": "Polygon", "coordinates": [[[15.8230591, -4.2478123, 0.0], [15.8230591, -4.2464428, 0.0], [15.8216858, -4.2464428, 0.0], [15.8216858, -4.2478123, 0.0], [15.8216858, -4.2491818, 0.0], [15.8230591, -4.2491818, 0.0], [15.8244324, -4.2491818, 0.0], [15.8244324, -4.2478123, 0.0], [15.8230591, -4.2478123, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1614}, "geometry": {"type": "Polygon", "coordinates": [[[15.8944702, -4.2478123, 0.0], [15.8930969, -4.2478123, 0.0], [15.8930969, -4.2491818, 0.0], [15.8944702, -4.2491818, 0.0], [15.8958435, -4.2491818, 0.0], [15.8958435, -4.2478123, 0.0], [15.8944702, -4.2478123, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1615}, "geometry": {"type": "Polygon", "coordinates": [[[15.8876038, -4.2478123, 0.0], [15.8876038, -4.2464428, 0.0], [15.8862305, -4.2464428, 0.0], [15.8862305, -4.2478123, 0.0], [15.8848572, -4.2478123, 0.0], [15.8848572, -4.2491818, 0.0], [15.8862305, -4.2491818, 0.0], [15.8876038, -4.2491818, 0.0], [15.8876038, -4.2478123, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1616}, "geometry": {"type": "Polygon", "coordinates": [[[15.6884766, -4.2478123, 0.0], [15.6884766, -4.2491818, 0.0], [15.6898499, -4.2491818, 0.0], [15.6898499, -4.2478123, 0.0], [15.6884766, -4.2478123, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1617}, "geometry": {"type": "Polygon", "coordinates": [[[15.6088257, -4.2478123, 0.0], [15.6088257, -4.2491818, 0.0], [15.610199, -4.2491818, 0.0], [15.610199, -4.2478123, 0.0], [15.6088257, -4.2478123, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1618}, "geometry": {"type": "Polygon", "coordinates": [[[15.5758667, -4.2478123, 0.0], [15.5758667, -4.2491818, 0.0], [15.57724, -4.2491818, 0.0], [15.57724, -4.2478123, 0.0], [15.5758667, -4.2478123, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1619}, "geometry": {"type": "Polygon", "coordinates": [[[15.6129456, -4.2478123, 0.0], [15.6129456, -4.2491818, 0.0], [15.6143188, -4.2491818, 0.0], [15.6143188, -4.2478123, 0.0], [15.6129456, -4.2478123, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1620}, "geometry": {"type": "Polygon", "coordinates": [[[15.9164429, -4.2464428, 0.0], [15.9164429, -4.2478123, 0.0], [15.9178162, -4.2478123, 0.0], [15.9178162, -4.2464428, 0.0], [15.9164429, -4.2464428, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1621}, "geometry": {"type": "Polygon", "coordinates": [[[15.8120728, -4.2464428, 0.0], [15.8120728, -4.2450732, 0.0], [15.813446, -4.2450732, 0.0], [15.813446, -4.2437037, 0.0], [15.8148193, -4.2437037, 0.0], [15.8148193, -4.2450732, 0.0], [15.8161926, -4.2450732, 0.0], [15.8175659, -4.2450732, 0.0], [15.8175659, -4.2437037, 0.0], [15.8175659, -4.2423342, 0.0], [15.8189392, -4.2423342, 0.0], [15.8189392, -4.2409647, 0.0], [15.8203125, -4.2409647, 0.0], [15.8203125, -4.2395951, 0.0], [15.8189392, -4.2395951, 0.0], [15.8189392, -4.2382256, 0.0], [15.8189392, -4.2368561, 0.0], [15.8175659, -4.2368561, 0.0], [15.8161926, -4.2368561, 0.0], [15.8161926, -4.2354865, 0.0], [15.8148193, -4.2354865, 0.0], [15.8148193, -4.234117, 0.0], [15.813446, -4.234117, 0.0], [15.813446, -4.2354865, 0.0], [15.8120728, -4.2354865, 0.0], [15.8120728, -4.234117, 0.0], [15.8120728, -4.2327474, 0.0], [15.8106995, -4.2327474, 0.0], [15.8093262, -4.2327474, 0.0], [15.8093262, -4.234117, 0.0], [15.8079529, -4.234117, 0.0], [15.8079529, -4.2354865, 0.0], [15.8065796, -4.2354865, 0.0], [15.8052063, -4.2354865, 0.0], [15.803833, -4.2354865, 0.0], [15.803833, -4.2368561, 0.0], [15.8052063, -4.2368561, 0.0], [15.8052063, -4.2382256, 0.0], [15.8065796, -4.2382256, 0.0], [15.8079529, -4.2382256, 0.0], [15.8093262, -4.2382256, 0.0], [15.8093262, -4.2395951, 0.0], [15.8079529, -4.2395951, 0.0], [15.8079529, -4.2409647, 0.0], [15.8079529, -4.2423342, 0.0], [15.8093262, -4.2423342, 0.0], [15.8093262, -4.2437037, 0.0], [15.8093262, -4.2450732, 0.0], [15.8093262, -4.2464428, 0.0], [15.8106995, -4.2464428, 0.0], [15.8106995, -4.2478123, 0.0], [15.8120728, -4.2478123, 0.0], [15.8120728, -4.2464428, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1622}, "geometry": {"type": "Polygon", "coordinates": [[[15.7337952, -4.2464428, 0.0], [15.7337952, -4.2478123, 0.0], [15.7351685, -4.2478123, 0.0], [15.7351685, -4.2464428, 0.0], [15.7337952, -4.2464428, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1623}, "geometry": {"type": "Polygon", "coordinates": [[[15.7063293, -4.2464428, 0.0], [15.7063293, -4.2478123, 0.0], [15.7077026, -4.2478123, 0.0], [15.7077026, -4.2464428, 0.0], [15.7063293, -4.2464428, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1624}, "geometry": {"type": "Polygon", "coordinates": [[[15.6912231, -4.2464428, 0.0], [15.6912231, -4.2478123, 0.0], [15.6925964, -4.2478123, 0.0], [15.6925964, -4.2464428, 0.0], [15.6912231, -4.2464428, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1625}, "geometry": {"type": "Polygon", "coordinates": [[[15.6005859, -4.2450732, 0.0], [15.6005859, -4.2464428, 0.0], [15.6019592, -4.2464428, 0.0], [15.6019592, -4.2450732, 0.0], [15.6005859, -4.2450732, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1626}, "geometry": {"type": "Polygon", "coordinates": [[[15.5978394, -4.2450732, 0.0], [15.5978394, -4.2464428, 0.0], [15.5992126, -4.2464428, 0.0], [15.5992126, -4.2450732, 0.0], [15.5978394, -4.2450732, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1627}, "geometry": {"type": "Polygon", "coordinates": [[[15.8340454, -4.2450732, 0.0], [15.8340454, -4.2464428, 0.0], [15.8354187, -4.2464428, 0.0], [15.8354187, -4.2450732, 0.0], [15.8340454, -4.2450732, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1628}, "geometry": {"type": "Polygon", "coordinates": [[[15.6472778, -4.2450732, 0.0], [15.6472778, -4.2464428, 0.0], [15.6486511, -4.2464428, 0.0], [15.6486511, -4.2450732, 0.0], [15.6472778, -4.2450732, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1629}, "geometry": {"type": "Polygon", "coordinates": [[[15.7901001, -4.2450732, 0.0], [15.7901001, -4.2464428, 0.0], [15.7914734, -4.2464428, 0.0], [15.7914734, -4.2450732, 0.0], [15.7901001, -4.2450732, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1630}, "geometry": {"type": "Polygon", "coordinates": [[[15.7022095, -4.2450732, 0.0], [15.7022095, -4.2464428, 0.0], [15.7035828, -4.2464428, 0.0], [15.7035828, -4.2450732, 0.0], [15.7022095, -4.2450732, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1631}, "geometry": {"type": "Polygon", "coordinates": [[[15.9054565, -4.2450732, 0.0], [15.9054565, -4.2464428, 0.0], [15.9068298, -4.2464428, 0.0], [15.9068298, -4.2450732, 0.0], [15.9054565, -4.2450732, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1632}, "geometry": {"type": "Polygon", "coordinates": [[[15.8876038, -4.2450732, 0.0], [15.8876038, -4.2464428, 0.0], [15.8889771, -4.2464428, 0.0], [15.8889771, -4.2450732, 0.0], [15.8876038, -4.2450732, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1633}, "geometry": {"type": "Polygon", "coordinates": [[[15.846405, -4.2437037, 0.0], [15.846405, -4.2450732, 0.0], [15.8477783, -4.2450732, 0.0], [15.8477783, -4.2437037, 0.0], [15.846405, -4.2437037, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1634}, "geometry": {"type": "Polygon", "coordinates": [[[15.8354187, -4.2437037, 0.0], [15.8354187, -4.2450732, 0.0], [15.836792, -4.2450732, 0.0], [15.836792, -4.2437037, 0.0], [15.8354187, -4.2437037, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1635}, "geometry": {"type": "Polygon", "coordinates": [[[15.8409119, -4.2752022, 0.0], [15.8422852, -4.2752022, 0.0], [15.8422852, -4.2738327, 0.0], [15.8409119, -4.2738327, 0.0], [15.8395386, -4.2738327, 0.0], [15.8395386, -4.2752022, 0.0], [15.8395386, -4.2765716, 0.0], [15.8409119, -4.2765716, 0.0], [15.8409119, -4.2752022, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1636}, "geometry": {"type": "Polygon", "coordinates": [[[15.8876038, -4.2752022, 0.0], [15.8876038, -4.2738327, 0.0], [15.8862305, -4.2738327, 0.0], [15.8862305, -4.2752022, 0.0], [15.8862305, -4.2765716, 0.0], [15.8876038, -4.2765716, 0.0], [15.8876038, -4.2752022, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1637}, "geometry": {"type": "Polygon", "coordinates": [[[15.9288025, -4.2738327, 0.0], [15.9288025, -4.2752022, 0.0], [15.9301758, -4.2752022, 0.0], [15.9301758, -4.2738327, 0.0], [15.9288025, -4.2738327, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1638}, "geometry": {"type": "Polygon", "coordinates": [[[15.9191895, -4.2738327, 0.0], [15.9191895, -4.2752022, 0.0], [15.9205627, -4.2752022, 0.0], [15.9205627, -4.2738327, 0.0], [15.9191895, -4.2738327, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1639}, "geometry": {"type": "Polygon", "coordinates": [[[15.8642578, -4.2738327, 0.0], [15.8642578, -4.2752022, 0.0], [15.8656311, -4.2752022, 0.0], [15.8656311, -4.2738327, 0.0], [15.8642578, -4.2738327, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1640}, "geometry": {"type": "Polygon", "coordinates": [[[15.8670044, -4.2738327, 0.0], [15.8670044, -4.2752022, 0.0], [15.8683777, -4.2752022, 0.0], [15.8683777, -4.2738327, 0.0], [15.8670044, -4.2738327, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1641}, "geometry": {"type": "Polygon", "coordinates": [[[15.8518982, -4.2724632, 0.0], [15.8518982, -4.2738327, 0.0], [15.8532715, -4.2738327, 0.0], [15.8532715, -4.2724632, 0.0], [15.8518982, -4.2724632, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1642}, "geometry": {"type": "Polygon", "coordinates": [[[15.8422852, -4.2724632, 0.0], [15.8422852, -4.2738327, 0.0], [15.8436584, -4.2738327, 0.0], [15.8436584, -4.2724632, 0.0], [15.8422852, -4.2724632, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1643}, "geometry": {"type": "Polygon", "coordinates": [[[15.7228088, -4.2437037, 0.0], [15.7228088, -4.2450732, 0.0], [15.7241821, -4.2450732, 0.0], [15.7241821, -4.2437037, 0.0], [15.7228088, -4.2437037, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1644}, "geometry": {"type": "Polygon", "coordinates": [[[15.6912231, -4.2437037, 0.0], [15.6912231, -4.2450732, 0.0], [15.6925964, -4.2450732, 0.0], [15.6925964, -4.2437037, 0.0], [15.6912231, -4.2437037, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1645}, "geometry": {"type": "Polygon", "coordinates": [[[15.7008362, -4.2437037, 0.0], [15.7008362, -4.2450732, 0.0], [15.7022095, -4.2450732, 0.0], [15.7022095, -4.2437037, 0.0], [15.7008362, -4.2437037, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1646}, "geometry": {"type": "Polygon", "coordinates": [[[15.7997131, -4.2437037, 0.0], [15.7983398, -4.2437037, 0.0], [15.7969666, -4.2437037, 0.0], [15.7969666, -4.2450732, 0.0], [15.7983398, -4.2450732, 0.0], [15.7997131, -4.2450732, 0.0], [15.8010864, -4.2450732, 0.0], [15.8010864, -4.2437037, 0.0], [15.7997131, -4.2437037, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1647}, "geometry": {"type": "Polygon", "coordinates": [[[15.8807373, -4.2437037, 0.0], [15.8807373, -4.2450732, 0.0], [15.8821106, -4.2450732, 0.0], [15.8821106, -4.2437037, 0.0], [15.8807373, -4.2437037, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1648}, "geometry": {"type": "Polygon", "coordinates": [[[15.9384155, -4.2437037, 0.0], [15.9384155, -4.2450732, 0.0], [15.9397888, -4.2450732, 0.0], [15.9397888, -4.2437037, 0.0], [15.9384155, -4.2437037, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1649}, "geometry": {"type": "Polygon", "coordinates": [[[15.6925964, -4.2423342, 0.0], [15.6925964, -4.2437037, 0.0], [15.6939697, -4.2437037, 0.0], [15.695343, -4.2437037, 0.0], [15.695343, -4.2423342, 0.0], [15.695343, -4.2409647, 0.0], [15.695343, -4.2395951, 0.0], [15.6939697, -4.2395951, 0.0], [15.6939697, -4.2409647, 0.0], [15.6939697, -4.2423342, 0.0], [15.6925964, -4.2423342, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1650}, "geometry": {"type": "Polygon", "coordinates": [[[15.9315491, -4.2423342, 0.0], [15.9315491, -4.2437037, 0.0], [15.9329224, -4.2437037, 0.0], [15.9329224, -4.2423342, 0.0], [15.9315491, -4.2423342, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1651}, "geometry": {"type": "Polygon", "coordinates": [[[15.8587646, -4.2423342, 0.0], [15.8587646, -4.2437037, 0.0], [15.8601379, -4.2437037, 0.0], [15.8601379, -4.2423342, 0.0], [15.8587646, -4.2423342, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1652}, "geometry": {"type": "Polygon", "coordinates": [[[15.7791138, -4.2423342, 0.0], [15.7791138, -4.2437037, 0.0], [15.7804871, -4.2437037, 0.0], [15.7804871, -4.2423342, 0.0], [15.7791138, -4.2423342, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1653}, "geometry": {"type": "Polygon", "coordinates": [[[15.7475281, -4.2423342, 0.0], [15.7475281, -4.2409647, 0.0], [15.7461548, -4.2409647, 0.0], [15.7461548, -4.2423342, 0.0], [15.7461548, -4.2437037, 0.0], [15.7475281, -4.2437037, 0.0], [15.7475281, -4.2423342, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1654}, "geometry": {"type": "Polygon", "coordinates": [[[15.8903503, -4.2423342, 0.0], [15.8903503, -4.2437037, 0.0], [15.8917236, -4.2437037, 0.0], [15.8917236, -4.2423342, 0.0], [15.8903503, -4.2423342, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1655}, "geometry": {"type": "Polygon", "coordinates": [[[15.7901001, -4.2409647, 0.0], [15.7901001, -4.2423342, 0.0], [15.7914734, -4.2423342, 0.0], [15.7914734, -4.2409647, 0.0], [15.7901001, -4.2409647, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1656}, "geometry": {"type": "Polygon", "coordinates": [[[15.7681274, -4.2409647, 0.0], [15.7695007, -4.2409647, 0.0], [15.7695007, -4.2395951, 0.0], [15.7695007, -4.2382256, 0.0], [15.7695007, -4.2368561, 0.0], [15.7681274, -4.2368561, 0.0], [15.7681274, -4.2382256, 0.0], [15.7667542, -4.2382256, 0.0], [15.7667542, -4.2395951, 0.0], [15.7653809, -4.2395951, 0.0], [15.7653809, -4.2409647, 0.0], [15.7653809, -4.2423342, 0.0], [15.7667542, -4.2423342, 0.0], [15.7681274, -4.2423342, 0.0], [15.7681274, -4.2409647, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1657}, "geometry": {"type": "Polygon", "coordinates": [[[15.6898499, -4.2409647, 0.0], [15.6898499, -4.2395951, 0.0], [15.6884766, -4.2395951, 0.0], [15.6884766, -4.2409647, 0.0], [15.6884766, -4.2423342, 0.0], [15.6898499, -4.2423342, 0.0], [15.6898499, -4.2409647, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1658}, "geometry": {"type": "Polygon", "coordinates": [[[15.6033325, -4.2409647, 0.0], [15.6047058, -4.2409647, 0.0], [15.6047058, -4.2395951, 0.0], [15.6047058, -4.2382256, 0.0], [15.6033325, -4.2382256, 0.0], [15.6033325, -4.2368561, 0.0], [15.6033325, -4.2354865, 0.0], [15.6019592, -4.2354865, 0.0], [15.6005859, -4.2354865, 0.0], [15.6005859, -4.234117, 0.0], [15.6019592, -4.234117, 0.0], [15.6033325, -4.234117, 0.0], [15.6033325, -4.2327474, 0.0], [15.6047058, -4.2327474, 0.0], [15.6047058, -4.2313779, 0.0], [15.6047058, -4.2300083, 0.0], [15.6033325, -4.2300083, 0.0], [15.6019592, -4.2300083, 0.0], [15.6005859, -4.2300083, 0.0], [15.5992126, -4.2300083, 0.0], [15.5992126, -4.2313779, 0.0], [15.5992126, -4.2327474, 0.0], [15.5978394, -4.2327474, 0.0], [15.5978394, -4.234117, 0.0], [15.5978394, -4.2354865, 0.0], [15.5964661, -4.2354865, 0.0], [15.5950928, -4.2354865, 0.0], [15.5950928, -4.2368561, 0.0], [15.5964661, -4.2368561, 0.0], [15.5964661, -4.2382256, 0.0], [15.5964661, -4.2395951, 0.0], [15.5978394, -4.2395951, 0.0], [15.5992126, -4.2395951, 0.0], [15.5992126, -4.2382256, 0.0], [15.5992126, -4.2368561, 0.0], [15.6005859, -4.2368561, 0.0], [15.6005859, -4.2382256, 0.0], [15.6019592, -4.2382256, 0.0], [15.6019592, -4.2395951, 0.0], [15.6019592, -4.2409647, 0.0], [15.6019592, -4.2423342, 0.0], [15.6033325, -4.2423342, 0.0], [15.6033325, -4.2409647, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1659}, "geometry": {"type": "Polygon", "coordinates": [[[15.8930969, -4.2409647, 0.0], [15.8930969, -4.2423342, 0.0], [15.8944702, -4.2423342, 0.0], [15.8944702, -4.2409647, 0.0], [15.8930969, -4.2409647, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1660}, "geometry": {"type": "Polygon", "coordinates": [[[15.7104492, -4.2409647, 0.0], [15.7104492, -4.2423342, 0.0], [15.7118225, -4.2423342, 0.0], [15.7118225, -4.2409647, 0.0], [15.7104492, -4.2409647, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1661}, "geometry": {"type": "Polygon", "coordinates": [[[15.8903503, -4.2382256, 0.0], [15.8903503, -4.2368561, 0.0], [15.8917236, -4.2368561, 0.0], [15.8917236, -4.2354865, 0.0], [15.8917236, -4.234117, 0.0], [15.8917236, -4.2327474, 0.0], [15.8903503, -4.2327474, 0.0], [15.8903503, -4.2313779, 0.0], [15.8889771, -4.2313779, 0.0], [15.8876038, -4.2313779, 0.0], [15.8876038, -4.2327474, 0.0], [15.8876038, -4.234117, 0.0], [15.8889771, -4.234117, 0.0], [15.8889771, -4.2354865, 0.0], [15.8876038, -4.2354865, 0.0], [15.8876038, -4.2368561, 0.0], [15.8876038, -4.2382256, 0.0], [15.8876038, -4.2395951, 0.0], [15.8862305, -4.2395951, 0.0], [15.8862305, -4.2409647, 0.0], [15.8876038, -4.2409647, 0.0], [15.8889771, -4.2409647, 0.0], [15.8903503, -4.2409647, 0.0], [15.8903503, -4.2395951, 0.0], [15.8903503, -4.2382256, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1662}, "geometry": {"type": "Polygon", "coordinates": [[[15.7969666, -4.2395951, 0.0], [15.7969666, -4.2409647, 0.0], [15.7983398, -4.2409647, 0.0], [15.7983398, -4.2395951, 0.0], [15.7969666, -4.2395951, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1663}, "geometry": {"type": "Polygon", "coordinates": [[[15.8821106, -4.2395951, 0.0], [15.8821106, -4.2409647, 0.0], [15.8834839, -4.2409647, 0.0], [15.8834839, -4.2395951, 0.0], [15.8821106, -4.2395951, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1664}, "geometry": {"type": "Polygon", "coordinates": [[[15.8985901, -4.2382256, 0.0], [15.8985901, -4.2395951, 0.0], [15.8999634, -4.2395951, 0.0], [15.8999634, -4.2382256, 0.0], [15.8985901, -4.2382256, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1665}, "geometry": {"type": "Polygon", "coordinates": [[[15.8972168, -4.2382256, 0.0], [15.8972168, -4.2368561, 0.0], [15.8958435, -4.2368561, 0.0], [15.8958435, -4.2382256, 0.0], [15.8958435, -4.2395951, 0.0], [15.8972168, -4.2395951, 0.0], [15.8972168, -4.2382256, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1666}, "geometry": {"type": "Polygon", "coordinates": [[[15.7489014, -4.2395951, 0.0], [15.7489014, -4.2382256, 0.0], [15.7475281, -4.2382256, 0.0], [15.7475281, -4.2395951, 0.0], [15.7475281, -4.2409647, 0.0], [15.7489014, -4.2409647, 0.0], [15.7489014, -4.2395951, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1667}, "geometry": {"type": "Polygon", "coordinates": [[[15.7928467, -4.2382256, 0.0], [15.7928467, -4.2395951, 0.0], [15.79422, -4.2395951, 0.0], [15.79422, -4.2382256, 0.0], [15.7928467, -4.2382256, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1668}, "geometry": {"type": "Polygon", "coordinates": [[[15.8848572, -4.2382256, 0.0], [15.8848572, -4.2368561, 0.0], [15.8848572, -4.2354865, 0.0], [15.8848572, -4.234117, 0.0], [15.8848572, -4.2327474, 0.0], [15.8834839, -4.2327474, 0.0], [15.8834839, -4.234117, 0.0], [15.8821106, -4.234117, 0.0], [15.8807373, -4.234117, 0.0], [15.8807373, -4.2354865, 0.0], [15.8821106, -4.2354865, 0.0], [15.8834839, -4.2354865, 0.0], [15.8834839, -4.2368561, 0.0], [15.8834839, -4.2382256, 0.0], [15.8834839, -4.2395951, 0.0], [15.8848572, -4.2395951, 0.0], [15.8848572, -4.2382256, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1669}, "geometry": {"type": "Polygon", "coordinates": [[[15.8299255, -4.2382256, 0.0], [15.8285522, -4.2382256, 0.0], [15.8285522, -4.2395951, 0.0], [15.8299255, -4.2395951, 0.0], [15.8312988, -4.2395951, 0.0], [15.8312988, -4.2382256, 0.0], [15.8299255, -4.2382256, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1670}, "geometry": {"type": "Polygon", "coordinates": [[[15.8724976, -4.2382256, 0.0], [15.8711243, -4.2382256, 0.0], [15.8711243, -4.2395951, 0.0], [15.8724976, -4.2395951, 0.0], [15.8738708, -4.2395951, 0.0], [15.8738708, -4.2382256, 0.0], [15.8724976, -4.2382256, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1671}, "geometry": {"type": "Polygon", "coordinates": [[[15.6980896, -4.2382256, 0.0], [15.6980896, -4.2395951, 0.0], [15.6994629, -4.2395951, 0.0], [15.6994629, -4.2382256, 0.0], [15.6980896, -4.2382256, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1672}, "geometry": {"type": "Polygon", "coordinates": [[[15.6925964, -4.2382256, 0.0], [15.6925964, -4.2395951, 0.0], [15.6939697, -4.2395951, 0.0], [15.6939697, -4.2382256, 0.0], [15.6925964, -4.2382256, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1673}, "geometry": {"type": "Polygon", "coordinates": [[[15.6074524, -4.2382256, 0.0], [15.6060791, -4.2382256, 0.0], [15.6060791, -4.2395951, 0.0], [15.6074524, -4.2395951, 0.0], [15.6088257, -4.2395951, 0.0], [15.6088257, -4.2382256, 0.0], [15.6074524, -4.2382256, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1674}, "geometry": {"type": "Polygon", "coordinates": [[[15.9274292, -4.2368561, 0.0], [15.9274292, -4.2382256, 0.0], [15.9288025, -4.2382256, 0.0], [15.9288025, -4.2368561, 0.0], [15.9274292, -4.2368561, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1675}, "geometry": {"type": "Polygon", "coordinates": [[[15.8752441, -4.2354865, 0.0], [15.8752441, -4.2368561, 0.0], [15.8766174, -4.2368561, 0.0], [15.8766174, -4.2354865, 0.0], [15.8752441, -4.2354865, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1676}, "geometry": {"type": "Polygon", "coordinates": [[[15.8340454, -4.2354865, 0.0], [15.8340454, -4.2368561, 0.0], [15.8354187, -4.2368561, 0.0], [15.8354187, -4.2354865, 0.0], [15.8340454, -4.2354865, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1677}, "geometry": {"type": "Polygon", "coordinates": [[[15.7543945, -4.2354865, 0.0], [15.7543945, -4.234117, 0.0], [15.7530212, -4.234117, 0.0], [15.7530212, -4.2354865, 0.0], [15.7530212, -4.2368561, 0.0], [15.7543945, -4.2368561, 0.0], [15.7543945, -4.2354865, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1678}, "geometry": {"type": "Polygon", "coordinates": [[[15.7049561, -4.2368561, 0.0], [15.7049561, -4.2382256, 0.0], [15.7063293, -4.2382256, 0.0], [15.7063293, -4.2368561, 0.0], [15.7049561, -4.2368561, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1679}, "geometry": {"type": "Polygon", "coordinates": [[[15.6994629, -4.2368561, 0.0], [15.6994629, -4.2382256, 0.0], [15.7008362, -4.2382256, 0.0], [15.7008362, -4.2368561, 0.0], [15.6994629, -4.2368561, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1680}, "geometry": {"type": "Polygon", "coordinates": [[[15.695343, -4.2354865, 0.0], [15.695343, -4.2368561, 0.0], [15.6967163, -4.2368561, 0.0], [15.6967163, -4.2354865, 0.0], [15.695343, -4.2354865, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1681}, "geometry": {"type": "Polygon", "coordinates": [[[15.9411621, -4.2354865, 0.0], [15.9411621, -4.2368561, 0.0], [15.9425354, -4.2368561, 0.0], [15.9425354, -4.2354865, 0.0], [15.9411621, -4.2354865, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1682}, "geometry": {"type": "Polygon", "coordinates": [[[15.7873535, -4.2354865, 0.0], [15.7873535, -4.2368561, 0.0], [15.7887268, -4.2368561, 0.0], [15.7887268, -4.2354865, 0.0], [15.7873535, -4.2354865, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1683}, "geometry": {"type": "Polygon", "coordinates": [[[15.6225586, -4.2354865, 0.0], [15.6211853, -4.2354865, 0.0], [15.6211853, -4.2368561, 0.0], [15.6225586, -4.2368561, 0.0], [15.6239319, -4.2368561, 0.0], [15.6239319, -4.2354865, 0.0], [15.6225586, -4.2354865, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1684}, "geometry": {"type": "Polygon", "coordinates": [[[15.7997131, -4.2354865, 0.0], [15.7997131, -4.2368561, 0.0], [15.8010864, -4.2368561, 0.0], [15.8024597, -4.2368561, 0.0], [15.8024597, -4.2354865, 0.0], [15.8010864, -4.2354865, 0.0], [15.7997131, -4.2354865, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1685}, "geometry": {"type": "Polygon", "coordinates": [[[15.827179, -4.2354865, 0.0], [15.827179, -4.2368561, 0.0], [15.8285522, -4.2368561, 0.0], [15.8285522, -4.2354865, 0.0], [15.827179, -4.2354865, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1686}, "geometry": {"type": "Polygon", "coordinates": [[[15.7928467, -4.234117, 0.0], [15.7928467, -4.2327474, 0.0], [15.7914734, -4.2327474, 0.0], [15.7914734, -4.234117, 0.0], [15.7914734, -4.2354865, 0.0], [15.7928467, -4.2354865, 0.0], [15.7928467, -4.234117, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1687}, "geometry": {"type": "Polygon", "coordinates": [[[15.7846069, -4.234117, 0.0], [15.7846069, -4.2354865, 0.0], [15.7859802, -4.2354865, 0.0], [15.7859802, -4.234117, 0.0], [15.7846069, -4.234117, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1688}, "geometry": {"type": "Polygon", "coordinates": [[[15.803833, -4.234117, 0.0], [15.803833, -4.2327474, 0.0], [15.8024597, -4.2327474, 0.0], [15.8010864, -4.2327474, 0.0], [15.8010864, -4.234117, 0.0], [15.8024597, -4.234117, 0.0], [15.8024597, -4.2354865, 0.0], [15.803833, -4.2354865, 0.0], [15.803833, -4.234117, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1689}, "geometry": {"type": "Polygon", "coordinates": [[[15.718689, -4.234117, 0.0], [15.718689, -4.2327474, 0.0], [15.7173157, -4.2327474, 0.0], [15.7173157, -4.234117, 0.0], [15.7173157, -4.2354865, 0.0], [15.718689, -4.2354865, 0.0], [15.718689, -4.234117, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1690}, "geometry": {"type": "Polygon", "coordinates": [[[15.7118225, -4.234117, 0.0], [15.7118225, -4.2354865, 0.0], [15.7131958, -4.2354865, 0.0], [15.7145691, -4.2354865, 0.0], [15.7145691, -4.234117, 0.0], [15.7131958, -4.234117, 0.0], [15.7118225, -4.234117, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1691}, "geometry": {"type": "Polygon", "coordinates": [[[15.8573914, -4.2327474, 0.0], [15.8573914, -4.2313779, 0.0], [15.8560181, -4.2313779, 0.0], [15.8560181, -4.2327474, 0.0], [15.8560181, -4.234117, 0.0], [15.8573914, -4.234117, 0.0], [15.8573914, -4.2327474, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1692}, "geometry": {"type": "Polygon", "coordinates": [[[15.8436584, -4.2327474, 0.0], [15.8422852, -4.2327474, 0.0], [15.8422852, -4.234117, 0.0], [15.8436584, -4.234117, 0.0], [15.8450317, -4.234117, 0.0], [15.8450317, -4.2327474, 0.0], [15.8436584, -4.2327474, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1693}, "geometry": {"type": "Polygon", "coordinates": [[[15.8999634, -4.2327474, 0.0], [15.8999634, -4.2313779, 0.0], [15.8999634, -4.2300083, 0.0], [15.8985901, -4.2300083, 0.0], [15.8985901, -4.2313779, 0.0], [15.8985901, -4.2327474, 0.0], [15.8985901, -4.234117, 0.0], [15.8999634, -4.234117, 0.0], [15.8999634, -4.2327474, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1694}, "geometry": {"type": "Polygon", "coordinates": [[[15.8340454, -4.2327474, 0.0], [15.8354187, -4.2327474, 0.0], [15.8354187, -4.2313779, 0.0], [15.8340454, -4.2313779, 0.0], [15.8326721, -4.2313779, 0.0], [15.8312988, -4.2313779, 0.0], [15.8312988, -4.2327474, 0.0], [15.8326721, -4.2327474, 0.0], [15.8326721, -4.234117, 0.0], [15.8340454, -4.234117, 0.0], [15.8340454, -4.2327474, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1695}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.2327474, 0.0], [15.7557678, -4.2313779, 0.0], [15.7557678, -4.2300083, 0.0], [15.7543945, -4.2300083, 0.0], [15.7543945, -4.2313779, 0.0], [15.7543945, -4.2327474, 0.0], [15.7543945, -4.234117, 0.0], [15.7557678, -4.234117, 0.0], [15.7557678, -4.2327474, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1696}, "geometry": {"type": "Polygon", "coordinates": [[[15.6225586, -4.2327474, 0.0], [15.6225586, -4.234117, 0.0], [15.6239319, -4.234117, 0.0], [15.6253052, -4.234117, 0.0], [15.6253052, -4.2327474, 0.0], [15.6239319, -4.2327474, 0.0], [15.6225586, -4.2327474, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1697}, "geometry": {"type": "Polygon", "coordinates": [[[15.5580139, -4.2327474, 0.0], [15.5593872, -4.2327474, 0.0], [15.5593872, -4.2313779, 0.0], [15.5580139, -4.2313779, 0.0], [15.5566406, -4.2313779, 0.0], [15.5552673, -4.2313779, 0.0], [15.5552673, -4.2327474, 0.0], [15.5552673, -4.234117, 0.0], [15.5566406, -4.234117, 0.0], [15.5580139, -4.234117, 0.0], [15.5580139, -4.2327474, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1698}, "geometry": {"type": "Polygon", "coordinates": [[[15.5882263, -4.2327474, 0.0], [15.5882263, -4.234117, 0.0], [15.5895996, -4.234117, 0.0], [15.5895996, -4.2327474, 0.0], [15.5882263, -4.2327474, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1699}, "geometry": {"type": "Polygon", "coordinates": [[[15.8148193, -4.2313779, 0.0], [15.8148193, -4.2327474, 0.0], [15.8161926, -4.2327474, 0.0], [15.8161926, -4.2313779, 0.0], [15.8148193, -4.2313779, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1700}, "geometry": {"type": "Polygon", "coordinates": [[[15.7955933, -4.2313779, 0.0], [15.7955933, -4.2300083, 0.0], [15.7955933, -4.2286388, 0.0], [15.79422, -4.2286388, 0.0], [15.79422, -4.2300083, 0.0], [15.7928467, -4.2300083, 0.0], [15.7928467, -4.2313779, 0.0], [15.79422, -4.2313779, 0.0], [15.79422, -4.2327474, 0.0], [15.7955933, -4.2327474, 0.0], [15.7955933, -4.2313779, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1701}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.2313779, 0.0], [15.7667542, -4.2327474, 0.0], [15.7681274, -4.2327474, 0.0], [15.7681274, -4.2313779, 0.0], [15.7667542, -4.2313779, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1702}, "geometry": {"type": "Polygon", "coordinates": [[[15.7090759, -4.2327474, 0.0], [15.7090759, -4.2313779, 0.0], [15.7090759, -4.2300083, 0.0], [15.7090759, -4.2286388, 0.0], [15.7090759, -4.2272692, 0.0], [15.7077026, -4.2272692, 0.0], [15.7077026, -4.2286388, 0.0], [15.7063293, -4.2286388, 0.0], [15.7063293, -4.2300083, 0.0], [15.7077026, -4.2300083, 0.0], [15.7077026, -4.2313779, 0.0], [15.7063293, -4.2313779, 0.0], [15.7063293, -4.2327474, 0.0], [15.7063293, -4.234117, 0.0], [15.7077026, -4.234117, 0.0], [15.7090759, -4.234117, 0.0], [15.7090759, -4.2327474, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1703}, "geometry": {"type": "Polygon", "coordinates": [[[15.7008362, -4.2327474, 0.0], [15.7008362, -4.234117, 0.0], [15.7022095, -4.234117, 0.0], [15.7022095, -4.2327474, 0.0], [15.7008362, -4.2327474, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1704}, "geometry": {"type": "Polygon", "coordinates": [[[15.6980896, -4.2327474, 0.0], [15.6980896, -4.2313779, 0.0], [15.6967163, -4.2313779, 0.0], [15.6967163, -4.2327474, 0.0], [15.695343, -4.2327474, 0.0], [15.695343, -4.234117, 0.0], [15.6967163, -4.234117, 0.0], [15.6980896, -4.234117, 0.0], [15.6980896, -4.2327474, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1705}, "geometry": {"type": "Polygon", "coordinates": [[[15.6994629, -4.2313779, 0.0], [15.6994629, -4.2327474, 0.0], [15.7008362, -4.2327474, 0.0], [15.7008362, -4.2313779, 0.0], [15.6994629, -4.2313779, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1706}, "geometry": {"type": "Polygon", "coordinates": [[[15.5827332, -4.2313779, 0.0], [15.5827332, -4.2327474, 0.0], [15.5841064, -4.2327474, 0.0], [15.5854797, -4.2327474, 0.0], [15.586853, -4.2327474, 0.0], [15.586853, -4.2313779, 0.0], [15.5854797, -4.2313779, 0.0], [15.5841064, -4.2313779, 0.0], [15.5827332, -4.2313779, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1707}, "geometry": {"type": "Polygon", "coordinates": [[[15.9301758, -4.2300083, 0.0], [15.9301758, -4.2313779, 0.0], [15.9315491, -4.2313779, 0.0], [15.9315491, -4.2300083, 0.0], [15.9301758, -4.2300083, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1708}, "geometry": {"type": "Polygon", "coordinates": [[[15.5882263, -4.2300083, 0.0], [15.5882263, -4.2313779, 0.0], [15.5895996, -4.2313779, 0.0], [15.5909729, -4.2313779, 0.0], [15.5909729, -4.2300083, 0.0], [15.5895996, -4.2300083, 0.0], [15.5882263, -4.2300083, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1709}, "geometry": {"type": "Polygon", "coordinates": [[[15.8917236, -4.2300083, 0.0], [15.8917236, -4.2313779, 0.0], [15.8930969, -4.2313779, 0.0], [15.8930969, -4.2300083, 0.0], [15.8917236, -4.2300083, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1710}, "geometry": {"type": "Polygon", "coordinates": [[[15.6170654, -4.2313779, 0.0], [15.6170654, -4.2300083, 0.0], [15.6156921, -4.2300083, 0.0], [15.6156921, -4.2313779, 0.0], [15.6156921, -4.2327474, 0.0], [15.6170654, -4.2327474, 0.0], [15.6170654, -4.2313779, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1711}, "geometry": {"type": "Polygon", "coordinates": [[[15.8491516, -4.2300083, 0.0], [15.8491516, -4.2313779, 0.0], [15.8505249, -4.2313779, 0.0], [15.8505249, -4.2300083, 0.0], [15.8491516, -4.2300083, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1712}, "geometry": {"type": "Polygon", "coordinates": [[[15.7022095, -4.2300083, 0.0], [15.7022095, -4.2286388, 0.0], [15.7008362, -4.2286388, 0.0], [15.7008362, -4.2300083, 0.0], [15.7008362, -4.2313779, 0.0], [15.7022095, -4.2313779, 0.0], [15.7022095, -4.2300083, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1713}, "geometry": {"type": "Polygon", "coordinates": [[[15.5854797, -4.2286388, 0.0], [15.5854797, -4.2300083, 0.0], [15.586853, -4.2300083, 0.0], [15.586853, -4.2286388, 0.0], [15.5854797, -4.2286388, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1714}, "geometry": {"type": "Polygon", "coordinates": [[[15.7447815, -4.2300083, 0.0], [15.7447815, -4.2313779, 0.0], [15.7461548, -4.2313779, 0.0], [15.7461548, -4.2300083, 0.0], [15.7447815, -4.2300083, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1715}, "geometry": {"type": "Polygon", "coordinates": [[[15.7859802, -4.2286388, 0.0], [15.7859802, -4.2272692, 0.0], [15.7873535, -4.2272692, 0.0], [15.7873535, -4.2258997, 0.0], [15.7859802, -4.2258997, 0.0], [15.7846069, -4.2258997, 0.0], [15.7832336, -4.2258997, 0.0], [15.7832336, -4.2245301, 0.0], [15.7832336, -4.2231606, 0.0], [15.7846069, -4.2231606, 0.0], [15.7846069, -4.221791, 0.0], [15.7832336, -4.221791, 0.0], [15.7818604, -4.221791, 0.0], [15.7818604, -4.2204214, 0.0], [15.7818604, -4.2190519, 0.0], [15.7804871, -4.2190519, 0.0], [15.7791138, -4.2190519, 0.0], [15.7777405, -4.2190519, 0.0], [15.7763672, -4.2190519, 0.0], [15.7763672, -4.2176823, 0.0], [15.7749939, -4.2176823, 0.0], [15.7749939, -4.2190519, 0.0], [15.7736206, -4.2190519, 0.0], [15.7736206, -4.2204214, 0.0], [15.7749939, -4.2204214, 0.0], [15.7749939, -4.221791, 0.0], [15.7763672, -4.221791, 0.0], [15.7763672, -4.2231606, 0.0], [15.7763672, -4.2245301, 0.0], [15.7763672, -4.2258997, 0.0], [15.7763672, -4.2272692, 0.0], [15.7777405, -4.2272692, 0.0], [15.7791138, -4.2272692, 0.0], [15.7791138, -4.2286388, 0.0], [15.7804871, -4.2286388, 0.0], [15.7818604, -4.2286388, 0.0], [15.7832336, -4.2286388, 0.0], [15.7832336, -4.2300083, 0.0], [15.7846069, -4.2300083, 0.0], [15.7859802, -4.2300083, 0.0], [15.7859802, -4.2286388, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1716}, "geometry": {"type": "Polygon", "coordinates": [[[15.6417847, -4.2300083, 0.0], [15.6417847, -4.2313779, 0.0], [15.643158, -4.2313779, 0.0], [15.643158, -4.2300083, 0.0], [15.6417847, -4.2300083, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1717}, "geometry": {"type": "Polygon", "coordinates": [[[15.8189392, -4.2286388, 0.0], [15.8175659, -4.2286388, 0.0], [15.8175659, -4.2300083, 0.0], [15.8189392, -4.2300083, 0.0], [15.8203125, -4.2300083, 0.0], [15.8203125, -4.2286388, 0.0], [15.8189392, -4.2286388, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1718}, "geometry": {"type": "Polygon", "coordinates": [[[15.7997131, -4.2286388, 0.0], [15.7997131, -4.2272692, 0.0], [15.7983398, -4.2272692, 0.0], [15.7983398, -4.2286388, 0.0], [15.7969666, -4.2286388, 0.0], [15.7969666, -4.2300083, 0.0], [15.7983398, -4.2300083, 0.0], [15.7997131, -4.2300083, 0.0], [15.7997131, -4.2286388, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1719}, "geometry": {"type": "Polygon", "coordinates": [[[15.6184387, -4.2286388, 0.0], [15.6184387, -4.2272692, 0.0], [15.6170654, -4.2272692, 0.0], [15.6170654, -4.2286388, 0.0], [15.6170654, -4.2300083, 0.0], [15.6184387, -4.2300083, 0.0], [15.6184387, -4.2286388, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1720}, "geometry": {"type": "Polygon", "coordinates": [[[15.6967163, -4.2286388, 0.0], [15.6967163, -4.2300083, 0.0], [15.6980896, -4.2300083, 0.0], [15.6980896, -4.2286388, 0.0], [15.6967163, -4.2286388, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1721}, "geometry": {"type": "Polygon", "coordinates": [[[15.7461548, -4.2286388, 0.0], [15.7461548, -4.2300083, 0.0], [15.7475281, -4.2300083, 0.0], [15.7475281, -4.2286388, 0.0], [15.7461548, -4.2286388, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1722}, "geometry": {"type": "Polygon", "coordinates": [[[15.9095764, -4.2272692, 0.0], [15.9095764, -4.2258997, 0.0], [15.9082031, -4.2258997, 0.0], [15.9082031, -4.2272692, 0.0], [15.9082031, -4.2286388, 0.0], [15.9095764, -4.2286388, 0.0], [15.9095764, -4.2272692, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1723}, "geometry": {"type": "Polygon", "coordinates": [[[15.8738708, -4.2272692, 0.0], [15.8738708, -4.2286388, 0.0], [15.8752441, -4.2286388, 0.0], [15.8766174, -4.2286388, 0.0], [15.8766174, -4.2272692, 0.0], [15.8752441, -4.2272692, 0.0], [15.8738708, -4.2272692, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1724}, "geometry": {"type": "Polygon", "coordinates": [[[15.5854797, -4.2272692, 0.0], [15.5854797, -4.2258997, 0.0], [15.586853, -4.2258997, 0.0], [15.586853, -4.2245301, 0.0], [15.5854797, -4.2245301, 0.0], [15.5854797, -4.2231606, 0.0], [15.5841064, -4.2231606, 0.0], [15.5827332, -4.2231606, 0.0], [15.5813599, -4.2231606, 0.0], [15.5813599, -4.221791, 0.0], [15.5799866, -4.221791, 0.0], [15.5786133, -4.221791, 0.0], [15.5786133, -4.2204214, 0.0], [15.5786133, -4.2190519, 0.0], [15.5799866, -4.2190519, 0.0], [15.5813599, -4.2190519, 0.0], [15.5827332, -4.2190519, 0.0], [15.5827332, -4.2176823, 0.0], [15.5841064, -4.2176823, 0.0], [15.5854797, -4.2176823, 0.0], [15.586853, -4.2176823, 0.0], [15.586853, -4.2163127, 0.0], [15.586853, -4.2149431, 0.0], [15.5854797, -4.2149431, 0.0], [15.5854797, -4.2135736, 0.0], [15.5841064, -4.2135736, 0.0], [15.5827332, -4.2135736, 0.0], [15.5827332, -4.2149431, 0.0], [15.5827332, -4.2163127, 0.0], [15.5813599, -4.2163127, 0.0], [15.5799866, -4.2163127, 0.0], [15.5786133, -4.2163127, 0.0], [15.5786133, -4.2149431, 0.0], [15.5786133, -4.2135736, 0.0], [15.57724, -4.2135736, 0.0], [15.57724, -4.2149431, 0.0], [15.5758667, -4.2149431, 0.0], [15.5758667, -4.2135736, 0.0], [15.5758667, -4.212204, 0.0], [15.57724, -4.212204, 0.0], [15.57724, -4.2108344, 0.0], [15.5758667, -4.2108344, 0.0], [15.5758667, -4.2094648, 0.0], [15.5744934, -4.2094648, 0.0], [15.5744934, -4.2108344, 0.0], [15.5731201, -4.2108344, 0.0], [15.5731201, -4.212204, 0.0], [15.5717468, -4.212204, 0.0], [15.5717468, -4.2108344, 0.0], [15.5703735, -4.2108344, 0.0], [15.5703735, -4.212204, 0.0], [15.5703735, -4.2135736, 0.0], [15.5703735, -4.2149431, 0.0], [15.5703735, -4.2163127, 0.0], [15.5717468, -4.2163127, 0.0], [15.5731201, -4.2163127, 0.0], [15.5731201, -4.2176823, 0.0], [15.5717468, -4.2176823, 0.0], [15.5717468, -4.2190519, 0.0], [15.5717468, -4.2204214, 0.0], [15.5731201, -4.2204214, 0.0], [15.5731201, -4.221791, 0.0], [15.5717468, -4.221791, 0.0], [15.5717468, -4.2231606, 0.0], [15.5731201, -4.2231606, 0.0], [15.5744934, -4.2231606, 0.0], [15.5758667, -4.2231606, 0.0], [15.57724, -4.2231606, 0.0], [15.57724, -4.2245301, 0.0], [15.5786133, -4.2245301, 0.0], [15.5799866, -4.2245301, 0.0], [15.5813599, -4.2245301, 0.0], [15.5827332, -4.2245301, 0.0], [15.5827332, -4.2258997, 0.0], [15.5841064, -4.2258997, 0.0], [15.5841064, -4.2272692, 0.0], [15.5841064, -4.2286388, 0.0], [15.5854797, -4.2286388, 0.0], [15.5854797, -4.2272692, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1725}, "geometry": {"type": "Polygon", "coordinates": [[[15.6417847, -4.2272692, 0.0], [15.6417847, -4.2286388, 0.0], [15.643158, -4.2286388, 0.0], [15.643158, -4.2272692, 0.0], [15.6417847, -4.2272692, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1726}, "geometry": {"type": "Polygon", "coordinates": [[[15.8944702, -4.2272692, 0.0], [15.8944702, -4.2286388, 0.0], [15.8958435, -4.2286388, 0.0], [15.8972168, -4.2286388, 0.0], [15.8972168, -4.2272692, 0.0], [15.8958435, -4.2272692, 0.0], [15.8944702, -4.2272692, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1727}, "geometry": {"type": "Polygon", "coordinates": [[[15.6980896, -4.2272692, 0.0], [15.6980896, -4.2286388, 0.0], [15.6994629, -4.2286388, 0.0], [15.6994629, -4.2272692, 0.0], [15.6980896, -4.2272692, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1728}, "geometry": {"type": "Polygon", "coordinates": [[[15.7214355, -4.2258997, 0.0], [15.7200623, -4.2258997, 0.0], [15.7200623, -4.2272692, 0.0], [15.7214355, -4.2272692, 0.0], [15.7228088, -4.2272692, 0.0], [15.7228088, -4.2258997, 0.0], [15.7214355, -4.2258997, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1729}, "geometry": {"type": "Polygon", "coordinates": [[[15.5758667, -4.2258997, 0.0], [15.5758667, -4.2245301, 0.0], [15.5744934, -4.2245301, 0.0], [15.5731201, -4.2245301, 0.0], [15.5717468, -4.2245301, 0.0], [15.5717468, -4.2258997, 0.0], [15.5731201, -4.2258997, 0.0], [15.5744934, -4.2258997, 0.0], [15.5744934, -4.2272692, 0.0], [15.5758667, -4.2272692, 0.0], [15.5758667, -4.2258997, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1730}, "geometry": {"type": "Polygon", "coordinates": [[[15.7090759, -4.2258997, 0.0], [15.7090759, -4.2272692, 0.0], [15.7104492, -4.2272692, 0.0], [15.7104492, -4.2258997, 0.0], [15.7090759, -4.2258997, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1731}, "geometry": {"type": "Polygon", "coordinates": [[[15.8120728, -4.2258997, 0.0], [15.8120728, -4.2272692, 0.0], [15.813446, -4.2272692, 0.0], [15.813446, -4.2258997, 0.0], [15.8120728, -4.2258997, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1732}, "geometry": {"type": "Polygon", "coordinates": [[[15.8930969, -4.2258997, 0.0], [15.8930969, -4.2272692, 0.0], [15.8944702, -4.2272692, 0.0], [15.8944702, -4.2258997, 0.0], [15.8930969, -4.2258997, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1733}, "geometry": {"type": "Polygon", "coordinates": [[[15.9068298, -4.2258997, 0.0], [15.9068298, -4.2245301, 0.0], [15.9054565, -4.2245301, 0.0], [15.9054565, -4.2258997, 0.0], [15.9054565, -4.2272692, 0.0], [15.9068298, -4.2272692, 0.0], [15.9068298, -4.2258997, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1734}, "geometry": {"type": "Polygon", "coordinates": [[[15.5909729, -4.2258997, 0.0], [15.5909729, -4.2272692, 0.0], [15.5923462, -4.2272692, 0.0], [15.5937195, -4.2272692, 0.0], [15.5950928, -4.2272692, 0.0], [15.5950928, -4.2258997, 0.0], [15.5937195, -4.2258997, 0.0], [15.5923462, -4.2258997, 0.0], [15.5909729, -4.2258997, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1735}, "geometry": {"type": "Polygon", "coordinates": [[[15.5607605, -4.2245301, 0.0], [15.5607605, -4.2258997, 0.0], [15.5621338, -4.2258997, 0.0], [15.5621338, -4.2245301, 0.0], [15.5607605, -4.2245301, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1736}, "geometry": {"type": "Polygon", "coordinates": [[[15.5690002, -4.2245301, 0.0], [15.5690002, -4.2258997, 0.0], [15.5703735, -4.2258997, 0.0], [15.5703735, -4.2245301, 0.0], [15.5690002, -4.2245301, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1737}, "geometry": {"type": "Polygon", "coordinates": [[[15.610199, -4.2258997, 0.0], [15.610199, -4.2272692, 0.0], [15.6115723, -4.2272692, 0.0], [15.6115723, -4.2258997, 0.0], [15.610199, -4.2258997, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1738}, "geometry": {"type": "Polygon", "coordinates": [[[15.8683777, -4.2245301, 0.0], [15.8683777, -4.2258997, 0.0], [15.869751, -4.2258997, 0.0], [15.869751, -4.2245301, 0.0], [15.8683777, -4.2245301, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1739}, "geometry": {"type": "Polygon", "coordinates": [[[15.7090759, -4.2245301, 0.0], [15.7104492, -4.2245301, 0.0], [15.7104492, -4.2231606, 0.0], [15.7118225, -4.2231606, 0.0], [15.7118225, -4.221791, 0.0], [15.7104492, -4.221791, 0.0], [15.7104492, -4.2204214, 0.0], [15.7090759, -4.2204214, 0.0], [15.7090759, -4.221791, 0.0], [15.7077026, -4.221791, 0.0], [15.7077026, -4.2231606, 0.0], [15.7063293, -4.2231606, 0.0], [15.7063293, -4.2245301, 0.0], [15.7077026, -4.2245301, 0.0], [15.7077026, -4.2258997, 0.0], [15.7090759, -4.2258997, 0.0], [15.7090759, -4.2245301, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1740}, "geometry": {"type": "Polygon", "coordinates": [[[15.6980896, -4.2245301, 0.0], [15.6980896, -4.2258997, 0.0], [15.6994629, -4.2258997, 0.0], [15.6994629, -4.2245301, 0.0], [15.6980896, -4.2245301, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1741}, "geometry": {"type": "Polygon", "coordinates": [[[15.7296753, -4.2245301, 0.0], [15.7296753, -4.2231606, 0.0], [15.728302, -4.2231606, 0.0], [15.728302, -4.2245301, 0.0], [15.728302, -4.2258997, 0.0], [15.7296753, -4.2258997, 0.0], [15.7310486, -4.2258997, 0.0], [15.7310486, -4.2245301, 0.0], [15.7296753, -4.2245301, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1742}, "geometry": {"type": "Polygon", "coordinates": [[[15.553894, -4.2245301, 0.0], [15.553894, -4.2231606, 0.0], [15.553894, -4.221791, 0.0], [15.5552673, -4.221791, 0.0], [15.5552673, -4.2204214, 0.0], [15.5552673, -4.2190519, 0.0], [15.5552673, -4.2176823, 0.0], [15.5552673, -4.2163127, 0.0], [15.5566406, -4.2163127, 0.0], [15.5566406, -4.2149431, 0.0], [15.5580139, -4.2149431, 0.0], [15.5593872, -4.2149431, 0.0], [15.5593872, -4.2135736, 0.0], [15.5580139, -4.2135736, 0.0], [15.5566406, -4.2135736, 0.0], [15.5552673, -4.2135736, 0.0], [15.553894, -4.2135736, 0.0], [15.5525208, -4.2135736, 0.0], [15.5511475, -4.2135736, 0.0], [15.5497742, -4.2135736, 0.0], [15.5497742, -4.2149431, 0.0], [15.5497742, -4.2163127, 0.0], [15.5511475, -4.2163127, 0.0], [15.5511475, -4.2176823, 0.0], [15.5511475, -4.2190519, 0.0], [15.5525208, -4.2190519, 0.0], [15.5525208, -4.2204214, 0.0], [15.5525208, -4.221791, 0.0], [15.5525208, -4.2231606, 0.0], [15.5525208, -4.2245301, 0.0], [15.5525208, -4.2258997, 0.0], [15.553894, -4.2258997, 0.0], [15.553894, -4.2245301, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1743}, "geometry": {"type": "Polygon", "coordinates": [[[15.7200623, -4.2245301, 0.0], [15.7200623, -4.2231606, 0.0], [15.718689, -4.2231606, 0.0], [15.7173157, -4.2231606, 0.0], [15.7173157, -4.2245301, 0.0], [15.718689, -4.2245301, 0.0], [15.718689, -4.2258997, 0.0], [15.7200623, -4.2258997, 0.0], [15.7200623, -4.2245301, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1744}, "geometry": {"type": "Polygon", "coordinates": [[[15.6047058, -4.2231606, 0.0], [15.6047058, -4.2245301, 0.0], [15.6060791, -4.2245301, 0.0], [15.6074524, -4.2245301, 0.0], [15.6074524, -4.2231606, 0.0], [15.6060791, -4.2231606, 0.0], [15.6047058, -4.2231606, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1745}, "geometry": {"type": "Polygon", "coordinates": [[[15.8889771, -4.2231606, 0.0], [15.8889771, -4.2245301, 0.0], [15.8903503, -4.2245301, 0.0], [15.8903503, -4.2231606, 0.0], [15.8889771, -4.2231606, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1746}, "geometry": {"type": "Polygon", "coordinates": [[[15.7008362, -4.2231606, 0.0], [15.7008362, -4.2245301, 0.0], [15.7022095, -4.2245301, 0.0], [15.7035828, -4.2245301, 0.0], [15.7035828, -4.2231606, 0.0], [15.7022095, -4.2231606, 0.0], [15.7008362, -4.2231606, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1747}, "geometry": {"type": "Polygon", "coordinates": [[[15.5552673, -4.2231606, 0.0], [15.5552673, -4.2245301, 0.0], [15.5566406, -4.2245301, 0.0], [15.5566406, -4.2231606, 0.0], [15.5552673, -4.2231606, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1748}, "geometry": {"type": "Polygon", "coordinates": [[[15.5580139, -4.2231606, 0.0], [15.5580139, -4.2245301, 0.0], [15.5593872, -4.2245301, 0.0], [15.5593872, -4.2231606, 0.0], [15.5580139, -4.2231606, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1749}, "geometry": {"type": "Polygon", "coordinates": [[[15.8189392, -4.2231606, 0.0], [15.8189392, -4.2245301, 0.0], [15.8203125, -4.2245301, 0.0], [15.8203125, -4.2231606, 0.0], [15.8189392, -4.2231606, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1750}, "geometry": {"type": "Polygon", "coordinates": [[[15.8120728, -4.2231606, 0.0], [15.8120728, -4.2245301, 0.0], [15.813446, -4.2245301, 0.0], [15.813446, -4.2231606, 0.0], [15.8120728, -4.2231606, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1751}, "geometry": {"type": "Polygon", "coordinates": [[[15.5923462, -4.221791, 0.0], [15.5923462, -4.2204214, 0.0], [15.5923462, -4.2190519, 0.0], [15.5909729, -4.2190519, 0.0], [15.5895996, -4.2190519, 0.0], [15.5882263, -4.2190519, 0.0], [15.5882263, -4.2204214, 0.0], [15.5882263, -4.221791, 0.0], [15.5895996, -4.221791, 0.0], [15.5909729, -4.221791, 0.0], [15.5909729, -4.2231606, 0.0], [15.5923462, -4.2231606, 0.0], [15.5923462, -4.221791, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1752}, "geometry": {"type": "Polygon", "coordinates": [[[15.8711243, -4.221791, 0.0], [15.8711243, -4.2231606, 0.0], [15.8724976, -4.2231606, 0.0], [15.8724976, -4.221791, 0.0], [15.8711243, -4.221791, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1753}, "geometry": {"type": "Polygon", "coordinates": [[[15.6184387, -4.221791, 0.0], [15.6184387, -4.2231606, 0.0], [15.619812, -4.2231606, 0.0], [15.619812, -4.221791, 0.0], [15.6184387, -4.221791, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1754}, "geometry": {"type": "Polygon", "coordinates": [[[15.5635071, -4.221791, 0.0], [15.5635071, -4.2231606, 0.0], [15.5648804, -4.2231606, 0.0], [15.5648804, -4.221791, 0.0], [15.5635071, -4.221791, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1755}, "geometry": {"type": "Polygon", "coordinates": [[[15.8999634, -4.221791, 0.0], [15.8999634, -4.2204214, 0.0], [15.8985901, -4.2204214, 0.0], [15.8972168, -4.2204214, 0.0], [15.8958435, -4.2204214, 0.0], [15.8958435, -4.221791, 0.0], [15.8972168, -4.221791, 0.0], [15.8985901, -4.221791, 0.0], [15.8985901, -4.2231606, 0.0], [15.8999634, -4.2231606, 0.0], [15.8999634, -4.221791, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1756}, "geometry": {"type": "Polygon", "coordinates": [[[15.8889771, -4.221791, 0.0], [15.8903503, -4.221791, 0.0], [15.8903503, -4.2204214, 0.0], [15.8889771, -4.2204214, 0.0], [15.8876038, -4.2204214, 0.0], [15.8876038, -4.221791, 0.0], [15.8876038, -4.2231606, 0.0], [15.8889771, -4.2231606, 0.0], [15.8889771, -4.221791, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1757}, "geometry": {"type": "Polygon", "coordinates": [[[15.8917236, -4.2204214, 0.0], [15.8917236, -4.221791, 0.0], [15.8930969, -4.221791, 0.0], [15.8930969, -4.2204214, 0.0], [15.8917236, -4.2204214, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1758}, "geometry": {"type": "Polygon", "coordinates": [[[15.7722473, -4.2204214, 0.0], [15.7722473, -4.2190519, 0.0], [15.7722473, -4.2176823, 0.0], [15.770874, -4.2176823, 0.0], [15.770874, -4.2190519, 0.0], [15.770874, -4.2204214, 0.0], [15.770874, -4.221791, 0.0], [15.7722473, -4.221791, 0.0], [15.7736206, -4.221791, 0.0], [15.7736206, -4.2204214, 0.0], [15.7722473, -4.2204214, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1759}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.2204214, 0.0], [15.7667542, -4.221791, 0.0], [15.7681274, -4.221791, 0.0], [15.7681274, -4.2204214, 0.0], [15.7667542, -4.2204214, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1760}, "geometry": {"type": "Polygon", "coordinates": [[[15.5978394, -4.2204214, 0.0], [15.5964661, -4.2204214, 0.0], [15.5964661, -4.2190519, 0.0], [15.5950928, -4.2190519, 0.0], [15.5950928, -4.2204214, 0.0], [15.5950928, -4.221791, 0.0], [15.5964661, -4.221791, 0.0], [15.5978394, -4.221791, 0.0], [15.5992126, -4.221791, 0.0], [15.5992126, -4.2204214, 0.0], [15.5978394, -4.2204214, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1761}, "geometry": {"type": "Polygon", "coordinates": [[[15.5648804, -4.2204214, 0.0], [15.5648804, -4.221791, 0.0], [15.5662537, -4.221791, 0.0], [15.5662537, -4.2204214, 0.0], [15.5648804, -4.2204214, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1762}, "geometry": {"type": "Polygon", "coordinates": [[[15.8752441, -4.2204214, 0.0], [15.8752441, -4.221791, 0.0], [15.8766174, -4.221791, 0.0], [15.8766174, -4.2204214, 0.0], [15.8752441, -4.2204214, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1763}, "geometry": {"type": "Polygon", "coordinates": [[[15.8628845, -4.2190519, 0.0], [15.8628845, -4.2204214, 0.0], [15.8642578, -4.2204214, 0.0], [15.8642578, -4.2190519, 0.0], [15.8628845, -4.2190519, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1764}, "geometry": {"type": "Polygon", "coordinates": [[[15.5635071, -4.2190519, 0.0], [15.5635071, -4.2204214, 0.0], [15.5648804, -4.2204214, 0.0], [15.5648804, -4.2190519, 0.0], [15.5635071, -4.2190519, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1765}, "geometry": {"type": "Polygon", "coordinates": [[[15.6568909, -4.2190519, 0.0], [15.6568909, -4.2204214, 0.0], [15.6582642, -4.2204214, 0.0], [15.6582642, -4.2190519, 0.0], [15.6568909, -4.2190519, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1766}, "geometry": {"type": "Polygon", "coordinates": [[[15.7626343, -4.2190519, 0.0], [15.7640076, -4.2190519, 0.0], [15.7640076, -4.2176823, 0.0], [15.7640076, -4.2163127, 0.0], [15.7626343, -4.2163127, 0.0], [15.761261, -4.2163127, 0.0], [15.761261, -4.2176823, 0.0], [15.761261, -4.2190519, 0.0], [15.761261, -4.2204214, 0.0], [15.7626343, -4.2204214, 0.0], [15.7626343, -4.2190519, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1767}, "geometry": {"type": "Polygon", "coordinates": [[[15.7489014, -4.2190519, 0.0], [15.7489014, -4.2176823, 0.0], [15.7475281, -4.2176823, 0.0], [15.7475281, -4.2190519, 0.0], [15.7475281, -4.2204214, 0.0], [15.7489014, -4.2204214, 0.0], [15.7489014, -4.2190519, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1768}, "geometry": {"type": "Polygon", "coordinates": [[[15.7077026, -4.2190519, 0.0], [15.7077026, -4.2204214, 0.0], [15.7090759, -4.2204214, 0.0], [15.7090759, -4.2190519, 0.0], [15.7077026, -4.2190519, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1769}, "geometry": {"type": "Polygon", "coordinates": [[[15.8093262, -4.2176823, 0.0], [15.8093262, -4.2163127, 0.0], [15.8079529, -4.2163127, 0.0], [15.8079529, -4.2176823, 0.0], [15.8079529, -4.2190519, 0.0], [15.8093262, -4.2190519, 0.0], [15.8093262, -4.2176823, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1770}, "geometry": {"type": "Polygon", "coordinates": [[[15.836792, -4.2176823, 0.0], [15.836792, -4.2190519, 0.0], [15.8381653, -4.2190519, 0.0], [15.8381653, -4.2176823, 0.0], [15.836792, -4.2176823, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1771}, "geometry": {"type": "Polygon", "coordinates": [[[15.7585144, -4.2176823, 0.0], [15.7585144, -4.2190519, 0.0], [15.7598877, -4.2190519, 0.0], [15.7598877, -4.2176823, 0.0], [15.7585144, -4.2176823, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1772}, "geometry": {"type": "Polygon", "coordinates": [[[15.5621338, -4.2163127, 0.0], [15.5621338, -4.2149431, 0.0], [15.5607605, -4.2149431, 0.0], [15.5607605, -4.2163127, 0.0], [15.5607605, -4.2176823, 0.0], [15.5621338, -4.2176823, 0.0], [15.5621338, -4.2163127, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1773}, "geometry": {"type": "Polygon", "coordinates": [[[15.5978394, -4.2163127, 0.0], [15.5992126, -4.2163127, 0.0], [15.5992126, -4.2149431, 0.0], [15.5978394, -4.2149431, 0.0], [15.5978394, -4.2135736, 0.0], [15.5964661, -4.2135736, 0.0], [15.5964661, -4.2149431, 0.0], [15.5950928, -4.2149431, 0.0], [15.5950928, -4.2163127, 0.0], [15.5950928, -4.2176823, 0.0], [15.5964661, -4.2176823, 0.0], [15.5978394, -4.2176823, 0.0], [15.5978394, -4.2163127, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1774}, "geometry": {"type": "Polygon", "coordinates": [[[15.7255554, -4.2163127, 0.0], [15.7255554, -4.2176823, 0.0], [15.7269287, -4.2176823, 0.0], [15.7269287, -4.2163127, 0.0], [15.7255554, -4.2163127, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1775}, "geometry": {"type": "Polygon", "coordinates": [[[15.6939697, -4.2163127, 0.0], [15.6939697, -4.2176823, 0.0], [15.695343, -4.2176823, 0.0], [15.695343, -4.2163127, 0.0], [15.6939697, -4.2163127, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1776}, "geometry": {"type": "Polygon", "coordinates": [[[15.7859802, -4.2163127, 0.0], [15.7859802, -4.2176823, 0.0], [15.7873535, -4.2176823, 0.0], [15.7873535, -4.2163127, 0.0], [15.7859802, -4.2163127, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1777}, "geometry": {"type": "Polygon", "coordinates": [[[15.7214355, -4.2163127, 0.0], [15.7214355, -4.2176823, 0.0], [15.7228088, -4.2176823, 0.0], [15.7228088, -4.2163127, 0.0], [15.7214355, -4.2163127, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1778}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.2163127, 0.0], [15.7173157, -4.2176823, 0.0], [15.718689, -4.2176823, 0.0], [15.718689, -4.2163127, 0.0], [15.7173157, -4.2163127, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1779}, "geometry": {"type": "Polygon", "coordinates": [[[15.7077026, -4.2163127, 0.0], [15.7077026, -4.2176823, 0.0], [15.7090759, -4.2176823, 0.0], [15.7090759, -4.2163127, 0.0], [15.7077026, -4.2163127, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1780}, "geometry": {"type": "Polygon", "coordinates": [[[15.567627, -4.2149431, 0.0], [15.567627, -4.2163127, 0.0], [15.5690002, -4.2163127, 0.0], [15.5690002, -4.2149431, 0.0], [15.567627, -4.2149431, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1781}, "geometry": {"type": "Polygon", "coordinates": [[[15.5648804, -4.2149431, 0.0], [15.5648804, -4.2163127, 0.0], [15.5662537, -4.2163127, 0.0], [15.5662537, -4.2149431, 0.0], [15.5648804, -4.2149431, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1782}, "geometry": {"type": "Polygon", "coordinates": [[[15.8422852, -4.2149431, 0.0], [15.8422852, -4.2163127, 0.0], [15.8436584, -4.2163127, 0.0], [15.8436584, -4.2149431, 0.0], [15.8422852, -4.2149431, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1783}, "geometry": {"type": "Polygon", "coordinates": [[[15.7063293, -4.2149431, 0.0], [15.7063293, -4.2163127, 0.0], [15.7077026, -4.2163127, 0.0], [15.7077026, -4.2149431, 0.0], [15.7063293, -4.2149431, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1784}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.2149431, 0.0], [15.7557678, -4.2163127, 0.0], [15.7571411, -4.2163127, 0.0], [15.7571411, -4.2149431, 0.0], [15.7557678, -4.2149431, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1785}, "geometry": {"type": "Polygon", "coordinates": [[[15.6925964, -4.2149431, 0.0], [15.6925964, -4.2163127, 0.0], [15.6939697, -4.2163127, 0.0], [15.6939697, -4.2149431, 0.0], [15.6925964, -4.2149431, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1786}, "geometry": {"type": "Polygon", "coordinates": [[[15.7090759, -4.2135736, 0.0], [15.7090759, -4.212204, 0.0], [15.7077026, -4.212204, 0.0], [15.7077026, -4.2135736, 0.0], [15.7077026, -4.2149431, 0.0], [15.7090759, -4.2149431, 0.0], [15.7090759, -4.2135736, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1787}, "geometry": {"type": "Polygon", "coordinates": [[[15.6651306, -4.2135736, 0.0], [15.6637573, -4.2135736, 0.0], [15.6637573, -4.2149431, 0.0], [15.6651306, -4.2149431, 0.0], [15.6665039, -4.2149431, 0.0], [15.6665039, -4.2135736, 0.0], [15.6651306, -4.2135736, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1788}, "geometry": {"type": "Polygon", "coordinates": [[[15.9013367, -4.2135736, 0.0], [15.9013367, -4.2149431, 0.0], [15.90271, -4.2149431, 0.0], [15.90271, -4.2135736, 0.0], [15.9013367, -4.2135736, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1789}, "geometry": {"type": "Polygon", "coordinates": [[[15.8656311, -4.2135736, 0.0], [15.8642578, -4.2135736, 0.0], [15.8642578, -4.2149431, 0.0], [15.8656311, -4.2149431, 0.0], [15.8670044, -4.2149431, 0.0], [15.8683777, -4.2149431, 0.0], [15.8683777, -4.2135736, 0.0], [15.8670044, -4.2135736, 0.0], [15.8656311, -4.2135736, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1790}, "geometry": {"type": "Polygon", "coordinates": [[[15.8148193, -4.2135736, 0.0], [15.8148193, -4.2149431, 0.0], [15.8161926, -4.2149431, 0.0], [15.8161926, -4.2135736, 0.0], [15.8148193, -4.2135736, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1791}, "geometry": {"type": "Polygon", "coordinates": [[[15.7241821, -4.2135736, 0.0], [15.7241821, -4.2149431, 0.0], [15.7255554, -4.2149431, 0.0], [15.7255554, -4.2135736, 0.0], [15.7241821, -4.2135736, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1792}, "geometry": {"type": "Polygon", "coordinates": [[[15.8450317, -4.2135736, 0.0], [15.8450317, -4.2149431, 0.0], [15.846405, -4.2149431, 0.0], [15.846405, -4.2135736, 0.0], [15.8450317, -4.2135736, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1793}, "geometry": {"type": "Polygon", "coordinates": [[[15.8354187, -4.2135736, 0.0], [15.8354187, -4.2149431, 0.0], [15.836792, -4.2149431, 0.0], [15.836792, -4.2135736, 0.0], [15.8354187, -4.2135736, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1794}, "geometry": {"type": "Polygon", "coordinates": [[[15.7818604, -4.2135736, 0.0], [15.7818604, -4.212204, 0.0], [15.7804871, -4.212204, 0.0], [15.7804871, -4.2135736, 0.0], [15.7804871, -4.2149431, 0.0], [15.7818604, -4.2149431, 0.0], [15.7818604, -4.2135736, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1795}, "geometry": {"type": "Polygon", "coordinates": [[[15.6472778, -4.212204, 0.0], [15.6459045, -4.212204, 0.0], [15.6445312, -4.212204, 0.0], [15.6445312, -4.2135736, 0.0], [15.6459045, -4.2135736, 0.0], [15.6472778, -4.2135736, 0.0], [15.6486511, -4.2135736, 0.0], [15.6486511, -4.212204, 0.0], [15.6472778, -4.212204, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1796}, "geometry": {"type": "Polygon", "coordinates": [[[15.8189392, -4.212204, 0.0], [15.8189392, -4.2135736, 0.0], [15.8203125, -4.2135736, 0.0], [15.8203125, -4.212204, 0.0], [15.8189392, -4.212204, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1797}, "geometry": {"type": "Polygon", "coordinates": [[[15.6376648, -4.212204, 0.0], [15.6376648, -4.2108344, 0.0], [15.6362915, -4.2108344, 0.0], [15.6362915, -4.212204, 0.0], [15.6362915, -4.2135736, 0.0], [15.6376648, -4.2135736, 0.0], [15.6376648, -4.212204, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1798}, "geometry": {"type": "Polygon", "coordinates": [[[15.7969666, -4.212204, 0.0], [15.7969666, -4.2135736, 0.0], [15.7983398, -4.2135736, 0.0], [15.7983398, -4.212204, 0.0], [15.7969666, -4.212204, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1799}, "geometry": {"type": "Polygon", "coordinates": [[[15.6417847, -4.212204, 0.0], [15.6417847, -4.2135736, 0.0], [15.643158, -4.2135736, 0.0], [15.643158, -4.212204, 0.0], [15.6417847, -4.212204, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1800}, "geometry": {"type": "Polygon", "coordinates": [[[15.7749939, -4.212204, 0.0], [15.7749939, -4.2135736, 0.0], [15.7763672, -4.2135736, 0.0], [15.7763672, -4.212204, 0.0], [15.7749939, -4.212204, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1801}, "geometry": {"type": "Polygon", "coordinates": [[[15.8340454, -4.2108344, 0.0], [15.8340454, -4.212204, 0.0], [15.8354187, -4.212204, 0.0], [15.836792, -4.212204, 0.0], [15.836792, -4.2108344, 0.0], [15.8354187, -4.2108344, 0.0], [15.8340454, -4.2108344, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1802}, "geometry": {"type": "Polygon", "coordinates": [[[15.5813599, -4.212204, 0.0], [15.5813599, -4.2135736, 0.0], [15.5827332, -4.2135736, 0.0], [15.5827332, -4.212204, 0.0], [15.5813599, -4.212204, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1803}, "geometry": {"type": "Polygon", "coordinates": [[[15.7200623, -4.2108344, 0.0], [15.718689, -4.2108344, 0.0], [15.718689, -4.212204, 0.0], [15.7200623, -4.212204, 0.0], [15.7214355, -4.212204, 0.0], [15.7214355, -4.2108344, 0.0], [15.7200623, -4.2108344, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1804}, "geometry": {"type": "Polygon", "coordinates": [[[15.5607605, -4.2108344, 0.0], [15.5607605, -4.2094648, 0.0], [15.5593872, -4.2094648, 0.0], [15.5580139, -4.2094648, 0.0], [15.5566406, -4.2094648, 0.0], [15.5566406, -4.2108344, 0.0], [15.5580139, -4.2108344, 0.0], [15.5593872, -4.2108344, 0.0], [15.5593872, -4.212204, 0.0], [15.5607605, -4.212204, 0.0], [15.5607605, -4.2108344, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1805}, "geometry": {"type": "Polygon", "coordinates": [[[15.879364, -4.2108344, 0.0], [15.879364, -4.212204, 0.0], [15.8807373, -4.212204, 0.0], [15.8807373, -4.2108344, 0.0], [15.879364, -4.2108344, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1806}, "geometry": {"type": "Polygon", "coordinates": [[[15.8656311, -4.2108344, 0.0], [15.8656311, -4.212204, 0.0], [15.8670044, -4.212204, 0.0], [15.8670044, -4.2108344, 0.0], [15.8656311, -4.2108344, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1807}, "geometry": {"type": "Polygon", "coordinates": [[[15.8532715, -4.2094648, 0.0], [15.8532715, -4.2108344, 0.0], [15.8546448, -4.2108344, 0.0], [15.8546448, -4.2094648, 0.0], [15.8532715, -4.2094648, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1808}, "geometry": {"type": "Polygon", "coordinates": [[[15.8381653, -4.2094648, 0.0], [15.8381653, -4.2108344, 0.0], [15.8395386, -4.2108344, 0.0], [15.8395386, -4.2094648, 0.0], [15.8381653, -4.2094648, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1809}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.2094648, 0.0], [15.7173157, -4.2108344, 0.0], [15.718689, -4.2108344, 0.0], [15.718689, -4.2094648, 0.0], [15.7173157, -4.2094648, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1810}, "geometry": {"type": "Polygon", "coordinates": [[[15.5662537, -4.2094648, 0.0], [15.567627, -4.2094648, 0.0], [15.567627, -4.2080952, 0.0], [15.567627, -4.2067256, 0.0], [15.5662537, -4.2067256, 0.0], [15.5662537, -4.2080952, 0.0], [15.5648804, -4.2080952, 0.0], [15.5648804, -4.2094648, 0.0], [15.5648804, -4.2108344, 0.0], [15.5662537, -4.2108344, 0.0], [15.5662537, -4.2094648, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1811}, "geometry": {"type": "Polygon", "coordinates": [[[15.5717468, -4.2094648, 0.0], [15.5717468, -4.2108344, 0.0], [15.5731201, -4.2108344, 0.0], [15.5731201, -4.2094648, 0.0], [15.5717468, -4.2094648, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1812}, "geometry": {"type": "Polygon", "coordinates": [[[15.737915, -4.2080952, 0.0], [15.737915, -4.2094648, 0.0], [15.7392883, -4.2094648, 0.0], [15.7392883, -4.2080952, 0.0], [15.737915, -4.2080952, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1813}, "geometry": {"type": "Polygon", "coordinates": [[[15.7241821, -4.2080952, 0.0], [15.7241821, -4.2094648, 0.0], [15.7255554, -4.2094648, 0.0], [15.7255554, -4.2080952, 0.0], [15.7241821, -4.2080952, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1814}, "geometry": {"type": "Polygon", "coordinates": [[[15.7008362, -4.2094648, 0.0], [15.7008362, -4.2108344, 0.0], [15.7022095, -4.2108344, 0.0], [15.7022095, -4.2094648, 0.0], [15.7008362, -4.2094648, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1815}, "geometry": {"type": "Polygon", "coordinates": [[[15.6994629, -4.2080952, 0.0], [15.6994629, -4.2094648, 0.0], [15.7008362, -4.2094648, 0.0], [15.7008362, -4.2080952, 0.0], [15.6994629, -4.2080952, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1816}, "geometry": {"type": "Polygon", "coordinates": [[[15.8477783, -4.2080952, 0.0], [15.8477783, -4.2094648, 0.0], [15.8491516, -4.2094648, 0.0], [15.8491516, -4.2080952, 0.0], [15.8477783, -4.2080952, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1817}, "geometry": {"type": "Polygon", "coordinates": [[[15.7118225, -4.2080952, 0.0], [15.7118225, -4.2094648, 0.0], [15.7131958, -4.2094648, 0.0], [15.7131958, -4.2080952, 0.0], [15.7118225, -4.2080952, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1818}, "geometry": {"type": "Polygon", "coordinates": [[[15.7736206, -4.2080952, 0.0], [15.7736206, -4.2094648, 0.0], [15.7749939, -4.2094648, 0.0], [15.7749939, -4.2080952, 0.0], [15.7736206, -4.2080952, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1819}, "geometry": {"type": "Polygon", "coordinates": [[[15.5813599, -4.2080952, 0.0], [15.5827332, -4.2080952, 0.0], [15.5827332, -4.2067256, 0.0], [15.5841064, -4.2067256, 0.0], [15.5841064, -4.205356, 0.0], [15.5854797, -4.205356, 0.0], [15.586853, -4.205356, 0.0], [15.586853, -4.2039865, 0.0], [15.5882263, -4.2039865, 0.0], [15.5882263, -4.2026169, 0.0], [15.5895996, -4.2026169, 0.0], [15.5895996, -4.2012473, 0.0], [15.5909729, -4.2012473, 0.0], [15.5923462, -4.2012473, 0.0], [15.5923462, -4.1998777, 0.0], [15.5937195, -4.1998777, 0.0], [15.5950928, -4.1998777, 0.0], [15.5964661, -4.1998777, 0.0], [15.5978394, -4.1998777, 0.0], [15.5978394, -4.198508, 0.0], [15.5992126, -4.198508, 0.0], [15.5992126, -4.1998777, 0.0], [15.6005859, -4.1998777, 0.0], [15.6019592, -4.1998777, 0.0], [15.6033325, -4.1998777, 0.0], [15.6033325, -4.2012473, 0.0], [15.6019592, -4.2012473, 0.0], [15.6019592, -4.2026169, 0.0], [15.6005859, -4.2026169, 0.0], [15.6005859, -4.2039865, 0.0], [15.6019592, -4.2039865, 0.0], [15.6019592, -4.205356, 0.0], [15.6033325, -4.205356, 0.0], [15.6047058, -4.205356, 0.0], [15.6060791, -4.205356, 0.0], [15.6060791, -4.2067256, 0.0], [15.6060791, -4.2080952, 0.0], [15.6074524, -4.2080952, 0.0], [15.6074524, -4.2067256, 0.0], [15.6088257, -4.2067256, 0.0], [15.6088257, -4.205356, 0.0], [15.6074524, -4.205356, 0.0], [15.6074524, -4.2039865, 0.0], [15.6060791, -4.2039865, 0.0], [15.6060791, -4.2026169, 0.0], [15.6047058, -4.2026169, 0.0], [15.6047058, -4.2012473, 0.0], [15.6060791, -4.2012473, 0.0], [15.6074524, -4.2012473, 0.0], [15.6074524, -4.1998777, 0.0], [15.6074524, -4.198508, 0.0], [15.6088257, -4.198508, 0.0], [15.6088257, -4.1971384, 0.0], [15.6088257, -4.1957688, 0.0], [15.6074524, -4.1957688, 0.0], [15.6060791, -4.1957688, 0.0], [15.6060791, -4.1943992, 0.0], [15.6047058, -4.1943992, 0.0], [15.6033325, -4.1943992, 0.0], [15.6033325, -4.1957688, 0.0], [15.6019592, -4.1957688, 0.0], [15.6005859, -4.1957688, 0.0], [15.5992126, -4.1957688, 0.0], [15.5992126, -4.1943992, 0.0], [15.5978394, -4.1943992, 0.0], [15.5978394, -4.1957688, 0.0], [15.5964661, -4.1957688, 0.0], [15.5964661, -4.1943992, 0.0], [15.5964661, -4.1930296, 0.0], [15.5950928, -4.1930296, 0.0], [15.5937195, -4.1930296, 0.0], [15.5937195, -4.1943992, 0.0], [15.5923462, -4.1943992, 0.0], [15.5909729, -4.1943992, 0.0], [15.5895996, -4.1943992, 0.0], [15.5882263, -4.1943992, 0.0], [15.5882263, -4.1957688, 0.0], [15.5882263, -4.1971384, 0.0], [15.586853, -4.1971384, 0.0], [15.5854797, -4.1971384, 0.0], [15.5841064, -4.1971384, 0.0], [15.5841064, -4.198508, 0.0], [15.5827332, -4.198508, 0.0], [15.5827332, -4.1998777, 0.0], [15.5813599, -4.1998777, 0.0], [15.5813599, -4.2012473, 0.0], [15.5799866, -4.2012473, 0.0], [15.5799866, -4.2026169, 0.0], [15.5786133, -4.2026169, 0.0], [15.5786133, -4.2039865, 0.0], [15.57724, -4.2039865, 0.0], [15.57724, -4.205356, 0.0], [15.5758667, -4.205356, 0.0], [15.5758667, -4.2067256, 0.0], [15.5758667, -4.2080952, 0.0], [15.57724, -4.2080952, 0.0], [15.57724, -4.2094648, 0.0], [15.5786133, -4.2094648, 0.0], [15.5799866, -4.2094648, 0.0], [15.5813599, -4.2094648, 0.0], [15.5813599, -4.2080952, 0.0]], [[15.5827332, -4.2012473, 0.0], [15.5841064, -4.2012473, 0.0], [15.5841064, -4.2026169, 0.0], [15.5827332, -4.2026169, 0.0], [15.5827332, -4.2012473, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1820}, "geometry": {"type": "Polygon", "coordinates": [[[15.652771, -4.2080952, 0.0], [15.652771, -4.2094648, 0.0], [15.6541443, -4.2094648, 0.0], [15.6541443, -4.2080952, 0.0], [15.652771, -4.2080952, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1821}, "geometry": {"type": "Polygon", "coordinates": [[[15.6417847, -4.2080952, 0.0], [15.6417847, -4.2067256, 0.0], [15.6404114, -4.2067256, 0.0], [15.6404114, -4.2080952, 0.0], [15.6404114, -4.2094648, 0.0], [15.6417847, -4.2094648, 0.0], [15.6417847, -4.2080952, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1822}, "geometry": {"type": "Polygon", "coordinates": [[[15.5525208, -4.2080952, 0.0], [15.553894, -4.2080952, 0.0], [15.5552673, -4.2080952, 0.0], [15.5552673, -4.2067256, 0.0], [15.553894, -4.2067256, 0.0], [15.553894, -4.205356, 0.0], [15.5525208, -4.205356, 0.0], [15.5525208, -4.2039865, 0.0], [15.5511475, -4.2039865, 0.0], [15.5511475, -4.205356, 0.0], [15.5497742, -4.205356, 0.0], [15.5484009, -4.205356, 0.0], [15.5484009, -4.2067256, 0.0], [15.5484009, -4.2080952, 0.0], [15.5497742, -4.2080952, 0.0], [15.5511475, -4.2080952, 0.0], [15.5511475, -4.2094648, 0.0], [15.5525208, -4.2094648, 0.0], [15.5525208, -4.2080952, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1823}, "geometry": {"type": "Polygon", "coordinates": [[[15.8711243, -4.2080952, 0.0], [15.8711243, -4.2067256, 0.0], [15.869751, -4.2067256, 0.0], [15.869751, -4.2080952, 0.0], [15.869751, -4.2094648, 0.0], [15.8711243, -4.2094648, 0.0], [15.8711243, -4.2080952, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1824}, "geometry": {"type": "Polygon", "coordinates": [[[15.8491516, -4.2067256, 0.0], [15.8491516, -4.2080952, 0.0], [15.8505249, -4.2080952, 0.0], [15.8505249, -4.2067256, 0.0], [15.8491516, -4.2067256, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1825}, "geometry": {"type": "Polygon", "coordinates": [[[15.8779907, -4.2067256, 0.0], [15.8766174, -4.2067256, 0.0], [15.8766174, -4.2080952, 0.0], [15.8779907, -4.2080952, 0.0], [15.879364, -4.2080952, 0.0], [15.8807373, -4.2080952, 0.0], [15.8807373, -4.2067256, 0.0], [15.879364, -4.2067256, 0.0], [15.8779907, -4.2067256, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1826}, "geometry": {"type": "Polygon", "coordinates": [[[15.652771, -4.2067256, 0.0], [15.6541443, -4.2067256, 0.0], [15.6555176, -4.2067256, 0.0], [15.6568909, -4.2067256, 0.0], [15.6582642, -4.2067256, 0.0], [15.6582642, -4.205356, 0.0], [15.6582642, -4.2039865, 0.0], [15.6582642, -4.2026169, 0.0], [15.6582642, -4.2012473, 0.0], [15.6568909, -4.2012473, 0.0], [15.6568909, -4.2026169, 0.0], [15.6555176, -4.2026169, 0.0], [15.6555176, -4.2012473, 0.0], [15.6541443, -4.2012473, 0.0], [15.6541443, -4.2026169, 0.0], [15.652771, -4.2026169, 0.0], [15.6513977, -4.2026169, 0.0], [15.6513977, -4.2039865, 0.0], [15.6513977, -4.205356, 0.0], [15.6513977, -4.2067256, 0.0], [15.652771, -4.2067256, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1827}, "geometry": {"type": "Polygon", "coordinates": [[[15.619812, -4.205356, 0.0], [15.619812, -4.2067256, 0.0], [15.6211853, -4.2067256, 0.0], [15.6225586, -4.2067256, 0.0], [15.6225586, -4.205356, 0.0], [15.6211853, -4.205356, 0.0], [15.619812, -4.205356, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1828}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.205356, 0.0], [15.7557678, -4.2067256, 0.0], [15.7571411, -4.2067256, 0.0], [15.7585144, -4.2067256, 0.0], [15.7585144, -4.205356, 0.0], [15.7571411, -4.205356, 0.0], [15.7557678, -4.205356, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1829}, "geometry": {"type": "Polygon", "coordinates": [[[15.7296753, -4.205356, 0.0], [15.7296753, -4.2039865, 0.0], [15.728302, -4.2039865, 0.0], [15.728302, -4.2026169, 0.0], [15.7269287, -4.2026169, 0.0], [15.7269287, -4.2039865, 0.0], [15.7269287, -4.205356, 0.0], [15.7255554, -4.205356, 0.0], [15.7241821, -4.205356, 0.0], [15.7241821, -4.2067256, 0.0], [15.7255554, -4.2067256, 0.0], [15.7269287, -4.2067256, 0.0], [15.728302, -4.2067256, 0.0], [15.7296753, -4.2067256, 0.0], [15.7296753, -4.205356, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1830}, "geometry": {"type": "Polygon", "coordinates": [[[15.846405, -4.205356, 0.0], [15.846405, -4.2039865, 0.0], [15.8450317, -4.2039865, 0.0], [15.8436584, -4.2039865, 0.0], [15.8422852, -4.2039865, 0.0], [15.8422852, -4.205356, 0.0], [15.8436584, -4.205356, 0.0], [15.8450317, -4.205356, 0.0], [15.8450317, -4.2067256, 0.0], [15.846405, -4.2067256, 0.0], [15.846405, -4.205356, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1831}, "geometry": {"type": "Polygon", "coordinates": [[[15.7873535, -4.205356, 0.0], [15.7873535, -4.2067256, 0.0], [15.7887268, -4.2067256, 0.0], [15.7887268, -4.205356, 0.0], [15.7873535, -4.205356, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1832}, "geometry": {"type": "Polygon", "coordinates": [[[15.7695007, -4.205356, 0.0], [15.7695007, -4.2067256, 0.0], [15.770874, -4.2067256, 0.0], [15.770874, -4.205356, 0.0], [15.7695007, -4.205356, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1833}, "geometry": {"type": "Polygon", "coordinates": [[[15.8656311, -4.205356, 0.0], [15.8642578, -4.205356, 0.0], [15.8642578, -4.2067256, 0.0], [15.8656311, -4.2067256, 0.0], [15.8670044, -4.2067256, 0.0], [15.8670044, -4.205356, 0.0], [15.8656311, -4.205356, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1834}, "geometry": {"type": "Polygon", "coordinates": [[[15.5744934, -4.205356, 0.0], [15.5758667, -4.205356, 0.0], [15.5758667, -4.2039865, 0.0], [15.5744934, -4.2039865, 0.0], [15.5744934, -4.2026169, 0.0], [15.5731201, -4.2026169, 0.0], [15.5731201, -4.2039865, 0.0], [15.5717468, -4.2039865, 0.0], [15.5703735, -4.2039865, 0.0], [15.5703735, -4.205356, 0.0], [15.5717468, -4.205356, 0.0], [15.5731201, -4.205356, 0.0], [15.5731201, -4.2067256, 0.0], [15.5744934, -4.2067256, 0.0], [15.5744934, -4.205356, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1835}, "geometry": {"type": "Polygon", "coordinates": [[[15.7200623, -4.2039865, 0.0], [15.7200623, -4.205356, 0.0], [15.7214355, -4.205356, 0.0], [15.7214355, -4.2039865, 0.0], [15.7200623, -4.2039865, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1836}, "geometry": {"type": "Polygon", "coordinates": [[[15.6225586, -4.2039865, 0.0], [15.6225586, -4.205356, 0.0], [15.6239319, -4.205356, 0.0], [15.6239319, -4.2039865, 0.0], [15.6225586, -4.2039865, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1837}, "geometry": {"type": "Polygon", "coordinates": [[[15.6445312, -4.2039865, 0.0], [15.6445312, -4.205356, 0.0], [15.6459045, -4.205356, 0.0], [15.6459045, -4.2039865, 0.0], [15.6445312, -4.2039865, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1838}, "geometry": {"type": "Polygon", "coordinates": [[[15.629425, -4.2039865, 0.0], [15.6280518, -4.2039865, 0.0], [15.6280518, -4.205356, 0.0], [15.629425, -4.205356, 0.0], [15.6307983, -4.205356, 0.0], [15.6307983, -4.2039865, 0.0], [15.629425, -4.2039865, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1839}, "geometry": {"type": "Polygon", "coordinates": [[[15.6253052, -4.2039865, 0.0], [15.6253052, -4.205356, 0.0], [15.6266785, -4.205356, 0.0], [15.6266785, -4.2039865, 0.0], [15.6253052, -4.2039865, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1840}, "geometry": {"type": "Polygon", "coordinates": [[[15.7310486, -4.2039865, 0.0], [15.7310486, -4.205356, 0.0], [15.7324219, -4.205356, 0.0], [15.7324219, -4.2039865, 0.0], [15.7310486, -4.2039865, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1841}, "geometry": {"type": "Polygon", "coordinates": [[[15.7791138, -4.2039865, 0.0], [15.7791138, -4.205356, 0.0], [15.7804871, -4.205356, 0.0], [15.7818604, -4.205356, 0.0], [15.7818604, -4.2039865, 0.0], [15.7804871, -4.2039865, 0.0], [15.7791138, -4.2039865, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1842}, "geometry": {"type": "Polygon", "coordinates": [[[15.6088257, -4.2039865, 0.0], [15.6088257, -4.205356, 0.0], [15.610199, -4.205356, 0.0], [15.6115723, -4.205356, 0.0], [15.6115723, -4.2039865, 0.0], [15.610199, -4.2039865, 0.0], [15.6088257, -4.2039865, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1843}, "geometry": {"type": "Polygon", "coordinates": [[[15.6184387, -4.2039865, 0.0], [15.6184387, -4.205356, 0.0], [15.619812, -4.205356, 0.0], [15.619812, -4.2039865, 0.0], [15.6184387, -4.2039865, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1844}, "geometry": {"type": "Polygon", "coordinates": [[[15.6129456, -4.2039865, 0.0], [15.6129456, -4.205356, 0.0], [15.6143188, -4.205356, 0.0], [15.6143188, -4.2039865, 0.0], [15.6129456, -4.2039865, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1845}, "geometry": {"type": "Polygon", "coordinates": [[[15.6307983, -4.2026169, 0.0], [15.6307983, -4.2039865, 0.0], [15.6321716, -4.2039865, 0.0], [15.6321716, -4.2026169, 0.0], [15.6307983, -4.2026169, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1846}, "geometry": {"type": "Polygon", "coordinates": [[[15.8532715, -4.2026169, 0.0], [15.8518982, -4.2026169, 0.0], [15.8518982, -4.2039865, 0.0], [15.8532715, -4.2039865, 0.0], [15.8546448, -4.2039865, 0.0], [15.8546448, -4.2026169, 0.0], [15.8532715, -4.2026169, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1847}, "geometry": {"type": "Polygon", "coordinates": [[[15.8477783, -4.2026169, 0.0], [15.8477783, -4.2039865, 0.0], [15.8491516, -4.2039865, 0.0], [15.8491516, -4.2026169, 0.0], [15.8477783, -4.2026169, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1848}, "geometry": {"type": "Polygon", "coordinates": [[[15.8381653, -4.2012473, 0.0], [15.8381653, -4.1998777, 0.0], [15.836792, -4.1998777, 0.0], [15.836792, -4.2012473, 0.0], [15.836792, -4.2026169, 0.0], [15.8381653, -4.2026169, 0.0], [15.8395386, -4.2026169, 0.0], [15.8395386, -4.2012473, 0.0], [15.8381653, -4.2012473, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1849}, "geometry": {"type": "Polygon", "coordinates": [[[15.6307983, -4.2012473, 0.0], [15.6307983, -4.1998777, 0.0], [15.6307983, -4.198508, 0.0], [15.6307983, -4.1971384, 0.0], [15.629425, -4.1971384, 0.0], [15.629425, -4.198508, 0.0], [15.629425, -4.1998777, 0.0], [15.6280518, -4.1998777, 0.0], [15.6280518, -4.2012473, 0.0], [15.6266785, -4.2012473, 0.0], [15.6266785, -4.1998777, 0.0], [15.6253052, -4.1998777, 0.0], [15.6239319, -4.1998777, 0.0], [15.6239319, -4.198508, 0.0], [15.6253052, -4.198508, 0.0], [15.6253052, -4.1971384, 0.0], [15.6239319, -4.1971384, 0.0], [15.6225586, -4.1971384, 0.0], [15.6211853, -4.1971384, 0.0], [15.619812, -4.1971384, 0.0], [15.619812, -4.198508, 0.0], [15.619812, -4.1998777, 0.0], [15.6211853, -4.1998777, 0.0], [15.6225586, -4.1998777, 0.0], [15.6225586, -4.2012473, 0.0], [15.6239319, -4.2012473, 0.0], [15.6239319, -4.2026169, 0.0], [15.6253052, -4.2026169, 0.0], [15.6266785, -4.2026169, 0.0], [15.6280518, -4.2026169, 0.0], [15.629425, -4.2026169, 0.0], [15.6307983, -4.2026169, 0.0], [15.6307983, -4.2012473, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1850}, "geometry": {"type": "Polygon", "coordinates": [[[15.6719971, -4.2012473, 0.0], [15.6719971, -4.2026169, 0.0], [15.6733704, -4.2026169, 0.0], [15.6733704, -4.2012473, 0.0], [15.6719971, -4.2012473, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1851}, "geometry": {"type": "Polygon", "coordinates": [[[15.6211853, -4.2012473, 0.0], [15.6211853, -4.2026169, 0.0], [15.6225586, -4.2026169, 0.0], [15.6225586, -4.2012473, 0.0], [15.6211853, -4.2012473, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1852}, "geometry": {"type": "Polygon", "coordinates": [[[15.8752441, -4.2012473, 0.0], [15.8752441, -4.2026169, 0.0], [15.8766174, -4.2026169, 0.0], [15.8766174, -4.2012473, 0.0], [15.8752441, -4.2012473, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1853}, "geometry": {"type": "Polygon", "coordinates": [[[15.8450317, -4.2012473, 0.0], [15.8450317, -4.2026169, 0.0], [15.846405, -4.2026169, 0.0], [15.846405, -4.2012473, 0.0], [15.8450317, -4.2012473, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1854}, "geometry": {"type": "Polygon", "coordinates": [[[15.8203125, -4.2012473, 0.0], [15.8203125, -4.1998777, 0.0], [15.8203125, -4.198508, 0.0], [15.8203125, -4.1971384, 0.0], [15.8203125, -4.1957688, 0.0], [15.8189392, -4.1957688, 0.0], [15.8189392, -4.1971384, 0.0], [15.8189392, -4.198508, 0.0], [15.8189392, -4.1998777, 0.0], [15.8189392, -4.2012473, 0.0], [15.8189392, -4.2026169, 0.0], [15.8203125, -4.2026169, 0.0], [15.8203125, -4.2012473, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1855}, "geometry": {"type": "Polygon", "coordinates": [[[15.8601379, -4.1998777, 0.0], [15.8615112, -4.1998777, 0.0], [15.8615112, -4.198508, 0.0], [15.8601379, -4.198508, 0.0], [15.8587646, -4.198508, 0.0], [15.8587646, -4.1998777, 0.0], [15.8573914, -4.1998777, 0.0], [15.8573914, -4.2012473, 0.0], [15.8587646, -4.2012473, 0.0], [15.8601379, -4.2012473, 0.0], [15.8601379, -4.1998777, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1856}, "geometry": {"type": "Polygon", "coordinates": [[[15.8422852, -4.1998777, 0.0], [15.8422852, -4.198508, 0.0], [15.8409119, -4.198508, 0.0], [15.8409119, -4.1998777, 0.0], [15.8409119, -4.2012473, 0.0], [15.8422852, -4.2012473, 0.0], [15.8422852, -4.1998777, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1857}, "geometry": {"type": "Polygon", "coordinates": [[[15.57724, -4.1998777, 0.0], [15.57724, -4.2012473, 0.0], [15.5786133, -4.2012473, 0.0], [15.5786133, -4.1998777, 0.0], [15.57724, -4.1998777, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1858}, "geometry": {"type": "Polygon", "coordinates": [[[15.6335449, -4.1998777, 0.0], [15.6349182, -4.1998777, 0.0], [15.6362915, -4.1998777, 0.0], [15.6376648, -4.1998777, 0.0], [15.6376648, -4.198508, 0.0], [15.6362915, -4.198508, 0.0], [15.6362915, -4.1971384, 0.0], [15.6349182, -4.1971384, 0.0], [15.6335449, -4.1971384, 0.0], [15.6335449, -4.198508, 0.0], [15.6321716, -4.198508, 0.0], [15.6321716, -4.1998777, 0.0], [15.6321716, -4.2012473, 0.0], [15.6335449, -4.2012473, 0.0], [15.6335449, -4.1998777, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1859}, "geometry": {"type": "Polygon", "coordinates": [[[15.6445312, -4.1998777, 0.0], [15.6445312, -4.198508, 0.0], [15.6445312, -4.1971384, 0.0], [15.6445312, -4.1957688, 0.0], [15.643158, -4.1957688, 0.0], [15.6417847, -4.1957688, 0.0], [15.6404114, -4.1957688, 0.0], [15.6404114, -4.1971384, 0.0], [15.6404114, -4.198508, 0.0], [15.6417847, -4.198508, 0.0], [15.6417847, -4.1998777, 0.0], [15.6417847, -4.2012473, 0.0], [15.643158, -4.2012473, 0.0], [15.6445312, -4.2012473, 0.0], [15.6445312, -4.1998777, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1860}, "geometry": {"type": "Polygon", "coordinates": [[[15.8436584, -4.1998777, 0.0], [15.8436584, -4.2012473, 0.0], [15.8450317, -4.2012473, 0.0], [15.8450317, -4.1998777, 0.0], [15.8436584, -4.1998777, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1861}, "geometry": {"type": "Polygon", "coordinates": [[[15.6582642, -4.1998777, 0.0], [15.6582642, -4.2012473, 0.0], [15.6596375, -4.2012473, 0.0], [15.6596375, -4.1998777, 0.0], [15.6582642, -4.1998777, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1862}, "geometry": {"type": "Polygon", "coordinates": [[[15.5786133, -4.198508, 0.0], [15.5786133, -4.1998777, 0.0], [15.5799866, -4.1998777, 0.0], [15.5799866, -4.198508, 0.0], [15.5786133, -4.198508, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1863}, "geometry": {"type": "Polygon", "coordinates": [[[15.8354187, -4.198508, 0.0], [15.8354187, -4.1998777, 0.0], [15.836792, -4.1998777, 0.0], [15.836792, -4.198508, 0.0], [15.8354187, -4.198508, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1864}, "geometry": {"type": "Polygon", "coordinates": [[[15.8656311, -4.198508, 0.0], [15.8656311, -4.1998777, 0.0], [15.8670044, -4.1998777, 0.0], [15.8670044, -4.198508, 0.0], [15.8656311, -4.198508, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1865}, "geometry": {"type": "Polygon", "coordinates": [[[15.6129456, -4.198508, 0.0], [15.6129456, -4.1998777, 0.0], [15.6143188, -4.1998777, 0.0], [15.6143188, -4.198508, 0.0], [15.6129456, -4.198508, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1866}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.1971384, 0.0], [15.7667542, -4.198508, 0.0], [15.7681274, -4.198508, 0.0], [15.7681274, -4.1971384, 0.0], [15.7667542, -4.1971384, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1867}, "geometry": {"type": "Polygon", "coordinates": [[[15.8642578, -4.1971384, 0.0], [15.8642578, -4.1957688, 0.0], [15.8628845, -4.1957688, 0.0], [15.8628845, -4.1971384, 0.0], [15.8628845, -4.198508, 0.0], [15.8642578, -4.198508, 0.0], [15.8642578, -4.1971384, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1868}, "geometry": {"type": "Polygon", "coordinates": [[[15.6610107, -4.1971384, 0.0], [15.6610107, -4.198508, 0.0], [15.662384, -4.198508, 0.0], [15.662384, -4.1971384, 0.0], [15.6610107, -4.1971384, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1869}, "geometry": {"type": "Polygon", "coordinates": [[[15.8601379, -4.1957688, 0.0], [15.8587646, -4.1957688, 0.0], [15.8587646, -4.1971384, 0.0], [15.8601379, -4.1971384, 0.0], [15.8615112, -4.1971384, 0.0], [15.8615112, -4.1957688, 0.0], [15.8601379, -4.1957688, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1870}, "geometry": {"type": "Polygon", "coordinates": [[[15.662384, -4.1957688, 0.0], [15.662384, -4.1971384, 0.0], [15.6637573, -4.1971384, 0.0], [15.6637573, -4.1957688, 0.0], [15.662384, -4.1957688, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1871}, "geometry": {"type": "Polygon", "coordinates": [[[15.8436584, -4.1957688, 0.0], [15.8436584, -4.1971384, 0.0], [15.8450317, -4.1971384, 0.0], [15.8450317, -4.1957688, 0.0], [15.8436584, -4.1957688, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1872}, "geometry": {"type": "Polygon", "coordinates": [[[15.7214355, -4.1957688, 0.0], [15.7214355, -4.1971384, 0.0], [15.7228088, -4.1971384, 0.0], [15.7228088, -4.1957688, 0.0], [15.7214355, -4.1957688, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1873}, "geometry": {"type": "Polygon", "coordinates": [[[15.8752441, -4.1957688, 0.0], [15.8752441, -4.1943992, 0.0], [15.8738708, -4.1943992, 0.0], [15.8738708, -4.1957688, 0.0], [15.8738708, -4.1971384, 0.0], [15.8752441, -4.1971384, 0.0], [15.8752441, -4.1957688, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1874}, "geometry": {"type": "Polygon", "coordinates": [[[15.8505249, -4.1957688, 0.0], [15.8505249, -4.1971384, 0.0], [15.8518982, -4.1971384, 0.0], [15.8518982, -4.1957688, 0.0], [15.8505249, -4.1957688, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1875}, "geometry": {"type": "Polygon", "coordinates": [[[15.5717468, -4.1957688, 0.0], [15.5717468, -4.1971384, 0.0], [15.5731201, -4.1971384, 0.0], [15.5731201, -4.1957688, 0.0], [15.5717468, -4.1957688, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1876}, "geometry": {"type": "Polygon", "coordinates": [[[15.5813599, -4.1957688, 0.0], [15.5813599, -4.1971384, 0.0], [15.5827332, -4.1971384, 0.0], [15.5827332, -4.1957688, 0.0], [15.5813599, -4.1957688, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1877}, "geometry": {"type": "Polygon", "coordinates": [[[15.8381653, -4.1943992, 0.0], [15.8381653, -4.1957688, 0.0], [15.8395386, -4.1957688, 0.0], [15.8395386, -4.1943992, 0.0], [15.8381653, -4.1943992, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1878}, "geometry": {"type": "Polygon", "coordinates": [[[15.7681274, -4.1943992, 0.0], [15.7681274, -4.1957688, 0.0], [15.7695007, -4.1957688, 0.0], [15.7695007, -4.1943992, 0.0], [15.7681274, -4.1943992, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1879}, "geometry": {"type": "Polygon", "coordinates": [[[15.7241821, -4.1957688, 0.0], [15.7241821, -4.1971384, 0.0], [15.7255554, -4.1971384, 0.0], [15.7255554, -4.1957688, 0.0], [15.7241821, -4.1957688, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1880}, "geometry": {"type": "Polygon", "coordinates": [[[15.7200623, -4.1943992, 0.0], [15.7200623, -4.1957688, 0.0], [15.7214355, -4.1957688, 0.0], [15.7214355, -4.1943992, 0.0], [15.7200623, -4.1943992, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1881}, "geometry": {"type": "Polygon", "coordinates": [[[15.6211853, -4.1943992, 0.0], [15.6211853, -4.1957688, 0.0], [15.6225586, -4.1957688, 0.0], [15.6225586, -4.1943992, 0.0], [15.6211853, -4.1943992, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1882}, "geometry": {"type": "Polygon", "coordinates": [[[15.6637573, -4.1930296, 0.0], [15.6637573, -4.1943992, 0.0], [15.6651306, -4.1943992, 0.0], [15.6651306, -4.1930296, 0.0], [15.6637573, -4.1930296, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1883}, "geometry": {"type": "Polygon", "coordinates": [[[15.6019592, -4.1930296, 0.0], [15.6019592, -4.19166, 0.0], [15.6019592, -4.1902904, 0.0], [15.6005859, -4.1902904, 0.0], [15.5992126, -4.1902904, 0.0], [15.5992126, -4.19166, 0.0], [15.5978394, -4.19166, 0.0], [15.5978394, -4.1930296, 0.0], [15.5992126, -4.1930296, 0.0], [15.5992126, -4.1943992, 0.0], [15.6005859, -4.1943992, 0.0], [15.6019592, -4.1943992, 0.0], [15.6019592, -4.1930296, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1884}, "geometry": {"type": "Polygon", "coordinates": [[[15.5841064, -4.1930296, 0.0], [15.5841064, -4.19166, 0.0], [15.5827332, -4.19166, 0.0], [15.5827332, -4.1930296, 0.0], [15.5827332, -4.1943992, 0.0], [15.5841064, -4.1943992, 0.0], [15.5841064, -4.1930296, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1885}, "geometry": {"type": "Polygon", "coordinates": [[[15.5731201, -4.1930296, 0.0], [15.5744934, -4.1930296, 0.0], [15.5744934, -4.19166, 0.0], [15.5758667, -4.19166, 0.0], [15.5758667, -4.1902904, 0.0], [15.5744934, -4.1902904, 0.0], [15.5731201, -4.1902904, 0.0], [15.5731201, -4.19166, 0.0], [15.5717468, -4.19166, 0.0], [15.5703735, -4.19166, 0.0], [15.5703735, -4.1930296, 0.0], [15.5703735, -4.1943992, 0.0], [15.5717468, -4.1943992, 0.0], [15.5731201, -4.1943992, 0.0], [15.5731201, -4.1930296, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1886}, "geometry": {"type": "Polygon", "coordinates": [[[15.7269287, -4.1930296, 0.0], [15.7269287, -4.1943992, 0.0], [15.728302, -4.1943992, 0.0], [15.728302, -4.1930296, 0.0], [15.7269287, -4.1930296, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1887}, "geometry": {"type": "Polygon", "coordinates": [[[15.5882263, -4.1930296, 0.0], [15.5882263, -4.19166, 0.0], [15.586853, -4.19166, 0.0], [15.5854797, -4.19166, 0.0], [15.5854797, -4.1930296, 0.0], [15.586853, -4.1930296, 0.0], [15.586853, -4.1943992, 0.0], [15.5882263, -4.1943992, 0.0], [15.5882263, -4.1930296, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1888}, "geometry": {"type": "Polygon", "coordinates": [[[15.7640076, -4.1930296, 0.0], [15.7640076, -4.1943992, 0.0], [15.7653809, -4.1943992, 0.0], [15.7653809, -4.1930296, 0.0], [15.7640076, -4.1930296, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1889}, "geometry": {"type": "Polygon", "coordinates": [[[15.7214355, -4.1930296, 0.0], [15.7214355, -4.1943992, 0.0], [15.7228088, -4.1943992, 0.0], [15.7228088, -4.1930296, 0.0], [15.7214355, -4.1930296, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1890}, "geometry": {"type": "Polygon", "coordinates": [[[15.718689, -4.1930296, 0.0], [15.718689, -4.1943992, 0.0], [15.7200623, -4.1943992, 0.0], [15.7200623, -4.1930296, 0.0], [15.718689, -4.1930296, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1891}, "geometry": {"type": "Polygon", "coordinates": [[[15.8779907, -4.19166, 0.0], [15.879364, -4.19166, 0.0], [15.879364, -4.1902904, 0.0], [15.879364, -4.1889207, 0.0], [15.8779907, -4.1889207, 0.0], [15.8779907, -4.1902904, 0.0], [15.8766174, -4.1902904, 0.0], [15.8752441, -4.1902904, 0.0], [15.8738708, -4.1902904, 0.0], [15.8738708, -4.19166, 0.0], [15.8752441, -4.19166, 0.0], [15.8752441, -4.1930296, 0.0], [15.8766174, -4.1930296, 0.0], [15.8779907, -4.1930296, 0.0], [15.8779907, -4.19166, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1892}, "geometry": {"type": "Polygon", "coordinates": [[[15.6088257, -4.19166, 0.0], [15.6088257, -4.1930296, 0.0], [15.610199, -4.1930296, 0.0], [15.610199, -4.19166, 0.0], [15.6088257, -4.19166, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1893}, "geometry": {"type": "Polygon", "coordinates": [[[15.6115723, -4.19166, 0.0], [15.6115723, -4.1930296, 0.0], [15.6129456, -4.1930296, 0.0], [15.6129456, -4.19166, 0.0], [15.6115723, -4.19166, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1894}, "geometry": {"type": "Polygon", "coordinates": [[[15.8876038, -4.19166, 0.0], [15.8876038, -4.1930296, 0.0], [15.8889771, -4.1930296, 0.0], [15.8889771, -4.19166, 0.0], [15.8876038, -4.19166, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1895}, "geometry": {"type": "Polygon", "coordinates": [[[15.6047058, -4.19166, 0.0], [15.6033325, -4.19166, 0.0], [15.6033325, -4.1930296, 0.0], [15.6047058, -4.1930296, 0.0], [15.6060791, -4.1930296, 0.0], [15.6074524, -4.1930296, 0.0], [15.6074524, -4.19166, 0.0], [15.6074524, -4.1902904, 0.0], [15.6060791, -4.1902904, 0.0], [15.6060791, -4.19166, 0.0], [15.6047058, -4.19166, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1896}, "geometry": {"type": "Polygon", "coordinates": [[[15.8518982, -4.19166, 0.0], [15.8518982, -4.1930296, 0.0], [15.8532715, -4.1930296, 0.0], [15.8532715, -4.19166, 0.0], [15.8518982, -4.19166, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1897}, "geometry": {"type": "Polygon", "coordinates": [[[15.6266785, -4.19166, 0.0], [15.6266785, -4.1902904, 0.0], [15.6253052, -4.1902904, 0.0], [15.6253052, -4.19166, 0.0], [15.6253052, -4.1930296, 0.0], [15.6266785, -4.1930296, 0.0], [15.6266785, -4.19166, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1898}, "geometry": {"type": "Polygon", "coordinates": [[[15.6582642, -4.19166, 0.0], [15.6582642, -4.1930296, 0.0], [15.6596375, -4.1930296, 0.0], [15.6596375, -4.19166, 0.0], [15.6582642, -4.19166, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1899}, "geometry": {"type": "Polygon", "coordinates": [[[15.6665039, -4.19166, 0.0], [15.6665039, -4.1902904, 0.0], [15.6678772, -4.1902904, 0.0], [15.6678772, -4.1889207, 0.0], [15.6665039, -4.1889207, 0.0], [15.6651306, -4.1889207, 0.0], [15.6637573, -4.1889207, 0.0], [15.6637573, -4.1902904, 0.0], [15.6637573, -4.19166, 0.0], [15.6651306, -4.19166, 0.0], [15.6651306, -4.1930296, 0.0], [15.6665039, -4.1930296, 0.0], [15.6665039, -4.19166, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1900}, "geometry": {"type": "Polygon", "coordinates": [[[15.5964661, -4.1902904, 0.0], [15.5950928, -4.1902904, 0.0], [15.5950928, -4.19166, 0.0], [15.5964661, -4.19166, 0.0], [15.5978394, -4.19166, 0.0], [15.5978394, -4.1902904, 0.0], [15.5964661, -4.1902904, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1901}, "geometry": {"type": "Polygon", "coordinates": [[[15.5909729, -4.1902904, 0.0], [15.5909729, -4.1889207, 0.0], [15.5895996, -4.1889207, 0.0], [15.5895996, -4.1902904, 0.0], [15.5882263, -4.1902904, 0.0], [15.5882263, -4.19166, 0.0], [15.5895996, -4.19166, 0.0], [15.5909729, -4.19166, 0.0], [15.5909729, -4.1902904, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1902}, "geometry": {"type": "Polygon", "coordinates": [[[15.619812, -4.1902904, 0.0], [15.619812, -4.19166, 0.0], [15.6211853, -4.19166, 0.0], [15.6211853, -4.1902904, 0.0], [15.619812, -4.1902904, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1903}, "geometry": {"type": "Polygon", "coordinates": [[[15.6596375, -4.1902904, 0.0], [15.6596375, -4.19166, 0.0], [15.6610107, -4.19166, 0.0], [15.6610107, -4.1902904, 0.0], [15.6596375, -4.1902904, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1904}, "geometry": {"type": "Polygon", "coordinates": [[[15.8546448, -4.1902904, 0.0], [15.8546448, -4.19166, 0.0], [15.8560181, -4.19166, 0.0], [15.8560181, -4.1902904, 0.0], [15.8546448, -4.1902904, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1905}, "geometry": {"type": "Polygon", "coordinates": [[[15.8230591, -4.1902904, 0.0], [15.8230591, -4.19166, 0.0], [15.8244324, -4.19166, 0.0], [15.8244324, -4.1902904, 0.0], [15.8230591, -4.1902904, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1906}, "geometry": {"type": "Polygon", "coordinates": [[[15.7255554, -4.1889207, 0.0], [15.7255554, -4.1902904, 0.0], [15.7269287, -4.1902904, 0.0], [15.7269287, -4.1889207, 0.0], [15.7255554, -4.1889207, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1907}, "geometry": {"type": "Polygon", "coordinates": [[[15.6074524, -4.1889207, 0.0], [15.6074524, -4.1902904, 0.0], [15.6088257, -4.1902904, 0.0], [15.6088257, -4.1889207, 0.0], [15.6074524, -4.1889207, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1908}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.1889207, 0.0], [15.7173157, -4.1902904, 0.0], [15.718689, -4.1902904, 0.0], [15.718689, -4.1889207, 0.0], [15.7173157, -4.1889207, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1909}, "geometry": {"type": "Polygon", "coordinates": [[[15.8656311, -4.1889207, 0.0], [15.8656311, -4.1902904, 0.0], [15.8670044, -4.1902904, 0.0], [15.8670044, -4.1889207, 0.0], [15.8656311, -4.1889207, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1910}, "geometry": {"type": "Polygon", "coordinates": [[[15.567627, -4.1875511, 0.0], [15.567627, -4.1889207, 0.0], [15.5690002, -4.1889207, 0.0], [15.5690002, -4.1875511, 0.0], [15.567627, -4.1875511, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1911}, "geometry": {"type": "Polygon", "coordinates": [[[15.643158, -4.1875511, 0.0], [15.6417847, -4.1875511, 0.0], [15.6417847, -4.1889207, 0.0], [15.643158, -4.1889207, 0.0], [15.6445312, -4.1889207, 0.0], [15.6445312, -4.1875511, 0.0], [15.643158, -4.1875511, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1912}, "geometry": {"type": "Polygon", "coordinates": [[[15.7159424, -4.1875511, 0.0], [15.7159424, -4.1889207, 0.0], [15.7173157, -4.1889207, 0.0], [15.7173157, -4.1875511, 0.0], [15.7159424, -4.1875511, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1913}, "geometry": {"type": "Polygon", "coordinates": [[[15.7296753, -4.1875511, 0.0], [15.7296753, -4.1889207, 0.0], [15.7310486, -4.1889207, 0.0], [15.7310486, -4.1875511, 0.0], [15.7296753, -4.1875511, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1914}, "geometry": {"type": "Polygon", "coordinates": [[[15.8477783, -4.1875511, 0.0], [15.8477783, -4.1889207, 0.0], [15.8491516, -4.1889207, 0.0], [15.8505249, -4.1889207, 0.0], [15.8505249, -4.1875511, 0.0], [15.8491516, -4.1875511, 0.0], [15.8477783, -4.1875511, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1915}, "geometry": {"type": "Polygon", "coordinates": [[[15.610199, -4.1875511, 0.0], [15.610199, -4.1861815, 0.0], [15.610199, -4.1848119, 0.0], [15.6088257, -4.1848119, 0.0], [15.6074524, -4.1848119, 0.0], [15.6074524, -4.1861815, 0.0], [15.6088257, -4.1861815, 0.0], [15.6088257, -4.1875511, 0.0], [15.6088257, -4.1889207, 0.0], [15.610199, -4.1889207, 0.0], [15.610199, -4.1875511, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1916}, "geometry": {"type": "Polygon", "coordinates": [[[15.5813599, -4.1875511, 0.0], [15.5813599, -4.1861815, 0.0], [15.5813599, -4.1848119, 0.0], [15.5799866, -4.1848119, 0.0], [15.5799866, -4.1861815, 0.0], [15.5799866, -4.1875511, 0.0], [15.5799866, -4.1889207, 0.0], [15.5813599, -4.1889207, 0.0], [15.5813599, -4.1875511, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1917}, "geometry": {"type": "Polygon", "coordinates": [[[15.57724, -4.1875511, 0.0], [15.5786133, -4.1875511, 0.0], [15.5786133, -4.1861815, 0.0], [15.57724, -4.1861815, 0.0], [15.57724, -4.1848119, 0.0], [15.57724, -4.1834422, 0.0], [15.5758667, -4.1834422, 0.0], [15.5744934, -4.1834422, 0.0], [15.5731201, -4.1834422, 0.0], [15.5731201, -4.1820726, 0.0], [15.5717468, -4.1820726, 0.0], [15.5717468, -4.1834422, 0.0], [15.5703735, -4.1834422, 0.0], [15.5703735, -4.1848119, 0.0], [15.5703735, -4.1861815, 0.0], [15.5703735, -4.1875511, 0.0], [15.5717468, -4.1875511, 0.0], [15.5717468, -4.1861815, 0.0], [15.5731201, -4.1861815, 0.0], [15.5744934, -4.1861815, 0.0], [15.5744934, -4.1848119, 0.0], [15.5758667, -4.1848119, 0.0], [15.5758667, -4.1861815, 0.0], [15.5758667, -4.1875511, 0.0], [15.5744934, -4.1875511, 0.0], [15.5744934, -4.1889207, 0.0], [15.5758667, -4.1889207, 0.0], [15.57724, -4.1889207, 0.0], [15.57724, -4.1875511, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1918}, "geometry": {"type": "Polygon", "coordinates": [[[15.6472778, -4.1875511, 0.0], [15.6472778, -4.1889207, 0.0], [15.6486511, -4.1889207, 0.0], [15.6486511, -4.1875511, 0.0], [15.6472778, -4.1875511, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1919}, "geometry": {"type": "Polygon", "coordinates": [[[15.7214355, -4.1861815, 0.0], [15.7214355, -4.1875511, 0.0], [15.7228088, -4.1875511, 0.0], [15.7241821, -4.1875511, 0.0], [15.7241821, -4.1861815, 0.0], [15.7228088, -4.1861815, 0.0], [15.7214355, -4.1861815, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1920}, "geometry": {"type": "Polygon", "coordinates": [[[15.718689, -4.1861815, 0.0], [15.718689, -4.1875511, 0.0], [15.7200623, -4.1875511, 0.0], [15.7200623, -4.1861815, 0.0], [15.718689, -4.1861815, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1921}, "geometry": {"type": "Polygon", "coordinates": [[[15.7626343, -4.1861815, 0.0], [15.7626343, -4.1875511, 0.0], [15.7640076, -4.1875511, 0.0], [15.7653809, -4.1875511, 0.0], [15.7653809, -4.1861815, 0.0], [15.7653809, -4.1848119, 0.0], [15.7640076, -4.1848119, 0.0], [15.7640076, -4.1861815, 0.0], [15.7626343, -4.1861815, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1922}, "geometry": {"type": "Polygon", "coordinates": [[[15.6513977, -4.1861815, 0.0], [15.6513977, -4.1875511, 0.0], [15.652771, -4.1875511, 0.0], [15.652771, -4.1861815, 0.0], [15.6513977, -4.1861815, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1923}, "geometry": {"type": "Polygon", "coordinates": [[[15.7791138, -4.1861815, 0.0], [15.7791138, -4.1848119, 0.0], [15.7777405, -4.1848119, 0.0], [15.7777405, -4.1861815, 0.0], [15.7777405, -4.1875511, 0.0], [15.7791138, -4.1875511, 0.0], [15.7791138, -4.1861815, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1924}, "geometry": {"type": "Polygon", "coordinates": [[[15.8560181, -4.1861815, 0.0], [15.8560181, -4.1875511, 0.0], [15.8573914, -4.1875511, 0.0], [15.8573914, -4.1861815, 0.0], [15.8560181, -4.1861815, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1925}, "geometry": {"type": "Polygon", "coordinates": [[[15.6335449, -4.1848119, 0.0], [15.6335449, -4.1861815, 0.0], [15.6349182, -4.1861815, 0.0], [15.6349182, -4.1848119, 0.0], [15.6335449, -4.1848119, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1926}, "geometry": {"type": "Polygon", "coordinates": [[[15.6266785, -4.1848119, 0.0], [15.6266785, -4.1861815, 0.0], [15.6280518, -4.1861815, 0.0], [15.6280518, -4.1848119, 0.0], [15.6266785, -4.1848119, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1927}, "geometry": {"type": "Polygon", "coordinates": [[[15.6239319, -4.1848119, 0.0], [15.6239319, -4.1861815, 0.0], [15.6253052, -4.1861815, 0.0], [15.6253052, -4.1848119, 0.0], [15.6239319, -4.1848119, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1928}, "geometry": {"type": "Polygon", "coordinates": [[[15.6143188, -4.1848119, 0.0], [15.6156921, -4.1848119, 0.0], [15.6156921, -4.1834422, 0.0], [15.6143188, -4.1834422, 0.0], [15.6129456, -4.1834422, 0.0], [15.6129456, -4.1848119, 0.0], [15.6129456, -4.1861815, 0.0], [15.6143188, -4.1861815, 0.0], [15.6143188, -4.1848119, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1929}, "geometry": {"type": "Polygon", "coordinates": [[[15.6335449, -4.1834422, 0.0], [15.6335449, -4.1820726, 0.0], [15.6321716, -4.1820726, 0.0], [15.6321716, -4.1834422, 0.0], [15.6321716, -4.1848119, 0.0], [15.6335449, -4.1848119, 0.0], [15.6335449, -4.1834422, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1930}, "geometry": {"type": "Polygon", "coordinates": [[[15.6376648, -4.1834422, 0.0], [15.6376648, -4.1848119, 0.0], [15.6390381, -4.1848119, 0.0], [15.6390381, -4.1834422, 0.0], [15.6376648, -4.1834422, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1931}, "geometry": {"type": "Polygon", "coordinates": [[[15.8175659, -4.1834422, 0.0], [15.8175659, -4.1820726, 0.0], [15.8161926, -4.1820726, 0.0], [15.8161926, -4.1834422, 0.0], [15.8161926, -4.1848119, 0.0], [15.8175659, -4.1848119, 0.0], [15.8175659, -4.1834422, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1932}, "geometry": {"type": "Polygon", "coordinates": [[[15.7228088, -4.1834422, 0.0], [15.7228088, -4.1820726, 0.0], [15.7214355, -4.1820726, 0.0], [15.7200623, -4.1820726, 0.0], [15.7200623, -4.1834422, 0.0], [15.7214355, -4.1834422, 0.0], [15.7214355, -4.1848119, 0.0], [15.7228088, -4.1848119, 0.0], [15.7228088, -4.1834422, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1933}, "geometry": {"type": "Polygon", "coordinates": [[[15.5360413, -4.1834422, 0.0], [15.5360413, -4.1848119, 0.0], [15.5374146, -4.1848119, 0.0], [15.5374146, -4.1834422, 0.0], [15.5360413, -4.1834422, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1934}, "geometry": {"type": "Polygon", "coordinates": [[[15.5799866, -4.1834422, 0.0], [15.5799866, -4.1820726, 0.0], [15.5786133, -4.1820726, 0.0], [15.5786133, -4.1834422, 0.0], [15.5786133, -4.1848119, 0.0], [15.5799866, -4.1848119, 0.0], [15.5799866, -4.1834422, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1935}, "geometry": {"type": "Polygon", "coordinates": [[[15.6472778, -4.1834422, 0.0], [15.6472778, -4.1848119, 0.0], [15.6486511, -4.1848119, 0.0], [15.6486511, -4.1834422, 0.0], [15.6472778, -4.1834422, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1936}, "geometry": {"type": "Polygon", "coordinates": [[[15.5923462, -4.1820726, 0.0], [15.5923462, -4.1834422, 0.0], [15.5937195, -4.1834422, 0.0], [15.5937195, -4.1820726, 0.0], [15.5923462, -4.1820726, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1937}, "geometry": {"type": "Polygon", "coordinates": [[[15.5813599, -4.1820726, 0.0], [15.5813599, -4.1834422, 0.0], [15.5827332, -4.1834422, 0.0], [15.5827332, -4.1820726, 0.0], [15.5813599, -4.1820726, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1938}, "geometry": {"type": "Polygon", "coordinates": [[[15.5882263, -4.180703, 0.0], [15.5882263, -4.1820726, 0.0], [15.5895996, -4.1820726, 0.0], [15.5909729, -4.1820726, 0.0], [15.5909729, -4.180703, 0.0], [15.5923462, -4.180703, 0.0], [15.5923462, -4.1793333, 0.0], [15.5937195, -4.1793333, 0.0], [15.5937195, -4.1779637, 0.0], [15.5923462, -4.1779637, 0.0], [15.5923462, -4.176594, 0.0], [15.5909729, -4.176594, 0.0], [15.5909729, -4.1779637, 0.0], [15.5895996, -4.1779637, 0.0], [15.5895996, -4.1793333, 0.0], [15.5895996, -4.180703, 0.0], [15.5882263, -4.180703, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1939}, "geometry": {"type": "Polygon", "coordinates": [[[15.6390381, -4.180703, 0.0], [15.6390381, -4.1793333, 0.0], [15.6376648, -4.1793333, 0.0], [15.6362915, -4.1793333, 0.0], [15.6349182, -4.1793333, 0.0], [15.6349182, -4.180703, 0.0], [15.6362915, -4.180703, 0.0], [15.6376648, -4.180703, 0.0], [15.6376648, -4.1820726, 0.0], [15.6390381, -4.1820726, 0.0], [15.6390381, -4.180703, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1940}, "geometry": {"type": "Polygon", "coordinates": [[[15.8615112, -4.180703, 0.0], [15.8615112, -4.1820726, 0.0], [15.8628845, -4.1820726, 0.0], [15.8628845, -4.180703, 0.0], [15.8615112, -4.180703, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1941}, "geometry": {"type": "Polygon", "coordinates": [[[15.7791138, -4.180703, 0.0], [15.7791138, -4.1820726, 0.0], [15.7804871, -4.1820726, 0.0], [15.7804871, -4.180703, 0.0], [15.7791138, -4.180703, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1942}, "geometry": {"type": "Polygon", "coordinates": [[[15.7228088, -4.1793333, 0.0], [15.7228088, -4.180703, 0.0], [15.7241821, -4.180703, 0.0], [15.7241821, -4.1793333, 0.0], [15.7228088, -4.1793333, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1943}, "geometry": {"type": "Polygon", "coordinates": [[[15.7804871, -4.1793333, 0.0], [15.7804871, -4.180703, 0.0], [15.7818604, -4.180703, 0.0], [15.7818604, -4.1793333, 0.0], [15.7804871, -4.1793333, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1944}, "geometry": {"type": "Polygon", "coordinates": [[[15.7640076, -4.1793333, 0.0], [15.7626343, -4.1793333, 0.0], [15.7626343, -4.180703, 0.0], [15.7640076, -4.180703, 0.0], [15.7653809, -4.180703, 0.0], [15.7653809, -4.1793333, 0.0], [15.7640076, -4.1793333, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1945}, "geometry": {"type": "Polygon", "coordinates": [[[15.8752441, -4.1793333, 0.0], [15.8752441, -4.1779637, 0.0], [15.8738708, -4.1779637, 0.0], [15.8738708, -4.1793333, 0.0], [15.8738708, -4.180703, 0.0], [15.8752441, -4.180703, 0.0], [15.8766174, -4.180703, 0.0], [15.8766174, -4.1793333, 0.0], [15.8752441, -4.1793333, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1946}, "geometry": {"type": "Polygon", "coordinates": [[[15.5950928, -4.1793333, 0.0], [15.5950928, -4.180703, 0.0], [15.5964661, -4.180703, 0.0], [15.5964661, -4.1793333, 0.0], [15.5950928, -4.1793333, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1947}, "geometry": {"type": "Polygon", "coordinates": [[[15.6033325, -4.1793333, 0.0], [15.6033325, -4.180703, 0.0], [15.6047058, -4.180703, 0.0], [15.6047058, -4.1793333, 0.0], [15.6033325, -4.1793333, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1948}, "geometry": {"type": "Polygon", "coordinates": [[[15.6115723, -4.1793333, 0.0], [15.6115723, -4.180703, 0.0], [15.6129456, -4.180703, 0.0], [15.6129456, -4.1793333, 0.0], [15.6115723, -4.1793333, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1949}, "geometry": {"type": "Polygon", "coordinates": [[[15.8518982, -4.1793333, 0.0], [15.8518982, -4.180703, 0.0], [15.8532715, -4.180703, 0.0], [15.8532715, -4.1793333, 0.0], [15.8518982, -4.1793333, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1950}, "geometry": {"type": "Polygon", "coordinates": [[[15.6239319, -4.1793333, 0.0], [15.6239319, -4.180703, 0.0], [15.6253052, -4.180703, 0.0], [15.6253052, -4.1793333, 0.0], [15.6239319, -4.1793333, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1951}, "geometry": {"type": "Polygon", "coordinates": [[[15.8120728, -4.1779637, 0.0], [15.8120728, -4.176594, 0.0], [15.8106995, -4.176594, 0.0], [15.8093262, -4.176594, 0.0], [15.8079529, -4.176594, 0.0], [15.8079529, -4.1779637, 0.0], [15.8079529, -4.1793333, 0.0], [15.8093262, -4.1793333, 0.0], [15.8106995, -4.1793333, 0.0], [15.8120728, -4.1793333, 0.0], [15.8120728, -4.1779637, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1952}, "geometry": {"type": "Polygon", "coordinates": [[[15.5964661, -4.1779637, 0.0], [15.5964661, -4.1793333, 0.0], [15.5978394, -4.1793333, 0.0], [15.5978394, -4.1779637, 0.0], [15.5964661, -4.1779637, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1953}, "geometry": {"type": "Polygon", "coordinates": [[[15.7241821, -4.1779637, 0.0], [15.7241821, -4.1793333, 0.0], [15.7255554, -4.1793333, 0.0], [15.7255554, -4.1779637, 0.0], [15.7241821, -4.1779637, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1954}, "geometry": {"type": "Polygon", "coordinates": [[[15.7145691, -4.176594, 0.0], [15.7145691, -4.1779637, 0.0], [15.7159424, -4.1779637, 0.0], [15.7159424, -4.176594, 0.0], [15.7145691, -4.176594, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1955}, "geometry": {"type": "Polygon", "coordinates": [[[15.6005859, -4.1752244, 0.0], [15.6005859, -4.176594, 0.0], [15.6019592, -4.176594, 0.0], [15.6033325, -4.176594, 0.0], [15.6033325, -4.1752244, 0.0], [15.6019592, -4.1752244, 0.0], [15.6005859, -4.1752244, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1956}, "geometry": {"type": "Polygon", "coordinates": [[[15.5964661, -4.1752244, 0.0], [15.5978394, -4.1752244, 0.0], [15.5992126, -4.1752244, 0.0], [15.5992126, -4.1738548, 0.0], [15.5978394, -4.1738548, 0.0], [15.5964661, -4.1738548, 0.0], [15.5950928, -4.1738548, 0.0], [15.5937195, -4.1738548, 0.0], [15.5937195, -4.1752244, 0.0], [15.5937195, -4.176594, 0.0], [15.5950928, -4.176594, 0.0], [15.5964661, -4.176594, 0.0], [15.5964661, -4.1752244, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1957}, "geometry": {"type": "Polygon", "coordinates": [[[15.5799866, -4.1752244, 0.0], [15.5799866, -4.1738548, 0.0], [15.5786133, -4.1738548, 0.0], [15.5786133, -4.1752244, 0.0], [15.5786133, -4.176594, 0.0], [15.5799866, -4.176594, 0.0], [15.5799866, -4.1752244, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1958}, "geometry": {"type": "Polygon", "coordinates": [[[15.5744934, -4.1752244, 0.0], [15.5744934, -4.176594, 0.0], [15.5758667, -4.176594, 0.0], [15.5758667, -4.1752244, 0.0], [15.5744934, -4.1752244, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1959}, "geometry": {"type": "Polygon", "coordinates": [[[15.695343, -4.1752244, 0.0], [15.695343, -4.176594, 0.0], [15.6967163, -4.176594, 0.0], [15.6967163, -4.1752244, 0.0], [15.695343, -4.1752244, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1960}, "geometry": {"type": "Polygon", "coordinates": [[[15.6156921, -4.1752244, 0.0], [15.6156921, -4.176594, 0.0], [15.6170654, -4.176594, 0.0], [15.6170654, -4.1752244, 0.0], [15.6156921, -4.1752244, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1961}, "geometry": {"type": "Polygon", "coordinates": [[[15.7049561, -4.1752244, 0.0], [15.7049561, -4.176594, 0.0], [15.7063293, -4.176594, 0.0], [15.7063293, -4.1752244, 0.0], [15.7049561, -4.1752244, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1962}, "geometry": {"type": "Polygon", "coordinates": [[[15.7159424, -4.1752244, 0.0], [15.7159424, -4.176594, 0.0], [15.7173157, -4.176594, 0.0], [15.7173157, -4.1752244, 0.0], [15.7159424, -4.1752244, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1963}, "geometry": {"type": "Polygon", "coordinates": [[[15.7832336, -4.1752244, 0.0], [15.7832336, -4.1738548, 0.0], [15.7832336, -4.1724851, 0.0], [15.7818604, -4.1724851, 0.0], [15.7818604, -4.1711155, 0.0], [15.7818604, -4.1697458, 0.0], [15.7818604, -4.1683761, 0.0], [15.7818604, -4.1670065, 0.0], [15.7818604, -4.1656368, 0.0], [15.7832336, -4.1656368, 0.0], [15.7832336, -4.1642672, 0.0], [15.7818604, -4.1642672, 0.0], [15.7804871, -4.1642672, 0.0], [15.7804871, -4.1656368, 0.0], [15.7791138, -4.1656368, 0.0], [15.7791138, -4.1670065, 0.0], [15.7777405, -4.1670065, 0.0], [15.7777405, -4.1683761, 0.0], [15.7791138, -4.1683761, 0.0], [15.7791138, -4.1697458, 0.0], [15.7791138, -4.1711155, 0.0], [15.7804871, -4.1711155, 0.0], [15.7804871, -4.1724851, 0.0], [15.7804871, -4.1738548, 0.0], [15.7804871, -4.1752244, 0.0], [15.7818604, -4.1752244, 0.0], [15.7818604, -4.176594, 0.0], [15.7832336, -4.176594, 0.0], [15.7832336, -4.1752244, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1964}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -4.1752244, 0.0], [15.7530212, -4.1738548, 0.0], [15.7516479, -4.1738548, 0.0], [15.7516479, -4.1752244, 0.0], [15.7516479, -4.176594, 0.0], [15.7530212, -4.176594, 0.0], [15.7530212, -4.1752244, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1965}, "geometry": {"type": "Polygon", "coordinates": [[[15.7077026, -4.1738548, 0.0], [15.7077026, -4.1752244, 0.0], [15.7090759, -4.1752244, 0.0], [15.7090759, -4.1738548, 0.0], [15.7077026, -4.1738548, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1966}, "geometry": {"type": "Polygon", "coordinates": [[[15.7131958, -4.1738548, 0.0], [15.7131958, -4.1724851, 0.0], [15.7118225, -4.1724851, 0.0], [15.7118225, -4.1738548, 0.0], [15.7118225, -4.1752244, 0.0], [15.7131958, -4.1752244, 0.0], [15.7131958, -4.1738548, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1967}, "geometry": {"type": "Polygon", "coordinates": [[[15.5731201, -4.1738548, 0.0], [15.5731201, -4.1752244, 0.0], [15.5744934, -4.1752244, 0.0], [15.5744934, -4.1738548, 0.0], [15.5731201, -4.1738548, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1968}, "geometry": {"type": "Polygon", "coordinates": [[[15.5758667, -4.1738548, 0.0], [15.5758667, -4.1752244, 0.0], [15.57724, -4.1752244, 0.0], [15.57724, -4.1738548, 0.0], [15.5758667, -4.1738548, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1969}, "geometry": {"type": "Polygon", "coordinates": [[[15.7489014, -4.1724851, 0.0], [15.7489014, -4.1738548, 0.0], [15.7502747, -4.1738548, 0.0], [15.7502747, -4.1724851, 0.0], [15.7489014, -4.1724851, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1970}, "geometry": {"type": "Polygon", "coordinates": [[[15.6747437, -4.1738548, 0.0], [15.6747437, -4.1752244, 0.0], [15.6761169, -4.1752244, 0.0], [15.6761169, -4.1738548, 0.0], [15.6747437, -4.1738548, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1971}, "geometry": {"type": "Polygon", "coordinates": [[[15.7859802, -4.1724851, 0.0], [15.7859802, -4.1738548, 0.0], [15.7873535, -4.1738548, 0.0], [15.7873535, -4.1724851, 0.0], [15.7859802, -4.1724851, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1972}, "geometry": {"type": "Polygon", "coordinates": [[[15.8834839, -4.1724851, 0.0], [15.8834839, -4.1738548, 0.0], [15.8848572, -4.1738548, 0.0], [15.8848572, -4.1724851, 0.0], [15.8834839, -4.1724851, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1973}, "geometry": {"type": "Polygon", "coordinates": [[[15.7392883, -4.1724851, 0.0], [15.7392883, -4.1711155, 0.0], [15.737915, -4.1711155, 0.0], [15.737915, -4.1724851, 0.0], [15.737915, -4.1738548, 0.0], [15.7392883, -4.1738548, 0.0], [15.7392883, -4.1724851, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1974}, "geometry": {"type": "Polygon", "coordinates": [[[15.7681274, -4.1724851, 0.0], [15.7681274, -4.1711155, 0.0], [15.7667542, -4.1711155, 0.0], [15.7667542, -4.1724851, 0.0], [15.7667542, -4.1738548, 0.0], [15.7681274, -4.1738548, 0.0], [15.7681274, -4.1724851, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1975}, "geometry": {"type": "Polygon", "coordinates": [[[15.7969666, -4.1711155, 0.0], [15.7969666, -4.1724851, 0.0], [15.7983398, -4.1724851, 0.0], [15.7983398, -4.1711155, 0.0], [15.7969666, -4.1711155, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1976}, "geometry": {"type": "Polygon", "coordinates": [[[15.5992126, -4.1711155, 0.0], [15.5978394, -4.1711155, 0.0], [15.5978394, -4.1724851, 0.0], [15.5992126, -4.1724851, 0.0], [15.6005859, -4.1724851, 0.0], [15.6005859, -4.1711155, 0.0], [15.5992126, -4.1711155, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1977}, "geometry": {"type": "Polygon", "coordinates": [[[15.8711243, -4.1711155, 0.0], [15.8711243, -4.1697458, 0.0], [15.869751, -4.1697458, 0.0], [15.869751, -4.1711155, 0.0], [15.869751, -4.1724851, 0.0], [15.8711243, -4.1724851, 0.0], [15.8711243, -4.1711155, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1978}, "geometry": {"type": "Polygon", "coordinates": [[[15.57724, -4.1711155, 0.0], [15.57724, -4.1724851, 0.0], [15.5786133, -4.1724851, 0.0], [15.5799866, -4.1724851, 0.0], [15.5799866, -4.1711155, 0.0], [15.5813599, -4.1711155, 0.0], [15.5827332, -4.1711155, 0.0], [15.5827332, -4.1724851, 0.0], [15.5841064, -4.1724851, 0.0], [15.5841064, -4.1711155, 0.0], [15.5854797, -4.1711155, 0.0], [15.5854797, -4.1697458, 0.0], [15.5854797, -4.1683761, 0.0], [15.5841064, -4.1683761, 0.0], [15.5841064, -4.1697458, 0.0], [15.5827332, -4.1697458, 0.0], [15.5813599, -4.1697458, 0.0], [15.5799866, -4.1697458, 0.0], [15.5786133, -4.1697458, 0.0], [15.5786133, -4.1711155, 0.0], [15.57724, -4.1711155, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1979}, "geometry": {"type": "Polygon", "coordinates": [[[15.7008362, -4.1711155, 0.0], [15.7008362, -4.1724851, 0.0], [15.7022095, -4.1724851, 0.0], [15.7022095, -4.1711155, 0.0], [15.7008362, -4.1711155, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1980}, "geometry": {"type": "Polygon", "coordinates": [[[15.6129456, -4.1711155, 0.0], [15.6129456, -4.1724851, 0.0], [15.6143188, -4.1724851, 0.0], [15.6143188, -4.1711155, 0.0], [15.6129456, -4.1711155, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1981}, "geometry": {"type": "Polygon", "coordinates": [[[15.5744934, -4.1697458, 0.0], [15.5744934, -4.1711155, 0.0], [15.5758667, -4.1711155, 0.0], [15.5758667, -4.1697458, 0.0], [15.5744934, -4.1697458, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1982}, "geometry": {"type": "Polygon", "coordinates": [[[15.7008362, -4.1697458, 0.0], [15.7008362, -4.1683761, 0.0], [15.6994629, -4.1683761, 0.0], [15.6994629, -4.1697458, 0.0], [15.6994629, -4.1711155, 0.0], [15.7008362, -4.1711155, 0.0], [15.7008362, -4.1697458, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1983}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.1697458, 0.0], [15.7557678, -4.1711155, 0.0], [15.7571411, -4.1711155, 0.0], [15.7571411, -4.1697458, 0.0], [15.7557678, -4.1697458, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1984}, "geometry": {"type": "Polygon", "coordinates": [[[15.6005859, -4.1697458, 0.0], [15.6005859, -4.1711155, 0.0], [15.6019592, -4.1711155, 0.0], [15.6019592, -4.1697458, 0.0], [15.6005859, -4.1697458, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1985}, "geometry": {"type": "Polygon", "coordinates": [[[15.7173157, -4.1683761, 0.0], [15.7173157, -4.1697458, 0.0], [15.718689, -4.1697458, 0.0], [15.718689, -4.1683761, 0.0], [15.7173157, -4.1683761, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1986}, "geometry": {"type": "Polygon", "coordinates": [[[15.6321716, -4.1683761, 0.0], [15.6321716, -4.1697458, 0.0], [15.6335449, -4.1697458, 0.0], [15.6335449, -4.1683761, 0.0], [15.6321716, -4.1683761, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1987}, "geometry": {"type": "Polygon", "coordinates": [[[15.79422, -4.1683761, 0.0], [15.79422, -4.1697458, 0.0], [15.7955933, -4.1697458, 0.0], [15.7969666, -4.1697458, 0.0], [15.7969666, -4.1683761, 0.0], [15.7955933, -4.1683761, 0.0], [15.79422, -4.1683761, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1988}, "geometry": {"type": "Polygon", "coordinates": [[[15.5552673, -4.1683761, 0.0], [15.5552673, -4.1697458, 0.0], [15.5566406, -4.1697458, 0.0], [15.5566406, -4.1683761, 0.0], [15.5552673, -4.1683761, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1989}, "geometry": {"type": "Polygon", "coordinates": [[[15.7887268, -4.1670065, 0.0], [15.7873535, -4.1670065, 0.0], [15.7873535, -4.1683761, 0.0], [15.7887268, -4.1683761, 0.0], [15.7901001, -4.1683761, 0.0], [15.7901001, -4.1670065, 0.0], [15.7887268, -4.1670065, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1990}, "geometry": {"type": "Polygon", "coordinates": [[[15.57724, -4.1683761, 0.0], [15.57724, -4.1697458, 0.0], [15.5786133, -4.1697458, 0.0], [15.5786133, -4.1683761, 0.0], [15.57724, -4.1683761, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1991}, "geometry": {"type": "Polygon", "coordinates": [[[15.7585144, -4.1683761, 0.0], [15.7585144, -4.1697458, 0.0], [15.7598877, -4.1697458, 0.0], [15.7598877, -4.1683761, 0.0], [15.7585144, -4.1683761, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1992}, "geometry": {"type": "Polygon", "coordinates": [[[15.7035828, -4.1670065, 0.0], [15.7035828, -4.1683761, 0.0], [15.7049561, -4.1683761, 0.0], [15.7049561, -4.1670065, 0.0], [15.7035828, -4.1670065, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1993}, "geometry": {"type": "Polygon", "coordinates": [[[15.6939697, -4.1670065, 0.0], [15.6939697, -4.1683761, 0.0], [15.695343, -4.1683761, 0.0], [15.695343, -4.1670065, 0.0], [15.6939697, -4.1670065, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1994}, "geometry": {"type": "Polygon", "coordinates": [[[15.5937195, -4.1670065, 0.0], [15.5950928, -4.1670065, 0.0], [15.5950928, -4.1656368, 0.0], [15.5937195, -4.1656368, 0.0], [15.5923462, -4.1656368, 0.0], [15.5923462, -4.1670065, 0.0], [15.5923462, -4.1683761, 0.0], [15.5937195, -4.1683761, 0.0], [15.5937195, -4.1670065, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1995}, "geometry": {"type": "Polygon", "coordinates": [[[15.5717468, -4.1670065, 0.0], [15.5717468, -4.1683761, 0.0], [15.5731201, -4.1683761, 0.0], [15.5731201, -4.1670065, 0.0], [15.5717468, -4.1670065, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1996}, "geometry": {"type": "Polygon", "coordinates": [[[15.879364, -4.1656368, 0.0], [15.879364, -4.1642672, 0.0], [15.8807373, -4.1642672, 0.0], [15.8807373, -4.1628975, 0.0], [15.8807373, -4.1615278, 0.0], [15.8807373, -4.1601582, 0.0], [15.8807373, -4.1587885, 0.0], [15.879364, -4.1587885, 0.0], [15.8779907, -4.1587885, 0.0], [15.8779907, -4.1601582, 0.0], [15.8779907, -4.1615278, 0.0], [15.8766174, -4.1615278, 0.0], [15.8766174, -4.1628975, 0.0], [15.8752441, -4.1628975, 0.0], [15.8752441, -4.1642672, 0.0], [15.8752441, -4.1656368, 0.0], [15.8766174, -4.1656368, 0.0], [15.8779907, -4.1656368, 0.0], [15.8779907, -4.1670065, 0.0], [15.879364, -4.1670065, 0.0], [15.879364, -4.1656368, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1997}, "geometry": {"type": "Polygon", "coordinates": [[[15.8381653, -4.1656368, 0.0], [15.8395386, -4.1656368, 0.0], [15.8395386, -4.1642672, 0.0], [15.8395386, -4.1628975, 0.0], [15.8409119, -4.1628975, 0.0], [15.8409119, -4.1615278, 0.0], [15.8409119, -4.1601582, 0.0], [15.8395386, -4.1601582, 0.0], [15.8395386, -4.1587885, 0.0], [15.8381653, -4.1587885, 0.0], [15.8381653, -4.1574188, 0.0], [15.836792, -4.1574188, 0.0], [15.8354187, -4.1574188, 0.0], [15.8354187, -4.1587885, 0.0], [15.8354187, -4.1601582, 0.0], [15.8340454, -4.1601582, 0.0], [15.8326721, -4.1601582, 0.0], [15.8326721, -4.1615278, 0.0], [15.8326721, -4.1628975, 0.0], [15.8326721, -4.1642672, 0.0], [15.8326721, -4.1656368, 0.0], [15.8340454, -4.1656368, 0.0], [15.8340454, -4.1670065, 0.0], [15.8354187, -4.1670065, 0.0], [15.836792, -4.1670065, 0.0], [15.8381653, -4.1670065, 0.0], [15.8381653, -4.1656368, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1998}, "geometry": {"type": "Polygon", "coordinates": [[[15.8010864, -4.1670065, 0.0], [15.8010864, -4.1656368, 0.0], [15.8010864, -4.1642672, 0.0], [15.7997131, -4.1642672, 0.0], [15.7983398, -4.1642672, 0.0], [15.7969666, -4.1642672, 0.0], [15.7969666, -4.1656368, 0.0], [15.7983398, -4.1656368, 0.0], [15.7983398, -4.1670065, 0.0], [15.7997131, -4.1670065, 0.0], [15.7997131, -4.1683761, 0.0], [15.8010864, -4.1683761, 0.0], [15.8010864, -4.1670065, 0.0]]]}}, {"type": "Feature", "properties": {"id": 1999}, "geometry": {"type": "Polygon", "coordinates": [[[15.5593872, -4.1670065, 0.0], [15.5593872, -4.1683761, 0.0], [15.5607605, -4.1683761, 0.0], [15.5607605, -4.1670065, 0.0], [15.5593872, -4.1670065, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2000}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.1656368, 0.0], [15.7557678, -4.1670065, 0.0], [15.7571411, -4.1670065, 0.0], [15.7571411, -4.1656368, 0.0], [15.7557678, -4.1656368, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2001}, "geometry": {"type": "Polygon", "coordinates": [[[15.7763672, -4.1656368, 0.0], [15.7763672, -4.1670065, 0.0], [15.7777405, -4.1670065, 0.0], [15.7777405, -4.1656368, 0.0], [15.7763672, -4.1656368, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2002}, "geometry": {"type": "Polygon", "coordinates": [[[15.5731201, -4.1656368, 0.0], [15.5731201, -4.1670065, 0.0], [15.5744934, -4.1670065, 0.0], [15.5744934, -4.1656368, 0.0], [15.5731201, -4.1656368, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2003}, "geometry": {"type": "Polygon", "coordinates": [[[15.5786133, -4.1656368, 0.0], [15.5786133, -4.1670065, 0.0], [15.5799866, -4.1670065, 0.0], [15.5799866, -4.1656368, 0.0], [15.5786133, -4.1656368, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2004}, "geometry": {"type": "Polygon", "coordinates": [[[15.5593872, -4.1656368, 0.0], [15.5607605, -4.1656368, 0.0], [15.5607605, -4.1642672, 0.0], [15.5607605, -4.1628975, 0.0], [15.5593872, -4.1628975, 0.0], [15.5593872, -4.1615278, 0.0], [15.5580139, -4.1615278, 0.0], [15.5580139, -4.1601582, 0.0], [15.5580139, -4.1587885, 0.0], [15.5580139, -4.1574188, 0.0], [15.5593872, -4.1574188, 0.0], [15.5593872, -4.1560491, 0.0], [15.5607605, -4.1560491, 0.0], [15.5607605, -4.1546794, 0.0], [15.5607605, -4.1533098, 0.0], [15.5607605, -4.1519401, 0.0], [15.5593872, -4.1519401, 0.0], [15.5593872, -4.1533098, 0.0], [15.5580139, -4.1533098, 0.0], [15.5580139, -4.1546794, 0.0], [15.5566406, -4.1546794, 0.0], [15.5566406, -4.1560491, 0.0], [15.5566406, -4.1574188, 0.0], [15.5566406, -4.1587885, 0.0], [15.5566406, -4.1601582, 0.0], [15.5566406, -4.1615278, 0.0], [15.5566406, -4.1628975, 0.0], [15.5566406, -4.1642672, 0.0], [15.5580139, -4.1642672, 0.0], [15.5580139, -4.1656368, 0.0], [15.5580139, -4.1670065, 0.0], [15.5593872, -4.1670065, 0.0], [15.5593872, -4.1656368, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2005}, "geometry": {"type": "Polygon", "coordinates": [[[15.5401611, -4.1656368, 0.0], [15.5401611, -4.1670065, 0.0], [15.5415344, -4.1670065, 0.0], [15.5415344, -4.1656368, 0.0], [15.5401611, -4.1656368, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2006}, "geometry": {"type": "Polygon", "coordinates": [[[15.7022095, -4.1656368, 0.0], [15.7008362, -4.1656368, 0.0], [15.7008362, -4.1670065, 0.0], [15.7022095, -4.1670065, 0.0], [15.7035828, -4.1670065, 0.0], [15.7035828, -4.1656368, 0.0], [15.7022095, -4.1656368, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2007}, "geometry": {"type": "Polygon", "coordinates": [[[15.7873535, -4.1656368, 0.0], [15.7873535, -4.1642672, 0.0], [15.7859802, -4.1642672, 0.0], [15.7859802, -4.1628975, 0.0], [15.7846069, -4.1628975, 0.0], [15.7832336, -4.1628975, 0.0], [15.7832336, -4.1642672, 0.0], [15.7846069, -4.1642672, 0.0], [15.7846069, -4.1656368, 0.0], [15.7859802, -4.1656368, 0.0], [15.7859802, -4.1670065, 0.0], [15.7873535, -4.1670065, 0.0], [15.7873535, -4.1656368, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2008}, "geometry": {"type": "Polygon", "coordinates": [[[15.5895996, -4.1656368, 0.0], [15.5895996, -4.1670065, 0.0], [15.5909729, -4.1670065, 0.0], [15.5909729, -4.1656368, 0.0], [15.5895996, -4.1656368, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2009}, "geometry": {"type": "Polygon", "coordinates": [[[15.6967163, -4.1642672, 0.0], [15.6967163, -4.1656368, 0.0], [15.6980896, -4.1656368, 0.0], [15.6980896, -4.1642672, 0.0], [15.6967163, -4.1642672, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2010}, "geometry": {"type": "Polygon", "coordinates": [[[15.695343, -4.1642672, 0.0], [15.695343, -4.1628975, 0.0], [15.6939697, -4.1628975, 0.0], [15.6939697, -4.1642672, 0.0], [15.6939697, -4.1656368, 0.0], [15.695343, -4.1656368, 0.0], [15.695343, -4.1642672, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2011}, "geometry": {"type": "Polygon", "coordinates": [[[15.7241821, -4.1642672, 0.0], [15.7228088, -4.1642672, 0.0], [15.7228088, -4.1656368, 0.0], [15.7241821, -4.1656368, 0.0], [15.7255554, -4.1656368, 0.0], [15.7255554, -4.1642672, 0.0], [15.7241821, -4.1642672, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2012}, "geometry": {"type": "Polygon", "coordinates": [[[15.586853, -4.1642672, 0.0], [15.586853, -4.1656368, 0.0], [15.5882263, -4.1656368, 0.0], [15.5882263, -4.1642672, 0.0], [15.586853, -4.1642672, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2013}, "geometry": {"type": "Polygon", "coordinates": [[[15.6047058, -4.1642672, 0.0], [15.6060791, -4.1642672, 0.0], [15.6060791, -4.1628975, 0.0], [15.6047058, -4.1628975, 0.0], [15.6033325, -4.1628975, 0.0], [15.6033325, -4.1642672, 0.0], [15.6033325, -4.1656368, 0.0], [15.6047058, -4.1656368, 0.0], [15.6047058, -4.1642672, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2014}, "geometry": {"type": "Polygon", "coordinates": [[[15.5223083, -4.1642672, 0.0], [15.5223083, -4.1656368, 0.0], [15.5236816, -4.1656368, 0.0], [15.5236816, -4.1642672, 0.0], [15.5223083, -4.1642672, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2015}, "geometry": {"type": "Polygon", "coordinates": [[[15.6280518, -4.1642672, 0.0], [15.629425, -4.1642672, 0.0], [15.629425, -4.1628975, 0.0], [15.6280518, -4.1628975, 0.0], [15.6266785, -4.1628975, 0.0], [15.6253052, -4.1628975, 0.0], [15.6253052, -4.1642672, 0.0], [15.6266785, -4.1642672, 0.0], [15.6266785, -4.1656368, 0.0], [15.6280518, -4.1656368, 0.0], [15.6280518, -4.1642672, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2016}, "geometry": {"type": "Polygon", "coordinates": [[[15.5635071, -4.1642672, 0.0], [15.5635071, -4.1656368, 0.0], [15.5648804, -4.1656368, 0.0], [15.5648804, -4.1642672, 0.0], [15.5635071, -4.1642672, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2017}, "geometry": {"type": "Polygon", "coordinates": [[[15.718689, -4.1642672, 0.0], [15.718689, -4.1628975, 0.0], [15.7173157, -4.1628975, 0.0], [15.7173157, -4.1642672, 0.0], [15.7173157, -4.1656368, 0.0], [15.718689, -4.1656368, 0.0], [15.718689, -4.1642672, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2018}, "geometry": {"type": "Polygon", "coordinates": [[[15.8161926, -4.1628975, 0.0], [15.8161926, -4.1642672, 0.0], [15.8175659, -4.1642672, 0.0], [15.8175659, -4.1628975, 0.0], [15.8161926, -4.1628975, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2019}, "geometry": {"type": "Polygon", "coordinates": [[[15.7640076, -4.1628975, 0.0], [15.7640076, -4.1642672, 0.0], [15.7653809, -4.1642672, 0.0], [15.7653809, -4.1628975, 0.0], [15.7640076, -4.1628975, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2020}, "geometry": {"type": "Polygon", "coordinates": [[[15.6349182, -4.1615278, 0.0], [15.6349182, -4.1628975, 0.0], [15.6362915, -4.1628975, 0.0], [15.6362915, -4.1615278, 0.0], [15.6349182, -4.1615278, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2021}, "geometry": {"type": "Polygon", "coordinates": [[[15.586853, -4.1615278, 0.0], [15.586853, -4.1628975, 0.0], [15.5882263, -4.1628975, 0.0], [15.5882263, -4.1615278, 0.0], [15.586853, -4.1615278, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2022}, "geometry": {"type": "Polygon", "coordinates": [[[15.6143188, -4.1601582, 0.0], [15.6143188, -4.1615278, 0.0], [15.6156921, -4.1615278, 0.0], [15.6156921, -4.1601582, 0.0], [15.6143188, -4.1601582, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2023}, "geometry": {"type": "Polygon", "coordinates": [[[15.5429077, -4.1601582, 0.0], [15.5429077, -4.1587885, 0.0], [15.5429077, -4.1574188, 0.0], [15.5415344, -4.1574188, 0.0], [15.5415344, -4.1587885, 0.0], [15.5415344, -4.1601582, 0.0], [15.5415344, -4.1615278, 0.0], [15.5429077, -4.1615278, 0.0], [15.5429077, -4.1601582, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2024}, "geometry": {"type": "Polygon", "coordinates": [[[15.5744934, -4.1601582, 0.0], [15.5758667, -4.1601582, 0.0], [15.57724, -4.1601582, 0.0], [15.57724, -4.1615278, 0.0], [15.5786133, -4.1615278, 0.0], [15.5799866, -4.1615278, 0.0], [15.5813599, -4.1615278, 0.0], [15.5813599, -4.1601582, 0.0], [15.5799866, -4.1601582, 0.0], [15.5799866, -4.1587885, 0.0], [15.5786133, -4.1587885, 0.0], [15.57724, -4.1587885, 0.0], [15.5758667, -4.1587885, 0.0], [15.5758667, -4.1574188, 0.0], [15.57724, -4.1574188, 0.0], [15.57724, -4.1560491, 0.0], [15.5758667, -4.1560491, 0.0], [15.5758667, -4.1546794, 0.0], [15.5744934, -4.1546794, 0.0], [15.5744934, -4.1560491, 0.0], [15.5744934, -4.1574188, 0.0], [15.5744934, -4.1587885, 0.0], [15.5731201, -4.1587885, 0.0], [15.5731201, -4.1574188, 0.0], [15.5731201, -4.1560491, 0.0], [15.5717468, -4.1560491, 0.0], [15.5717468, -4.1574188, 0.0], [15.5717468, -4.1587885, 0.0], [15.5717468, -4.1601582, 0.0], [15.5717468, -4.1615278, 0.0], [15.5731201, -4.1615278, 0.0], [15.5744934, -4.1615278, 0.0], [15.5744934, -4.1601582, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2025}, "geometry": {"type": "Polygon", "coordinates": [[[15.728302, -4.1601582, 0.0], [15.728302, -4.1615278, 0.0], [15.7296753, -4.1615278, 0.0], [15.7296753, -4.1601582, 0.0], [15.728302, -4.1601582, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2026}, "geometry": {"type": "Polygon", "coordinates": [[[15.586853, -4.1601582, 0.0], [15.5882263, -4.1601582, 0.0], [15.5895996, -4.1601582, 0.0], [15.5895996, -4.1587885, 0.0], [15.5895996, -4.1574188, 0.0], [15.5882263, -4.1574188, 0.0], [15.5882263, -4.1587885, 0.0], [15.586853, -4.1587885, 0.0], [15.5854797, -4.1587885, 0.0], [15.5841064, -4.1587885, 0.0], [15.5841064, -4.1601582, 0.0], [15.5854797, -4.1601582, 0.0], [15.5854797, -4.1615278, 0.0], [15.586853, -4.1615278, 0.0], [15.586853, -4.1601582, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2027}, "geometry": {"type": "Polygon", "coordinates": [[[15.7763672, -4.1601582, 0.0], [15.7763672, -4.1615278, 0.0], [15.7777405, -4.1615278, 0.0], [15.7791138, -4.1615278, 0.0], [15.7791138, -4.1601582, 0.0], [15.7777405, -4.1601582, 0.0], [15.7763672, -4.1601582, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2028}, "geometry": {"type": "Polygon", "coordinates": [[[15.567627, -4.1601582, 0.0], [15.567627, -4.1587885, 0.0], [15.5662537, -4.1587885, 0.0], [15.5648804, -4.1587885, 0.0], [15.5648804, -4.1601582, 0.0], [15.5635071, -4.1601582, 0.0], [15.5635071, -4.1615278, 0.0], [15.5648804, -4.1615278, 0.0], [15.5662537, -4.1615278, 0.0], [15.567627, -4.1615278, 0.0], [15.567627, -4.1601582, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2029}, "geometry": {"type": "Polygon", "coordinates": [[[15.8175659, -4.1601582, 0.0], [15.8189392, -4.1601582, 0.0], [15.8189392, -4.1587885, 0.0], [15.8175659, -4.1587885, 0.0], [15.8161926, -4.1587885, 0.0], [15.8161926, -4.1601582, 0.0], [15.8161926, -4.1615278, 0.0], [15.8175659, -4.1615278, 0.0], [15.8175659, -4.1601582, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2030}, "geometry": {"type": "Polygon", "coordinates": [[[15.7846069, -4.1601582, 0.0], [15.7846069, -4.1615278, 0.0], [15.7859802, -4.1615278, 0.0], [15.7859802, -4.1601582, 0.0], [15.7846069, -4.1601582, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2031}, "geometry": {"type": "Polygon", "coordinates": [[[15.5291748, -4.1601582, 0.0], [15.5291748, -4.1615278, 0.0], [15.5305481, -4.1615278, 0.0], [15.5305481, -4.1601582, 0.0], [15.5291748, -4.1601582, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2032}, "geometry": {"type": "Polygon", "coordinates": [[[15.5895996, -4.1601582, 0.0], [15.5895996, -4.1615278, 0.0], [15.5909729, -4.1615278, 0.0], [15.5909729, -4.1601582, 0.0], [15.5895996, -4.1601582, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2033}, "geometry": {"type": "Polygon", "coordinates": [[[15.7049561, -4.1587885, 0.0], [15.7049561, -4.1601582, 0.0], [15.7063293, -4.1601582, 0.0], [15.7063293, -4.1587885, 0.0], [15.7049561, -4.1587885, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2034}, "geometry": {"type": "Polygon", "coordinates": [[[15.718689, -4.1587885, 0.0], [15.718689, -4.1601582, 0.0], [15.7200623, -4.1601582, 0.0], [15.7200623, -4.1587885, 0.0], [15.718689, -4.1587885, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2035}, "geometry": {"type": "Polygon", "coordinates": [[[15.6994629, -4.1587885, 0.0], [15.6994629, -4.1574188, 0.0], [15.6980896, -4.1574188, 0.0], [15.6980896, -4.1587885, 0.0], [15.6967163, -4.1587885, 0.0], [15.6967163, -4.1601582, 0.0], [15.6980896, -4.1601582, 0.0], [15.6994629, -4.1601582, 0.0], [15.7008362, -4.1601582, 0.0], [15.7008362, -4.1587885, 0.0], [15.6994629, -4.1587885, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2036}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.1587885, 0.0], [15.7571411, -4.1587885, 0.0], [15.7571411, -4.1574188, 0.0], [15.7557678, -4.1574188, 0.0], [15.7557678, -4.1560491, 0.0], [15.7543945, -4.1560491, 0.0], [15.7530212, -4.1560491, 0.0], [15.7530212, -4.1574188, 0.0], [15.7530212, -4.1587885, 0.0], [15.7543945, -4.1587885, 0.0], [15.7543945, -4.1601582, 0.0], [15.7557678, -4.1601582, 0.0], [15.7557678, -4.1587885, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2037}, "geometry": {"type": "Polygon", "coordinates": [[[15.7324219, -4.1587885, 0.0], [15.7324219, -4.1601582, 0.0], [15.7337952, -4.1601582, 0.0], [15.7337952, -4.1587885, 0.0], [15.7324219, -4.1587885, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2038}, "geometry": {"type": "Polygon", "coordinates": [[[15.7296753, -4.1587885, 0.0], [15.7296753, -4.1601582, 0.0], [15.7310486, -4.1601582, 0.0], [15.7310486, -4.1587885, 0.0], [15.7296753, -4.1587885, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2039}, "geometry": {"type": "Polygon", "coordinates": [[[15.5250549, -4.1587885, 0.0], [15.5250549, -4.1601582, 0.0], [15.5264282, -4.1601582, 0.0], [15.5264282, -4.1587885, 0.0], [15.5250549, -4.1587885, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2040}, "geometry": {"type": "Polygon", "coordinates": [[[15.5484009, -4.1587885, 0.0], [15.5484009, -4.1574188, 0.0], [15.5470276, -4.1574188, 0.0], [15.5470276, -4.1587885, 0.0], [15.5470276, -4.1601582, 0.0], [15.5484009, -4.1601582, 0.0], [15.5497742, -4.1601582, 0.0], [15.5511475, -4.1601582, 0.0], [15.5511475, -4.1587885, 0.0], [15.5497742, -4.1587885, 0.0], [15.5484009, -4.1587885, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2041}, "geometry": {"type": "Polygon", "coordinates": [[[15.6939697, -4.1587885, 0.0], [15.6939697, -4.1574188, 0.0], [15.6925964, -4.1574188, 0.0], [15.6925964, -4.1560491, 0.0], [15.6925964, -4.1546794, 0.0], [15.6912231, -4.1546794, 0.0], [15.6912231, -4.1533098, 0.0], [15.6912231, -4.1519401, 0.0], [15.6912231, -4.1505704, 0.0], [15.6898499, -4.1505704, 0.0], [15.6884766, -4.1505704, 0.0], [15.6884766, -4.1492007, 0.0], [15.6871033, -4.1492007, 0.0], [15.68573, -4.1492007, 0.0], [15.68573, -4.1505704, 0.0], [15.68573, -4.1519401, 0.0], [15.6871033, -4.1519401, 0.0], [15.6871033, -4.1533098, 0.0], [15.6884766, -4.1533098, 0.0], [15.6884766, -4.1546794, 0.0], [15.6898499, -4.1546794, 0.0], [15.6898499, -4.1560491, 0.0], [15.6898499, -4.1574188, 0.0], [15.6898499, -4.1587885, 0.0], [15.6912231, -4.1587885, 0.0], [15.6925964, -4.1587885, 0.0], [15.6925964, -4.1601582, 0.0], [15.6939697, -4.1601582, 0.0], [15.6939697, -4.1587885, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2042}, "geometry": {"type": "Polygon", "coordinates": [[[15.6335449, -4.1574188, 0.0], [15.6321716, -4.1574188, 0.0], [15.6321716, -4.1587885, 0.0], [15.6335449, -4.1587885, 0.0], [15.6349182, -4.1587885, 0.0], [15.6349182, -4.1574188, 0.0], [15.6335449, -4.1574188, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2043}, "geometry": {"type": "Polygon", "coordinates": [[[15.7749939, -4.1574188, 0.0], [15.7763672, -4.1574188, 0.0], [15.7763672, -4.1560491, 0.0], [15.7749939, -4.1560491, 0.0], [15.7736206, -4.1560491, 0.0], [15.7736206, -4.1574188, 0.0], [15.7736206, -4.1587885, 0.0], [15.7749939, -4.1587885, 0.0], [15.7749939, -4.1574188, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2044}, "geometry": {"type": "Polygon", "coordinates": [[[15.5236816, -4.1574188, 0.0], [15.5236816, -4.1587885, 0.0], [15.5250549, -4.1587885, 0.0], [15.5250549, -4.1574188, 0.0], [15.5236816, -4.1574188, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2045}, "geometry": {"type": "Polygon", "coordinates": [[[15.8752441, -4.1560491, 0.0], [15.8752441, -4.1574188, 0.0], [15.8766174, -4.1574188, 0.0], [15.8766174, -4.1560491, 0.0], [15.8752441, -4.1560491, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2046}, "geometry": {"type": "Polygon", "coordinates": [[[15.8312988, -4.1574188, 0.0], [15.8312988, -4.1587885, 0.0], [15.8326721, -4.1587885, 0.0], [15.8326721, -4.1574188, 0.0], [15.8312988, -4.1574188, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2047}, "geometry": {"type": "Polygon", "coordinates": [[[15.6005859, -4.1574188, 0.0], [15.6005859, -4.1587885, 0.0], [15.6019592, -4.1587885, 0.0], [15.6019592, -4.1574188, 0.0], [15.6005859, -4.1574188, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2048}, "geometry": {"type": "Polygon", "coordinates": [[[15.8285522, -4.1560491, 0.0], [15.8285522, -4.1546794, 0.0], [15.8285522, -4.1533098, 0.0], [15.827179, -4.1533098, 0.0], [15.8258057, -4.1533098, 0.0], [15.8258057, -4.1519401, 0.0], [15.8244324, -4.1519401, 0.0], [15.8244324, -4.1533098, 0.0], [15.8230591, -4.1533098, 0.0], [15.8230591, -4.1546794, 0.0], [15.8230591, -4.1560491, 0.0], [15.8244324, -4.1560491, 0.0], [15.8258057, -4.1560491, 0.0], [15.827179, -4.1560491, 0.0], [15.827179, -4.1574188, 0.0], [15.8285522, -4.1574188, 0.0], [15.8285522, -4.1560491, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2049}, "geometry": {"type": "Polygon", "coordinates": [[[15.8326721, -4.1560491, 0.0], [15.8326721, -4.1574188, 0.0], [15.8340454, -4.1574188, 0.0], [15.8340454, -4.1560491, 0.0], [15.8326721, -4.1560491, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2050}, "geometry": {"type": "Polygon", "coordinates": [[[15.5291748, -4.1560491, 0.0], [15.5291748, -4.1574188, 0.0], [15.5305481, -4.1574188, 0.0], [15.5305481, -4.1560491, 0.0], [15.5291748, -4.1560491, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2051}, "geometry": {"type": "Polygon", "coordinates": [[[15.8189392, -4.1560491, 0.0], [15.8189392, -4.1574188, 0.0], [15.8203125, -4.1574188, 0.0], [15.8203125, -4.1560491, 0.0], [15.8189392, -4.1560491, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2052}, "geometry": {"type": "Polygon", "coordinates": [[[15.7873535, -4.1560491, 0.0], [15.7873535, -4.1546794, 0.0], [15.7859802, -4.1546794, 0.0], [15.7859802, -4.1560491, 0.0], [15.7859802, -4.1574188, 0.0], [15.7873535, -4.1574188, 0.0], [15.7887268, -4.1574188, 0.0], [15.7887268, -4.1560491, 0.0], [15.7873535, -4.1560491, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2053}, "geometry": {"type": "Polygon", "coordinates": [[[15.7804871, -4.1560491, 0.0], [15.7804871, -4.1574188, 0.0], [15.7818604, -4.1574188, 0.0], [15.7818604, -4.1560491, 0.0], [15.7804871, -4.1560491, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2054}, "geometry": {"type": "Polygon", "coordinates": [[[15.5978394, -4.1560491, 0.0], [15.5978394, -4.1574188, 0.0], [15.5992126, -4.1574188, 0.0], [15.5992126, -4.1560491, 0.0], [15.5978394, -4.1560491, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2055}, "geometry": {"type": "Polygon", "coordinates": [[[15.5909729, -4.1560491, 0.0], [15.5909729, -4.1574188, 0.0], [15.5923462, -4.1574188, 0.0], [15.5937195, -4.1574188, 0.0], [15.5937195, -4.1560491, 0.0], [15.5923462, -4.1560491, 0.0], [15.5909729, -4.1560491, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2056}, "geometry": {"type": "Polygon", "coordinates": [[[15.5813599, -4.1560491, 0.0], [15.5813599, -4.1574188, 0.0], [15.5827332, -4.1574188, 0.0], [15.5827332, -4.1560491, 0.0], [15.5813599, -4.1560491, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2057}, "geometry": {"type": "Polygon", "coordinates": [[[15.619812, -4.1560491, 0.0], [15.619812, -4.1574188, 0.0], [15.6211853, -4.1574188, 0.0], [15.6211853, -4.1560491, 0.0], [15.619812, -4.1560491, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2058}, "geometry": {"type": "Polygon", "coordinates": [[[15.7035828, -4.1560491, 0.0], [15.7035828, -4.1574188, 0.0], [15.7049561, -4.1574188, 0.0], [15.7049561, -4.1560491, 0.0], [15.7035828, -4.1560491, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2059}, "geometry": {"type": "Polygon", "coordinates": [[[15.737915, -4.1546794, 0.0], [15.737915, -4.1560491, 0.0], [15.7392883, -4.1560491, 0.0], [15.7392883, -4.1546794, 0.0], [15.737915, -4.1546794, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2060}, "geometry": {"type": "Polygon", "coordinates": [[[15.7077026, -4.1546794, 0.0], [15.7077026, -4.1560491, 0.0], [15.7090759, -4.1560491, 0.0], [15.7090759, -4.1546794, 0.0], [15.7077026, -4.1546794, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2061}, "geometry": {"type": "Polygon", "coordinates": [[[15.5635071, -4.1546794, 0.0], [15.5635071, -4.1533098, 0.0], [15.5621338, -4.1533098, 0.0], [15.5621338, -4.1546794, 0.0], [15.5621338, -4.1560491, 0.0], [15.5635071, -4.1560491, 0.0], [15.5635071, -4.1546794, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2062}, "geometry": {"type": "Polygon", "coordinates": [[[15.6349182, -4.1546794, 0.0], [15.6349182, -4.1533098, 0.0], [15.6349182, -4.1519401, 0.0], [15.6349182, -4.1505704, 0.0], [15.6349182, -4.1492007, 0.0], [15.6335449, -4.1492007, 0.0], [15.6335449, -4.1505704, 0.0], [15.6321716, -4.1505704, 0.0], [15.6321716, -4.1519401, 0.0], [15.6321716, -4.1533098, 0.0], [15.6321716, -4.1546794, 0.0], [15.6321716, -4.1560491, 0.0], [15.6335449, -4.1560491, 0.0], [15.6349182, -4.1560491, 0.0], [15.6349182, -4.1546794, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2063}, "geometry": {"type": "Polygon", "coordinates": [[[15.5511475, -4.1546794, 0.0], [15.5525208, -4.1546794, 0.0], [15.5525208, -4.1533098, 0.0], [15.553894, -4.1533098, 0.0], [15.553894, -4.1519401, 0.0], [15.553894, -4.1505704, 0.0], [15.553894, -4.1492007, 0.0], [15.553894, -4.147831, 0.0], [15.553894, -4.1464613, 0.0], [15.5525208, -4.1464613, 0.0], [15.5525208, -4.147831, 0.0], [15.5511475, -4.147831, 0.0], [15.5511475, -4.1492007, 0.0], [15.5511475, -4.1505704, 0.0], [15.5497742, -4.1505704, 0.0], [15.5497742, -4.1519401, 0.0], [15.5484009, -4.1519401, 0.0], [15.5484009, -4.1533098, 0.0], [15.5484009, -4.1546794, 0.0], [15.5470276, -4.1546794, 0.0], [15.5470276, -4.1560491, 0.0], [15.5484009, -4.1560491, 0.0], [15.5497742, -4.1560491, 0.0], [15.5511475, -4.1560491, 0.0], [15.5511475, -4.1546794, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2064}, "geometry": {"type": "Polygon", "coordinates": [[[15.8299255, -4.1533098, 0.0], [15.8299255, -4.1546794, 0.0], [15.8312988, -4.1546794, 0.0], [15.8312988, -4.1533098, 0.0], [15.8299255, -4.1533098, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2065}, "geometry": {"type": "Polygon", "coordinates": [[[15.8656311, -4.1533098, 0.0], [15.8656311, -4.1546794, 0.0], [15.8670044, -4.1546794, 0.0], [15.8670044, -4.1533098, 0.0], [15.8656311, -4.1533098, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2066}, "geometry": {"type": "Polygon", "coordinates": [[[15.7365417, -4.1533098, 0.0], [15.7365417, -4.1546794, 0.0], [15.737915, -4.1546794, 0.0], [15.737915, -4.1533098, 0.0], [15.7365417, -4.1533098, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2067}, "geometry": {"type": "Polygon", "coordinates": [[[15.7434082, -4.1533098, 0.0], [15.7434082, -4.1546794, 0.0], [15.7447815, -4.1546794, 0.0], [15.7461548, -4.1546794, 0.0], [15.7475281, -4.1546794, 0.0], [15.7489014, -4.1546794, 0.0], [15.7489014, -4.1533098, 0.0], [15.7475281, -4.1533098, 0.0], [15.7461548, -4.1533098, 0.0], [15.7447815, -4.1533098, 0.0], [15.7434082, -4.1533098, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2068}, "geometry": {"type": "Polygon", "coordinates": [[[15.6129456, -4.1533098, 0.0], [15.6129456, -4.1546794, 0.0], [15.6143188, -4.1546794, 0.0], [15.6143188, -4.1533098, 0.0], [15.6129456, -4.1533098, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2069}, "geometry": {"type": "Polygon", "coordinates": [[[15.6967163, -4.1533098, 0.0], [15.6967163, -4.1546794, 0.0], [15.6980896, -4.1546794, 0.0], [15.6980896, -4.1533098, 0.0], [15.6967163, -4.1533098, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2070}, "geometry": {"type": "Polygon", "coordinates": [[[15.8889771, -4.1533098, 0.0], [15.8889771, -4.1546794, 0.0], [15.8903503, -4.1546794, 0.0], [15.8903503, -4.1533098, 0.0], [15.8889771, -4.1533098, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2071}, "geometry": {"type": "Polygon", "coordinates": [[[15.5744934, -4.1519401, 0.0], [15.5744934, -4.1533098, 0.0], [15.5758667, -4.1533098, 0.0], [15.5758667, -4.1519401, 0.0], [15.5744934, -4.1519401, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2072}, "geometry": {"type": "Polygon", "coordinates": [[[15.6939697, -4.1519401, 0.0], [15.6939697, -4.1533098, 0.0], [15.695343, -4.1533098, 0.0], [15.695343, -4.1519401, 0.0], [15.6939697, -4.1519401, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2073}, "geometry": {"type": "Polygon", "coordinates": [[[15.6610107, -4.1505704, 0.0], [15.6610107, -4.1519401, 0.0], [15.662384, -4.1519401, 0.0], [15.662384, -4.1505704, 0.0], [15.6610107, -4.1505704, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2074}, "geometry": {"type": "Polygon", "coordinates": [[[15.5607605, -4.1505704, 0.0], [15.5607605, -4.1519401, 0.0], [15.5621338, -4.1519401, 0.0], [15.5621338, -4.1505704, 0.0], [15.5607605, -4.1505704, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2075}, "geometry": {"type": "Polygon", "coordinates": [[[15.5731201, -4.1505704, 0.0], [15.5731201, -4.1519401, 0.0], [15.5744934, -4.1519401, 0.0], [15.5744934, -4.1505704, 0.0], [15.5731201, -4.1505704, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2076}, "geometry": {"type": "Polygon", "coordinates": [[[15.7543945, -4.1505704, 0.0], [15.7543945, -4.1492007, 0.0], [15.7530212, -4.1492007, 0.0], [15.7516479, -4.1492007, 0.0], [15.7516479, -4.1505704, 0.0], [15.7530212, -4.1505704, 0.0], [15.7530212, -4.1519401, 0.0], [15.7543945, -4.1519401, 0.0], [15.7543945, -4.1505704, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2077}, "geometry": {"type": "Polygon", "coordinates": [[[15.6939697, -4.1492007, 0.0], [15.6939697, -4.1505704, 0.0], [15.695343, -4.1505704, 0.0], [15.695343, -4.1492007, 0.0], [15.6939697, -4.1492007, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2078}, "geometry": {"type": "Polygon", "coordinates": [[[15.6967163, -4.1492007, 0.0], [15.6967163, -4.1505704, 0.0], [15.6980896, -4.1505704, 0.0], [15.6980896, -4.1492007, 0.0], [15.6967163, -4.1492007, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2079}, "geometry": {"type": "Polygon", "coordinates": [[[15.7077026, -4.1492007, 0.0], [15.7077026, -4.1505704, 0.0], [15.7090759, -4.1505704, 0.0], [15.7090759, -4.1492007, 0.0], [15.7077026, -4.1492007, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2080}, "geometry": {"type": "Polygon", "coordinates": [[[15.7104492, -4.1492007, 0.0], [15.7104492, -4.1505704, 0.0], [15.7118225, -4.1505704, 0.0], [15.7118225, -4.1492007, 0.0], [15.7104492, -4.1492007, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2081}, "geometry": {"type": "Polygon", "coordinates": [[[15.7392883, -4.1492007, 0.0], [15.7392883, -4.1505704, 0.0], [15.7406616, -4.1505704, 0.0], [15.7420349, -4.1505704, 0.0], [15.7420349, -4.1492007, 0.0], [15.7406616, -4.1492007, 0.0], [15.7392883, -4.1492007, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2082}, "geometry": {"type": "Polygon", "coordinates": [[[15.5717468, -4.1492007, 0.0], [15.5717468, -4.1505704, 0.0], [15.5731201, -4.1505704, 0.0], [15.5731201, -4.1492007, 0.0], [15.5717468, -4.1492007, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2083}, "geometry": {"type": "Polygon", "coordinates": [[[15.6019592, -4.1492007, 0.0], [15.6019592, -4.1505704, 0.0], [15.6033325, -4.1505704, 0.0], [15.6033325, -4.1492007, 0.0], [15.6019592, -4.1492007, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2084}, "geometry": {"type": "Polygon", "coordinates": [[[15.5072021, -4.147831, 0.0], [15.5072021, -4.1492007, 0.0], [15.5085754, -4.1492007, 0.0], [15.5099487, -4.1492007, 0.0], [15.5099487, -4.147831, 0.0], [15.5099487, -4.1464613, 0.0], [15.5085754, -4.1464613, 0.0], [15.5085754, -4.147831, 0.0], [15.5072021, -4.147831, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2085}, "geometry": {"type": "Polygon", "coordinates": [[[15.8821106, -4.147831, 0.0], [15.8821106, -4.1464613, 0.0], [15.8807373, -4.1464613, 0.0], [15.8807373, -4.147831, 0.0], [15.8807373, -4.1492007, 0.0], [15.8821106, -4.1492007, 0.0], [15.8821106, -4.147831, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2086}, "geometry": {"type": "Polygon", "coordinates": [[[15.8628845, -4.147831, 0.0], [15.8628845, -4.1492007, 0.0], [15.8642578, -4.1492007, 0.0], [15.8642578, -4.147831, 0.0], [15.8628845, -4.147831, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2087}, "geometry": {"type": "Polygon", "coordinates": [[[15.5964661, -4.147831, 0.0], [15.5964661, -4.1492007, 0.0], [15.5978394, -4.1492007, 0.0], [15.5992126, -4.1492007, 0.0], [15.6005859, -4.1492007, 0.0], [15.6019592, -4.1492007, 0.0], [15.6019592, -4.147831, 0.0], [15.6019592, -4.1464613, 0.0], [15.6005859, -4.1464613, 0.0], [15.6005859, -4.147831, 0.0], [15.5992126, -4.147831, 0.0], [15.5978394, -4.147831, 0.0], [15.5964661, -4.147831, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2088}, "geometry": {"type": "Polygon", "coordinates": [[[15.7502747, -4.147831, 0.0], [15.7502747, -4.1492007, 0.0], [15.7516479, -4.1492007, 0.0], [15.7516479, -4.147831, 0.0], [15.7502747, -4.147831, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2089}, "geometry": {"type": "Polygon", "coordinates": [[[15.7131958, -4.147831, 0.0], [15.7131958, -4.1492007, 0.0], [15.7145691, -4.1492007, 0.0], [15.7145691, -4.147831, 0.0], [15.7131958, -4.147831, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2090}, "geometry": {"type": "Polygon", "coordinates": [[[15.8848572, -4.1464613, 0.0], [15.8848572, -4.147831, 0.0], [15.8862305, -4.147831, 0.0], [15.8876038, -4.147831, 0.0], [15.8889771, -4.147831, 0.0], [15.8903503, -4.147831, 0.0], [15.8903503, -4.1464613, 0.0], [15.8903503, -4.1450916, 0.0], [15.8903503, -4.1437219, 0.0], [15.8903503, -4.1423522, 0.0], [15.8903503, -4.1409825, 0.0], [15.8889771, -4.1409825, 0.0], [15.8889771, -4.1423522, 0.0], [15.8876038, -4.1423522, 0.0], [15.8876038, -4.1437219, 0.0], [15.8876038, -4.1450916, 0.0], [15.8862305, -4.1450916, 0.0], [15.8862305, -4.1464613, 0.0], [15.8848572, -4.1464613, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2091}, "geometry": {"type": "Polygon", "coordinates": [[[15.8930969, -4.1464613, 0.0], [15.8930969, -4.147831, 0.0], [15.8944702, -4.147831, 0.0], [15.8944702, -4.1464613, 0.0], [15.8930969, -4.1464613, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2092}, "geometry": {"type": "Polygon", "coordinates": [[[15.5044556, -4.1464613, 0.0], [15.5044556, -4.147831, 0.0], [15.5058289, -4.147831, 0.0], [15.5058289, -4.1464613, 0.0], [15.5044556, -4.1464613, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2093}, "geometry": {"type": "Polygon", "coordinates": [[[15.8258057, -4.1464613, 0.0], [15.8258057, -4.147831, 0.0], [15.827179, -4.147831, 0.0], [15.827179, -4.1464613, 0.0], [15.8258057, -4.1464613, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2094}, "geometry": {"type": "Polygon", "coordinates": [[[15.7585144, -4.1464613, 0.0], [15.7585144, -4.1450916, 0.0], [15.7571411, -4.1450916, 0.0], [15.7571411, -4.1464613, 0.0], [15.7571411, -4.147831, 0.0], [15.7585144, -4.147831, 0.0], [15.7585144, -4.1464613, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2095}, "geometry": {"type": "Polygon", "coordinates": [[[15.5731201, -4.1464613, 0.0], [15.5731201, -4.1450916, 0.0], [15.5717468, -4.1450916, 0.0], [15.5703735, -4.1450916, 0.0], [15.5703735, -4.1464613, 0.0], [15.5690002, -4.1464613, 0.0], [15.5690002, -4.147831, 0.0], [15.5703735, -4.147831, 0.0], [15.5717468, -4.147831, 0.0], [15.5731201, -4.147831, 0.0], [15.5744934, -4.147831, 0.0], [15.5744934, -4.1464613, 0.0], [15.5731201, -4.1464613, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2096}, "geometry": {"type": "Polygon", "coordinates": [[[15.6816101, -4.1450916, 0.0], [15.6816101, -4.1464613, 0.0], [15.6829834, -4.1464613, 0.0], [15.6829834, -4.1450916, 0.0], [15.6816101, -4.1450916, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2097}, "geometry": {"type": "Polygon", "coordinates": [[[15.6019592, -4.1450916, 0.0], [15.6019592, -4.1464613, 0.0], [15.6033325, -4.1464613, 0.0], [15.6047058, -4.1464613, 0.0], [15.6060791, -4.1464613, 0.0], [15.6060791, -4.1450916, 0.0], [15.6047058, -4.1450916, 0.0], [15.6033325, -4.1450916, 0.0], [15.6019592, -4.1450916, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2098}, "geometry": {"type": "Polygon", "coordinates": [[[15.5456543, -4.1450916, 0.0], [15.5456543, -4.1464613, 0.0], [15.5470276, -4.1464613, 0.0], [15.5470276, -4.1450916, 0.0], [15.5456543, -4.1450916, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2099}, "geometry": {"type": "Polygon", "coordinates": [[[15.511322, -4.1450916, 0.0], [15.5099487, -4.1450916, 0.0], [15.5099487, -4.1464613, 0.0], [15.511322, -4.1464613, 0.0], [15.5126953, -4.1464613, 0.0], [15.5126953, -4.1450916, 0.0], [15.511322, -4.1450916, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2100}, "geometry": {"type": "Polygon", "coordinates": [[[15.5429077, -4.1423522, 0.0], [15.5429077, -4.1437219, 0.0], [15.544281, -4.1437219, 0.0], [15.5456543, -4.1437219, 0.0], [15.5456543, -4.1423522, 0.0], [15.544281, -4.1423522, 0.0], [15.5429077, -4.1423522, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2101}, "geometry": {"type": "Polygon", "coordinates": [[[15.5731201, -4.1437219, 0.0], [15.5731201, -4.1450916, 0.0], [15.5744934, -4.1450916, 0.0], [15.5744934, -4.1437219, 0.0], [15.5731201, -4.1437219, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2102}, "geometry": {"type": "Polygon", "coordinates": [[[15.5511475, -4.1437219, 0.0], [15.5511475, -4.1450916, 0.0], [15.5525208, -4.1450916, 0.0], [15.5525208, -4.1437219, 0.0], [15.5511475, -4.1437219, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2103}, "geometry": {"type": "Polygon", "coordinates": [[[15.5799866, -4.1437219, 0.0], [15.5799866, -4.1450916, 0.0], [15.5813599, -4.1450916, 0.0], [15.5813599, -4.1437219, 0.0], [15.5799866, -4.1437219, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2104}, "geometry": {"type": "Polygon", "coordinates": [[[15.7598877, -4.1450916, 0.0], [15.7598877, -4.1464613, 0.0], [15.761261, -4.1464613, 0.0], [15.761261, -4.1450916, 0.0], [15.7598877, -4.1450916, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2105}, "geometry": {"type": "Polygon", "coordinates": [[[15.7090759, -4.1450916, 0.0], [15.7090759, -4.1464613, 0.0], [15.7104492, -4.1464613, 0.0], [15.7104492, -4.1450916, 0.0], [15.7090759, -4.1450916, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2106}, "geometry": {"type": "Polygon", "coordinates": [[[15.6843567, -4.1450916, 0.0], [15.6843567, -4.1464613, 0.0], [15.68573, -4.1464613, 0.0], [15.68573, -4.1450916, 0.0], [15.6843567, -4.1450916, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2107}, "geometry": {"type": "Polygon", "coordinates": [[[15.7640076, -4.1437219, 0.0], [15.7640076, -4.1450916, 0.0], [15.7653809, -4.1450916, 0.0], [15.7653809, -4.1437219, 0.0], [15.7640076, -4.1437219, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2108}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -4.1437219, 0.0], [15.7530212, -4.1450916, 0.0], [15.7543945, -4.1450916, 0.0], [15.7543945, -4.1437219, 0.0], [15.7530212, -4.1437219, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2109}, "geometry": {"type": "Polygon", "coordinates": [[[15.6074524, -4.1437219, 0.0], [15.6074524, -4.1450916, 0.0], [15.6088257, -4.1450916, 0.0], [15.6088257, -4.1437219, 0.0], [15.6074524, -4.1437219, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2110}, "geometry": {"type": "Polygon", "coordinates": [[[15.5882263, -4.1437219, 0.0], [15.5882263, -4.1423522, 0.0], [15.586853, -4.1423522, 0.0], [15.5854797, -4.1423522, 0.0], [15.5854797, -4.1437219, 0.0], [15.586853, -4.1437219, 0.0], [15.586853, -4.1450916, 0.0], [15.5882263, -4.1450916, 0.0], [15.5882263, -4.1437219, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2111}, "geometry": {"type": "Polygon", "coordinates": [[[15.6967163, -4.1437219, 0.0], [15.6967163, -4.1450916, 0.0], [15.6980896, -4.1450916, 0.0], [15.6980896, -4.1437219, 0.0], [15.6967163, -4.1437219, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2112}, "geometry": {"type": "Polygon", "coordinates": [[[15.7543945, -4.1423522, 0.0], [15.7543945, -4.1437219, 0.0], [15.7557678, -4.1437219, 0.0], [15.7571411, -4.1437219, 0.0], [15.7571411, -4.1423522, 0.0], [15.7557678, -4.1423522, 0.0], [15.7543945, -4.1423522, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2113}, "geometry": {"type": "Polygon", "coordinates": [[[15.5387878, -4.1423522, 0.0], [15.5387878, -4.1409825, 0.0], [15.5374146, -4.1409825, 0.0], [15.5374146, -4.1423522, 0.0], [15.5374146, -4.1437219, 0.0], [15.5387878, -4.1437219, 0.0], [15.5401611, -4.1437219, 0.0], [15.5401611, -4.1423522, 0.0], [15.5387878, -4.1423522, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2114}, "geometry": {"type": "Polygon", "coordinates": [[[15.6802368, -4.1423522, 0.0], [15.6802368, -4.1437219, 0.0], [15.6816101, -4.1437219, 0.0], [15.6816101, -4.1423522, 0.0], [15.6802368, -4.1423522, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2115}, "geometry": {"type": "Polygon", "coordinates": [[[15.6761169, -4.1423522, 0.0], [15.6761169, -4.1409825, 0.0], [15.6747437, -4.1409825, 0.0], [15.6747437, -4.1423522, 0.0], [15.6747437, -4.1437219, 0.0], [15.6761169, -4.1437219, 0.0], [15.6761169, -4.1423522, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2116}, "geometry": {"type": "Polygon", "coordinates": [[[15.6349182, -4.1423522, 0.0], [15.6349182, -4.1409825, 0.0], [15.6349182, -4.1396128, 0.0], [15.6349182, -4.1382431, 0.0], [15.6362915, -4.1382431, 0.0], [15.6362915, -4.1368734, 0.0], [15.6362915, -4.1355037, 0.0], [15.6349182, -4.1355037, 0.0], [15.6349182, -4.1341339, 0.0], [15.6335449, -4.1341339, 0.0], [15.6335449, -4.1355037, 0.0], [15.6335449, -4.1368734, 0.0], [15.6335449, -4.1382431, 0.0], [15.6335449, -4.1396128, 0.0], [15.6335449, -4.1409825, 0.0], [15.6335449, -4.1423522, 0.0], [15.6335449, -4.1437219, 0.0], [15.6349182, -4.1437219, 0.0], [15.6349182, -4.1423522, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2117}, "geometry": {"type": "Polygon", "coordinates": [[[15.5209351, -4.1409825, 0.0], [15.5209351, -4.1396128, 0.0], [15.5223083, -4.1396128, 0.0], [15.5223083, -4.1382431, 0.0], [15.5223083, -4.1368734, 0.0], [15.5223083, -4.1355037, 0.0], [15.5209351, -4.1355037, 0.0], [15.5209351, -4.1368734, 0.0], [15.5209351, -4.1382431, 0.0], [15.5195618, -4.1382431, 0.0], [15.5195618, -4.1396128, 0.0], [15.5195618, -4.1409825, 0.0], [15.5181885, -4.1409825, 0.0], [15.5181885, -4.1423522, 0.0], [15.5195618, -4.1423522, 0.0], [15.5209351, -4.1423522, 0.0], [15.5209351, -4.1409825, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2118}, "geometry": {"type": "Polygon", "coordinates": [[[15.5758667, -4.1423522, 0.0], [15.5758667, -4.1437219, 0.0], [15.57724, -4.1437219, 0.0], [15.57724, -4.1423522, 0.0], [15.5758667, -4.1423522, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2119}, "geometry": {"type": "Polygon", "coordinates": [[[15.8340454, -4.1409825, 0.0], [15.8340454, -4.1423522, 0.0], [15.8354187, -4.1423522, 0.0], [15.8354187, -4.1409825, 0.0], [15.8340454, -4.1409825, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2120}, "geometry": {"type": "Polygon", "coordinates": [[[15.8258057, -4.1409825, 0.0], [15.8258057, -4.1396128, 0.0], [15.8244324, -4.1396128, 0.0], [15.8244324, -4.1409825, 0.0], [15.8244324, -4.1423522, 0.0], [15.8258057, -4.1423522, 0.0], [15.8258057, -4.1409825, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2121}, "geometry": {"type": "Polygon", "coordinates": [[[15.7159424, -4.1409825, 0.0], [15.7159424, -4.1423522, 0.0], [15.7173157, -4.1423522, 0.0], [15.7173157, -4.1409825, 0.0], [15.7159424, -4.1409825, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2122}, "geometry": {"type": "Polygon", "coordinates": [[[15.695343, -4.1409825, 0.0], [15.695343, -4.1423522, 0.0], [15.6967163, -4.1423522, 0.0], [15.6967163, -4.1409825, 0.0], [15.695343, -4.1409825, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2123}, "geometry": {"type": "Polygon", "coordinates": [[[15.7571411, -4.1396128, 0.0], [15.7571411, -4.1409825, 0.0], [15.7585144, -4.1409825, 0.0], [15.7585144, -4.1396128, 0.0], [15.7571411, -4.1396128, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2124}, "geometry": {"type": "Polygon", "coordinates": [[[15.8903503, -4.1396128, 0.0], [15.8903503, -4.1409825, 0.0], [15.8917236, -4.1409825, 0.0], [15.8917236, -4.1396128, 0.0], [15.8903503, -4.1396128, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2125}, "geometry": {"type": "Polygon", "coordinates": [[[15.8312988, -4.1396128, 0.0], [15.8299255, -4.1396128, 0.0], [15.8299255, -4.1409825, 0.0], [15.8312988, -4.1409825, 0.0], [15.8326721, -4.1409825, 0.0], [15.8326721, -4.1396128, 0.0], [15.8312988, -4.1396128, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2126}, "geometry": {"type": "Polygon", "coordinates": [[[15.7818604, -4.1396128, 0.0], [15.7818604, -4.1409825, 0.0], [15.7832336, -4.1409825, 0.0], [15.7832336, -4.1396128, 0.0], [15.7818604, -4.1396128, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2127}, "geometry": {"type": "Polygon", "coordinates": [[[15.6143188, -4.1396128, 0.0], [15.6143188, -4.1409825, 0.0], [15.6156921, -4.1409825, 0.0], [15.6170654, -4.1409825, 0.0], [15.6170654, -4.1396128, 0.0], [15.6184387, -4.1396128, 0.0], [15.6184387, -4.1382431, 0.0], [15.6170654, -4.1382431, 0.0], [15.6156921, -4.1382431, 0.0], [15.6156921, -4.1396128, 0.0], [15.6143188, -4.1396128, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2128}, "geometry": {"type": "Polygon", "coordinates": [[[15.544281, -4.1396128, 0.0], [15.544281, -4.1409825, 0.0], [15.5456543, -4.1409825, 0.0], [15.5456543, -4.1396128, 0.0], [15.544281, -4.1396128, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2129}, "geometry": {"type": "Polygon", "coordinates": [[[15.7104492, -4.1396128, 0.0], [15.7118225, -4.1396128, 0.0], [15.7131958, -4.1396128, 0.0], [15.7131958, -4.1382431, 0.0], [15.7131958, -4.1368734, 0.0], [15.7118225, -4.1368734, 0.0], [15.7118225, -4.1382431, 0.0], [15.7104492, -4.1382431, 0.0], [15.7090759, -4.1382431, 0.0], [15.7090759, -4.1396128, 0.0], [15.7090759, -4.1409825, 0.0], [15.7104492, -4.1409825, 0.0], [15.7104492, -4.1396128, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2130}, "geometry": {"type": "Polygon", "coordinates": [[[15.5909729, -4.1396128, 0.0], [15.5909729, -4.1382431, 0.0], [15.5895996, -4.1382431, 0.0], [15.5895996, -4.1396128, 0.0], [15.5895996, -4.1409825, 0.0], [15.5909729, -4.1409825, 0.0], [15.5909729, -4.1396128, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2131}, "geometry": {"type": "Polygon", "coordinates": [[[15.6980896, -4.1396128, 0.0], [15.6980896, -4.1409825, 0.0], [15.6994629, -4.1409825, 0.0], [15.6994629, -4.1396128, 0.0], [15.6980896, -4.1396128, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2132}, "geometry": {"type": "Polygon", "coordinates": [[[15.5827332, -4.1396128, 0.0], [15.5827332, -4.1382431, 0.0], [15.5841064, -4.1382431, 0.0], [15.5841064, -4.1368734, 0.0], [15.5841064, -4.1355037, 0.0], [15.5827332, -4.1355037, 0.0], [15.5827332, -4.1368734, 0.0], [15.5813599, -4.1368734, 0.0], [15.5799866, -4.1368734, 0.0], [15.5799866, -4.1382431, 0.0], [15.5799866, -4.1396128, 0.0], [15.5799866, -4.1409825, 0.0], [15.5813599, -4.1409825, 0.0], [15.5827332, -4.1409825, 0.0], [15.5827332, -4.1396128, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2133}, "geometry": {"type": "Polygon", "coordinates": [[[15.6912231, -4.1396128, 0.0], [15.6912231, -4.1409825, 0.0], [15.6925964, -4.1409825, 0.0], [15.6925964, -4.1396128, 0.0], [15.6912231, -4.1396128, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2134}, "geometry": {"type": "Polygon", "coordinates": [[[15.6733704, -4.1396128, 0.0], [15.6733704, -4.1409825, 0.0], [15.6747437, -4.1409825, 0.0], [15.6747437, -4.1396128, 0.0], [15.6733704, -4.1396128, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2135}, "geometry": {"type": "Polygon", "coordinates": [[[15.5744934, -4.1382431, 0.0], [15.5744934, -4.1396128, 0.0], [15.5758667, -4.1396128, 0.0], [15.5758667, -4.1382431, 0.0], [15.5744934, -4.1382431, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2136}, "geometry": {"type": "Polygon", "coordinates": [[[15.6005859, -4.1382431, 0.0], [15.6005859, -4.1396128, 0.0], [15.6019592, -4.1396128, 0.0], [15.6019592, -4.1382431, 0.0], [15.6005859, -4.1382431, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2137}, "geometry": {"type": "Polygon", "coordinates": [[[15.5168152, -4.1382431, 0.0], [15.5168152, -4.1368734, 0.0], [15.5154419, -4.1368734, 0.0], [15.5154419, -4.1382431, 0.0], [15.5154419, -4.1396128, 0.0], [15.5168152, -4.1396128, 0.0], [15.5168152, -4.1382431, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2138}, "geometry": {"type": "Polygon", "coordinates": [[[15.6774902, -4.1382431, 0.0], [15.6774902, -4.1368734, 0.0], [15.6761169, -4.1368734, 0.0], [15.6761169, -4.1382431, 0.0], [15.6747437, -4.1382431, 0.0], [15.6747437, -4.1396128, 0.0], [15.6761169, -4.1396128, 0.0], [15.6774902, -4.1396128, 0.0], [15.6774902, -4.1382431, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2139}, "geometry": {"type": "Polygon", "coordinates": [[[15.7777405, -4.1382431, 0.0], [15.7777405, -4.1396128, 0.0], [15.7791138, -4.1396128, 0.0], [15.7791138, -4.1382431, 0.0], [15.7777405, -4.1382431, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2140}, "geometry": {"type": "Polygon", "coordinates": [[[15.6939697, -4.1382431, 0.0], [15.6939697, -4.1396128, 0.0], [15.695343, -4.1396128, 0.0], [15.695343, -4.1382431, 0.0], [15.6939697, -4.1382431, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2141}, "geometry": {"type": "Polygon", "coordinates": [[[15.8422852, -4.1382431, 0.0], [15.8422852, -4.1396128, 0.0], [15.8436584, -4.1396128, 0.0], [15.8436584, -4.1382431, 0.0], [15.8422852, -4.1382431, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2142}, "geometry": {"type": "Polygon", "coordinates": [[[15.5525208, -4.1368734, 0.0], [15.5511475, -4.1368734, 0.0], [15.5511475, -4.1382431, 0.0], [15.5525208, -4.1382431, 0.0], [15.553894, -4.1382431, 0.0], [15.553894, -4.1368734, 0.0], [15.5525208, -4.1368734, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2143}, "geometry": {"type": "Polygon", "coordinates": [[[15.6019592, -4.1368734, 0.0], [15.6019592, -4.1382431, 0.0], [15.6033325, -4.1382431, 0.0], [15.6033325, -4.1368734, 0.0], [15.6019592, -4.1368734, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2144}, "geometry": {"type": "Polygon", "coordinates": [[[15.7832336, -4.1368734, 0.0], [15.7832336, -4.1382431, 0.0], [15.7846069, -4.1382431, 0.0], [15.7846069, -4.1368734, 0.0], [15.7832336, -4.1368734, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2145}, "geometry": {"type": "Polygon", "coordinates": [[[15.695343, -4.1368734, 0.0], [15.695343, -4.1382431, 0.0], [15.6967163, -4.1382431, 0.0], [15.6967163, -4.1368734, 0.0], [15.695343, -4.1368734, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2146}, "geometry": {"type": "Polygon", "coordinates": [[[15.6898499, -4.1355037, 0.0], [15.6898499, -4.1368734, 0.0], [15.6912231, -4.1368734, 0.0], [15.6912231, -4.1355037, 0.0], [15.6898499, -4.1355037, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2147}, "geometry": {"type": "Polygon", "coordinates": [[[15.5168152, -4.1355037, 0.0], [15.5168152, -4.1368734, 0.0], [15.5181885, -4.1368734, 0.0], [15.5181885, -4.1355037, 0.0], [15.5168152, -4.1355037, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2148}, "geometry": {"type": "Polygon", "coordinates": [[[15.5387878, -4.1355037, 0.0], [15.5387878, -4.1368734, 0.0], [15.5401611, -4.1368734, 0.0], [15.5401611, -4.1355037, 0.0], [15.5387878, -4.1355037, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2149}, "geometry": {"type": "Polygon", "coordinates": [[[15.5758667, -4.1355037, 0.0], [15.5758667, -4.1368734, 0.0], [15.57724, -4.1368734, 0.0], [15.57724, -4.1355037, 0.0], [15.5758667, -4.1355037, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2150}, "geometry": {"type": "Polygon", "coordinates": [[[15.5909729, -4.1341339, 0.0], [15.5895996, -4.1341339, 0.0], [15.5895996, -4.1355037, 0.0], [15.5909729, -4.1355037, 0.0], [15.5923462, -4.1355037, 0.0], [15.5923462, -4.1341339, 0.0], [15.5909729, -4.1341339, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2151}, "geometry": {"type": "Polygon", "coordinates": [[[15.5552673, -4.1341339, 0.0], [15.5566406, -4.1341339, 0.0], [15.5566406, -4.1327642, 0.0], [15.5552673, -4.1327642, 0.0], [15.553894, -4.1327642, 0.0], [15.553894, -4.1341339, 0.0], [15.553894, -4.1355037, 0.0], [15.5552673, -4.1355037, 0.0], [15.5552673, -4.1341339, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2152}, "geometry": {"type": "Polygon", "coordinates": [[[15.8972168, -4.1327642, 0.0], [15.8972168, -4.1341339, 0.0], [15.8985901, -4.1341339, 0.0], [15.8985901, -4.1327642, 0.0], [15.8972168, -4.1327642, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2153}, "geometry": {"type": "Polygon", "coordinates": [[[15.8944702, -4.1327642, 0.0], [15.8944702, -4.1341339, 0.0], [15.8958435, -4.1341339, 0.0], [15.8958435, -4.1327642, 0.0], [15.8944702, -4.1327642, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2154}, "geometry": {"type": "Polygon", "coordinates": [[[15.6088257, -4.1355037, 0.0], [15.6088257, -4.1368734, 0.0], [15.610199, -4.1368734, 0.0], [15.610199, -4.1355037, 0.0], [15.6088257, -4.1355037, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2155}, "geometry": {"type": "Polygon", "coordinates": [[[15.8299255, -4.1341339, 0.0], [15.8299255, -4.1355037, 0.0], [15.8312988, -4.1355037, 0.0], [15.8312988, -4.1341339, 0.0], [15.8299255, -4.1341339, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2156}, "geometry": {"type": "Polygon", "coordinates": [[[15.7818604, -4.1341339, 0.0], [15.7818604, -4.1355037, 0.0], [15.7832336, -4.1355037, 0.0], [15.7832336, -4.1341339, 0.0], [15.7818604, -4.1341339, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2157}, "geometry": {"type": "Polygon", "coordinates": [[[15.6747437, -4.1341339, 0.0], [15.6747437, -4.1327642, 0.0], [15.6733704, -4.1327642, 0.0], [15.6733704, -4.1341339, 0.0], [15.6733704, -4.1355037, 0.0], [15.6747437, -4.1355037, 0.0], [15.6747437, -4.1341339, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2158}, "geometry": {"type": "Polygon", "coordinates": [[[15.7626343, -4.1341339, 0.0], [15.7626343, -4.1355037, 0.0], [15.7640076, -4.1355037, 0.0], [15.7640076, -4.1341339, 0.0], [15.7626343, -4.1341339, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2159}, "geometry": {"type": "Polygon", "coordinates": [[[15.7873535, -4.1341339, 0.0], [15.7873535, -4.1355037, 0.0], [15.7887268, -4.1355037, 0.0], [15.7887268, -4.1341339, 0.0], [15.7873535, -4.1341339, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2160}, "geometry": {"type": "Polygon", "coordinates": [[[15.7516479, -4.1341339, 0.0], [15.7516479, -4.1355037, 0.0], [15.7530212, -4.1355037, 0.0], [15.7530212, -4.1341339, 0.0], [15.7516479, -4.1341339, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2161}, "geometry": {"type": "Polygon", "coordinates": [[[15.6211853, -4.1327642, 0.0], [15.6211853, -4.1341339, 0.0], [15.6225586, -4.1341339, 0.0], [15.6225586, -4.1327642, 0.0], [15.6211853, -4.1327642, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2162}, "geometry": {"type": "Polygon", "coordinates": [[[15.5223083, -4.1327642, 0.0], [15.5223083, -4.1341339, 0.0], [15.5236816, -4.1341339, 0.0], [15.5236816, -4.1327642, 0.0], [15.5223083, -4.1327642, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2163}, "geometry": {"type": "Polygon", "coordinates": [[[15.5360413, -4.1327642, 0.0], [15.5360413, -4.1313945, 0.0], [15.534668, -4.1313945, 0.0], [15.5332947, -4.1313945, 0.0], [15.5332947, -4.1327642, 0.0], [15.5332947, -4.1341339, 0.0], [15.534668, -4.1341339, 0.0], [15.5360413, -4.1341339, 0.0], [15.5360413, -4.1327642, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2164}, "geometry": {"type": "Polygon", "coordinates": [[[15.6005859, -4.1327642, 0.0], [15.6005859, -4.1341339, 0.0], [15.6019592, -4.1341339, 0.0], [15.6019592, -4.1327642, 0.0], [15.6005859, -4.1327642, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2165}, "geometry": {"type": "Polygon", "coordinates": [[[15.6019592, -4.1313945, 0.0], [15.6019592, -4.1327642, 0.0], [15.6033325, -4.1327642, 0.0], [15.6033325, -4.1313945, 0.0], [15.6019592, -4.1313945, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2166}, "geometry": {"type": "Polygon", "coordinates": [[[15.6884766, -4.1313945, 0.0], [15.6884766, -4.1327642, 0.0], [15.6898499, -4.1327642, 0.0], [15.6898499, -4.1313945, 0.0], [15.6884766, -4.1313945, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2167}, "geometry": {"type": "Polygon", "coordinates": [[[15.5703735, -4.1300248, 0.0], [15.5690002, -4.1300248, 0.0], [15.5690002, -4.1313945, 0.0], [15.5703735, -4.1313945, 0.0], [15.5717468, -4.1313945, 0.0], [15.5717468, -4.1300248, 0.0], [15.5703735, -4.1300248, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2168}, "geometry": {"type": "Polygon", "coordinates": [[[15.8999634, -4.1300248, 0.0], [15.8999634, -4.1313945, 0.0], [15.9013367, -4.1313945, 0.0], [15.9013367, -4.1300248, 0.0], [15.8999634, -4.1300248, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2169}, "geometry": {"type": "Polygon", "coordinates": [[[15.7392883, -4.1300248, 0.0], [15.7392883, -4.1313945, 0.0], [15.7406616, -4.1313945, 0.0], [15.7406616, -4.1300248, 0.0], [15.7392883, -4.1300248, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2170}, "geometry": {"type": "Polygon", "coordinates": [[[15.8340454, -4.1300248, 0.0], [15.8340454, -4.1313945, 0.0], [15.8354187, -4.1313945, 0.0], [15.8354187, -4.1300248, 0.0], [15.8340454, -4.1300248, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2171}, "geometry": {"type": "Polygon", "coordinates": [[[15.7516479, -4.1300248, 0.0], [15.7516479, -4.1313945, 0.0], [15.7530212, -4.1313945, 0.0], [15.7530212, -4.1300248, 0.0], [15.7516479, -4.1300248, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2172}, "geometry": {"type": "Polygon", "coordinates": [[[15.5360413, -4.1300248, 0.0], [15.5360413, -4.1313945, 0.0], [15.5374146, -4.1313945, 0.0], [15.5374146, -4.1300248, 0.0], [15.5360413, -4.1300248, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2173}, "geometry": {"type": "Polygon", "coordinates": [[[15.553894, -4.1300248, 0.0], [15.553894, -4.1313945, 0.0], [15.5552673, -4.1313945, 0.0], [15.5552673, -4.1300248, 0.0], [15.553894, -4.1300248, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2174}, "geometry": {"type": "Polygon", "coordinates": [[[15.7131958, -4.1300248, 0.0], [15.7131958, -4.1313945, 0.0], [15.7145691, -4.1313945, 0.0], [15.7145691, -4.1300248, 0.0], [15.7131958, -4.1300248, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2175}, "geometry": {"type": "Polygon", "coordinates": [[[15.6362915, -4.1245459, 0.0], [15.6376648, -4.1245459, 0.0], [15.6376648, -4.1231761, 0.0], [15.6362915, -4.1231761, 0.0], [15.6349182, -4.1231761, 0.0], [15.6349182, -4.1245459, 0.0], [15.6349182, -4.1259156, 0.0], [15.6362915, -4.1259156, 0.0], [15.6362915, -4.1245459, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2176}, "geometry": {"type": "Polygon", "coordinates": [[[15.8738708, -4.1245459, 0.0], [15.8738708, -4.1231761, 0.0], [15.8724976, -4.1231761, 0.0], [15.8724976, -4.1245459, 0.0], [15.8724976, -4.1259156, 0.0], [15.8738708, -4.1259156, 0.0], [15.8738708, -4.1245459, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2177}, "geometry": {"type": "Polygon", "coordinates": [[[15.7406616, -4.1245459, 0.0], [15.7406616, -4.1231761, 0.0], [15.7392883, -4.1231761, 0.0], [15.737915, -4.1231761, 0.0], [15.737915, -4.1245459, 0.0], [15.737915, -4.1259156, 0.0], [15.7392883, -4.1259156, 0.0], [15.7406616, -4.1259156, 0.0], [15.7406616, -4.1245459, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2178}, "geometry": {"type": "Polygon", "coordinates": [[[15.6184387, -4.1245459, 0.0], [15.6184387, -4.1259156, 0.0], [15.619812, -4.1259156, 0.0], [15.619812, -4.1245459, 0.0], [15.6184387, -4.1245459, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2179}, "geometry": {"type": "Polygon", "coordinates": [[[15.6788635, -4.1245459, 0.0], [15.6788635, -4.1259156, 0.0], [15.6802368, -4.1259156, 0.0], [15.6802368, -4.1245459, 0.0], [15.6788635, -4.1245459, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2180}, "geometry": {"type": "Polygon", "coordinates": [[[15.6829834, -4.1245459, 0.0], [15.6829834, -4.1259156, 0.0], [15.6843567, -4.1259156, 0.0], [15.6843567, -4.1245459, 0.0], [15.6829834, -4.1245459, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2181}, "geometry": {"type": "Polygon", "coordinates": [[[15.6871033, -4.1245459, 0.0], [15.6871033, -4.1231761, 0.0], [15.68573, -4.1231761, 0.0], [15.68573, -4.1245459, 0.0], [15.68573, -4.1259156, 0.0], [15.6871033, -4.1259156, 0.0], [15.6871033, -4.1245459, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2182}, "geometry": {"type": "Polygon", "coordinates": [[[15.6925964, -4.1245459, 0.0], [15.6925964, -4.1259156, 0.0], [15.6939697, -4.1259156, 0.0], [15.6939697, -4.1245459, 0.0], [15.6925964, -4.1245459, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2183}, "geometry": {"type": "Polygon", "coordinates": [[[15.6884766, -4.1245459, 0.0], [15.6884766, -4.1259156, 0.0], [15.6898499, -4.1259156, 0.0], [15.6898499, -4.1245459, 0.0], [15.6884766, -4.1245459, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2184}, "geometry": {"type": "Polygon", "coordinates": [[[15.8409119, -4.1245459, 0.0], [15.8409119, -4.1259156, 0.0], [15.8422852, -4.1259156, 0.0], [15.8422852, -4.1245459, 0.0], [15.8409119, -4.1245459, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2185}, "geometry": {"type": "Polygon", "coordinates": [[[15.7516479, -4.1231761, 0.0], [15.7516479, -4.1218064, 0.0], [15.7516479, -4.1204366, 0.0], [15.7502747, -4.1204366, 0.0], [15.7502747, -4.1218064, 0.0], [15.7502747, -4.1231761, 0.0], [15.7502747, -4.1245459, 0.0], [15.7516479, -4.1245459, 0.0], [15.7530212, -4.1245459, 0.0], [15.7530212, -4.1231761, 0.0], [15.7516479, -4.1231761, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2186}, "geometry": {"type": "Polygon", "coordinates": [[[15.6307983, -4.1231761, 0.0], [15.6307983, -4.1218064, 0.0], [15.629425, -4.1218064, 0.0], [15.629425, -4.1231761, 0.0], [15.629425, -4.1245459, 0.0], [15.6307983, -4.1245459, 0.0], [15.6307983, -4.1231761, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2187}, "geometry": {"type": "Polygon", "coordinates": [[[15.6733704, -4.1245459, 0.0], [15.6747437, -4.1245459, 0.0], [15.6747437, -4.1231761, 0.0], [15.6747437, -4.1218064, 0.0], [15.6747437, -4.1204366, 0.0], [15.6733704, -4.1204366, 0.0], [15.6733704, -4.1190669, 0.0], [15.6719971, -4.1190669, 0.0], [15.6719971, -4.1204366, 0.0], [15.6719971, -4.1218064, 0.0], [15.6719971, -4.1231761, 0.0], [15.6719971, -4.1245459, 0.0], [15.6733704, -4.1245459, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2188}, "geometry": {"type": "Polygon", "coordinates": [[[15.8889771, -4.1231761, 0.0], [15.8889771, -4.1245459, 0.0], [15.8903503, -4.1245459, 0.0], [15.8903503, -4.1231761, 0.0], [15.8889771, -4.1231761, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2189}, "geometry": {"type": "Polygon", "coordinates": [[[15.8079529, -4.1231761, 0.0], [15.8079529, -4.1245459, 0.0], [15.8093262, -4.1245459, 0.0], [15.8093262, -4.1231761, 0.0], [15.8079529, -4.1231761, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2190}, "geometry": {"type": "Polygon", "coordinates": [[[15.8738708, -4.1218064, 0.0], [15.8738708, -4.1231761, 0.0], [15.8752441, -4.1231761, 0.0], [15.8752441, -4.1218064, 0.0], [15.8738708, -4.1218064, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2191}, "geometry": {"type": "Polygon", "coordinates": [[[15.7310486, -4.1231761, 0.0], [15.7310486, -4.1245459, 0.0], [15.7324219, -4.1245459, 0.0], [15.7324219, -4.1231761, 0.0], [15.7310486, -4.1231761, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2192}, "geometry": {"type": "Polygon", "coordinates": [[[15.770874, -4.1218064, 0.0], [15.7722473, -4.1218064, 0.0], [15.7722473, -4.1204366, 0.0], [15.770874, -4.1204366, 0.0], [15.7695007, -4.1204366, 0.0], [15.7695007, -4.1218064, 0.0], [15.7695007, -4.1231761, 0.0], [15.770874, -4.1231761, 0.0], [15.770874, -4.1218064, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2193}, "geometry": {"type": "Polygon", "coordinates": [[[15.534668, -4.1218064, 0.0], [15.534668, -4.1204366, 0.0], [15.5332947, -4.1204366, 0.0], [15.5332947, -4.1218064, 0.0], [15.5332947, -4.1231761, 0.0], [15.534668, -4.1231761, 0.0], [15.534668, -4.1218064, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2194}, "geometry": {"type": "Polygon", "coordinates": [[[15.5566406, -4.1218064, 0.0], [15.5566406, -4.1204366, 0.0], [15.5580139, -4.1204366, 0.0], [15.5580139, -4.1190669, 0.0], [15.5580139, -4.1176972, 0.0], [15.5580139, -4.1163274, 0.0], [15.5566406, -4.1163274, 0.0], [15.5552673, -4.1163274, 0.0], [15.5552673, -4.1176972, 0.0], [15.5552673, -4.1190669, 0.0], [15.5552673, -4.1204366, 0.0], [15.5552673, -4.1218064, 0.0], [15.5552673, -4.1231761, 0.0], [15.5566406, -4.1231761, 0.0], [15.5566406, -4.1218064, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2195}, "geometry": {"type": "Polygon", "coordinates": [[[15.6047058, -4.1218064, 0.0], [15.6047058, -4.1231761, 0.0], [15.6060791, -4.1231761, 0.0], [15.6060791, -4.1218064, 0.0], [15.6047058, -4.1218064, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2196}, "geometry": {"type": "Polygon", "coordinates": [[[15.8711243, -4.1204366, 0.0], [15.8711243, -4.1190669, 0.0], [15.869751, -4.1190669, 0.0], [15.869751, -4.1204366, 0.0], [15.869751, -4.1218064, 0.0], [15.8711243, -4.1218064, 0.0], [15.8711243, -4.1204366, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2197}, "geometry": {"type": "Polygon", "coordinates": [[[15.7392883, -4.1204366, 0.0], [15.7392883, -4.1218064, 0.0], [15.7406616, -4.1218064, 0.0], [15.7406616, -4.1204366, 0.0], [15.7392883, -4.1204366, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2198}, "geometry": {"type": "Polygon", "coordinates": [[[15.8999634, -4.1204366, 0.0], [15.8999634, -4.1218064, 0.0], [15.9013367, -4.1218064, 0.0], [15.9013367, -4.1204366, 0.0], [15.8999634, -4.1204366, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2199}, "geometry": {"type": "Polygon", "coordinates": [[[15.6939697, -4.1190669, 0.0], [15.6939697, -4.1176972, 0.0], [15.6925964, -4.1176972, 0.0], [15.6925964, -4.1190669, 0.0], [15.6912231, -4.1190669, 0.0], [15.6912231, -4.1204366, 0.0], [15.6925964, -4.1204366, 0.0], [15.6939697, -4.1204366, 0.0], [15.6939697, -4.1190669, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2200}, "geometry": {"type": "Polygon", "coordinates": [[[15.6266785, -4.1190669, 0.0], [15.6266785, -4.1204366, 0.0], [15.6280518, -4.1204366, 0.0], [15.6280518, -4.1190669, 0.0], [15.6266785, -4.1190669, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2201}, "geometry": {"type": "Polygon", "coordinates": [[[15.9013367, -4.1190669, 0.0], [15.9013367, -4.1204366, 0.0], [15.90271, -4.1204366, 0.0], [15.90271, -4.1190669, 0.0], [15.9013367, -4.1190669, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2202}, "geometry": {"type": "Polygon", "coordinates": [[[15.7585144, -4.1190669, 0.0], [15.7585144, -4.1176972, 0.0], [15.7571411, -4.1176972, 0.0], [15.7571411, -4.1190669, 0.0], [15.7571411, -4.1204366, 0.0], [15.7585144, -4.1204366, 0.0], [15.7585144, -4.1190669, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2203}, "geometry": {"type": "Polygon", "coordinates": [[[15.534668, -4.1176972, 0.0], [15.534668, -4.1190669, 0.0], [15.5360413, -4.1190669, 0.0], [15.5360413, -4.1176972, 0.0], [15.534668, -4.1176972, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2204}, "geometry": {"type": "Polygon", "coordinates": [[[15.718689, -4.1190669, 0.0], [15.718689, -4.1176972, 0.0], [15.718689, -4.1163274, 0.0], [15.7173157, -4.1163274, 0.0], [15.7173157, -4.1176972, 0.0], [15.7173157, -4.1190669, 0.0], [15.7173157, -4.1204366, 0.0], [15.718689, -4.1204366, 0.0], [15.718689, -4.1190669, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2205}, "geometry": {"type": "Polygon", "coordinates": [[[15.8518982, -4.1327642, 0.0], [15.8532715, -4.1327642, 0.0], [15.8532715, -4.1313945, 0.0], [15.8532715, -4.1300248, 0.0], [15.8532715, -4.1286551, 0.0], [15.8518982, -4.1286551, 0.0], [15.8505249, -4.1286551, 0.0], [15.8505249, -4.1300248, 0.0], [15.8505249, -4.1313945, 0.0], [15.8491516, -4.1313945, 0.0], [15.8477783, -4.1313945, 0.0], [15.8477783, -4.1327642, 0.0], [15.8491516, -4.1327642, 0.0], [15.8491516, -4.1341339, 0.0], [15.8505249, -4.1341339, 0.0], [15.8518982, -4.1341339, 0.0], [15.8518982, -4.1327642, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2206}, "geometry": {"type": "Polygon", "coordinates": [[[15.8010864, -4.1286551, 0.0], [15.8010864, -4.1300248, 0.0], [15.8024597, -4.1300248, 0.0], [15.8024597, -4.1286551, 0.0], [15.8010864, -4.1286551, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2207}, "geometry": {"type": "Polygon", "coordinates": [[[15.6184387, -4.1272853, 0.0], [15.6184387, -4.1286551, 0.0], [15.619812, -4.1286551, 0.0], [15.619812, -4.1272853, 0.0], [15.6184387, -4.1272853, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2208}, "geometry": {"type": "Polygon", "coordinates": [[[15.8766174, -4.1259156, 0.0], [15.8766174, -4.1272853, 0.0], [15.8779907, -4.1272853, 0.0], [15.879364, -4.1272853, 0.0], [15.879364, -4.1259156, 0.0], [15.879364, -4.1245459, 0.0], [15.8779907, -4.1245459, 0.0], [15.8779907, -4.1259156, 0.0], [15.8766174, -4.1259156, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2209}, "geometry": {"type": "Polygon", "coordinates": [[[15.5552673, -4.1259156, 0.0], [15.5552673, -4.1272853, 0.0], [15.5566406, -4.1272853, 0.0], [15.5566406, -4.1259156, 0.0], [15.5552673, -4.1259156, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2210}, "geometry": {"type": "Polygon", "coordinates": [[[15.8848572, -4.1259156, 0.0], [15.8848572, -4.1245459, 0.0], [15.8834839, -4.1245459, 0.0], [15.8834839, -4.1259156, 0.0], [15.8834839, -4.1272853, 0.0], [15.8848572, -4.1272853, 0.0], [15.8848572, -4.1259156, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2211}, "geometry": {"type": "Polygon", "coordinates": [[[15.7337952, -4.1272853, 0.0], [15.7351685, -4.1272853, 0.0], [15.7351685, -4.1259156, 0.0], [15.7337952, -4.1259156, 0.0], [15.7324219, -4.1259156, 0.0], [15.7324219, -4.1272853, 0.0], [15.7324219, -4.1286551, 0.0], [15.7337952, -4.1286551, 0.0], [15.7337952, -4.1272853, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2212}, "geometry": {"type": "Polygon", "coordinates": [[[15.6129456, -4.1272853, 0.0], [15.6129456, -4.1286551, 0.0], [15.6143188, -4.1286551, 0.0], [15.6143188, -4.1272853, 0.0], [15.6129456, -4.1272853, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2213}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.1272853, 0.0], [15.7667542, -4.1259156, 0.0], [15.7681274, -4.1259156, 0.0], [15.7681274, -4.1272853, 0.0], [15.7695007, -4.1272853, 0.0], [15.7695007, -4.1259156, 0.0], [15.7695007, -4.1245459, 0.0], [15.7681274, -4.1245459, 0.0], [15.7681274, -4.1231761, 0.0], [15.7667542, -4.1231761, 0.0], [15.7653809, -4.1231761, 0.0], [15.7640076, -4.1231761, 0.0], [15.7640076, -4.1245459, 0.0], [15.7640076, -4.1259156, 0.0], [15.7640076, -4.1272853, 0.0], [15.7640076, -4.1286551, 0.0], [15.7653809, -4.1286551, 0.0], [15.7667542, -4.1286551, 0.0], [15.7667542, -4.1272853, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2214}, "geometry": {"type": "Polygon", "coordinates": [[[15.8546448, -4.1259156, 0.0], [15.8546448, -4.1245459, 0.0], [15.8546448, -4.1231761, 0.0], [15.8546448, -4.1218064, 0.0], [15.8560181, -4.1218064, 0.0], [15.8560181, -4.1204366, 0.0], [15.8560181, -4.1190669, 0.0], [15.8573914, -4.1190669, 0.0], [15.8573914, -4.1176972, 0.0], [15.8573914, -4.1163274, 0.0], [15.8573914, -4.1149577, 0.0], [15.8587646, -4.1149577, 0.0], [15.8587646, -4.1135879, 0.0], [15.8601379, -4.1135879, 0.0], [15.8615112, -4.1135879, 0.0], [15.8615112, -4.1122182, 0.0], [15.8615112, -4.1108484, 0.0], [15.8628845, -4.1108484, 0.0], [15.8628845, -4.1094786, 0.0], [15.8615112, -4.1094786, 0.0], [15.8615112, -4.1081089, 0.0], [15.8601379, -4.1081089, 0.0], [15.8601379, -4.1094786, 0.0], [15.8587646, -4.1094786, 0.0], [15.8587646, -4.1108484, 0.0], [15.8573914, -4.1108484, 0.0], [15.8560181, -4.1108484, 0.0], [15.8560181, -4.1122182, 0.0], [15.8560181, -4.1135879, 0.0], [15.8546448, -4.1135879, 0.0], [15.8546448, -4.1149577, 0.0], [15.8532715, -4.1149577, 0.0], [15.8532715, -4.1163274, 0.0], [15.8532715, -4.1176972, 0.0], [15.8532715, -4.1190669, 0.0], [15.8518982, -4.1190669, 0.0], [15.8518982, -4.1204366, 0.0], [15.8532715, -4.1204366, 0.0], [15.8532715, -4.1218064, 0.0], [15.8532715, -4.1231761, 0.0], [15.8518982, -4.1231761, 0.0], [15.8505249, -4.1231761, 0.0], [15.8505249, -4.1245459, 0.0], [15.8518982, -4.1245459, 0.0], [15.8532715, -4.1245459, 0.0], [15.8532715, -4.1259156, 0.0], [15.8532715, -4.1272853, 0.0], [15.8546448, -4.1272853, 0.0], [15.8546448, -4.1259156, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2215}, "geometry": {"type": "Polygon", "coordinates": [[[15.6733704, -4.1259156, 0.0], [15.6733704, -4.1272853, 0.0], [15.6747437, -4.1272853, 0.0], [15.6747437, -4.1259156, 0.0], [15.6733704, -4.1259156, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2216}, "geometry": {"type": "Polygon", "coordinates": [[[15.8189392, -4.1259156, 0.0], [15.8189392, -4.1272853, 0.0], [15.8203125, -4.1272853, 0.0], [15.8203125, -4.1259156, 0.0], [15.8189392, -4.1259156, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2217}, "geometry": {"type": "Polygon", "coordinates": [[[15.6939697, -4.1259156, 0.0], [15.6939697, -4.1272853, 0.0], [15.695343, -4.1272853, 0.0], [15.695343, -4.1259156, 0.0], [15.6939697, -4.1259156, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2218}, "geometry": {"type": "Polygon", "coordinates": [[[15.6871033, -4.1259156, 0.0], [15.6871033, -4.1272853, 0.0], [15.6884766, -4.1272853, 0.0], [15.6884766, -4.1259156, 0.0], [15.6871033, -4.1259156, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2219}, "geometry": {"type": "Polygon", "coordinates": [[[15.7598877, -4.1176972, 0.0], [15.7598877, -4.1190669, 0.0], [15.761261, -4.1190669, 0.0], [15.761261, -4.1176972, 0.0], [15.7598877, -4.1176972, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2220}, "geometry": {"type": "Polygon", "coordinates": [[[15.6459045, -4.1176972, 0.0], [15.6459045, -4.1190669, 0.0], [15.6472778, -4.1190669, 0.0], [15.6472778, -4.1176972, 0.0], [15.6459045, -4.1176972, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2221}, "geometry": {"type": "Polygon", "coordinates": [[[15.5717468, -4.1176972, 0.0], [15.5717468, -4.1163274, 0.0], [15.5703735, -4.1163274, 0.0], [15.5703735, -4.1176972, 0.0], [15.5703735, -4.1190669, 0.0], [15.5717468, -4.1190669, 0.0], [15.5717468, -4.1176972, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2222}, "geometry": {"type": "Polygon", "coordinates": [[[15.6816101, -4.1163274, 0.0], [15.6816101, -4.1149577, 0.0], [15.6816101, -4.1135879, 0.0], [15.6802368, -4.1135879, 0.0], [15.6802368, -4.1149577, 0.0], [15.6802368, -4.1163274, 0.0], [15.6802368, -4.1176972, 0.0], [15.6816101, -4.1176972, 0.0], [15.6816101, -4.1163274, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2223}, "geometry": {"type": "Polygon", "coordinates": [[[15.6939697, -4.1163274, 0.0], [15.6939697, -4.1176972, 0.0], [15.695343, -4.1176972, 0.0], [15.695343, -4.1163274, 0.0], [15.6939697, -4.1163274, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2224}, "geometry": {"type": "Polygon", "coordinates": [[[15.629425, -4.1163274, 0.0], [15.629425, -4.1176972, 0.0], [15.6307983, -4.1176972, 0.0], [15.6307983, -4.1163274, 0.0], [15.629425, -4.1163274, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2225}, "geometry": {"type": "Polygon", "coordinates": [[[15.8944702, -4.1163274, 0.0], [15.8944702, -4.1176972, 0.0], [15.8958435, -4.1176972, 0.0], [15.8958435, -4.1163274, 0.0], [15.8944702, -4.1163274, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2226}, "geometry": {"type": "Polygon", "coordinates": [[[15.7695007, -4.1149577, 0.0], [15.7695007, -4.1163274, 0.0], [15.770874, -4.1163274, 0.0], [15.770874, -4.1149577, 0.0], [15.7695007, -4.1149577, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2227}, "geometry": {"type": "Polygon", "coordinates": [[[15.8779907, -4.1149577, 0.0], [15.8779907, -4.1163274, 0.0], [15.879364, -4.1163274, 0.0], [15.879364, -4.1149577, 0.0], [15.8779907, -4.1149577, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2228}, "geometry": {"type": "Polygon", "coordinates": [[[15.8821106, -4.1149577, 0.0], [15.8821106, -4.1163274, 0.0], [15.8834839, -4.1163274, 0.0], [15.8834839, -4.1149577, 0.0], [15.8821106, -4.1149577, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2229}, "geometry": {"type": "Polygon", "coordinates": [[[15.8903503, -4.1149577, 0.0], [15.8903503, -4.1163274, 0.0], [15.8917236, -4.1163274, 0.0], [15.8930969, -4.1163274, 0.0], [15.8930969, -4.1149577, 0.0], [15.8917236, -4.1149577, 0.0], [15.8903503, -4.1149577, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2230}, "geometry": {"type": "Polygon", "coordinates": [[[15.6170654, -4.1149577, 0.0], [15.6170654, -4.1163274, 0.0], [15.6184387, -4.1163274, 0.0], [15.6184387, -4.1149577, 0.0], [15.6170654, -4.1149577, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2231}, "geometry": {"type": "Polygon", "coordinates": [[[15.6774902, -4.1149577, 0.0], [15.6774902, -4.1163274, 0.0], [15.6788635, -4.1163274, 0.0], [15.6788635, -4.1149577, 0.0], [15.6774902, -4.1149577, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2232}, "geometry": {"type": "Polygon", "coordinates": [[[15.6665039, -4.1149577, 0.0], [15.6665039, -4.1163274, 0.0], [15.6678772, -4.1163274, 0.0], [15.6678772, -4.1149577, 0.0], [15.6665039, -4.1149577, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2233}, "geometry": {"type": "Polygon", "coordinates": [[[15.6747437, -4.1149577, 0.0], [15.6747437, -4.1135879, 0.0], [15.6733704, -4.1135879, 0.0], [15.6733704, -4.1149577, 0.0], [15.6733704, -4.1163274, 0.0], [15.6747437, -4.1163274, 0.0], [15.6747437, -4.1149577, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2234}, "geometry": {"type": "Polygon", "coordinates": [[[15.6939697, -4.1135879, 0.0], [15.6939697, -4.1149577, 0.0], [15.695343, -4.1149577, 0.0], [15.695343, -4.1135879, 0.0], [15.6939697, -4.1135879, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2235}, "geometry": {"type": "Polygon", "coordinates": [[[15.6610107, -4.1135879, 0.0], [15.6610107, -4.1149577, 0.0], [15.662384, -4.1149577, 0.0], [15.662384, -4.1135879, 0.0], [15.6610107, -4.1135879, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2236}, "geometry": {"type": "Polygon", "coordinates": [[[15.5552673, -4.1135879, 0.0], [15.5552673, -4.1149577, 0.0], [15.5566406, -4.1149577, 0.0], [15.5566406, -4.1135879, 0.0], [15.5552673, -4.1135879, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2237}, "geometry": {"type": "Polygon", "coordinates": [[[15.5387878, -4.1135879, 0.0], [15.5387878, -4.1149577, 0.0], [15.5401611, -4.1149577, 0.0], [15.5401611, -4.1135879, 0.0], [15.5387878, -4.1135879, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2238}, "geometry": {"type": "Polygon", "coordinates": [[[15.5209351, -4.1135879, 0.0], [15.5209351, -4.1122182, 0.0], [15.5195618, -4.1122182, 0.0], [15.5195618, -4.1135879, 0.0], [15.5195618, -4.1149577, 0.0], [15.5209351, -4.1149577, 0.0], [15.5209351, -4.1135879, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2239}, "geometry": {"type": "Polygon", "coordinates": [[[15.6239319, -4.1135879, 0.0], [15.6239319, -4.1149577, 0.0], [15.6253052, -4.1149577, 0.0], [15.6253052, -4.1135879, 0.0], [15.6239319, -4.1135879, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2240}, "geometry": {"type": "Polygon", "coordinates": [[[15.5360413, -4.1135879, 0.0], [15.5360413, -4.1149577, 0.0], [15.5374146, -4.1149577, 0.0], [15.5374146, -4.1135879, 0.0], [15.5360413, -4.1135879, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2241}, "geometry": {"type": "Polygon", "coordinates": [[[15.6582642, -4.1122182, 0.0], [15.6582642, -4.1135879, 0.0], [15.6596375, -4.1135879, 0.0], [15.6610107, -4.1135879, 0.0], [15.6610107, -4.1122182, 0.0], [15.6610107, -4.1108484, 0.0], [15.6596375, -4.1108484, 0.0], [15.6596375, -4.1122182, 0.0], [15.6582642, -4.1122182, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2242}, "geometry": {"type": "Polygon", "coordinates": [[[15.6747437, -4.1122182, 0.0], [15.6747437, -4.1135879, 0.0], [15.6761169, -4.1135879, 0.0], [15.6761169, -4.1122182, 0.0], [15.6747437, -4.1122182, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2243}, "geometry": {"type": "Polygon", "coordinates": [[[15.68573, -4.1122182, 0.0], [15.68573, -4.1135879, 0.0], [15.6871033, -4.1135879, 0.0], [15.6871033, -4.1122182, 0.0], [15.68573, -4.1122182, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2244}, "geometry": {"type": "Polygon", "coordinates": [[[15.879364, -4.1122182, 0.0], [15.8779907, -4.1122182, 0.0], [15.8779907, -4.1135879, 0.0], [15.879364, -4.1135879, 0.0], [15.8807373, -4.1135879, 0.0], [15.8807373, -4.1122182, 0.0], [15.879364, -4.1122182, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2245}, "geometry": {"type": "Polygon", "coordinates": [[[15.7420349, -4.1122182, 0.0], [15.7420349, -4.1108484, 0.0], [15.7406616, -4.1108484, 0.0], [15.7392883, -4.1108484, 0.0], [15.7392883, -4.1122182, 0.0], [15.7392883, -4.1135879, 0.0], [15.7406616, -4.1135879, 0.0], [15.7420349, -4.1135879, 0.0], [15.7420349, -4.1122182, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2246}, "geometry": {"type": "Polygon", "coordinates": [[[15.629425, -4.1122182, 0.0], [15.629425, -4.1135879, 0.0], [15.6307983, -4.1135879, 0.0], [15.6307983, -4.1122182, 0.0], [15.629425, -4.1122182, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2247}, "geometry": {"type": "Polygon", "coordinates": [[[15.695343, -4.1122182, 0.0], [15.695343, -4.1135879, 0.0], [15.6967163, -4.1135879, 0.0], [15.6967163, -4.1122182, 0.0], [15.695343, -4.1122182, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2248}, "geometry": {"type": "Polygon", "coordinates": [[[15.8189392, -4.1122182, 0.0], [15.8189392, -4.1135879, 0.0], [15.8203125, -4.1135879, 0.0], [15.8203125, -4.1122182, 0.0], [15.8189392, -4.1122182, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2249}, "geometry": {"type": "Polygon", "coordinates": [[[15.7763672, -4.1122182, 0.0], [15.7763672, -4.1135879, 0.0], [15.7777405, -4.1135879, 0.0], [15.7777405, -4.1122182, 0.0], [15.7763672, -4.1122182, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2250}, "geometry": {"type": "Polygon", "coordinates": [[[15.652771, -4.1108484, 0.0], [15.652771, -4.1122182, 0.0], [15.6541443, -4.1122182, 0.0], [15.6555176, -4.1122182, 0.0], [15.6555176, -4.1108484, 0.0], [15.6541443, -4.1108484, 0.0], [15.652771, -4.1108484, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2251}, "geometry": {"type": "Polygon", "coordinates": [[[15.6816101, -4.1108484, 0.0], [15.6816101, -4.1094786, 0.0], [15.6829834, -4.1094786, 0.0], [15.6829834, -4.1081089, 0.0], [15.6829834, -4.1067391, 0.0], [15.6816101, -4.1067391, 0.0], [15.6816101, -4.1053693, 0.0], [15.6816101, -4.1039996, 0.0], [15.6802368, -4.1039996, 0.0], [15.6802368, -4.1026298, 0.0], [15.6788635, -4.1026298, 0.0], [15.6788635, -4.1039996, 0.0], [15.6788635, -4.1053693, 0.0], [15.6788635, -4.1067391, 0.0], [15.6802368, -4.1067391, 0.0], [15.6802368, -4.1081089, 0.0], [15.6788635, -4.1081089, 0.0], [15.6788635, -4.1094786, 0.0], [15.6802368, -4.1094786, 0.0], [15.6802368, -4.1108484, 0.0], [15.6802368, -4.1122182, 0.0], [15.6816101, -4.1122182, 0.0], [15.6816101, -4.1108484, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2252}, "geometry": {"type": "Polygon", "coordinates": [[[15.9054565, -4.1094786, 0.0], [15.9054565, -4.1108484, 0.0], [15.9068298, -4.1108484, 0.0], [15.9068298, -4.1094786, 0.0], [15.9054565, -4.1094786, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2253}, "geometry": {"type": "Polygon", "coordinates": [[[15.662384, -4.1094786, 0.0], [15.6610107, -4.1094786, 0.0], [15.6610107, -4.1108484, 0.0], [15.662384, -4.1108484, 0.0], [15.6637573, -4.1108484, 0.0], [15.6637573, -4.1094786, 0.0], [15.662384, -4.1094786, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2254}, "geometry": {"type": "Polygon", "coordinates": [[[15.5690002, -4.1094786, 0.0], [15.5690002, -4.1108484, 0.0], [15.5703735, -4.1108484, 0.0], [15.5703735, -4.1094786, 0.0], [15.5690002, -4.1094786, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2255}, "geometry": {"type": "Polygon", "coordinates": [[[15.8889771, -4.1094786, 0.0], [15.8889771, -4.1081089, 0.0], [15.8876038, -4.1081089, 0.0], [15.8876038, -4.1094786, 0.0], [15.8876038, -4.1108484, 0.0], [15.8889771, -4.1108484, 0.0], [15.8889771, -4.1094786, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2256}, "geometry": {"type": "Polygon", "coordinates": [[[15.6706238, -4.1094786, 0.0], [15.6706238, -4.1108484, 0.0], [15.6719971, -4.1108484, 0.0], [15.6719971, -4.1094786, 0.0], [15.6706238, -4.1094786, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2257}, "geometry": {"type": "Polygon", "coordinates": [[[15.7255554, -4.1094786, 0.0], [15.7255554, -4.1108484, 0.0], [15.7269287, -4.1108484, 0.0], [15.728302, -4.1108484, 0.0], [15.728302, -4.1094786, 0.0], [15.7269287, -4.1094786, 0.0], [15.7255554, -4.1094786, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2258}, "geometry": {"type": "Polygon", "coordinates": [[[15.68573, -4.1094786, 0.0], [15.68573, -4.1108484, 0.0], [15.6871033, -4.1108484, 0.0], [15.6871033, -4.1094786, 0.0], [15.68573, -4.1094786, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2259}, "geometry": {"type": "Polygon", "coordinates": [[[15.7736206, -4.1094786, 0.0], [15.7722473, -4.1094786, 0.0], [15.7722473, -4.1108484, 0.0], [15.7736206, -4.1108484, 0.0], [15.7749939, -4.1108484, 0.0], [15.7749939, -4.1094786, 0.0], [15.7736206, -4.1094786, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2260}, "geometry": {"type": "Polygon", "coordinates": [[[15.737915, -4.1081089, 0.0], [15.737915, -4.1094786, 0.0], [15.7392883, -4.1094786, 0.0], [15.7406616, -4.1094786, 0.0], [15.7406616, -4.1081089, 0.0], [15.7406616, -4.1067391, 0.0], [15.7392883, -4.1067391, 0.0], [15.7392883, -4.1081089, 0.0], [15.737915, -4.1081089, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2261}, "geometry": {"type": "Polygon", "coordinates": [[[15.8106995, -4.1081089, 0.0], [15.8106995, -4.1067391, 0.0], [15.8106995, -4.1053693, 0.0], [15.8106995, -4.1039996, 0.0], [15.8120728, -4.1039996, 0.0], [15.8120728, -4.1026298, 0.0], [15.8120728, -4.10126, 0.0], [15.8106995, -4.10126, 0.0], [15.8106995, -4.1026298, 0.0], [15.8093262, -4.1026298, 0.0], [15.8093262, -4.1039996, 0.0], [15.8093262, -4.1053693, 0.0], [15.8093262, -4.1067391, 0.0], [15.8079529, -4.1067391, 0.0], [15.8079529, -4.1081089, 0.0], [15.8079529, -4.1094786, 0.0], [15.8093262, -4.1094786, 0.0], [15.8106995, -4.1094786, 0.0], [15.8106995, -4.1081089, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2262}, "geometry": {"type": "Polygon", "coordinates": [[[15.5429077, -4.1081089, 0.0], [15.5429077, -4.1094786, 0.0], [15.544281, -4.1094786, 0.0], [15.544281, -4.1081089, 0.0], [15.5429077, -4.1081089, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2263}, "geometry": {"type": "Polygon", "coordinates": [[[15.6555176, -4.1081089, 0.0], [15.6555176, -4.1067391, 0.0], [15.6541443, -4.1067391, 0.0], [15.6541443, -4.1081089, 0.0], [15.6541443, -4.1094786, 0.0], [15.6555176, -4.1094786, 0.0], [15.6555176, -4.1081089, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2264}, "geometry": {"type": "Polygon", "coordinates": [[[15.7489014, -4.1081089, 0.0], [15.7489014, -4.1094786, 0.0], [15.7502747, -4.1094786, 0.0], [15.7502747, -4.1081089, 0.0], [15.7489014, -4.1081089, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2265}, "geometry": {"type": "Polygon", "coordinates": [[[15.8381653, -4.1067391, 0.0], [15.8381653, -4.1081089, 0.0], [15.8395386, -4.1081089, 0.0], [15.8395386, -4.1067391, 0.0], [15.8381653, -4.1067391, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2266}, "geometry": {"type": "Polygon", "coordinates": [[[15.5401611, -4.1067391, 0.0], [15.5401611, -4.1081089, 0.0], [15.5415344, -4.1081089, 0.0], [15.5415344, -4.1067391, 0.0], [15.5401611, -4.1067391, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2267}, "geometry": {"type": "Polygon", "coordinates": [[[15.6747437, -4.1067391, 0.0], [15.6747437, -4.1081089, 0.0], [15.6761169, -4.1081089, 0.0], [15.6761169, -4.1067391, 0.0], [15.6747437, -4.1067391, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2268}, "geometry": {"type": "Polygon", "coordinates": [[[15.8834839, -4.1067391, 0.0], [15.8834839, -4.1081089, 0.0], [15.8848572, -4.1081089, 0.0], [15.8848572, -4.1067391, 0.0], [15.8834839, -4.1067391, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2269}, "geometry": {"type": "Polygon", "coordinates": [[[15.8601379, -4.1067391, 0.0], [15.8601379, -4.1053693, 0.0], [15.8601379, -4.1039996, 0.0], [15.8601379, -4.1026298, 0.0], [15.8587646, -4.1026298, 0.0], [15.8573914, -4.1026298, 0.0], [15.8573914, -4.1039996, 0.0], [15.8573914, -4.1053693, 0.0], [15.8587646, -4.1053693, 0.0], [15.8587646, -4.1067391, 0.0], [15.8587646, -4.1081089, 0.0], [15.8601379, -4.1081089, 0.0], [15.8601379, -4.1067391, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2270}, "geometry": {"type": "Polygon", "coordinates": [[[15.6678772, -4.1067391, 0.0], [15.6678772, -4.1053693, 0.0], [15.6665039, -4.1053693, 0.0], [15.6665039, -4.1067391, 0.0], [15.6665039, -4.1081089, 0.0], [15.6678772, -4.1081089, 0.0], [15.6678772, -4.1067391, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2271}, "geometry": {"type": "Polygon", "coordinates": [[[15.6115723, -4.1053693, 0.0], [15.6129456, -4.1053693, 0.0], [15.6129456, -4.1039996, 0.0], [15.6115723, -4.1039996, 0.0], [15.610199, -4.1039996, 0.0], [15.610199, -4.1053693, 0.0], [15.610199, -4.1067391, 0.0], [15.6115723, -4.1067391, 0.0], [15.6115723, -4.1053693, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2272}, "geometry": {"type": "Polygon", "coordinates": [[[15.6225586, -4.1053693, 0.0], [15.6225586, -4.1039996, 0.0], [15.6211853, -4.1039996, 0.0], [15.6211853, -4.1053693, 0.0], [15.6211853, -4.1067391, 0.0], [15.6225586, -4.1067391, 0.0], [15.6225586, -4.1053693, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2273}, "geometry": {"type": "Polygon", "coordinates": [[[15.836792, -4.1053693, 0.0], [15.836792, -4.1067391, 0.0], [15.8381653, -4.1067391, 0.0], [15.8381653, -4.1053693, 0.0], [15.836792, -4.1053693, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2274}, "geometry": {"type": "Polygon", "coordinates": [[[15.5566406, -4.1053693, 0.0], [15.5566406, -4.1067391, 0.0], [15.5580139, -4.1067391, 0.0], [15.5580139, -4.1053693, 0.0], [15.5566406, -4.1053693, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2275}, "geometry": {"type": "Polygon", "coordinates": [[[15.8409119, -4.1039996, 0.0], [15.8409119, -4.1026298, 0.0], [15.8395386, -4.1026298, 0.0], [15.8381653, -4.1026298, 0.0], [15.8381653, -4.1039996, 0.0], [15.8395386, -4.1039996, 0.0], [15.8395386, -4.1053693, 0.0], [15.8409119, -4.1053693, 0.0], [15.8409119, -4.1039996, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2276}, "geometry": {"type": "Polygon", "coordinates": [[[15.8972168, -4.1039996, 0.0], [15.8985901, -4.1039996, 0.0], [15.8985901, -4.1026298, 0.0], [15.8985901, -4.10126, 0.0], [15.8972168, -4.10126, 0.0], [15.8972168, -4.1026298, 0.0], [15.8958435, -4.1026298, 0.0], [15.8958435, -4.1039996, 0.0], [15.8944702, -4.1039996, 0.0], [15.8944702, -4.1053693, 0.0], [15.8958435, -4.1053693, 0.0], [15.8972168, -4.1053693, 0.0], [15.8972168, -4.1039996, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2277}, "geometry": {"type": "Polygon", "coordinates": [[[15.6596375, -4.1039996, 0.0], [15.6596375, -4.1053693, 0.0], [15.6610107, -4.1053693, 0.0], [15.6610107, -4.1039996, 0.0], [15.6596375, -4.1039996, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2278}, "geometry": {"type": "Polygon", "coordinates": [[[15.5607605, -4.1039996, 0.0], [15.5607605, -4.1053693, 0.0], [15.5621338, -4.1053693, 0.0], [15.5621338, -4.1039996, 0.0], [15.5607605, -4.1039996, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2279}, "geometry": {"type": "Polygon", "coordinates": [[[15.7887268, -4.1039996, 0.0], [15.7901001, -4.1039996, 0.0], [15.7901001, -4.1026298, 0.0], [15.7887268, -4.1026298, 0.0], [15.7873535, -4.1026298, 0.0], [15.7873535, -4.1039996, 0.0], [15.7873535, -4.1053693, 0.0], [15.7887268, -4.1053693, 0.0], [15.7887268, -4.1039996, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2280}, "geometry": {"type": "Polygon", "coordinates": [[[15.6665039, -4.1026298, 0.0], [15.6665039, -4.1039996, 0.0], [15.6678772, -4.1039996, 0.0], [15.6678772, -4.1026298, 0.0], [15.6665039, -4.1026298, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2281}, "geometry": {"type": "Polygon", "coordinates": [[[15.8807373, -4.1026298, 0.0], [15.879364, -4.1026298, 0.0], [15.879364, -4.1039996, 0.0], [15.8807373, -4.1039996, 0.0], [15.8821106, -4.1039996, 0.0], [15.8821106, -4.1026298, 0.0], [15.8807373, -4.1026298, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2282}, "geometry": {"type": "Polygon", "coordinates": [[[15.6610107, -4.1026298, 0.0], [15.6610107, -4.1039996, 0.0], [15.662384, -4.1039996, 0.0], [15.662384, -4.1026298, 0.0], [15.6610107, -4.1026298, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2283}, "geometry": {"type": "Polygon", "coordinates": [[[15.5374146, -4.1026298, 0.0], [15.5374146, -4.1039996, 0.0], [15.5387878, -4.1039996, 0.0], [15.5387878, -4.1026298, 0.0], [15.5374146, -4.1026298, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2284}, "geometry": {"type": "Polygon", "coordinates": [[[15.5621338, -4.1026298, 0.0], [15.5621338, -4.1039996, 0.0], [15.5635071, -4.1039996, 0.0], [15.5648804, -4.1039996, 0.0], [15.5648804, -4.1026298, 0.0], [15.5635071, -4.1026298, 0.0], [15.5621338, -4.1026298, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2285}, "geometry": {"type": "Polygon", "coordinates": [[[15.6266785, -4.1026298, 0.0], [15.6266785, -4.1039996, 0.0], [15.6280518, -4.1039996, 0.0], [15.6280518, -4.1026298, 0.0], [15.6266785, -4.1026298, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2286}, "geometry": {"type": "Polygon", "coordinates": [[[15.6568909, -4.1026298, 0.0], [15.6568909, -4.1039996, 0.0], [15.6582642, -4.1039996, 0.0], [15.6596375, -4.1039996, 0.0], [15.6596375, -4.1026298, 0.0], [15.6582642, -4.1026298, 0.0], [15.6568909, -4.1026298, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2287}, "geometry": {"type": "Polygon", "coordinates": [[[15.7337952, -4.10126, 0.0], [15.7337952, -4.1026298, 0.0], [15.7351685, -4.1026298, 0.0], [15.7351685, -4.10126, 0.0], [15.7337952, -4.10126, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2288}, "geometry": {"type": "Polygon", "coordinates": [[[15.6541443, -4.10126, 0.0], [15.6541443, -4.0998903, 0.0], [15.652771, -4.0998903, 0.0], [15.6513977, -4.0998903, 0.0], [15.6500244, -4.0998903, 0.0], [15.6500244, -4.10126, 0.0], [15.6513977, -4.10126, 0.0], [15.652771, -4.10126, 0.0], [15.652771, -4.1026298, 0.0], [15.6541443, -4.1026298, 0.0], [15.6555176, -4.1026298, 0.0], [15.6555176, -4.10126, 0.0], [15.6541443, -4.10126, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2289}, "geometry": {"type": "Polygon", "coordinates": [[[15.6802368, -4.10126, 0.0], [15.6802368, -4.1026298, 0.0], [15.6816101, -4.1026298, 0.0], [15.6816101, -4.10126, 0.0], [15.6802368, -4.10126, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2290}, "geometry": {"type": "Polygon", "coordinates": [[[15.813446, -4.10126, 0.0], [15.813446, -4.1026298, 0.0], [15.8148193, -4.1026298, 0.0], [15.8148193, -4.10126, 0.0], [15.813446, -4.10126, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2291}, "geometry": {"type": "Polygon", "coordinates": [[[15.7035828, -4.10126, 0.0], [15.7035828, -4.0998903, 0.0], [15.7022095, -4.0998903, 0.0], [15.7008362, -4.0998903, 0.0], [15.7008362, -4.10126, 0.0], [15.7008362, -4.1026298, 0.0], [15.7022095, -4.1026298, 0.0], [15.7035828, -4.1026298, 0.0], [15.7035828, -4.10126, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2292}, "geometry": {"type": "Polygon", "coordinates": [[[15.695343, -4.10126, 0.0], [15.695343, -4.1026298, 0.0], [15.6967163, -4.1026298, 0.0], [15.6967163, -4.10126, 0.0], [15.695343, -4.10126, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2293}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.0998903, 0.0], [15.7667542, -4.10126, 0.0], [15.7681274, -4.10126, 0.0], [15.7681274, -4.0998903, 0.0], [15.7667542, -4.0998903, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2294}, "geometry": {"type": "Polygon", "coordinates": [[[15.68573, -4.0998903, 0.0], [15.68573, -4.0985205, 0.0], [15.68573, -4.0971507, 0.0], [15.6843567, -4.0971507, 0.0], [15.6843567, -4.0985205, 0.0], [15.6843567, -4.0998903, 0.0], [15.6843567, -4.10126, 0.0], [15.68573, -4.10126, 0.0], [15.68573, -4.0998903, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2295}, "geometry": {"type": "Polygon", "coordinates": [[[15.7873535, -4.0998903, 0.0], [15.7873535, -4.10126, 0.0], [15.7887268, -4.10126, 0.0], [15.7901001, -4.10126, 0.0], [15.7914734, -4.10126, 0.0], [15.7914734, -4.0998903, 0.0], [15.7914734, -4.0985205, 0.0], [15.7928467, -4.0985205, 0.0], [15.7928467, -4.0971507, 0.0], [15.79422, -4.0971507, 0.0], [15.79422, -4.0957809, 0.0], [15.7955933, -4.0957809, 0.0], [15.7955933, -4.0944111, 0.0], [15.79422, -4.0944111, 0.0], [15.79422, -4.0930413, 0.0], [15.79422, -4.0916716, 0.0], [15.79422, -4.0903018, 0.0], [15.7955933, -4.0903018, 0.0], [15.7955933, -4.088932, 0.0], [15.7955933, -4.0875622, 0.0], [15.79422, -4.0875622, 0.0], [15.79422, -4.088932, 0.0], [15.7928467, -4.088932, 0.0], [15.7928467, -4.0903018, 0.0], [15.7928467, -4.0916716, 0.0], [15.7914734, -4.0916716, 0.0], [15.7914734, -4.0930413, 0.0], [15.7914734, -4.0944111, 0.0], [15.7914734, -4.0957809, 0.0], [15.7901001, -4.0957809, 0.0], [15.7901001, -4.0971507, 0.0], [15.7901001, -4.0985205, 0.0], [15.7901001, -4.0998903, 0.0], [15.7887268, -4.0998903, 0.0], [15.7873535, -4.0998903, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2296}, "geometry": {"type": "Polygon", "coordinates": [[[15.7131958, -4.0998903, 0.0], [15.7131958, -4.10126, 0.0], [15.7145691, -4.10126, 0.0], [15.7145691, -4.0998903, 0.0], [15.7131958, -4.0998903, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2297}, "geometry": {"type": "Polygon", "coordinates": [[[15.7351685, -4.0998903, 0.0], [15.7351685, -4.10126, 0.0], [15.7365417, -4.10126, 0.0], [15.737915, -4.10126, 0.0], [15.737915, -4.0998903, 0.0], [15.7365417, -4.0998903, 0.0], [15.7351685, -4.0998903, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2298}, "geometry": {"type": "Polygon", "coordinates": [[[15.7955933, -4.0998903, 0.0], [15.7955933, -4.10126, 0.0], [15.7969666, -4.10126, 0.0], [15.7969666, -4.0998903, 0.0], [15.7955933, -4.0998903, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2299}, "geometry": {"type": "Polygon", "coordinates": [[[15.8065796, -4.0998903, 0.0], [15.8065796, -4.0985205, 0.0], [15.8052063, -4.0985205, 0.0], [15.803833, -4.0985205, 0.0], [15.803833, -4.0998903, 0.0], [15.803833, -4.10126, 0.0], [15.8052063, -4.10126, 0.0], [15.8065796, -4.10126, 0.0], [15.8065796, -4.0998903, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2300}, "geometry": {"type": "Polygon", "coordinates": [[[15.6788635, -4.0998903, 0.0], [15.6788635, -4.10126, 0.0], [15.6802368, -4.10126, 0.0], [15.6802368, -4.0998903, 0.0], [15.6788635, -4.0998903, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2301}, "geometry": {"type": "Polygon", "coordinates": [[[15.7928467, -4.0998903, 0.0], [15.7928467, -4.10126, 0.0], [15.79422, -4.10126, 0.0], [15.79422, -4.0998903, 0.0], [15.7928467, -4.0998903, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2302}, "geometry": {"type": "Polygon", "coordinates": [[[15.6665039, -4.0998903, 0.0], [15.6651306, -4.0998903, 0.0], [15.6651306, -4.10126, 0.0], [15.6665039, -4.10126, 0.0], [15.6678772, -4.10126, 0.0], [15.6678772, -4.0998903, 0.0], [15.6665039, -4.0998903, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2303}, "geometry": {"type": "Polygon", "coordinates": [[[15.6912231, -4.0998903, 0.0], [15.6912231, -4.10126, 0.0], [15.6925964, -4.10126, 0.0], [15.6925964, -4.0998903, 0.0], [15.6912231, -4.0998903, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2304}, "geometry": {"type": "Polygon", "coordinates": [[[15.6939697, -4.0998903, 0.0], [15.6939697, -4.10126, 0.0], [15.695343, -4.10126, 0.0], [15.695343, -4.0998903, 0.0], [15.6939697, -4.0998903, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2305}, "geometry": {"type": "Polygon", "coordinates": [[[15.9233093, -4.0985205, 0.0], [15.9233093, -4.0998903, 0.0], [15.9246826, -4.0998903, 0.0], [15.9246826, -4.0985205, 0.0], [15.9233093, -4.0985205, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2306}, "geometry": {"type": "Polygon", "coordinates": [[[15.5813599, -4.0985205, 0.0], [15.5813599, -4.0998903, 0.0], [15.5827332, -4.0998903, 0.0], [15.5827332, -4.0985205, 0.0], [15.5813599, -4.0985205, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2307}, "geometry": {"type": "Polygon", "coordinates": [[[15.7035828, -4.0985205, 0.0], [15.7035828, -4.0998903, 0.0], [15.7049561, -4.0998903, 0.0], [15.7049561, -4.0985205, 0.0], [15.7035828, -4.0985205, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2308}, "geometry": {"type": "Polygon", "coordinates": [[[15.7777405, -4.0985205, 0.0], [15.7777405, -4.0971507, 0.0], [15.7763672, -4.0971507, 0.0], [15.7763672, -4.0985205, 0.0], [15.7763672, -4.0998903, 0.0], [15.7777405, -4.0998903, 0.0], [15.7777405, -4.0985205, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2309}, "geometry": {"type": "Polygon", "coordinates": [[[15.7681274, -4.0985205, 0.0], [15.7681274, -4.0998903, 0.0], [15.7695007, -4.0998903, 0.0], [15.7695007, -4.0985205, 0.0], [15.7681274, -4.0985205, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2310}, "geometry": {"type": "Polygon", "coordinates": [[[15.662384, -4.0985205, 0.0], [15.662384, -4.0998903, 0.0], [15.6637573, -4.0998903, 0.0], [15.6637573, -4.0985205, 0.0], [15.662384, -4.0985205, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2311}, "geometry": {"type": "Polygon", "coordinates": [[[15.8999634, -4.0971507, 0.0], [15.8999634, -4.0985205, 0.0], [15.9013367, -4.0985205, 0.0], [15.9013367, -4.0971507, 0.0], [15.8999634, -4.0971507, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2312}, "geometry": {"type": "Polygon", "coordinates": [[[15.6280518, -4.0971507, 0.0], [15.6280518, -4.0985205, 0.0], [15.629425, -4.0985205, 0.0], [15.629425, -4.0971507, 0.0], [15.6280518, -4.0971507, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2313}, "geometry": {"type": "Polygon", "coordinates": [[[15.8010864, -4.0971507, 0.0], [15.8010864, -4.0957809, 0.0], [15.7997131, -4.0957809, 0.0], [15.7983398, -4.0957809, 0.0], [15.7983398, -4.0971507, 0.0], [15.7983398, -4.0985205, 0.0], [15.7997131, -4.0985205, 0.0], [15.8010864, -4.0985205, 0.0], [15.8024597, -4.0985205, 0.0], [15.8024597, -4.0971507, 0.0], [15.8010864, -4.0971507, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2314}, "geometry": {"type": "Polygon", "coordinates": [[[15.7159424, -4.0971507, 0.0], [15.7159424, -4.0985205, 0.0], [15.7173157, -4.0985205, 0.0], [15.7173157, -4.0971507, 0.0], [15.7159424, -4.0971507, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2315}, "geometry": {"type": "Polygon", "coordinates": [[[15.7008362, -4.0971507, 0.0], [15.7008362, -4.0985205, 0.0], [15.7022095, -4.0985205, 0.0], [15.7022095, -4.0971507, 0.0], [15.7008362, -4.0971507, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2316}, "geometry": {"type": "Polygon", "coordinates": [[[15.6884766, -4.0971507, 0.0], [15.6884766, -4.0957809, 0.0], [15.6871033, -4.0957809, 0.0], [15.6871033, -4.0944111, 0.0], [15.6884766, -4.0944111, 0.0], [15.6884766, -4.0930413, 0.0], [15.6871033, -4.0930413, 0.0], [15.68573, -4.0930413, 0.0], [15.68573, -4.0944111, 0.0], [15.68573, -4.0957809, 0.0], [15.68573, -4.0971507, 0.0], [15.6871033, -4.0971507, 0.0], [15.6871033, -4.0985205, 0.0], [15.6884766, -4.0985205, 0.0], [15.6884766, -4.0971507, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2317}, "geometry": {"type": "Polygon", "coordinates": [[[15.643158, -4.0971507, 0.0], [15.643158, -4.0985205, 0.0], [15.6445312, -4.0985205, 0.0], [15.6459045, -4.0985205, 0.0], [15.6459045, -4.0971507, 0.0], [15.6472778, -4.0971507, 0.0], [15.6472778, -4.0957809, 0.0], [15.6459045, -4.0957809, 0.0], [15.6445312, -4.0957809, 0.0], [15.6445312, -4.0971507, 0.0], [15.643158, -4.0971507, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2318}, "geometry": {"type": "Polygon", "coordinates": [[[15.5690002, -4.0971507, 0.0], [15.5690002, -4.0985205, 0.0], [15.5703735, -4.0985205, 0.0], [15.5703735, -4.0971507, 0.0], [15.5690002, -4.0971507, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2319}, "geometry": {"type": "Polygon", "coordinates": [[[15.6596375, -4.0971507, 0.0], [15.6596375, -4.0957809, 0.0], [15.6582642, -4.0957809, 0.0], [15.6582642, -4.0971507, 0.0], [15.6582642, -4.0985205, 0.0], [15.6596375, -4.0985205, 0.0], [15.6596375, -4.0971507, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2320}, "geometry": {"type": "Polygon", "coordinates": [[[15.8958435, -4.0971507, 0.0], [15.8958435, -4.0985205, 0.0], [15.8972168, -4.0985205, 0.0], [15.8972168, -4.0971507, 0.0], [15.8958435, -4.0971507, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2321}, "geometry": {"type": "Polygon", "coordinates": [[[15.6692505, -4.0957809, 0.0], [15.6692505, -4.0944111, 0.0], [15.6678772, -4.0944111, 0.0], [15.6678772, -4.0957809, 0.0], [15.6678772, -4.0971507, 0.0], [15.6692505, -4.0971507, 0.0], [15.6692505, -4.0957809, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2322}, "geometry": {"type": "Polygon", "coordinates": [[[15.6500244, -4.0957809, 0.0], [15.6500244, -4.0944111, 0.0], [15.6486511, -4.0944111, 0.0], [15.6486511, -4.0957809, 0.0], [15.6486511, -4.0971507, 0.0], [15.6500244, -4.0971507, 0.0], [15.6500244, -4.0957809, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2323}, "geometry": {"type": "Polygon", "coordinates": [[[15.567627, -4.0957809, 0.0], [15.567627, -4.0971507, 0.0], [15.5690002, -4.0971507, 0.0], [15.5690002, -4.0957809, 0.0], [15.567627, -4.0957809, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2324}, "geometry": {"type": "Polygon", "coordinates": [[[15.8354187, -4.0957809, 0.0], [15.8354187, -4.0971507, 0.0], [15.836792, -4.0971507, 0.0], [15.836792, -4.0957809, 0.0], [15.8354187, -4.0957809, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2325}, "geometry": {"type": "Polygon", "coordinates": [[[15.6170654, -4.0957809, 0.0], [15.6170654, -4.0971507, 0.0], [15.6184387, -4.0971507, 0.0], [15.6184387, -4.0957809, 0.0], [15.6170654, -4.0957809, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2326}, "geometry": {"type": "Polygon", "coordinates": [[[15.5401611, -4.0957809, 0.0], [15.5401611, -4.0971507, 0.0], [15.5415344, -4.0971507, 0.0], [15.5415344, -4.0957809, 0.0], [15.5401611, -4.0957809, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2327}, "geometry": {"type": "Polygon", "coordinates": [[[15.8670044, -4.0944111, 0.0], [15.8670044, -4.0930413, 0.0], [15.8656311, -4.0930413, 0.0], [15.8642578, -4.0930413, 0.0], [15.8642578, -4.0944111, 0.0], [15.8628845, -4.0944111, 0.0], [15.8628845, -4.0957809, 0.0], [15.8642578, -4.0957809, 0.0], [15.8656311, -4.0957809, 0.0], [15.8670044, -4.0957809, 0.0], [15.8670044, -4.0944111, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2328}, "geometry": {"type": "Polygon", "coordinates": [[[15.8985901, -4.0944111, 0.0], [15.8985901, -4.0930413, 0.0], [15.8972168, -4.0930413, 0.0], [15.8958435, -4.0930413, 0.0], [15.8958435, -4.0944111, 0.0], [15.8958435, -4.0957809, 0.0], [15.8972168, -4.0957809, 0.0], [15.8985901, -4.0957809, 0.0], [15.8985901, -4.0944111, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2329}, "geometry": {"type": "Polygon", "coordinates": [[[15.8821106, -4.0944111, 0.0], [15.8807373, -4.0944111, 0.0], [15.8807373, -4.0957809, 0.0], [15.8821106, -4.0957809, 0.0], [15.8834839, -4.0957809, 0.0], [15.8834839, -4.0944111, 0.0], [15.8821106, -4.0944111, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2330}, "geometry": {"type": "Polygon", "coordinates": [[[15.5470276, -4.0930413, 0.0], [15.5456543, -4.0930413, 0.0], [15.5456543, -4.0944111, 0.0], [15.5456543, -4.0957809, 0.0], [15.5470276, -4.0957809, 0.0], [15.5484009, -4.0957809, 0.0], [15.5484009, -4.0944111, 0.0], [15.5484009, -4.0930413, 0.0], [15.5470276, -4.0930413, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2331}, "geometry": {"type": "Polygon", "coordinates": [[[15.629425, -4.0944111, 0.0], [15.629425, -4.0930413, 0.0], [15.6280518, -4.0930413, 0.0], [15.6280518, -4.0944111, 0.0], [15.6280518, -4.0957809, 0.0], [15.629425, -4.0957809, 0.0], [15.629425, -4.0944111, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2332}, "geometry": {"type": "Polygon", "coordinates": [[[15.544281, -4.0930413, 0.0], [15.544281, -4.0916716, 0.0], [15.544281, -4.0903018, 0.0], [15.544281, -4.088932, 0.0], [15.5429077, -4.088932, 0.0], [15.5429077, -4.0903018, 0.0], [15.5429077, -4.0916716, 0.0], [15.5429077, -4.0930413, 0.0], [15.5415344, -4.0930413, 0.0], [15.5401611, -4.0930413, 0.0], [15.5401611, -4.0944111, 0.0], [15.5415344, -4.0944111, 0.0], [15.5415344, -4.0957809, 0.0], [15.5429077, -4.0957809, 0.0], [15.544281, -4.0957809, 0.0], [15.544281, -4.0944111, 0.0], [15.544281, -4.0930413, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2333}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.0944111, 0.0], [15.7667542, -4.0957809, 0.0], [15.7681274, -4.0957809, 0.0], [15.7681274, -4.0944111, 0.0], [15.7667542, -4.0944111, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2334}, "geometry": {"type": "Polygon", "coordinates": [[[15.7131958, -4.0944111, 0.0], [15.7131958, -4.0957809, 0.0], [15.7145691, -4.0957809, 0.0], [15.7145691, -4.0944111, 0.0], [15.7131958, -4.0944111, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2335}, "geometry": {"type": "Polygon", "coordinates": [[[15.662384, -4.0930413, 0.0], [15.662384, -4.0944111, 0.0], [15.6637573, -4.0944111, 0.0], [15.6637573, -4.0930413, 0.0], [15.662384, -4.0930413, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2336}, "geometry": {"type": "Polygon", "coordinates": [[[15.7296753, -4.0930413, 0.0], [15.7296753, -4.0944111, 0.0], [15.7310486, -4.0944111, 0.0], [15.7310486, -4.0930413, 0.0], [15.7296753, -4.0930413, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2337}, "geometry": {"type": "Polygon", "coordinates": [[[15.7791138, -4.0930413, 0.0], [15.7791138, -4.0916716, 0.0], [15.7777405, -4.0916716, 0.0], [15.7777405, -4.0930413, 0.0], [15.7777405, -4.0944111, 0.0], [15.7791138, -4.0944111, 0.0], [15.7791138, -4.0930413, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2338}, "geometry": {"type": "Polygon", "coordinates": [[[15.8395386, -4.0930413, 0.0], [15.8395386, -4.0944111, 0.0], [15.8409119, -4.0944111, 0.0], [15.8409119, -4.0930413, 0.0], [15.8395386, -4.0930413, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2339}, "geometry": {"type": "Polygon", "coordinates": [[[15.6170654, -4.0930413, 0.0], [15.6170654, -4.0944111, 0.0], [15.6184387, -4.0944111, 0.0], [15.6184387, -4.0930413, 0.0], [15.6170654, -4.0930413, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2340}, "geometry": {"type": "Polygon", "coordinates": [[[15.7832336, -4.0930413, 0.0], [15.7832336, -4.0944111, 0.0], [15.7846069, -4.0944111, 0.0], [15.7846069, -4.0930413, 0.0], [15.7832336, -4.0930413, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2341}, "geometry": {"type": "Polygon", "coordinates": [[[15.8752441, -4.0916716, 0.0], [15.8752441, -4.0930413, 0.0], [15.8766174, -4.0930413, 0.0], [15.8766174, -4.0916716, 0.0], [15.8752441, -4.0916716, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2342}, "geometry": {"type": "Polygon", "coordinates": [[[15.8560181, -4.0916716, 0.0], [15.8560181, -4.0930413, 0.0], [15.8573914, -4.0930413, 0.0], [15.8573914, -4.0916716, 0.0], [15.8560181, -4.0916716, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2343}, "geometry": {"type": "Polygon", "coordinates": [[[15.7543945, -4.0916716, 0.0], [15.7543945, -4.0903018, 0.0], [15.7530212, -4.0903018, 0.0], [15.7530212, -4.0916716, 0.0], [15.7530212, -4.0930413, 0.0], [15.7543945, -4.0930413, 0.0], [15.7543945, -4.0916716, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2344}, "geometry": {"type": "Polygon", "coordinates": [[[15.6637573, -4.0916716, 0.0], [15.6637573, -4.0930413, 0.0], [15.6651306, -4.0930413, 0.0], [15.6651306, -4.0916716, 0.0], [15.6637573, -4.0916716, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2345}, "geometry": {"type": "Polygon", "coordinates": [[[15.6747437, -4.0916716, 0.0], [15.6747437, -4.0930413, 0.0], [15.6761169, -4.0930413, 0.0], [15.6761169, -4.0916716, 0.0], [15.6747437, -4.0916716, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2346}, "geometry": {"type": "Polygon", "coordinates": [[[15.6816101, -4.0916716, 0.0], [15.6816101, -4.0903018, 0.0], [15.6802368, -4.0903018, 0.0], [15.6802368, -4.0916716, 0.0], [15.6802368, -4.0930413, 0.0], [15.6816101, -4.0930413, 0.0], [15.6816101, -4.0916716, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2347}, "geometry": {"type": "Polygon", "coordinates": [[[15.5484009, -4.0916716, 0.0], [15.5484009, -4.0930413, 0.0], [15.5497742, -4.0930413, 0.0], [15.5511475, -4.0930413, 0.0], [15.5511475, -4.0916716, 0.0], [15.5497742, -4.0916716, 0.0], [15.5484009, -4.0916716, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2348}, "geometry": {"type": "Polygon", "coordinates": [[[15.5387878, -4.0916716, 0.0], [15.5387878, -4.0930413, 0.0], [15.5401611, -4.0930413, 0.0], [15.5401611, -4.0916716, 0.0], [15.5387878, -4.0916716, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2349}, "geometry": {"type": "Polygon", "coordinates": [[[15.567627, -4.0903018, 0.0], [15.567627, -4.088932, 0.0], [15.5662537, -4.088932, 0.0], [15.5662537, -4.0903018, 0.0], [15.5662537, -4.0916716, 0.0], [15.567627, -4.0916716, 0.0], [15.567627, -4.0903018, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2350}, "geometry": {"type": "Polygon", "coordinates": [[[15.6184387, -4.0903018, 0.0], [15.6184387, -4.088932, 0.0], [15.6170654, -4.088932, 0.0], [15.6170654, -4.0903018, 0.0], [15.6170654, -4.0916716, 0.0], [15.6184387, -4.0916716, 0.0], [15.6184387, -4.0903018, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2351}, "geometry": {"type": "Polygon", "coordinates": [[[15.6513977, -4.0903018, 0.0], [15.6513977, -4.0916716, 0.0], [15.652771, -4.0916716, 0.0], [15.652771, -4.0903018, 0.0], [15.6513977, -4.0903018, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2352}, "geometry": {"type": "Polygon", "coordinates": [[[15.6459045, -4.0903018, 0.0], [15.6459045, -4.0916716, 0.0], [15.6472778, -4.0916716, 0.0], [15.6472778, -4.0903018, 0.0], [15.6459045, -4.0903018, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2353}, "geometry": {"type": "Polygon", "coordinates": [[[15.8546448, -4.088932, 0.0], [15.8546448, -4.0903018, 0.0], [15.8560181, -4.0903018, 0.0], [15.8560181, -4.088932, 0.0], [15.8546448, -4.088932, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2354}, "geometry": {"type": "Polygon", "coordinates": [[[15.6925964, -4.088932, 0.0], [15.6925964, -4.0875622, 0.0], [15.6912231, -4.0875622, 0.0], [15.6912231, -4.088932, 0.0], [15.6912231, -4.0903018, 0.0], [15.6925964, -4.0903018, 0.0], [15.6939697, -4.0903018, 0.0], [15.6939697, -4.088932, 0.0], [15.6925964, -4.088932, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2355}, "geometry": {"type": "Polygon", "coordinates": [[[15.6417847, -4.0903018, 0.0], [15.643158, -4.0903018, 0.0], [15.643158, -4.088932, 0.0], [15.643158, -4.0875622, 0.0], [15.643158, -4.0861924, 0.0], [15.6417847, -4.0861924, 0.0], [15.6404114, -4.0861924, 0.0], [15.6390381, -4.0861924, 0.0], [15.6390381, -4.0848226, 0.0], [15.6376648, -4.0848226, 0.0], [15.6376648, -4.0834528, 0.0], [15.6376648, -4.082083, 0.0], [15.6376648, -4.0807132, 0.0], [15.6362915, -4.0807132, 0.0], [15.6349182, -4.0807132, 0.0], [15.6349182, -4.082083, 0.0], [15.6349182, -4.0834528, 0.0], [15.6335449, -4.0834528, 0.0], [15.6321716, -4.0834528, 0.0], [15.6321716, -4.0848226, 0.0], [15.6335449, -4.0848226, 0.0], [15.6349182, -4.0848226, 0.0], [15.6349182, -4.0861924, 0.0], [15.6362915, -4.0861924, 0.0], [15.6376648, -4.0861924, 0.0], [15.6376648, -4.0875622, 0.0], [15.6390381, -4.0875622, 0.0], [15.6404114, -4.0875622, 0.0], [15.6404114, -4.088932, 0.0], [15.6404114, -4.0903018, 0.0], [15.6417847, -4.0903018, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2356}, "geometry": {"type": "Polygon", "coordinates": [[[15.8930969, -4.088932, 0.0], [15.8930969, -4.0903018, 0.0], [15.8944702, -4.0903018, 0.0], [15.8944702, -4.088932, 0.0], [15.8930969, -4.088932, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2357}, "geometry": {"type": "Polygon", "coordinates": [[[15.6774902, -4.088932, 0.0], [15.6774902, -4.0903018, 0.0], [15.6788635, -4.0903018, 0.0], [15.6788635, -4.088932, 0.0], [15.6774902, -4.088932, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2358}, "geometry": {"type": "Polygon", "coordinates": [[[15.7722473, -4.0875622, 0.0], [15.7722473, -4.088932, 0.0], [15.7736206, -4.088932, 0.0], [15.7749939, -4.088932, 0.0], [15.7749939, -4.0875622, 0.0], [15.7736206, -4.0875622, 0.0], [15.7722473, -4.0875622, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2359}, "geometry": {"type": "Polygon", "coordinates": [[[15.6472778, -4.0875622, 0.0], [15.6472778, -4.088932, 0.0], [15.6486511, -4.088932, 0.0], [15.6486511, -4.0875622, 0.0], [15.6472778, -4.0875622, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2360}, "geometry": {"type": "Polygon", "coordinates": [[[15.8711243, -4.0875622, 0.0], [15.8711243, -4.088932, 0.0], [15.8724976, -4.088932, 0.0], [15.8724976, -4.0875622, 0.0], [15.8711243, -4.0875622, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2361}, "geometry": {"type": "Polygon", "coordinates": [[[15.6184387, -4.0875622, 0.0], [15.6184387, -4.088932, 0.0], [15.619812, -4.088932, 0.0], [15.619812, -4.0875622, 0.0], [15.6184387, -4.0875622, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2362}, "geometry": {"type": "Polygon", "coordinates": [[[15.6445312, -4.0875622, 0.0], [15.6445312, -4.088932, 0.0], [15.6459045, -4.088932, 0.0], [15.6459045, -4.0875622, 0.0], [15.6445312, -4.0875622, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2363}, "geometry": {"type": "Polygon", "coordinates": [[[15.6747437, -4.0875622, 0.0], [15.6747437, -4.088932, 0.0], [15.6761169, -4.088932, 0.0], [15.6761169, -4.0875622, 0.0], [15.6747437, -4.0875622, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2364}, "geometry": {"type": "Polygon", "coordinates": [[[15.7090759, -4.0875622, 0.0], [15.7090759, -4.088932, 0.0], [15.7104492, -4.088932, 0.0], [15.7104492, -4.0875622, 0.0], [15.7090759, -4.0875622, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2365}, "geometry": {"type": "Polygon", "coordinates": [[[15.5401611, -4.0875622, 0.0], [15.5401611, -4.0861924, 0.0], [15.5387878, -4.0861924, 0.0], [15.5387878, -4.0848226, 0.0], [15.5374146, -4.0848226, 0.0], [15.5374146, -4.0861924, 0.0], [15.5360413, -4.0861924, 0.0], [15.5360413, -4.0875622, 0.0], [15.5374146, -4.0875622, 0.0], [15.5387878, -4.0875622, 0.0], [15.5387878, -4.088932, 0.0], [15.5401611, -4.088932, 0.0], [15.5401611, -4.0875622, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2366}, "geometry": {"type": "Polygon", "coordinates": [[[15.5648804, -4.0875622, 0.0], [15.5648804, -4.088932, 0.0], [15.5662537, -4.088932, 0.0], [15.5662537, -4.0875622, 0.0], [15.5648804, -4.0875622, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2367}, "geometry": {"type": "Polygon", "coordinates": [[[15.5332947, -4.0861924, 0.0], [15.534668, -4.0861924, 0.0], [15.534668, -4.0848226, 0.0], [15.5332947, -4.0848226, 0.0], [15.5332947, -4.0834528, 0.0], [15.534668, -4.0834528, 0.0], [15.5360413, -4.0834528, 0.0], [15.5360413, -4.082083, 0.0], [15.5360413, -4.0807132, 0.0], [15.5374146, -4.0807132, 0.0], [15.5374146, -4.0793433, 0.0], [15.5360413, -4.0793433, 0.0], [15.5360413, -4.0779735, 0.0], [15.534668, -4.0779735, 0.0], [15.534668, -4.0793433, 0.0], [15.5332947, -4.0793433, 0.0], [15.5332947, -4.0807132, 0.0], [15.5319214, -4.0807132, 0.0], [15.5319214, -4.082083, 0.0], [15.5319214, -4.0834528, 0.0], [15.5319214, -4.0848226, 0.0], [15.5319214, -4.0861924, 0.0], [15.5319214, -4.0875622, 0.0], [15.5332947, -4.0875622, 0.0], [15.5332947, -4.0861924, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2368}, "geometry": {"type": "Polygon", "coordinates": [[[15.8862305, -4.0861924, 0.0], [15.8862305, -4.0875622, 0.0], [15.8876038, -4.0875622, 0.0], [15.8876038, -4.0861924, 0.0], [15.8862305, -4.0861924, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2369}, "geometry": {"type": "Polygon", "coordinates": [[[15.8683777, -4.0861924, 0.0], [15.8683777, -4.0875622, 0.0], [15.869751, -4.0875622, 0.0], [15.869751, -4.0861924, 0.0], [15.8683777, -4.0861924, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2370}, "geometry": {"type": "Polygon", "coordinates": [[[15.8560181, -4.0861924, 0.0], [15.8560181, -4.0875622, 0.0], [15.8573914, -4.0875622, 0.0], [15.8573914, -4.0861924, 0.0], [15.8560181, -4.0861924, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2371}, "geometry": {"type": "Polygon", "coordinates": [[[15.7983398, -4.0861924, 0.0], [15.7983398, -4.0875622, 0.0], [15.7997131, -4.0875622, 0.0], [15.7997131, -4.0861924, 0.0], [15.7983398, -4.0861924, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2372}, "geometry": {"type": "Polygon", "coordinates": [[[15.553894, -4.0861924, 0.0], [15.553894, -4.0848226, 0.0], [15.553894, -4.0834528, 0.0], [15.5525208, -4.0834528, 0.0], [15.5511475, -4.0834528, 0.0], [15.5511475, -4.082083, 0.0], [15.5525208, -4.082083, 0.0], [15.553894, -4.082083, 0.0], [15.553894, -4.0807132, 0.0], [15.553894, -4.0793433, 0.0], [15.5525208, -4.0793433, 0.0], [15.5525208, -4.0779735, 0.0], [15.5511475, -4.0779735, 0.0], [15.5497742, -4.0779735, 0.0], [15.5497742, -4.0793433, 0.0], [15.5511475, -4.0793433, 0.0], [15.5511475, -4.0807132, 0.0], [15.5497742, -4.0807132, 0.0], [15.5497742, -4.082083, 0.0], [15.5497742, -4.0834528, 0.0], [15.5497742, -4.0848226, 0.0], [15.5497742, -4.0861924, 0.0], [15.5511475, -4.0861924, 0.0], [15.5525208, -4.0861924, 0.0], [15.5525208, -4.0875622, 0.0], [15.553894, -4.0875622, 0.0], [15.553894, -4.0861924, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2373}, "geometry": {"type": "Polygon", "coordinates": [[[15.5621338, -4.0861924, 0.0], [15.5621338, -4.0875622, 0.0], [15.5635071, -4.0875622, 0.0], [15.5635071, -4.0861924, 0.0], [15.5621338, -4.0861924, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2374}, "geometry": {"type": "Polygon", "coordinates": [[[15.6170654, -4.0861924, 0.0], [15.6170654, -4.0875622, 0.0], [15.6184387, -4.0875622, 0.0], [15.6184387, -4.0861924, 0.0], [15.6170654, -4.0861924, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2375}, "geometry": {"type": "Polygon", "coordinates": [[[15.7543945, -4.0848226, 0.0], [15.7543945, -4.0861924, 0.0], [15.7557678, -4.0861924, 0.0], [15.7557678, -4.0848226, 0.0], [15.7543945, -4.0848226, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2376}, "geometry": {"type": "Polygon", "coordinates": [[[15.7722473, -4.0848226, 0.0], [15.7722473, -4.0861924, 0.0], [15.7736206, -4.0861924, 0.0], [15.7736206, -4.0848226, 0.0], [15.7722473, -4.0848226, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2377}, "geometry": {"type": "Polygon", "coordinates": [[[15.8505249, -4.0848226, 0.0], [15.8505249, -4.0861924, 0.0], [15.8518982, -4.0861924, 0.0], [15.8518982, -4.0848226, 0.0], [15.8505249, -4.0848226, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2378}, "geometry": {"type": "Polygon", "coordinates": [[[15.5429077, -4.0848226, 0.0], [15.5429077, -4.0834528, 0.0], [15.5415344, -4.0834528, 0.0], [15.5415344, -4.0848226, 0.0], [15.5401611, -4.0848226, 0.0], [15.5401611, -4.0861924, 0.0], [15.5415344, -4.0861924, 0.0], [15.5429077, -4.0861924, 0.0], [15.5429077, -4.0848226, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2379}, "geometry": {"type": "Polygon", "coordinates": [[[15.8532715, -4.0848226, 0.0], [15.8532715, -4.0861924, 0.0], [15.8546448, -4.0861924, 0.0], [15.8546448, -4.0848226, 0.0], [15.8532715, -4.0848226, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2380}, "geometry": {"type": "Polygon", "coordinates": [[[15.8889771, -4.0848226, 0.0], [15.8889771, -4.0834528, 0.0], [15.8876038, -4.0834528, 0.0], [15.8876038, -4.0848226, 0.0], [15.8876038, -4.0861924, 0.0], [15.8889771, -4.0861924, 0.0], [15.8903503, -4.0861924, 0.0], [15.8903503, -4.0848226, 0.0], [15.8889771, -4.0848226, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2381}, "geometry": {"type": "Polygon", "coordinates": [[[15.7969666, -4.0834528, 0.0], [15.7969666, -4.0848226, 0.0], [15.7983398, -4.0848226, 0.0], [15.7983398, -4.0834528, 0.0], [15.7969666, -4.0834528, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2382}, "geometry": {"type": "Polygon", "coordinates": [[[15.5648804, -4.0834528, 0.0], [15.5648804, -4.082083, 0.0], [15.5635071, -4.082083, 0.0], [15.5635071, -4.0834528, 0.0], [15.5635071, -4.0848226, 0.0], [15.5648804, -4.0848226, 0.0], [15.5648804, -4.0834528, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2383}, "geometry": {"type": "Polygon", "coordinates": [[[15.5401611, -4.0834528, 0.0], [15.5415344, -4.0834528, 0.0], [15.5415344, -4.082083, 0.0], [15.5401611, -4.082083, 0.0], [15.5387878, -4.082083, 0.0], [15.5387878, -4.0834528, 0.0], [15.5387878, -4.0848226, 0.0], [15.5401611, -4.0848226, 0.0], [15.5401611, -4.0834528, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2384}, "geometry": {"type": "Polygon", "coordinates": [[[15.7489014, -4.0834528, 0.0], [15.7489014, -4.082083, 0.0], [15.7475281, -4.082083, 0.0], [15.7475281, -4.0834528, 0.0], [15.7475281, -4.0848226, 0.0], [15.7489014, -4.0848226, 0.0], [15.7489014, -4.0834528, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2385}, "geometry": {"type": "Polygon", "coordinates": [[[15.6307983, -4.082083, 0.0], [15.6307983, -4.0807132, 0.0], [15.629425, -4.0807132, 0.0], [15.629425, -4.082083, 0.0], [15.6280518, -4.082083, 0.0], [15.6280518, -4.0834528, 0.0], [15.629425, -4.0834528, 0.0], [15.6307983, -4.0834528, 0.0], [15.6307983, -4.082083, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2386}, "geometry": {"type": "Polygon", "coordinates": [[[15.7901001, -4.082083, 0.0], [15.7901001, -4.0834528, 0.0], [15.7914734, -4.0834528, 0.0], [15.7928467, -4.0834528, 0.0], [15.7928467, -4.082083, 0.0], [15.7914734, -4.082083, 0.0], [15.7901001, -4.082083, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2387}, "geometry": {"type": "Polygon", "coordinates": [[[15.8285522, -4.082083, 0.0], [15.8285522, -4.0807132, 0.0], [15.827179, -4.0807132, 0.0], [15.8258057, -4.0807132, 0.0], [15.8258057, -4.082083, 0.0], [15.827179, -4.082083, 0.0], [15.827179, -4.0834528, 0.0], [15.8285522, -4.0834528, 0.0], [15.8285522, -4.082083, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2388}, "geometry": {"type": "Polygon", "coordinates": [[[15.7997131, -4.082083, 0.0], [15.8010864, -4.082083, 0.0], [15.8024597, -4.082083, 0.0], [15.8024597, -4.0807132, 0.0], [15.803833, -4.0807132, 0.0], [15.803833, -4.0793433, 0.0], [15.8024597, -4.0793433, 0.0], [15.8010864, -4.0793433, 0.0], [15.7997131, -4.0793433, 0.0], [15.7983398, -4.0793433, 0.0], [15.7983398, -4.0807132, 0.0], [15.7969666, -4.0807132, 0.0], [15.7969666, -4.082083, 0.0], [15.7983398, -4.082083, 0.0], [15.7983398, -4.0834528, 0.0], [15.7997131, -4.0834528, 0.0], [15.7997131, -4.082083, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2389}, "geometry": {"type": "Polygon", "coordinates": [[[15.6541443, -4.082083, 0.0], [15.6541443, -4.0834528, 0.0], [15.6555176, -4.0834528, 0.0], [15.6555176, -4.082083, 0.0], [15.6541443, -4.082083, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2390}, "geometry": {"type": "Polygon", "coordinates": [[[15.6871033, -4.082083, 0.0], [15.6871033, -4.0834528, 0.0], [15.6884766, -4.0834528, 0.0], [15.6884766, -4.082083, 0.0], [15.6871033, -4.082083, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2391}, "geometry": {"type": "Polygon", "coordinates": [[[15.544281, -4.082083, 0.0], [15.544281, -4.0834528, 0.0], [15.5456543, -4.0834528, 0.0], [15.5456543, -4.082083, 0.0], [15.544281, -4.082083, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2392}, "geometry": {"type": "Polygon", "coordinates": [[[15.6513977, -4.082083, 0.0], [15.6513977, -4.0834528, 0.0], [15.652771, -4.0834528, 0.0], [15.652771, -4.082083, 0.0], [15.6513977, -4.082083, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2393}, "geometry": {"type": "Polygon", "coordinates": [[[15.5593872, -4.082083, 0.0], [15.5593872, -4.0807132, 0.0], [15.5580139, -4.0807132, 0.0], [15.5566406, -4.0807132, 0.0], [15.5552673, -4.0807132, 0.0], [15.5552673, -4.082083, 0.0], [15.5566406, -4.082083, 0.0], [15.5566406, -4.0834528, 0.0], [15.5580139, -4.0834528, 0.0], [15.5593872, -4.0834528, 0.0], [15.5593872, -4.082083, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2394}, "geometry": {"type": "Polygon", "coordinates": [[[15.8766174, -4.0807132, 0.0], [15.8766174, -4.082083, 0.0], [15.8779907, -4.082083, 0.0], [15.8779907, -4.0807132, 0.0], [15.8766174, -4.0807132, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2395}, "geometry": {"type": "Polygon", "coordinates": [[[15.8587646, -4.0807132, 0.0], [15.8587646, -4.082083, 0.0], [15.8601379, -4.082083, 0.0], [15.8601379, -4.0807132, 0.0], [15.8587646, -4.0807132, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2396}, "geometry": {"type": "Polygon", "coordinates": [[[15.6143188, -4.0807132, 0.0], [15.6143188, -4.082083, 0.0], [15.6156921, -4.082083, 0.0], [15.6156921, -4.0807132, 0.0], [15.6143188, -4.0807132, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2397}, "geometry": {"type": "Polygon", "coordinates": [[[15.6843567, -4.0807132, 0.0], [15.6843567, -4.082083, 0.0], [15.68573, -4.082083, 0.0], [15.68573, -4.0807132, 0.0], [15.6843567, -4.0807132, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2398}, "geometry": {"type": "Polygon", "coordinates": [[[15.6500244, -4.0807132, 0.0], [15.6500244, -4.082083, 0.0], [15.6513977, -4.082083, 0.0], [15.6513977, -4.0807132, 0.0], [15.6500244, -4.0807132, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2399}, "geometry": {"type": "Polygon", "coordinates": [[[15.7955933, -4.0807132, 0.0], [15.7969666, -4.0807132, 0.0], [15.7969666, -4.0793433, 0.0], [15.7955933, -4.0793433, 0.0], [15.79422, -4.0793433, 0.0], [15.7928467, -4.0793433, 0.0], [15.7928467, -4.0807132, 0.0], [15.79422, -4.0807132, 0.0], [15.79422, -4.082083, 0.0], [15.7955933, -4.082083, 0.0], [15.7955933, -4.0807132, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2400}, "geometry": {"type": "Polygon", "coordinates": [[[15.846405, -4.0807132, 0.0], [15.846405, -4.0793433, 0.0], [15.8450317, -4.0793433, 0.0], [15.8450317, -4.0807132, 0.0], [15.8450317, -4.082083, 0.0], [15.846405, -4.082083, 0.0], [15.846405, -4.0807132, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2401}, "geometry": {"type": "Polygon", "coordinates": [[[15.5401611, -4.0793433, 0.0], [15.5401611, -4.0807132, 0.0], [15.5415344, -4.0807132, 0.0], [15.5415344, -4.0793433, 0.0], [15.5401611, -4.0793433, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2402}, "geometry": {"type": "Polygon", "coordinates": [[[15.6994629, -4.0793433, 0.0], [15.6994629, -4.0779735, 0.0], [15.6980896, -4.0779735, 0.0], [15.6980896, -4.0793433, 0.0], [15.6980896, -4.0807132, 0.0], [15.6994629, -4.0807132, 0.0], [15.6994629, -4.0793433, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2403}, "geometry": {"type": "Polygon", "coordinates": [[[15.6692505, -4.0793433, 0.0], [15.6692505, -4.0807132, 0.0], [15.6706238, -4.0807132, 0.0], [15.6706238, -4.0793433, 0.0], [15.6692505, -4.0793433, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2404}, "geometry": {"type": "Polygon", "coordinates": [[[15.6459045, -4.0793433, 0.0], [15.6459045, -4.0807132, 0.0], [15.6472778, -4.0807132, 0.0], [15.6472778, -4.0793433, 0.0], [15.6459045, -4.0793433, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2405}, "geometry": {"type": "Polygon", "coordinates": [[[15.8944702, -4.0793433, 0.0], [15.8944702, -4.0807132, 0.0], [15.8958435, -4.0807132, 0.0], [15.8958435, -4.0793433, 0.0], [15.8944702, -4.0793433, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2406}, "geometry": {"type": "Polygon", "coordinates": [[[15.8821106, -4.0779735, 0.0], [15.8821106, -4.0793433, 0.0], [15.8834839, -4.0793433, 0.0], [15.8834839, -4.0779735, 0.0], [15.8821106, -4.0779735, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2407}, "geometry": {"type": "Polygon", "coordinates": [[[15.6376648, -4.0793433, 0.0], [15.6376648, -4.0807132, 0.0], [15.6390381, -4.0807132, 0.0], [15.6390381, -4.0793433, 0.0], [15.6376648, -4.0793433, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2408}, "geometry": {"type": "Polygon", "coordinates": [[[15.610199, -4.0793433, 0.0], [15.610199, -4.0807132, 0.0], [15.6115723, -4.0807132, 0.0], [15.6115723, -4.0793433, 0.0], [15.610199, -4.0793433, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2409}, "geometry": {"type": "Polygon", "coordinates": [[[15.6417847, -4.0779735, 0.0], [15.643158, -4.0779735, 0.0], [15.643158, -4.0766037, 0.0], [15.6417847, -4.0766037, 0.0], [15.6404114, -4.0766037, 0.0], [15.6404114, -4.0779735, 0.0], [15.6404114, -4.0793433, 0.0], [15.6417847, -4.0793433, 0.0], [15.6417847, -4.0779735, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2410}, "geometry": {"type": "Polygon", "coordinates": [[[15.6610107, -4.0779735, 0.0], [15.6610107, -4.0793433, 0.0], [15.662384, -4.0793433, 0.0], [15.662384, -4.0779735, 0.0], [15.6610107, -4.0779735, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2411}, "geometry": {"type": "Polygon", "coordinates": [[[15.6541443, -4.0779735, 0.0], [15.6541443, -4.0793433, 0.0], [15.6555176, -4.0793433, 0.0], [15.6555176, -4.0779735, 0.0], [15.6541443, -4.0779735, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2412}, "geometry": {"type": "Polygon", "coordinates": [[[15.5621338, -4.0779735, 0.0], [15.5621338, -4.0793433, 0.0], [15.5635071, -4.0793433, 0.0], [15.5635071, -4.0779735, 0.0], [15.5621338, -4.0779735, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2413}, "geometry": {"type": "Polygon", "coordinates": [[[15.7214355, -4.0779735, 0.0], [15.7214355, -4.0766037, 0.0], [15.7214355, -4.0752339, 0.0], [15.7200623, -4.0752339, 0.0], [15.7200623, -4.0766037, 0.0], [15.7200623, -4.0779735, 0.0], [15.7200623, -4.0793433, 0.0], [15.7214355, -4.0793433, 0.0], [15.7214355, -4.0779735, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2414}, "geometry": {"type": "Polygon", "coordinates": [[[15.7063293, -4.0766037, 0.0], [15.7063293, -4.0752339, 0.0], [15.7049561, -4.0752339, 0.0], [15.7035828, -4.0752339, 0.0], [15.7022095, -4.0752339, 0.0], [15.7008362, -4.0752339, 0.0], [15.7008362, -4.0766037, 0.0], [15.6994629, -4.0766037, 0.0], [15.6994629, -4.0779735, 0.0], [15.7008362, -4.0779735, 0.0], [15.7022095, -4.0779735, 0.0], [15.7022095, -4.0766037, 0.0], [15.7035828, -4.0766037, 0.0], [15.7049561, -4.0766037, 0.0], [15.7049561, -4.0779735, 0.0], [15.7063293, -4.0779735, 0.0], [15.7077026, -4.0779735, 0.0], [15.7077026, -4.0766037, 0.0], [15.7063293, -4.0766037, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2415}, "geometry": {"type": "Polygon", "coordinates": [[[15.8615112, -4.0766037, 0.0], [15.8601379, -4.0766037, 0.0], [15.8587646, -4.0766037, 0.0], [15.8587646, -4.0752339, 0.0], [15.8587646, -4.0738641, 0.0], [15.8573914, -4.0738641, 0.0], [15.8560181, -4.0738641, 0.0], [15.8546448, -4.0738641, 0.0], [15.8546448, -4.0752339, 0.0], [15.8560181, -4.0752339, 0.0], [15.8573914, -4.0752339, 0.0], [15.8573914, -4.0766037, 0.0], [15.8560181, -4.0766037, 0.0], [15.8546448, -4.0766037, 0.0], [15.8546448, -4.0779735, 0.0], [15.8560181, -4.0779735, 0.0], [15.8573914, -4.0779735, 0.0], [15.8587646, -4.0779735, 0.0], [15.8601379, -4.0779735, 0.0], [15.8615112, -4.0779735, 0.0], [15.8628845, -4.0779735, 0.0], [15.8642578, -4.0779735, 0.0], [15.8656311, -4.0779735, 0.0], [15.8670044, -4.0779735, 0.0], [15.8670044, -4.0766037, 0.0], [15.8656311, -4.0766037, 0.0], [15.8642578, -4.0766037, 0.0], [15.8628845, -4.0766037, 0.0], [15.8615112, -4.0766037, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2416}, "geometry": {"type": "Polygon", "coordinates": [[[15.6266785, -4.0766037, 0.0], [15.6266785, -4.0752339, 0.0], [15.6253052, -4.0752339, 0.0], [15.6253052, -4.0738641, 0.0], [15.6239319, -4.0738641, 0.0], [15.6239319, -4.0724943, 0.0], [15.6239319, -4.0711244, 0.0], [15.6225586, -4.0711244, 0.0], [15.6211853, -4.0711244, 0.0], [15.619812, -4.0711244, 0.0], [15.619812, -4.0724943, 0.0], [15.619812, -4.0738641, 0.0], [15.6211853, -4.0738641, 0.0], [15.6225586, -4.0738641, 0.0], [15.6225586, -4.0752339, 0.0], [15.6239319, -4.0752339, 0.0], [15.6239319, -4.0766037, 0.0], [15.6253052, -4.0766037, 0.0], [15.6253052, -4.0779735, 0.0], [15.6266785, -4.0779735, 0.0], [15.6266785, -4.0766037, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2417}, "geometry": {"type": "Polygon", "coordinates": [[[15.879364, -4.0766037, 0.0], [15.879364, -4.0779735, 0.0], [15.8807373, -4.0779735, 0.0], [15.8807373, -4.0766037, 0.0], [15.879364, -4.0766037, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2418}, "geometry": {"type": "Polygon", "coordinates": [[[15.8724976, -4.0766037, 0.0], [15.8711243, -4.0766037, 0.0], [15.869751, -4.0766037, 0.0], [15.869751, -4.0779735, 0.0], [15.8711243, -4.0779735, 0.0], [15.8724976, -4.0779735, 0.0], [15.8738708, -4.0779735, 0.0], [15.8738708, -4.0766037, 0.0], [15.8724976, -4.0766037, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2419}, "geometry": {"type": "Polygon", "coordinates": [[[15.6513977, -4.0766037, 0.0], [15.6513977, -4.0779735, 0.0], [15.652771, -4.0779735, 0.0], [15.652771, -4.0766037, 0.0], [15.6513977, -4.0766037, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2420}, "geometry": {"type": "Polygon", "coordinates": [[[15.5635071, -4.0766037, 0.0], [15.5635071, -4.0779735, 0.0], [15.5648804, -4.0779735, 0.0], [15.5648804, -4.0766037, 0.0], [15.5635071, -4.0766037, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2421}, "geometry": {"type": "Polygon", "coordinates": [[[15.8944702, -4.0766037, 0.0], [15.8944702, -4.0752339, 0.0], [15.8930969, -4.0752339, 0.0], [15.8917236, -4.0752339, 0.0], [15.8917236, -4.0766037, 0.0], [15.8930969, -4.0766037, 0.0], [15.8930969, -4.0779735, 0.0], [15.8944702, -4.0779735, 0.0], [15.8944702, -4.0766037, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2422}, "geometry": {"type": "Polygon", "coordinates": [[[15.6706238, -4.0752339, 0.0], [15.6706238, -4.0766037, 0.0], [15.6719971, -4.0766037, 0.0], [15.6719971, -4.0752339, 0.0], [15.6706238, -4.0752339, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2423}, "geometry": {"type": "Polygon", "coordinates": [[[15.6692505, -4.0752339, 0.0], [15.6706238, -4.0752339, 0.0], [15.6706238, -4.0738641, 0.0], [15.6692505, -4.0738641, 0.0], [15.6678772, -4.0738641, 0.0], [15.6678772, -4.0752339, 0.0], [15.6678772, -4.0766037, 0.0], [15.6692505, -4.0766037, 0.0], [15.6692505, -4.0752339, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2424}, "geometry": {"type": "Polygon", "coordinates": [[[15.6211853, -4.0752339, 0.0], [15.6211853, -4.0766037, 0.0], [15.6225586, -4.0766037, 0.0], [15.6225586, -4.0752339, 0.0], [15.6211853, -4.0752339, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2425}, "geometry": {"type": "Polygon", "coordinates": [[[15.5662537, -4.0752339, 0.0], [15.5662537, -4.0766037, 0.0], [15.567627, -4.0766037, 0.0], [15.567627, -4.0752339, 0.0], [15.5662537, -4.0752339, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2426}, "geometry": {"type": "Polygon", "coordinates": [[[15.6541443, -4.0752339, 0.0], [15.6541443, -4.0738641, 0.0], [15.652771, -4.0738641, 0.0], [15.652771, -4.0752339, 0.0], [15.652771, -4.0766037, 0.0], [15.6541443, -4.0766037, 0.0], [15.6555176, -4.0766037, 0.0], [15.6555176, -4.0752339, 0.0], [15.6541443, -4.0752339, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2427}, "geometry": {"type": "Polygon", "coordinates": [[[15.6802368, -4.0752339, 0.0], [15.6802368, -4.0738641, 0.0], [15.6802368, -4.0724943, 0.0], [15.6802368, -4.0711244, 0.0], [15.6788635, -4.0711244, 0.0], [15.6788635, -4.0724943, 0.0], [15.6774902, -4.0724943, 0.0], [15.6774902, -4.0738641, 0.0], [15.6788635, -4.0738641, 0.0], [15.6788635, -4.0752339, 0.0], [15.6788635, -4.0766037, 0.0], [15.6802368, -4.0766037, 0.0], [15.6802368, -4.0752339, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2428}, "geometry": {"type": "Polygon", "coordinates": [[[15.8093262, -4.0752339, 0.0], [15.8079529, -4.0752339, 0.0], [15.8079529, -4.0766037, 0.0], [15.8093262, -4.0766037, 0.0], [15.8106995, -4.0766037, 0.0], [15.8106995, -4.0752339, 0.0], [15.8093262, -4.0752339, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2429}, "geometry": {"type": "Polygon", "coordinates": [[[15.7351685, -4.0752339, 0.0], [15.7351685, -4.0766037, 0.0], [15.7365417, -4.0766037, 0.0], [15.7365417, -4.0752339, 0.0], [15.7351685, -4.0752339, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2430}, "geometry": {"type": "Polygon", "coordinates": [[[15.7255554, -4.0752339, 0.0], [15.7269287, -4.0752339, 0.0], [15.7269287, -4.0738641, 0.0], [15.7255554, -4.0738641, 0.0], [15.7241821, -4.0738641, 0.0], [15.7241821, -4.0752339, 0.0], [15.7241821, -4.0766037, 0.0], [15.7255554, -4.0766037, 0.0], [15.7255554, -4.0752339, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2431}, "geometry": {"type": "Polygon", "coordinates": [[[15.6637573, -4.0738641, 0.0], [15.662384, -4.0738641, 0.0], [15.662384, -4.0752339, 0.0], [15.6637573, -4.0752339, 0.0], [15.6651306, -4.0752339, 0.0], [15.6651306, -4.0738641, 0.0], [15.6637573, -4.0738641, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2432}, "geometry": {"type": "Polygon", "coordinates": [[[15.813446, -4.0738641, 0.0], [15.813446, -4.0724943, 0.0], [15.8120728, -4.0724943, 0.0], [15.8106995, -4.0724943, 0.0], [15.8106995, -4.0738641, 0.0], [15.8106995, -4.0752339, 0.0], [15.8120728, -4.0752339, 0.0], [15.813446, -4.0752339, 0.0], [15.813446, -4.0738641, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2433}, "geometry": {"type": "Polygon", "coordinates": [[[15.7846069, -4.0738641, 0.0], [15.7846069, -4.0752339, 0.0], [15.7859802, -4.0752339, 0.0], [15.7859802, -4.0738641, 0.0], [15.7846069, -4.0738641, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2434}, "geometry": {"type": "Polygon", "coordinates": [[[15.7131958, -4.0738641, 0.0], [15.7131958, -4.0724943, 0.0], [15.7118225, -4.0724943, 0.0], [15.7118225, -4.0738641, 0.0], [15.7118225, -4.0752339, 0.0], [15.7131958, -4.0752339, 0.0], [15.7131958, -4.0738641, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2435}, "geometry": {"type": "Polygon", "coordinates": [[[15.6967163, -4.0738641, 0.0], [15.6967163, -4.0724943, 0.0], [15.6967163, -4.0711244, 0.0], [15.695343, -4.0711244, 0.0], [15.695343, -4.0724943, 0.0], [15.6939697, -4.0724943, 0.0], [15.6939697, -4.0738641, 0.0], [15.695343, -4.0738641, 0.0], [15.695343, -4.0752339, 0.0], [15.6967163, -4.0752339, 0.0], [15.6980896, -4.0752339, 0.0], [15.6994629, -4.0752339, 0.0], [15.7008362, -4.0752339, 0.0], [15.7008362, -4.0738641, 0.0], [15.6994629, -4.0738641, 0.0], [15.6994629, -4.0724943, 0.0], [15.6980896, -4.0724943, 0.0], [15.6980896, -4.0738641, 0.0], [15.6967163, -4.0738641, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2436}, "geometry": {"type": "Polygon", "coordinates": [[[15.8615112, -4.0738641, 0.0], [15.8615112, -4.0752339, 0.0], [15.8628845, -4.0752339, 0.0], [15.8642578, -4.0752339, 0.0], [15.8656311, -4.0752339, 0.0], [15.8656311, -4.0738641, 0.0], [15.8642578, -4.0738641, 0.0], [15.8628845, -4.0738641, 0.0], [15.8615112, -4.0738641, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2437}, "geometry": {"type": "Polygon", "coordinates": [[[15.5813599, -4.0724943, 0.0], [15.5813599, -4.0738641, 0.0], [15.5827332, -4.0738641, 0.0], [15.5827332, -4.0724943, 0.0], [15.5813599, -4.0724943, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2438}, "geometry": {"type": "Polygon", "coordinates": [[[15.6651306, -4.0724943, 0.0], [15.6651306, -4.0738641, 0.0], [15.6665039, -4.0738641, 0.0], [15.6665039, -4.0724943, 0.0], [15.6651306, -4.0724943, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2439}, "geometry": {"type": "Polygon", "coordinates": [[[15.6829834, -4.0724943, 0.0], [15.6829834, -4.0711244, 0.0], [15.6829834, -4.0697546, 0.0], [15.6816101, -4.0697546, 0.0], [15.6816101, -4.0711244, 0.0], [15.6816101, -4.0724943, 0.0], [15.6816101, -4.0738641, 0.0], [15.6829834, -4.0738641, 0.0], [15.6843567, -4.0738641, 0.0], [15.6843567, -4.0724943, 0.0], [15.6829834, -4.0724943, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2440}, "geometry": {"type": "Polygon", "coordinates": [[[15.8972168, -4.0724943, 0.0], [15.8972168, -4.0738641, 0.0], [15.8985901, -4.0738641, 0.0], [15.8985901, -4.0724943, 0.0], [15.8972168, -4.0724943, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2441}, "geometry": {"type": "Polygon", "coordinates": [[[15.6610107, -4.0724943, 0.0], [15.6610107, -4.0711244, 0.0], [15.6596375, -4.0711244, 0.0], [15.6596375, -4.0724943, 0.0], [15.6596375, -4.0738641, 0.0], [15.6610107, -4.0738641, 0.0], [15.6610107, -4.0724943, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2442}, "geometry": {"type": "Polygon", "coordinates": [[[15.7392883, -4.0724943, 0.0], [15.7392883, -4.0738641, 0.0], [15.7406616, -4.0738641, 0.0], [15.7406616, -4.0724943, 0.0], [15.7392883, -4.0724943, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2443}, "geometry": {"type": "Polygon", "coordinates": [[[15.6486511, -4.0724943, 0.0], [15.6500244, -4.0724943, 0.0], [15.6500244, -4.0711244, 0.0], [15.6486511, -4.0711244, 0.0], [15.6472778, -4.0711244, 0.0], [15.6472778, -4.0724943, 0.0], [15.6472778, -4.0738641, 0.0], [15.6486511, -4.0738641, 0.0], [15.6486511, -4.0724943, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2444}, "geometry": {"type": "Polygon", "coordinates": [[[15.5662537, -4.0724943, 0.0], [15.5662537, -4.0738641, 0.0], [15.567627, -4.0738641, 0.0], [15.567627, -4.0724943, 0.0], [15.5662537, -4.0724943, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2445}, "geometry": {"type": "Polygon", "coordinates": [[[15.6678772, -4.0711244, 0.0], [15.6678772, -4.0697546, 0.0], [15.6665039, -4.0697546, 0.0], [15.6665039, -4.0711244, 0.0], [15.6665039, -4.0724943, 0.0], [15.6678772, -4.0724943, 0.0], [15.6692505, -4.0724943, 0.0], [15.6692505, -4.0711244, 0.0], [15.6678772, -4.0711244, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2446}, "geometry": {"type": "Polygon", "coordinates": [[[15.5731201, -4.0711244, 0.0], [15.5744934, -4.0711244, 0.0], [15.5758667, -4.0711244, 0.0], [15.5758667, -4.0697546, 0.0], [15.5744934, -4.0697546, 0.0], [15.5731201, -4.0697546, 0.0], [15.5731201, -4.0683848, 0.0], [15.5717468, -4.0683848, 0.0], [15.5717468, -4.0697546, 0.0], [15.5717468, -4.0711244, 0.0], [15.5717468, -4.0724943, 0.0], [15.5731201, -4.0724943, 0.0], [15.5731201, -4.0711244, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2447}, "geometry": {"type": "Polygon", "coordinates": [[[15.6568909, -4.0711244, 0.0], [15.6568909, -4.0697546, 0.0], [15.6555176, -4.0697546, 0.0], [15.6555176, -4.0683848, 0.0], [15.6541443, -4.0683848, 0.0], [15.6541443, -4.0697546, 0.0], [15.6541443, -4.0711244, 0.0], [15.6555176, -4.0711244, 0.0], [15.6555176, -4.0724943, 0.0], [15.6568909, -4.0724943, 0.0], [15.6568909, -4.0711244, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2448}, "geometry": {"type": "Polygon", "coordinates": [[[15.652771, -4.0711244, 0.0], [15.652771, -4.0724943, 0.0], [15.6541443, -4.0724943, 0.0], [15.6541443, -4.0711244, 0.0], [15.652771, -4.0711244, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2449}, "geometry": {"type": "Polygon", "coordinates": [[[15.8944702, -4.0711244, 0.0], [15.8958435, -4.0711244, 0.0], [15.8958435, -4.0697546, 0.0], [15.8944702, -4.0697546, 0.0], [15.8930969, -4.0697546, 0.0], [15.8917236, -4.0697546, 0.0], [15.8917236, -4.0711244, 0.0], [15.8917236, -4.0724943, 0.0], [15.8930969, -4.0724943, 0.0], [15.8944702, -4.0724943, 0.0], [15.8944702, -4.0711244, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2450}, "geometry": {"type": "Polygon", "coordinates": [[[15.8834839, -4.0711244, 0.0], [15.8834839, -4.0724943, 0.0], [15.8848572, -4.0724943, 0.0], [15.8848572, -4.0711244, 0.0], [15.8834839, -4.0711244, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2451}, "geometry": {"type": "Polygon", "coordinates": [[[15.7598877, -4.0711244, 0.0], [15.7598877, -4.0724943, 0.0], [15.761261, -4.0724943, 0.0], [15.761261, -4.0711244, 0.0], [15.7598877, -4.0711244, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2452}, "geometry": {"type": "Polygon", "coordinates": [[[15.7241821, -4.0711244, 0.0], [15.7241821, -4.0724943, 0.0], [15.7255554, -4.0724943, 0.0], [15.7255554, -4.0711244, 0.0], [15.7241821, -4.0711244, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2453}, "geometry": {"type": "Polygon", "coordinates": [[[15.7104492, -4.0711244, 0.0], [15.7104492, -4.0724943, 0.0], [15.7118225, -4.0724943, 0.0], [15.7118225, -4.0711244, 0.0], [15.7104492, -4.0711244, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2454}, "geometry": {"type": "Polygon", "coordinates": [[[15.8999634, -4.0697546, 0.0], [15.8999634, -4.0711244, 0.0], [15.9013367, -4.0711244, 0.0], [15.9013367, -4.0697546, 0.0], [15.8999634, -4.0697546, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2455}, "geometry": {"type": "Polygon", "coordinates": [[[15.7228088, -4.0697546, 0.0], [15.7228088, -4.0711244, 0.0], [15.7241821, -4.0711244, 0.0], [15.7241821, -4.0697546, 0.0], [15.7228088, -4.0697546, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2456}, "geometry": {"type": "Polygon", "coordinates": [[[15.6500244, -4.0697546, 0.0], [15.6500244, -4.0711244, 0.0], [15.6513977, -4.0711244, 0.0], [15.6513977, -4.0697546, 0.0], [15.6500244, -4.0697546, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2457}, "geometry": {"type": "Polygon", "coordinates": [[[15.5786133, -4.0697546, 0.0], [15.5786133, -4.0711244, 0.0], [15.5799866, -4.0711244, 0.0], [15.5799866, -4.0697546, 0.0], [15.5786133, -4.0697546, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2458}, "geometry": {"type": "Polygon", "coordinates": [[[15.662384, -4.0697546, 0.0], [15.662384, -4.0683848, 0.0], [15.6610107, -4.0683848, 0.0], [15.6596375, -4.0683848, 0.0], [15.6596375, -4.0670149, 0.0], [15.6582642, -4.0670149, 0.0], [15.6582642, -4.0683848, 0.0], [15.6582642, -4.0697546, 0.0], [15.6596375, -4.0697546, 0.0], [15.6610107, -4.0697546, 0.0], [15.6610107, -4.0711244, 0.0], [15.662384, -4.0711244, 0.0], [15.6637573, -4.0711244, 0.0], [15.6637573, -4.0697546, 0.0], [15.662384, -4.0697546, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2459}, "geometry": {"type": "Polygon", "coordinates": [[[15.7035828, -4.0697546, 0.0], [15.7035828, -4.0711244, 0.0], [15.7049561, -4.0711244, 0.0], [15.7049561, -4.0697546, 0.0], [15.7035828, -4.0697546, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2460}, "geometry": {"type": "Polygon", "coordinates": [[[15.6513977, -4.0683848, 0.0], [15.6513977, -4.0697546, 0.0], [15.652771, -4.0697546, 0.0], [15.652771, -4.0683848, 0.0], [15.6513977, -4.0683848, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2461}, "geometry": {"type": "Polygon", "coordinates": [[[15.7337952, -4.0683848, 0.0], [15.7337952, -4.0697546, 0.0], [15.7351685, -4.0697546, 0.0], [15.7365417, -4.0697546, 0.0], [15.7365417, -4.0683848, 0.0], [15.7365417, -4.0670149, 0.0], [15.7351685, -4.0670149, 0.0], [15.7351685, -4.0683848, 0.0], [15.7337952, -4.0683848, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2462}, "geometry": {"type": "Polygon", "coordinates": [[[15.8189392, -4.0683848, 0.0], [15.8189392, -4.0697546, 0.0], [15.8203125, -4.0697546, 0.0], [15.8203125, -4.0683848, 0.0], [15.8189392, -4.0683848, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2463}, "geometry": {"type": "Polygon", "coordinates": [[[15.619812, -4.0683848, 0.0], [15.619812, -4.0697546, 0.0], [15.6211853, -4.0697546, 0.0], [15.6211853, -4.0683848, 0.0], [15.619812, -4.0683848, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2464}, "geometry": {"type": "Polygon", "coordinates": [[[15.6843567, -4.0683848, 0.0], [15.68573, -4.0683848, 0.0], [15.68573, -4.0670149, 0.0], [15.68573, -4.0656451, 0.0], [15.6843567, -4.0656451, 0.0], [15.6843567, -4.0670149, 0.0], [15.6829834, -4.0670149, 0.0], [15.6829834, -4.0683848, 0.0], [15.6829834, -4.0697546, 0.0], [15.6843567, -4.0697546, 0.0], [15.6843567, -4.0683848, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2465}, "geometry": {"type": "Polygon", "coordinates": [[[15.7063293, -4.0683848, 0.0], [15.7063293, -4.0697546, 0.0], [15.7077026, -4.0697546, 0.0], [15.7077026, -4.0683848, 0.0], [15.7063293, -4.0683848, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2466}, "geometry": {"type": "Polygon", "coordinates": [[[15.6678772, -4.0683848, 0.0], [15.6678772, -4.0697546, 0.0], [15.6692505, -4.0697546, 0.0], [15.6692505, -4.0683848, 0.0], [15.6678772, -4.0683848, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2467}, "geometry": {"type": "Polygon", "coordinates": [[[15.8985901, -4.0670149, 0.0], [15.8985901, -4.0683848, 0.0], [15.8999634, -4.0683848, 0.0], [15.8999634, -4.0670149, 0.0], [15.8985901, -4.0670149, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2468}, "geometry": {"type": "Polygon", "coordinates": [[[15.8326721, -4.0670149, 0.0], [15.8326721, -4.0683848, 0.0], [15.8340454, -4.0683848, 0.0], [15.8340454, -4.0670149, 0.0], [15.8326721, -4.0670149, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2469}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.0670149, 0.0], [15.7557678, -4.0683848, 0.0], [15.7571411, -4.0683848, 0.0], [15.7571411, -4.0670149, 0.0], [15.7557678, -4.0670149, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2470}, "geometry": {"type": "Polygon", "coordinates": [[[15.90271, -4.0670149, 0.0], [15.90271, -4.0683848, 0.0], [15.9040833, -4.0683848, 0.0], [15.9040833, -4.0670149, 0.0], [15.90271, -4.0670149, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2471}, "geometry": {"type": "Polygon", "coordinates": [[[15.6665039, -4.0683848, 0.0], [15.6678772, -4.0683848, 0.0], [15.6678772, -4.0670149, 0.0], [15.6678772, -4.0656451, 0.0], [15.6665039, -4.0656451, 0.0], [15.6651306, -4.0656451, 0.0], [15.6651306, -4.0670149, 0.0], [15.6651306, -4.0683848, 0.0], [15.6665039, -4.0683848, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2472}, "geometry": {"type": "Polygon", "coordinates": [[[15.7241821, -4.0670149, 0.0], [15.7241821, -4.0683848, 0.0], [15.7255554, -4.0683848, 0.0], [15.7255554, -4.0670149, 0.0], [15.7241821, -4.0670149, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2473}, "geometry": {"type": "Polygon", "coordinates": [[[15.6747437, -4.0670149, 0.0], [15.6747437, -4.0683848, 0.0], [15.6761169, -4.0683848, 0.0], [15.6761169, -4.0670149, 0.0], [15.6747437, -4.0670149, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2474}, "geometry": {"type": "Polygon", "coordinates": [[[15.6719971, -4.0670149, 0.0], [15.6719971, -4.0656451, 0.0], [15.6706238, -4.0656451, 0.0], [15.6692505, -4.0656451, 0.0], [15.6692505, -4.0670149, 0.0], [15.6706238, -4.0670149, 0.0], [15.6706238, -4.0683848, 0.0], [15.6719971, -4.0683848, 0.0], [15.6719971, -4.0670149, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2475}, "geometry": {"type": "Polygon", "coordinates": [[[15.662384, -4.0656451, 0.0], [15.662384, -4.0670149, 0.0], [15.6637573, -4.0670149, 0.0], [15.6637573, -4.0656451, 0.0], [15.662384, -4.0656451, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2476}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -4.0656451, 0.0], [15.7530212, -4.0670149, 0.0], [15.7543945, -4.0670149, 0.0], [15.7543945, -4.0656451, 0.0], [15.7530212, -4.0656451, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2477}, "geometry": {"type": "Polygon", "coordinates": [[[15.7502747, -4.0656451, 0.0], [15.7502747, -4.0642753, 0.0], [15.7489014, -4.0642753, 0.0], [15.7475281, -4.0642753, 0.0], [15.7461548, -4.0642753, 0.0], [15.7461548, -4.0656451, 0.0], [15.7475281, -4.0656451, 0.0], [15.7475281, -4.0670149, 0.0], [15.7489014, -4.0670149, 0.0], [15.7502747, -4.0670149, 0.0], [15.7502747, -4.0656451, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2478}, "geometry": {"type": "Polygon", "coordinates": [[[15.7104492, -4.0656451, 0.0], [15.7090759, -4.0656451, 0.0], [15.7077026, -4.0656451, 0.0], [15.7077026, -4.0670149, 0.0], [15.7090759, -4.0670149, 0.0], [15.7104492, -4.0670149, 0.0], [15.7118225, -4.0670149, 0.0], [15.7118225, -4.0656451, 0.0], [15.7104492, -4.0656451, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2479}, "geometry": {"type": "Polygon", "coordinates": [[[15.6774902, -4.0656451, 0.0], [15.6761169, -4.0656451, 0.0], [15.6761169, -4.0670149, 0.0], [15.6774902, -4.0670149, 0.0], [15.6788635, -4.0670149, 0.0], [15.6788635, -4.0656451, 0.0], [15.6774902, -4.0656451, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2480}, "geometry": {"type": "Polygon", "coordinates": [[[15.6568909, -4.0642753, 0.0], [15.6568909, -4.0656451, 0.0], [15.6582642, -4.0656451, 0.0], [15.6582642, -4.0642753, 0.0], [15.6568909, -4.0642753, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2481}, "geometry": {"type": "Polygon", "coordinates": [[[15.6719971, -4.0642753, 0.0], [15.6719971, -4.0656451, 0.0], [15.6733704, -4.0656451, 0.0], [15.6733704, -4.0642753, 0.0], [15.6719971, -4.0642753, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2482}, "geometry": {"type": "Polygon", "coordinates": [[[15.6747437, -4.0642753, 0.0], [15.6747437, -4.0656451, 0.0], [15.6761169, -4.0656451, 0.0], [15.6761169, -4.0642753, 0.0], [15.6747437, -4.0642753, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2483}, "geometry": {"type": "Polygon", "coordinates": [[[15.6486511, -4.0642753, 0.0], [15.6472778, -4.0642753, 0.0], [15.6472778, -4.0656451, 0.0], [15.6486511, -4.0656451, 0.0], [15.6500244, -4.0656451, 0.0], [15.6500244, -4.0642753, 0.0], [15.6486511, -4.0642753, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2484}, "geometry": {"type": "Polygon", "coordinates": [[[15.8189392, -4.0642753, 0.0], [15.8175659, -4.0642753, 0.0], [15.8175659, -4.0656451, 0.0], [15.8189392, -4.0656451, 0.0], [15.8203125, -4.0656451, 0.0], [15.8203125, -4.0642753, 0.0], [15.8189392, -4.0642753, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2485}, "geometry": {"type": "Polygon", "coordinates": [[[15.8079529, -4.0642753, 0.0], [15.8079529, -4.0656451, 0.0], [15.8093262, -4.0656451, 0.0], [15.8093262, -4.0642753, 0.0], [15.8079529, -4.0642753, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2486}, "geometry": {"type": "Polygon", "coordinates": [[[15.761261, -4.0642753, 0.0], [15.761261, -4.0656451, 0.0], [15.7626343, -4.0656451, 0.0], [15.7626343, -4.0642753, 0.0], [15.761261, -4.0642753, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2487}, "geometry": {"type": "Polygon", "coordinates": [[[15.6651306, -4.0642753, 0.0], [15.6651306, -4.0629054, 0.0], [15.6637573, -4.0629054, 0.0], [15.6637573, -4.0642753, 0.0], [15.6637573, -4.0656451, 0.0], [15.6651306, -4.0656451, 0.0], [15.6651306, -4.0642753, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2488}, "geometry": {"type": "Polygon", "coordinates": [[[15.6871033, -4.0642753, 0.0], [15.6871033, -4.0656451, 0.0], [15.6884766, -4.0656451, 0.0], [15.6898499, -4.0656451, 0.0], [15.6912231, -4.0656451, 0.0], [15.6912231, -4.0642753, 0.0], [15.6898499, -4.0642753, 0.0], [15.6884766, -4.0642753, 0.0], [15.6871033, -4.0642753, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2489}, "geometry": {"type": "Polygon", "coordinates": [[[15.6678772, -4.0642753, 0.0], [15.6678772, -4.0656451, 0.0], [15.6692505, -4.0656451, 0.0], [15.6692505, -4.0642753, 0.0], [15.6678772, -4.0642753, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2490}, "geometry": {"type": "Polygon", "coordinates": [[[15.8985901, -4.0642753, 0.0], [15.8985901, -4.0656451, 0.0], [15.8999634, -4.0656451, 0.0], [15.8999634, -4.0642753, 0.0], [15.8985901, -4.0642753, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2491}, "geometry": {"type": "Polygon", "coordinates": [[[15.8848572, -4.0642753, 0.0], [15.8848572, -4.0656451, 0.0], [15.8862305, -4.0656451, 0.0], [15.8862305, -4.0642753, 0.0], [15.8848572, -4.0642753, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2492}, "geometry": {"type": "Polygon", "coordinates": [[[15.6829834, -4.0629054, 0.0], [15.6829834, -4.0615356, 0.0], [15.6829834, -4.0601658, 0.0], [15.6816101, -4.0601658, 0.0], [15.6816101, -4.0615356, 0.0], [15.6816101, -4.0629054, 0.0], [15.6816101, -4.0642753, 0.0], [15.6829834, -4.0642753, 0.0], [15.6829834, -4.0629054, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2493}, "geometry": {"type": "Polygon", "coordinates": [[[15.8216858, -4.0629054, 0.0], [15.8216858, -4.0642753, 0.0], [15.8230591, -4.0642753, 0.0], [15.8230591, -4.0629054, 0.0], [15.8216858, -4.0629054, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2494}, "geometry": {"type": "Polygon", "coordinates": [[[15.8491516, -4.0629054, 0.0], [15.8491516, -4.0642753, 0.0], [15.8505249, -4.0642753, 0.0], [15.8518982, -4.0642753, 0.0], [15.8518982, -4.0629054, 0.0], [15.8532715, -4.0629054, 0.0], [15.8532715, -4.0615356, 0.0], [15.8518982, -4.0615356, 0.0], [15.8505249, -4.0615356, 0.0], [15.8505249, -4.0629054, 0.0], [15.8491516, -4.0629054, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2495}, "geometry": {"type": "Polygon", "coordinates": [[[15.6665039, -4.0629054, 0.0], [15.6665039, -4.0642753, 0.0], [15.6678772, -4.0642753, 0.0], [15.6678772, -4.0629054, 0.0], [15.6665039, -4.0629054, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2496}, "geometry": {"type": "Polygon", "coordinates": [[[15.8670044, -4.0629054, 0.0], [15.8670044, -4.0642753, 0.0], [15.8683777, -4.0642753, 0.0], [15.8683777, -4.0629054, 0.0], [15.8670044, -4.0629054, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2497}, "geometry": {"type": "Polygon", "coordinates": [[[15.7365417, -4.0629054, 0.0], [15.7365417, -4.0642753, 0.0], [15.737915, -4.0642753, 0.0], [15.737915, -4.0629054, 0.0], [15.7365417, -4.0629054, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2498}, "geometry": {"type": "Polygon", "coordinates": [[[15.7557678, -4.0615356, 0.0], [15.7557678, -4.0629054, 0.0], [15.7571411, -4.0629054, 0.0], [15.7571411, -4.0615356, 0.0], [15.7557678, -4.0615356, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2499}, "geometry": {"type": "Polygon", "coordinates": [[[15.6733704, -4.0615356, 0.0], [15.6733704, -4.0629054, 0.0], [15.6747437, -4.0629054, 0.0], [15.6747437, -4.0615356, 0.0], [15.6733704, -4.0615356, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2500}, "geometry": {"type": "Polygon", "coordinates": [[[15.5882263, -4.0615356, 0.0], [15.5882263, -4.0629054, 0.0], [15.5895996, -4.0629054, 0.0], [15.5895996, -4.0615356, 0.0], [15.5882263, -4.0615356, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2501}, "geometry": {"type": "Polygon", "coordinates": [[[15.8203125, -4.0615356, 0.0], [15.8203125, -4.0629054, 0.0], [15.8216858, -4.0629054, 0.0], [15.8216858, -4.0615356, 0.0], [15.8203125, -4.0615356, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2502}, "geometry": {"type": "Polygon", "coordinates": [[[15.7392883, -4.0615356, 0.0], [15.7392883, -4.0629054, 0.0], [15.7406616, -4.0629054, 0.0], [15.7406616, -4.0615356, 0.0], [15.7392883, -4.0615356, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2503}, "geometry": {"type": "Polygon", "coordinates": [[[15.8848572, -4.0615356, 0.0], [15.8848572, -4.0629054, 0.0], [15.8862305, -4.0629054, 0.0], [15.8862305, -4.0615356, 0.0], [15.8848572, -4.0615356, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2504}, "geometry": {"type": "Polygon", "coordinates": [[[15.8093262, -4.0615356, 0.0], [15.8093262, -4.0629054, 0.0], [15.8106995, -4.0629054, 0.0], [15.8106995, -4.0615356, 0.0], [15.8093262, -4.0615356, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2505}, "geometry": {"type": "Polygon", "coordinates": [[[15.7653809, -4.0601658, 0.0], [15.7667542, -4.0601658, 0.0], [15.7667542, -4.0587959, 0.0], [15.7667542, -4.0574261, 0.0], [15.7653809, -4.0574261, 0.0], [15.7640076, -4.0574261, 0.0], [15.7640076, -4.0587959, 0.0], [15.7626343, -4.0587959, 0.0], [15.7626343, -4.0601658, 0.0], [15.7626343, -4.0615356, 0.0], [15.7640076, -4.0615356, 0.0], [15.7653809, -4.0615356, 0.0], [15.7653809, -4.0601658, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2506}, "geometry": {"type": "Polygon", "coordinates": [[[15.7447815, -4.0601658, 0.0], [15.7447815, -4.0615356, 0.0], [15.7461548, -4.0615356, 0.0], [15.7461548, -4.0601658, 0.0], [15.7447815, -4.0601658, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2507}, "geometry": {"type": "Polygon", "coordinates": [[[15.7104492, -4.0601658, 0.0], [15.7104492, -4.0615356, 0.0], [15.7118225, -4.0615356, 0.0], [15.7118225, -4.0601658, 0.0], [15.7104492, -4.0601658, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2508}, "geometry": {"type": "Polygon", "coordinates": [[[15.6692505, -4.0601658, 0.0], [15.6678772, -4.0601658, 0.0], [15.6678772, -4.0615356, 0.0], [15.6692505, -4.0615356, 0.0], [15.6706238, -4.0615356, 0.0], [15.6706238, -4.0601658, 0.0], [15.6692505, -4.0601658, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2509}, "geometry": {"type": "Polygon", "coordinates": [[[15.8175659, -4.0601658, 0.0], [15.8175659, -4.0587959, 0.0], [15.8161926, -4.0587959, 0.0], [15.8161926, -4.0601658, 0.0], [15.8161926, -4.0615356, 0.0], [15.8175659, -4.0615356, 0.0], [15.8175659, -4.0601658, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2510}, "geometry": {"type": "Polygon", "coordinates": [[[15.7434082, -4.0587959, 0.0], [15.7434082, -4.0601658, 0.0], [15.7447815, -4.0601658, 0.0], [15.7447815, -4.0587959, 0.0], [15.7434082, -4.0587959, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2511}, "geometry": {"type": "Polygon", "coordinates": [[[15.6967163, -4.0587959, 0.0], [15.695343, -4.0587959, 0.0], [15.695343, -4.0601658, 0.0], [15.6967163, -4.0601658, 0.0], [15.6980896, -4.0601658, 0.0], [15.6980896, -4.0587959, 0.0], [15.6967163, -4.0587959, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2512}, "geometry": {"type": "Polygon", "coordinates": [[[15.6719971, -4.0587959, 0.0], [15.6719971, -4.0574261, 0.0], [15.6706238, -4.0574261, 0.0], [15.6706238, -4.0560562, 0.0], [15.6706238, -4.0546864, 0.0], [15.6706238, -4.0533165, 0.0], [15.6692505, -4.0533165, 0.0], [15.6692505, -4.0546864, 0.0], [15.6692505, -4.0560562, 0.0], [15.6678772, -4.0560562, 0.0], [15.6678772, -4.0574261, 0.0], [15.6692505, -4.0574261, 0.0], [15.6692505, -4.0587959, 0.0], [15.6706238, -4.0587959, 0.0], [15.6706238, -4.0601658, 0.0], [15.6719971, -4.0601658, 0.0], [15.6719971, -4.0587959, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2513}, "geometry": {"type": "Polygon", "coordinates": [[[15.8299255, -4.0587959, 0.0], [15.8299255, -4.0574261, 0.0], [15.8285522, -4.0574261, 0.0], [15.827179, -4.0574261, 0.0], [15.827179, -4.0587959, 0.0], [15.827179, -4.0601658, 0.0], [15.8285522, -4.0601658, 0.0], [15.8299255, -4.0601658, 0.0], [15.8299255, -4.0587959, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2514}, "geometry": {"type": "Polygon", "coordinates": [[[15.8958435, -4.0587959, 0.0], [15.8958435, -4.0601658, 0.0], [15.8972168, -4.0601658, 0.0], [15.8972168, -4.0587959, 0.0], [15.8958435, -4.0587959, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2515}, "geometry": {"type": "Polygon", "coordinates": [[[15.8821106, -4.0587959, 0.0], [15.8821106, -4.0601658, 0.0], [15.8834839, -4.0601658, 0.0], [15.8834839, -4.0587959, 0.0], [15.8821106, -4.0587959, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2516}, "geometry": {"type": "Polygon", "coordinates": [[[15.8409119, -4.0587959, 0.0], [15.8409119, -4.0601658, 0.0], [15.8422852, -4.0601658, 0.0], [15.8422852, -4.0587959, 0.0], [15.8409119, -4.0587959, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2517}, "geometry": {"type": "Polygon", "coordinates": [[[15.8340454, -4.0587959, 0.0], [15.8340454, -4.0601658, 0.0], [15.8354187, -4.0601658, 0.0], [15.8354187, -4.0587959, 0.0], [15.8340454, -4.0587959, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2518}, "geometry": {"type": "Polygon", "coordinates": [[[15.7955933, -4.0574261, 0.0], [15.7955933, -4.0587959, 0.0], [15.7969666, -4.0587959, 0.0], [15.7969666, -4.0574261, 0.0], [15.7955933, -4.0574261, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2519}, "geometry": {"type": "Polygon", "coordinates": [[[15.8065796, -4.0574261, 0.0], [15.8065796, -4.0587959, 0.0], [15.8079529, -4.0587959, 0.0], [15.8079529, -4.0574261, 0.0], [15.8065796, -4.0574261, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2520}, "geometry": {"type": "Polygon", "coordinates": [[[15.6445312, -4.0574261, 0.0], [15.6445312, -4.0560562, 0.0], [15.643158, -4.0560562, 0.0], [15.643158, -4.0546864, 0.0], [15.6417847, -4.0546864, 0.0], [15.6417847, -4.0560562, 0.0], [15.6417847, -4.0574261, 0.0], [15.643158, -4.0574261, 0.0], [15.643158, -4.0587959, 0.0], [15.6445312, -4.0587959, 0.0], [15.6445312, -4.0574261, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2521}, "geometry": {"type": "Polygon", "coordinates": [[[15.8532715, -4.0574261, 0.0], [15.8518982, -4.0574261, 0.0], [15.8518982, -4.0587959, 0.0], [15.8532715, -4.0587959, 0.0], [15.8546448, -4.0587959, 0.0], [15.8546448, -4.0574261, 0.0], [15.8532715, -4.0574261, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2522}, "geometry": {"type": "Polygon", "coordinates": [[[15.7997131, -4.0574261, 0.0], [15.7997131, -4.0587959, 0.0], [15.8010864, -4.0587959, 0.0], [15.8010864, -4.0574261, 0.0], [15.7997131, -4.0574261, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2523}, "geometry": {"type": "Polygon", "coordinates": [[[15.6651306, -4.0574261, 0.0], [15.6651306, -4.0587959, 0.0], [15.6665039, -4.0587959, 0.0], [15.6665039, -4.0574261, 0.0], [15.6651306, -4.0574261, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2524}, "geometry": {"type": "Polygon", "coordinates": [[[15.9136963, -4.0560562, 0.0], [15.9136963, -4.0574261, 0.0], [15.9150696, -4.0574261, 0.0], [15.9150696, -4.0560562, 0.0], [15.9136963, -4.0560562, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2525}, "geometry": {"type": "Polygon", "coordinates": [[[15.6884766, -4.0560562, 0.0], [15.6884766, -4.0574261, 0.0], [15.6898499, -4.0574261, 0.0], [15.6912231, -4.0574261, 0.0], [15.6925964, -4.0574261, 0.0], [15.6939697, -4.0574261, 0.0], [15.6939697, -4.0560562, 0.0], [15.6925964, -4.0560562, 0.0], [15.6912231, -4.0560562, 0.0], [15.6898499, -4.0560562, 0.0], [15.6884766, -4.0560562, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2526}, "geometry": {"type": "Polygon", "coordinates": [[[15.5813599, -4.0560562, 0.0], [15.5813599, -4.0546864, 0.0], [15.5799866, -4.0546864, 0.0], [15.5786133, -4.0546864, 0.0], [15.5786133, -4.0560562, 0.0], [15.5799866, -4.0560562, 0.0], [15.5799866, -4.0574261, 0.0], [15.5813599, -4.0574261, 0.0], [15.5813599, -4.0560562, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2527}, "geometry": {"type": "Polygon", "coordinates": [[[15.5703735, -4.0560562, 0.0], [15.5703735, -4.0574261, 0.0], [15.5717468, -4.0574261, 0.0], [15.5717468, -4.0560562, 0.0], [15.5703735, -4.0560562, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2528}, "geometry": {"type": "Polygon", "coordinates": [[[15.803833, -4.0560562, 0.0], [15.803833, -4.0546864, 0.0], [15.8024597, -4.0546864, 0.0], [15.8010864, -4.0546864, 0.0], [15.8010864, -4.0560562, 0.0], [15.8010864, -4.0574261, 0.0], [15.8024597, -4.0574261, 0.0], [15.803833, -4.0574261, 0.0], [15.803833, -4.0560562, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2529}, "geometry": {"type": "Polygon", "coordinates": [[[15.6761169, -4.0546864, 0.0], [15.6761169, -4.0560562, 0.0], [15.6774902, -4.0560562, 0.0], [15.6774902, -4.0546864, 0.0], [15.6761169, -4.0546864, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2530}, "geometry": {"type": "Polygon", "coordinates": [[[15.8958435, -4.0533165, 0.0], [15.8944702, -4.0533165, 0.0], [15.8944702, -4.0546864, 0.0], [15.8958435, -4.0546864, 0.0], [15.8972168, -4.0546864, 0.0], [15.8972168, -4.0533165, 0.0], [15.8958435, -4.0533165, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2531}, "geometry": {"type": "Polygon", "coordinates": [[[15.6761169, -4.0533165, 0.0], [15.6761169, -4.0519466, 0.0], [15.6747437, -4.0519466, 0.0], [15.6747437, -4.0533165, 0.0], [15.6747437, -4.0546864, 0.0], [15.6761169, -4.0546864, 0.0], [15.6761169, -4.0533165, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2532}, "geometry": {"type": "Polygon", "coordinates": [[[15.8999634, -4.0519466, 0.0], [15.8999634, -4.0533165, 0.0], [15.9013367, -4.0533165, 0.0], [15.9013367, -4.0519466, 0.0], [15.8999634, -4.0519466, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2533}, "geometry": {"type": "Polygon", "coordinates": [[[15.68573, -4.0505768, 0.0], [15.68573, -4.0519466, 0.0], [15.6871033, -4.0519466, 0.0], [15.6871033, -4.0505768, 0.0], [15.68573, -4.0505768, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2534}, "geometry": {"type": "Polygon", "coordinates": [[[15.5786133, -4.0505768, 0.0], [15.5786133, -4.0519466, 0.0], [15.5799866, -4.0519466, 0.0], [15.5799866, -4.0505768, 0.0], [15.5786133, -4.0505768, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2535}, "geometry": {"type": "Polygon", "coordinates": [[[15.79422, -4.0505768, 0.0], [15.7928467, -4.0505768, 0.0], [15.7928467, -4.0519466, 0.0], [15.79422, -4.0519466, 0.0], [15.7955933, -4.0519466, 0.0], [15.7955933, -4.0505768, 0.0], [15.79422, -4.0505768, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2536}, "geometry": {"type": "Polygon", "coordinates": [[[15.8532715, -4.0505768, 0.0], [15.8518982, -4.0505768, 0.0], [15.8518982, -4.0519466, 0.0], [15.8532715, -4.0519466, 0.0], [15.8546448, -4.0519466, 0.0], [15.8546448, -4.0505768, 0.0], [15.8532715, -4.0505768, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2537}, "geometry": {"type": "Polygon", "coordinates": [[[15.869751, -4.0505768, 0.0], [15.869751, -4.0519466, 0.0], [15.8711243, -4.0519466, 0.0], [15.8711243, -4.0505768, 0.0], [15.869751, -4.0505768, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2538}, "geometry": {"type": "Polygon", "coordinates": [[[15.8999634, -4.0492069, 0.0], [15.8999634, -4.0478371, 0.0], [15.8999634, -4.0464672, 0.0], [15.8999634, -4.0450973, 0.0], [15.8985901, -4.0450973, 0.0], [15.8972168, -4.0450973, 0.0], [15.8972168, -4.0464672, 0.0], [15.8972168, -4.0478371, 0.0], [15.8972168, -4.0492069, 0.0], [15.8972168, -4.0505768, 0.0], [15.8985901, -4.0505768, 0.0], [15.8999634, -4.0505768, 0.0], [15.9013367, -4.0505768, 0.0], [15.9013367, -4.0492069, 0.0], [15.8999634, -4.0492069, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2539}, "geometry": {"type": "Polygon", "coordinates": [[[15.8821106, -4.0492069, 0.0], [15.8821106, -4.0505768, 0.0], [15.8834839, -4.0505768, 0.0], [15.8834839, -4.0492069, 0.0], [15.8821106, -4.0492069, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2540}, "geometry": {"type": "Polygon", "coordinates": [[[15.8573914, -4.0492069, 0.0], [15.8573914, -4.0478371, 0.0], [15.8573914, -4.0464672, 0.0], [15.8560181, -4.0464672, 0.0], [15.8546448, -4.0464672, 0.0], [15.8532715, -4.0464672, 0.0], [15.8532715, -4.0478371, 0.0], [15.8532715, -4.0492069, 0.0], [15.8546448, -4.0492069, 0.0], [15.8560181, -4.0492069, 0.0], [15.8560181, -4.0505768, 0.0], [15.8573914, -4.0505768, 0.0], [15.8573914, -4.0492069, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2541}, "geometry": {"type": "Polygon", "coordinates": [[[15.8711243, -4.0492069, 0.0], [15.8711243, -4.0505768, 0.0], [15.8724976, -4.0505768, 0.0], [15.8724976, -4.0492069, 0.0], [15.8711243, -4.0492069, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2542}, "geometry": {"type": "Polygon", "coordinates": [[[15.6404114, -4.0492069, 0.0], [15.6404114, -4.0478371, 0.0], [15.6390381, -4.0478371, 0.0], [15.6390381, -4.0492069, 0.0], [15.6390381, -4.0505768, 0.0], [15.6404114, -4.0505768, 0.0], [15.6404114, -4.0492069, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2543}, "geometry": {"type": "Polygon", "coordinates": [[[15.6843567, -4.0492069, 0.0], [15.68573, -4.0492069, 0.0], [15.68573, -4.0478371, 0.0], [15.6843567, -4.0478371, 0.0], [15.6829834, -4.0478371, 0.0], [15.6829834, -4.0492069, 0.0], [15.6816101, -4.0492069, 0.0], [15.6816101, -4.0505768, 0.0], [15.6829834, -4.0505768, 0.0], [15.6843567, -4.0505768, 0.0], [15.6843567, -4.0492069, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2544}, "geometry": {"type": "Polygon", "coordinates": [[[15.8340454, -4.0492069, 0.0], [15.8340454, -4.0505768, 0.0], [15.8354187, -4.0505768, 0.0], [15.8354187, -4.0492069, 0.0], [15.8340454, -4.0492069, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2545}, "geometry": {"type": "Polygon", "coordinates": [[[15.7296753, -4.0492069, 0.0], [15.7296753, -4.0505768, 0.0], [15.7310486, -4.0505768, 0.0], [15.7310486, -4.0492069, 0.0], [15.7296753, -4.0492069, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2546}, "geometry": {"type": "Polygon", "coordinates": [[[15.6884766, -4.0492069, 0.0], [15.6884766, -4.0505768, 0.0], [15.6898499, -4.0505768, 0.0], [15.6898499, -4.0492069, 0.0], [15.6884766, -4.0492069, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2547}, "geometry": {"type": "Polygon", "coordinates": [[[15.8587646, -4.0478371, 0.0], [15.8587646, -4.0492069, 0.0], [15.8601379, -4.0492069, 0.0], [15.8615112, -4.0492069, 0.0], [15.8615112, -4.0478371, 0.0], [15.8601379, -4.0478371, 0.0], [15.8587646, -4.0478371, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2548}, "geometry": {"type": "Polygon", "coordinates": [[[15.8175659, -4.0478371, 0.0], [15.8175659, -4.0492069, 0.0], [15.8189392, -4.0492069, 0.0], [15.8189392, -4.0478371, 0.0], [15.8175659, -4.0478371, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2549}, "geometry": {"type": "Polygon", "coordinates": [[[15.8106995, -4.0478371, 0.0], [15.8106995, -4.0492069, 0.0], [15.8120728, -4.0492069, 0.0], [15.8120728, -4.0478371, 0.0], [15.8106995, -4.0478371, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2550}, "geometry": {"type": "Polygon", "coordinates": [[[15.7434082, -4.0464672, 0.0], [15.7420349, -4.0464672, 0.0], [15.7420349, -4.0478371, 0.0], [15.7434082, -4.0478371, 0.0], [15.7447815, -4.0478371, 0.0], [15.7461548, -4.0478371, 0.0], [15.7461548, -4.0464672, 0.0], [15.7475281, -4.0464672, 0.0], [15.7475281, -4.0450973, 0.0], [15.7461548, -4.0450973, 0.0], [15.7447815, -4.0450973, 0.0], [15.7447815, -4.0464672, 0.0], [15.7434082, -4.0464672, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2551}, "geometry": {"type": "Polygon", "coordinates": [[[15.6733704, -4.0464672, 0.0], [15.6733704, -4.0478371, 0.0], [15.6747437, -4.0478371, 0.0], [15.6747437, -4.0464672, 0.0], [15.6733704, -4.0464672, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2552}, "geometry": {"type": "Polygon", "coordinates": [[[15.6349182, -4.0464672, 0.0], [15.6362915, -4.0464672, 0.0], [15.6362915, -4.0450973, 0.0], [15.6362915, -4.0437275, 0.0], [15.6362915, -4.0423576, 0.0], [15.6349182, -4.0423576, 0.0], [15.6349182, -4.0409877, 0.0], [15.6335449, -4.0409877, 0.0], [15.6321716, -4.0409877, 0.0], [15.6321716, -4.0423576, 0.0], [15.6335449, -4.0423576, 0.0], [15.6335449, -4.0437275, 0.0], [15.6335449, -4.0450973, 0.0], [15.6335449, -4.0464672, 0.0], [15.6335449, -4.0478371, 0.0], [15.6349182, -4.0478371, 0.0], [15.6349182, -4.0464672, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2553}, "geometry": {"type": "Polygon", "coordinates": [[[15.8189392, -4.0464672, 0.0], [15.8189392, -4.0478371, 0.0], [15.8203125, -4.0478371, 0.0], [15.8203125, -4.0464672, 0.0], [15.8189392, -4.0464672, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2554}, "geometry": {"type": "Polygon", "coordinates": [[[15.7955933, -4.0464672, 0.0], [15.7955933, -4.0478371, 0.0], [15.7969666, -4.0478371, 0.0], [15.7969666, -4.0464672, 0.0], [15.7955933, -4.0464672, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2555}, "geometry": {"type": "Polygon", "coordinates": [[[15.7269287, -4.0464672, 0.0], [15.7269287, -4.0478371, 0.0], [15.728302, -4.0478371, 0.0], [15.728302, -4.0464672, 0.0], [15.7269287, -4.0464672, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2556}, "geometry": {"type": "Polygon", "coordinates": [[[15.846405, -4.0450973, 0.0], [15.846405, -4.0464672, 0.0], [15.8477783, -4.0464672, 0.0], [15.8477783, -4.0450973, 0.0], [15.846405, -4.0450973, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2557}, "geometry": {"type": "Polygon", "coordinates": [[[15.8285522, -4.0450973, 0.0], [15.8285522, -4.0437275, 0.0], [15.827179, -4.0437275, 0.0], [15.827179, -4.0450973, 0.0], [15.827179, -4.0464672, 0.0], [15.8285522, -4.0464672, 0.0], [15.8285522, -4.0450973, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2558}, "geometry": {"type": "Polygon", "coordinates": [[[15.7200623, -4.0450973, 0.0], [15.7200623, -4.0464672, 0.0], [15.7214355, -4.0464672, 0.0], [15.7214355, -4.0450973, 0.0], [15.7200623, -4.0450973, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2559}, "geometry": {"type": "Polygon", "coordinates": [[[15.7489014, -4.0450973, 0.0], [15.7489014, -4.0464672, 0.0], [15.7502747, -4.0464672, 0.0], [15.7502747, -4.0450973, 0.0], [15.7489014, -4.0450973, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2560}, "geometry": {"type": "Polygon", "coordinates": [[[15.5758667, -4.0437275, 0.0], [15.5758667, -4.0423576, 0.0], [15.5744934, -4.0423576, 0.0], [15.5744934, -4.0437275, 0.0], [15.5731201, -4.0437275, 0.0], [15.5731201, -4.0450973, 0.0], [15.5744934, -4.0450973, 0.0], [15.5758667, -4.0450973, 0.0], [15.57724, -4.0450973, 0.0], [15.57724, -4.0437275, 0.0], [15.5758667, -4.0437275, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2561}, "geometry": {"type": "Polygon", "coordinates": [[[15.8106995, -4.0437275, 0.0], [15.8106995, -4.0450973, 0.0], [15.8120728, -4.0450973, 0.0], [15.8120728, -4.0437275, 0.0], [15.8106995, -4.0437275, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2562}, "geometry": {"type": "Polygon", "coordinates": [[[15.6939697, -4.0450973, 0.0], [15.6939697, -4.0437275, 0.0], [15.6925964, -4.0437275, 0.0], [15.6925964, -4.0450973, 0.0], [15.6925964, -4.0464672, 0.0], [15.6939697, -4.0464672, 0.0], [15.6939697, -4.0450973, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2563}, "geometry": {"type": "Polygon", "coordinates": [[[15.6898499, -4.0450973, 0.0], [15.6898499, -4.0464672, 0.0], [15.6912231, -4.0464672, 0.0], [15.6912231, -4.0450973, 0.0], [15.6898499, -4.0450973, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2564}, "geometry": {"type": "Polygon", "coordinates": [[[15.7983398, -4.0437275, 0.0], [15.7983398, -4.0450973, 0.0], [15.7997131, -4.0450973, 0.0], [15.7997131, -4.0437275, 0.0], [15.7983398, -4.0437275, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2565}, "geometry": {"type": "Polygon", "coordinates": [[[15.8560181, -4.0437275, 0.0], [15.8560181, -4.0423576, 0.0], [15.8546448, -4.0423576, 0.0], [15.8546448, -4.0437275, 0.0], [15.8546448, -4.0450973, 0.0], [15.8560181, -4.0450973, 0.0], [15.8560181, -4.0437275, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2566}, "geometry": {"type": "Polygon", "coordinates": [[[15.6665039, -4.0423576, 0.0], [15.6665039, -4.0409877, 0.0], [15.6651306, -4.0409877, 0.0], [15.6651306, -4.0423576, 0.0], [15.6651306, -4.0437275, 0.0], [15.6665039, -4.0437275, 0.0], [15.6678772, -4.0437275, 0.0], [15.6678772, -4.0423576, 0.0], [15.6665039, -4.0423576, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2567}, "geometry": {"type": "Polygon", "coordinates": [[[15.5813599, -4.0423576, 0.0], [15.5813599, -4.0409877, 0.0], [15.5799866, -4.0409877, 0.0], [15.5799866, -4.0396178, 0.0], [15.5813599, -4.0396178, 0.0], [15.5813599, -4.0382479, 0.0], [15.5799866, -4.0382479, 0.0], [15.5786133, -4.0382479, 0.0], [15.5786133, -4.0396178, 0.0], [15.57724, -4.0396178, 0.0], [15.57724, -4.0409877, 0.0], [15.57724, -4.0423576, 0.0], [15.5786133, -4.0423576, 0.0], [15.5799866, -4.0423576, 0.0], [15.5799866, -4.0437275, 0.0], [15.5813599, -4.0437275, 0.0], [15.5813599, -4.0423576, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2568}, "geometry": {"type": "Polygon", "coordinates": [[[15.8409119, -4.0423576, 0.0], [15.8409119, -4.0437275, 0.0], [15.8422852, -4.0437275, 0.0], [15.8422852, -4.0423576, 0.0], [15.8409119, -4.0423576, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2569}, "geometry": {"type": "Polygon", "coordinates": [[[15.90271, -4.0423576, 0.0], [15.90271, -4.0409877, 0.0], [15.9013367, -4.0409877, 0.0], [15.9013367, -4.0423576, 0.0], [15.8999634, -4.0423576, 0.0], [15.8999634, -4.0437275, 0.0], [15.9013367, -4.0437275, 0.0], [15.90271, -4.0437275, 0.0], [15.90271, -4.0423576, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2570}, "geometry": {"type": "Polygon", "coordinates": [[[15.8683777, -4.0423576, 0.0], [15.8683777, -4.0437275, 0.0], [15.869751, -4.0437275, 0.0], [15.869751, -4.0423576, 0.0], [15.8683777, -4.0423576, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2571}, "geometry": {"type": "Polygon", "coordinates": [[[15.7928467, -4.0423576, 0.0], [15.7928467, -4.0437275, 0.0], [15.79422, -4.0437275, 0.0], [15.79422, -4.0423576, 0.0], [15.7928467, -4.0423576, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2572}, "geometry": {"type": "Polygon", "coordinates": [[[15.6829834, -4.0409877, 0.0], [15.6829834, -4.0423576, 0.0], [15.6843567, -4.0423576, 0.0], [15.6843567, -4.0409877, 0.0], [15.6829834, -4.0409877, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2573}, "geometry": {"type": "Polygon", "coordinates": [[[15.7241821, -4.0409877, 0.0], [15.7228088, -4.0409877, 0.0], [15.7228088, -4.0423576, 0.0], [15.7241821, -4.0423576, 0.0], [15.7255554, -4.0423576, 0.0], [15.7255554, -4.0409877, 0.0], [15.7241821, -4.0409877, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2574}, "geometry": {"type": "Polygon", "coordinates": [[[15.7461548, -4.0423576, 0.0], [15.7461548, -4.0437275, 0.0], [15.7475281, -4.0437275, 0.0], [15.7475281, -4.0423576, 0.0], [15.7461548, -4.0423576, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2575}, "geometry": {"type": "Polygon", "coordinates": [[[15.7502747, -4.0423576, 0.0], [15.7502747, -4.0437275, 0.0], [15.7516479, -4.0437275, 0.0], [15.7516479, -4.0423576, 0.0], [15.7502747, -4.0423576, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2576}, "geometry": {"type": "Polygon", "coordinates": [[[15.8340454, -4.0409877, 0.0], [15.8340454, -4.0423576, 0.0], [15.8354187, -4.0423576, 0.0], [15.8354187, -4.0409877, 0.0], [15.8340454, -4.0409877, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2577}, "geometry": {"type": "Polygon", "coordinates": [[[15.836792, -4.0409877, 0.0], [15.836792, -4.0423576, 0.0], [15.8381653, -4.0423576, 0.0], [15.8381653, -4.0409877, 0.0], [15.836792, -4.0409877, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2578}, "geometry": {"type": "Polygon", "coordinates": [[[15.7104492, -4.0409877, 0.0], [15.7104492, -4.0423576, 0.0], [15.7118225, -4.0423576, 0.0], [15.7118225, -4.0409877, 0.0], [15.7104492, -4.0409877, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2579}, "geometry": {"type": "Polygon", "coordinates": [[[15.7571411, -4.0409877, 0.0], [15.7571411, -4.0423576, 0.0], [15.7585144, -4.0423576, 0.0], [15.7585144, -4.0409877, 0.0], [15.7571411, -4.0409877, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2580}, "geometry": {"type": "Polygon", "coordinates": [[[15.6761169, -4.0409877, 0.0], [15.6761169, -4.0423576, 0.0], [15.6774902, -4.0423576, 0.0], [15.6788635, -4.0423576, 0.0], [15.6788635, -4.0409877, 0.0], [15.6802368, -4.0409877, 0.0], [15.6802368, -4.0396178, 0.0], [15.6788635, -4.0396178, 0.0], [15.6774902, -4.0396178, 0.0], [15.6774902, -4.0409877, 0.0], [15.6761169, -4.0409877, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2581}, "geometry": {"type": "Polygon", "coordinates": [[[15.6719971, -4.0409877, 0.0], [15.6719971, -4.0396178, 0.0], [15.6706238, -4.0396178, 0.0], [15.6692505, -4.0396178, 0.0], [15.6678772, -4.0396178, 0.0], [15.6678772, -4.0409877, 0.0], [15.6678772, -4.0423576, 0.0], [15.6692505, -4.0423576, 0.0], [15.6706238, -4.0423576, 0.0], [15.6719971, -4.0423576, 0.0], [15.6733704, -4.0423576, 0.0], [15.6733704, -4.0409877, 0.0], [15.6719971, -4.0409877, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2582}, "geometry": {"type": "Polygon", "coordinates": [[[15.8079529, -4.0396178, 0.0], [15.8079529, -4.0409877, 0.0], [15.8093262, -4.0409877, 0.0], [15.8093262, -4.0396178, 0.0], [15.8079529, -4.0396178, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2583}, "geometry": {"type": "Polygon", "coordinates": [[[15.8161926, -4.0409877, 0.0], [15.8175659, -4.0409877, 0.0], [15.8189392, -4.0409877, 0.0], [15.8189392, -4.0396178, 0.0], [15.8189392, -4.0382479, 0.0], [15.8175659, -4.0382479, 0.0], [15.8161926, -4.0382479, 0.0], [15.8161926, -4.0368781, 0.0], [15.8148193, -4.0368781, 0.0], [15.813446, -4.0368781, 0.0], [15.813446, -4.0355082, 0.0], [15.8120728, -4.0355082, 0.0], [15.8120728, -4.0368781, 0.0], [15.8120728, -4.0382479, 0.0], [15.813446, -4.0382479, 0.0], [15.813446, -4.0396178, 0.0], [15.8148193, -4.0396178, 0.0], [15.8148193, -4.0409877, 0.0], [15.8161926, -4.0409877, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2584}, "geometry": {"type": "Polygon", "coordinates": [[[15.7077026, -4.0396178, 0.0], [15.7077026, -4.0409877, 0.0], [15.7090759, -4.0409877, 0.0], [15.7090759, -4.0396178, 0.0], [15.7077026, -4.0396178, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2585}, "geometry": {"type": "Polygon", "coordinates": [[[15.8216858, -4.0396178, 0.0], [15.8230591, -4.0396178, 0.0], [15.8244324, -4.0396178, 0.0], [15.8244324, -4.0382479, 0.0], [15.8230591, -4.0382479, 0.0], [15.8216858, -4.0382479, 0.0], [15.8203125, -4.0382479, 0.0], [15.8203125, -4.0396178, 0.0], [15.8203125, -4.0409877, 0.0], [15.8216858, -4.0409877, 0.0], [15.8216858, -4.0396178, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2586}, "geometry": {"type": "Polygon", "coordinates": [[[15.8711243, -4.0396178, 0.0], [15.8711243, -4.0382479, 0.0], [15.869751, -4.0382479, 0.0], [15.869751, -4.0396178, 0.0], [15.869751, -4.0409877, 0.0], [15.8711243, -4.0409877, 0.0], [15.8711243, -4.0396178, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2587}, "geometry": {"type": "Polygon", "coordinates": [[[15.7118225, -4.0382479, 0.0], [15.7118225, -4.0396178, 0.0], [15.7131958, -4.0396178, 0.0], [15.7131958, -4.0382479, 0.0], [15.7118225, -4.0382479, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2588}, "geometry": {"type": "Polygon", "coordinates": [[[15.7324219, -4.0368781, 0.0], [15.7324219, -4.0355082, 0.0], [15.7337952, -4.0355082, 0.0], [15.7337952, -4.0341383, 0.0], [15.7351685, -4.0341383, 0.0], [15.7351685, -4.0327684, 0.0], [15.7337952, -4.0327684, 0.0], [15.7337952, -4.0313985, 0.0], [15.7337952, -4.0300286, 0.0], [15.7324219, -4.0300286, 0.0], [15.7324219, -4.0286587, 0.0], [15.7310486, -4.0286587, 0.0], [15.7296753, -4.0286587, 0.0], [15.7296753, -4.0300286, 0.0], [15.728302, -4.0300286, 0.0], [15.728302, -4.0313985, 0.0], [15.7269287, -4.0313985, 0.0], [15.7269287, -4.0327684, 0.0], [15.7255554, -4.0327684, 0.0], [15.7255554, -4.0341383, 0.0], [15.7241821, -4.0341383, 0.0], [15.7241821, -4.0327684, 0.0], [15.7228088, -4.0327684, 0.0], [15.7228088, -4.0341383, 0.0], [15.7228088, -4.0355082, 0.0], [15.7228088, -4.0368781, 0.0], [15.7241821, -4.0368781, 0.0], [15.7241821, -4.0355082, 0.0], [15.7255554, -4.0355082, 0.0], [15.7255554, -4.0368781, 0.0], [15.7269287, -4.0368781, 0.0], [15.7269287, -4.0355082, 0.0], [15.728302, -4.0355082, 0.0], [15.7296753, -4.0355082, 0.0], [15.7296753, -4.0341383, 0.0], [15.7310486, -4.0341383, 0.0], [15.7310486, -4.0355082, 0.0], [15.7310486, -4.0368781, 0.0], [15.7310486, -4.0382479, 0.0], [15.7324219, -4.0382479, 0.0], [15.7337952, -4.0382479, 0.0], [15.7337952, -4.0368781, 0.0], [15.7324219, -4.0368781, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2589}, "geometry": {"type": "Polygon", "coordinates": [[[15.9082031, -4.0368781, 0.0], [15.9082031, -4.0382479, 0.0], [15.9095764, -4.0382479, 0.0], [15.9095764, -4.0368781, 0.0], [15.9082031, -4.0368781, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2590}, "geometry": {"type": "Polygon", "coordinates": [[[15.6335449, -4.0368781, 0.0], [15.6335449, -4.0355082, 0.0], [15.6321716, -4.0355082, 0.0], [15.6321716, -4.0368781, 0.0], [15.6321716, -4.0382479, 0.0], [15.6335449, -4.0382479, 0.0], [15.6335449, -4.0368781, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2591}, "geometry": {"type": "Polygon", "coordinates": [[[15.7598877, -4.0382479, 0.0], [15.761261, -4.0382479, 0.0], [15.761261, -4.0368781, 0.0], [15.761261, -4.0355082, 0.0], [15.761261, -4.0341383, 0.0], [15.7598877, -4.0341383, 0.0], [15.7585144, -4.0341383, 0.0], [15.7571411, -4.0341383, 0.0], [15.7571411, -4.0355082, 0.0], [15.7571411, -4.0368781, 0.0], [15.7585144, -4.0368781, 0.0], [15.7585144, -4.0382479, 0.0], [15.7585144, -4.0396178, 0.0], [15.7598877, -4.0396178, 0.0], [15.7598877, -4.0382479, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2592}, "geometry": {"type": "Polygon", "coordinates": [[[15.827179, -4.0368781, 0.0], [15.827179, -4.0355082, 0.0], [15.8258057, -4.0355082, 0.0], [15.8258057, -4.0368781, 0.0], [15.8258057, -4.0382479, 0.0], [15.827179, -4.0382479, 0.0], [15.827179, -4.0368781, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2593}, "geometry": {"type": "Polygon", "coordinates": [[[15.8285522, -4.0355082, 0.0], [15.8285522, -4.0368781, 0.0], [15.8299255, -4.0368781, 0.0], [15.8299255, -4.0355082, 0.0], [15.8285522, -4.0355082, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2594}, "geometry": {"type": "Polygon", "coordinates": [[[15.8422852, -4.0355082, 0.0], [15.8422852, -4.0341383, 0.0], [15.8436584, -4.0341383, 0.0], [15.8436584, -4.0327684, 0.0], [15.8436584, -4.0313985, 0.0], [15.8422852, -4.0313985, 0.0], [15.8409119, -4.0313985, 0.0], [15.8395386, -4.0313985, 0.0], [15.8395386, -4.0327684, 0.0], [15.8395386, -4.0341383, 0.0], [15.8409119, -4.0341383, 0.0], [15.8409119, -4.0355082, 0.0], [15.8409119, -4.0368781, 0.0], [15.8422852, -4.0368781, 0.0], [15.8422852, -4.0355082, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2595}, "geometry": {"type": "Polygon", "coordinates": [[[15.8436584, -4.0355082, 0.0], [15.8436584, -4.0368781, 0.0], [15.8450317, -4.0368781, 0.0], [15.8450317, -4.0355082, 0.0], [15.8436584, -4.0355082, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2596}, "geometry": {"type": "Polygon", "coordinates": [[[15.8642578, -4.0355082, 0.0], [15.8642578, -4.0368781, 0.0], [15.8656311, -4.0368781, 0.0], [15.8656311, -4.0355082, 0.0], [15.8642578, -4.0355082, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2597}, "geometry": {"type": "Polygon", "coordinates": [[[15.7447815, -4.0355082, 0.0], [15.7447815, -4.0368781, 0.0], [15.7461548, -4.0368781, 0.0], [15.7461548, -4.0355082, 0.0], [15.7447815, -4.0355082, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2598}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -4.0355082, 0.0], [15.7543945, -4.0355082, 0.0], [15.7557678, -4.0355082, 0.0], [15.7557678, -4.0341383, 0.0], [15.7543945, -4.0341383, 0.0], [15.7530212, -4.0341383, 0.0], [15.7516479, -4.0341383, 0.0], [15.7516479, -4.0355082, 0.0], [15.7516479, -4.0368781, 0.0], [15.7530212, -4.0368781, 0.0], [15.7530212, -4.0355082, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2599}, "geometry": {"type": "Polygon", "coordinates": [[[15.770874, -4.0341383, 0.0], [15.770874, -4.0355082, 0.0], [15.7722473, -4.0355082, 0.0], [15.7722473, -4.0341383, 0.0], [15.770874, -4.0341383, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2600}, "geometry": {"type": "Polygon", "coordinates": [[[15.7200623, -4.0341383, 0.0], [15.7200623, -4.0355082, 0.0], [15.7214355, -4.0355082, 0.0], [15.7214355, -4.0341383, 0.0], [15.7200623, -4.0341383, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2601}, "geometry": {"type": "Polygon", "coordinates": [[[15.7667542, -4.0341383, 0.0], [15.7667542, -4.0355082, 0.0], [15.7681274, -4.0355082, 0.0], [15.7681274, -4.0341383, 0.0], [15.7667542, -4.0341383, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2602}, "geometry": {"type": "Polygon", "coordinates": [[[15.6871033, -4.0327684, 0.0], [15.6871033, -4.0341383, 0.0], [15.6884766, -4.0341383, 0.0], [15.6884766, -4.0327684, 0.0], [15.6871033, -4.0327684, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2603}, "geometry": {"type": "Polygon", "coordinates": [[[15.5923462, -4.0327684, 0.0], [15.5923462, -4.0341383, 0.0], [15.5937195, -4.0341383, 0.0], [15.5937195, -4.0327684, 0.0], [15.5923462, -4.0327684, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2604}, "geometry": {"type": "Polygon", "coordinates": [[[15.6939697, -4.0327684, 0.0], [15.6939697, -4.0341383, 0.0], [15.695343, -4.0341383, 0.0], [15.695343, -4.0327684, 0.0], [15.6939697, -4.0327684, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2605}, "geometry": {"type": "Polygon", "coordinates": [[[15.8354187, -4.0327684, 0.0], [15.8354187, -4.0341383, 0.0], [15.836792, -4.0341383, 0.0], [15.836792, -4.0327684, 0.0], [15.8354187, -4.0327684, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2606}, "geometry": {"type": "Polygon", "coordinates": [[[15.8203125, -4.0327684, 0.0], [15.8203125, -4.0341383, 0.0], [15.8216858, -4.0341383, 0.0], [15.8216858, -4.0327684, 0.0], [15.8203125, -4.0327684, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2607}, "geometry": {"type": "Polygon", "coordinates": [[[15.7502747, -4.0327684, 0.0], [15.7502747, -4.0341383, 0.0], [15.7516479, -4.0341383, 0.0], [15.7516479, -4.0327684, 0.0], [15.7502747, -4.0327684, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2608}, "geometry": {"type": "Polygon", "coordinates": [[[15.7392883, -4.0327684, 0.0], [15.7392883, -4.0341383, 0.0], [15.7406616, -4.0341383, 0.0], [15.7406616, -4.0327684, 0.0], [15.7392883, -4.0327684, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2609}, "geometry": {"type": "Polygon", "coordinates": [[[15.8724976, -4.0313985, 0.0], [15.8724976, -4.0327684, 0.0], [15.8738708, -4.0327684, 0.0], [15.8752441, -4.0327684, 0.0], [15.8752441, -4.0313985, 0.0], [15.8752441, -4.0300286, 0.0], [15.8738708, -4.0300286, 0.0], [15.8738708, -4.0313985, 0.0], [15.8724976, -4.0313985, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2610}, "geometry": {"type": "Polygon", "coordinates": [[[15.8573914, -4.0313985, 0.0], [15.8573914, -4.0327684, 0.0], [15.8587646, -4.0327684, 0.0], [15.8587646, -4.0313985, 0.0], [15.8573914, -4.0313985, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2611}, "geometry": {"type": "Polygon", "coordinates": [[[15.9178162, -4.0313985, 0.0], [15.9178162, -4.0327684, 0.0], [15.9191895, -4.0327684, 0.0], [15.9191895, -4.0313985, 0.0], [15.9178162, -4.0313985, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2612}, "geometry": {"type": "Polygon", "coordinates": [[[15.8876038, -4.0313985, 0.0], [15.8876038, -4.0327684, 0.0], [15.8889771, -4.0327684, 0.0], [15.8903503, -4.0327684, 0.0], [15.8903503, -4.0313985, 0.0], [15.8889771, -4.0313985, 0.0], [15.8876038, -4.0313985, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2613}, "geometry": {"type": "Polygon", "coordinates": [[[15.662384, -4.0313985, 0.0], [15.662384, -4.0327684, 0.0], [15.6637573, -4.0327684, 0.0], [15.6637573, -4.0313985, 0.0], [15.662384, -4.0313985, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2614}, "geometry": {"type": "Polygon", "coordinates": [[[15.7653809, -4.0313985, 0.0], [15.7653809, -4.0327684, 0.0], [15.7667542, -4.0327684, 0.0], [15.7667542, -4.0313985, 0.0], [15.7653809, -4.0313985, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2615}, "geometry": {"type": "Polygon", "coordinates": [[[15.8848572, -4.0300286, 0.0], [15.8834839, -4.0300286, 0.0], [15.8834839, -4.0313985, 0.0], [15.8848572, -4.0313985, 0.0], [15.8862305, -4.0313985, 0.0], [15.8862305, -4.0300286, 0.0], [15.8848572, -4.0300286, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2616}, "geometry": {"type": "Polygon", "coordinates": [[[15.6994629, -4.0313985, 0.0], [15.7008362, -4.0313985, 0.0], [15.7008362, -4.0300286, 0.0], [15.7008362, -4.0286587, 0.0], [15.6994629, -4.0286587, 0.0], [15.6980896, -4.0286587, 0.0], [15.6967163, -4.0286587, 0.0], [15.6967163, -4.0300286, 0.0], [15.6980896, -4.0300286, 0.0], [15.6980896, -4.0313985, 0.0], [15.6994629, -4.0313985, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2617}, "geometry": {"type": "Polygon", "coordinates": [[[15.6019592, -4.0300286, 0.0], [15.6005859, -4.0300286, 0.0], [15.6005859, -4.0313985, 0.0], [15.6019592, -4.0313985, 0.0], [15.6033325, -4.0313985, 0.0], [15.6033325, -4.0300286, 0.0], [15.6019592, -4.0300286, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2618}, "geometry": {"type": "Polygon", "coordinates": [[[15.5978394, -4.0300286, 0.0], [15.5978394, -4.0313985, 0.0], [15.5992126, -4.0313985, 0.0], [15.5992126, -4.0300286, 0.0], [15.5978394, -4.0300286, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2619}, "geometry": {"type": "Polygon", "coordinates": [[[15.7131958, -4.0300286, 0.0], [15.7131958, -4.0286587, 0.0], [15.7118225, -4.0286587, 0.0], [15.7118225, -4.0300286, 0.0], [15.7118225, -4.0313985, 0.0], [15.7131958, -4.0313985, 0.0], [15.7131958, -4.0300286, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2620}, "geometry": {"type": "Polygon", "coordinates": [[[15.879364, -4.0286587, 0.0], [15.879364, -4.0300286, 0.0], [15.8807373, -4.0300286, 0.0], [15.8807373, -4.0286587, 0.0], [15.879364, -4.0286587, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2621}, "geometry": {"type": "Polygon", "coordinates": [[[15.8052063, -4.0286587, 0.0], [15.8052063, -4.0300286, 0.0], [15.8065796, -4.0300286, 0.0], [15.8065796, -4.0286587, 0.0], [15.8052063, -4.0286587, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2622}, "geometry": {"type": "Polygon", "coordinates": [[[15.5992126, -4.0286587, 0.0], [15.5992126, -4.0300286, 0.0], [15.6005859, -4.0300286, 0.0], [15.6005859, -4.0286587, 0.0], [15.5992126, -4.0286587, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2623}, "geometry": {"type": "Polygon", "coordinates": [[[15.9370422, -4.0272888, 0.0], [15.9370422, -4.0286587, 0.0], [15.9384155, -4.0286587, 0.0], [15.9384155, -4.0272888, 0.0], [15.9370422, -4.0272888, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2624}, "geometry": {"type": "Polygon", "coordinates": [[[15.9288025, -4.0259189, 0.0], [15.9288025, -4.024549, 0.0], [15.9274292, -4.024549, 0.0], [15.9260559, -4.024549, 0.0], [15.9260559, -4.0259189, 0.0], [15.9260559, -4.0272888, 0.0], [15.9274292, -4.0272888, 0.0], [15.9288025, -4.0272888, 0.0], [15.9288025, -4.0259189, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2625}, "geometry": {"type": "Polygon", "coordinates": [[[15.6967163, -4.0259189, 0.0], [15.6967163, -4.0272888, 0.0], [15.6980896, -4.0272888, 0.0], [15.6994629, -4.0272888, 0.0], [15.6994629, -4.0259189, 0.0], [15.6980896, -4.0259189, 0.0], [15.6967163, -4.0259189, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2626}, "geometry": {"type": "Polygon", "coordinates": [[[15.6925964, -4.0286587, 0.0], [15.6925964, -4.0300286, 0.0], [15.6939697, -4.0300286, 0.0], [15.6939697, -4.0286587, 0.0], [15.6925964, -4.0286587, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2627}, "geometry": {"type": "Polygon", "coordinates": [[[15.6637573, -4.0286587, 0.0], [15.6637573, -4.0300286, 0.0], [15.6651306, -4.0300286, 0.0], [15.6651306, -4.0286587, 0.0], [15.6637573, -4.0286587, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2628}, "geometry": {"type": "Polygon", "coordinates": [[[15.6047058, -4.0272888, 0.0], [15.6033325, -4.0272888, 0.0], [15.6033325, -4.0286587, 0.0], [15.6047058, -4.0286587, 0.0], [15.6060791, -4.0286587, 0.0], [15.6060791, -4.0272888, 0.0], [15.6047058, -4.0272888, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2629}, "geometry": {"type": "Polygon", "coordinates": [[[15.7104492, -4.0272888, 0.0], [15.7104492, -4.0286587, 0.0], [15.7118225, -4.0286587, 0.0], [15.7118225, -4.0272888, 0.0], [15.7104492, -4.0272888, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2630}, "geometry": {"type": "Polygon", "coordinates": [[[15.7255554, -4.0272888, 0.0], [15.7255554, -4.0259189, 0.0], [15.7241821, -4.0259189, 0.0], [15.7241821, -4.0272888, 0.0], [15.7241821, -4.0286587, 0.0], [15.7255554, -4.0286587, 0.0], [15.7255554, -4.0272888, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2631}, "geometry": {"type": "Polygon", "coordinates": [[[15.6170654, -4.024549, 0.0], [15.6170654, -4.0259189, 0.0], [15.6184387, -4.0259189, 0.0], [15.6184387, -4.024549, 0.0], [15.6170654, -4.024549, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2632}, "geometry": {"type": "Polygon", "coordinates": [[[15.6143188, -4.024549, 0.0], [15.6143188, -4.0259189, 0.0], [15.6156921, -4.0259189, 0.0], [15.6156921, -4.024549, 0.0], [15.6143188, -4.024549, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2633}, "geometry": {"type": "Polygon", "coordinates": [[[15.6211853, -4.024549, 0.0], [15.6211853, -4.0259189, 0.0], [15.6225586, -4.0259189, 0.0], [15.6225586, -4.024549, 0.0], [15.6211853, -4.024549, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2634}, "geometry": {"type": "Polygon", "coordinates": [[[15.8642578, -4.024549, 0.0], [15.8642578, -4.0259189, 0.0], [15.8656311, -4.0259189, 0.0], [15.8656311, -4.024549, 0.0], [15.8642578, -4.024549, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2635}, "geometry": {"type": "Polygon", "coordinates": [[[15.6239319, -4.0231791, 0.0], [15.6239319, -4.024549, 0.0], [15.6253052, -4.024549, 0.0], [15.6253052, -4.0231791, 0.0], [15.6239319, -4.0231791, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2636}, "geometry": {"type": "Polygon", "coordinates": [[[15.8573914, -4.0231791, 0.0], [15.8573914, -4.024549, 0.0], [15.8587646, -4.024549, 0.0], [15.8587646, -4.0231791, 0.0], [15.8573914, -4.0231791, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2637}, "geometry": {"type": "Polygon", "coordinates": [[[15.8216858, -4.0231791, 0.0], [15.8216858, -4.024549, 0.0], [15.8230591, -4.024549, 0.0], [15.8230591, -4.0231791, 0.0], [15.8216858, -4.0231791, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2638}, "geometry": {"type": "Polygon", "coordinates": [[[15.6678772, -4.0231791, 0.0], [15.6678772, -4.024549, 0.0], [15.6692505, -4.024549, 0.0], [15.6692505, -4.0231791, 0.0], [15.6678772, -4.0231791, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2639}, "geometry": {"type": "Polygon", "coordinates": [[[15.6596375, -4.0231791, 0.0], [15.6596375, -4.024549, 0.0], [15.6610107, -4.024549, 0.0], [15.6610107, -4.0231791, 0.0], [15.6596375, -4.0231791, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2640}, "geometry": {"type": "Polygon", "coordinates": [[[15.8930969, -4.0190694, 0.0], [15.8930969, -4.0204393, 0.0], [15.8944702, -4.0204393, 0.0], [15.8944702, -4.0190694, 0.0], [15.8930969, -4.0190694, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2641}, "geometry": {"type": "Polygon", "coordinates": [[[15.9150696, -4.0149596, 0.0], [15.9150696, -4.0135897, 0.0], [15.9136963, -4.0135897, 0.0], [15.9136963, -4.0149596, 0.0], [15.9136963, -4.0163295, 0.0], [15.9150696, -4.0163295, 0.0], [15.9150696, -4.0149596, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2642}, "geometry": {"type": "Polygon", "coordinates": [[[15.8203125, -4.0149596, 0.0], [15.8203125, -4.0163295, 0.0], [15.8216858, -4.0163295, 0.0], [15.8216858, -4.0149596, 0.0], [15.8203125, -4.0149596, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2643}, "geometry": {"type": "Polygon", "coordinates": [[[15.8615112, -4.0149596, 0.0], [15.8615112, -4.0135897, 0.0], [15.8601379, -4.0135897, 0.0], [15.8601379, -4.0149596, 0.0], [15.8601379, -4.0163295, 0.0], [15.8615112, -4.0163295, 0.0], [15.8615112, -4.0149596, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2644}, "geometry": {"type": "Polygon", "coordinates": [[[15.8683777, -4.0190694, 0.0], [15.8683777, -4.0176995, 0.0], [15.8670044, -4.0176995, 0.0], [15.8656311, -4.0176995, 0.0], [15.8656311, -4.0190694, 0.0], [15.8656311, -4.0204393, 0.0], [15.8670044, -4.0204393, 0.0], [15.8683777, -4.0204393, 0.0], [15.8683777, -4.0190694, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2645}, "geometry": {"type": "Polygon", "coordinates": [[[15.8299255, -4.0176995, 0.0], [15.8299255, -4.0190694, 0.0], [15.8312988, -4.0190694, 0.0], [15.8312988, -4.0176995, 0.0], [15.8299255, -4.0176995, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2646}, "geometry": {"type": "Polygon", "coordinates": [[[15.6362915, -4.0176995, 0.0], [15.6362915, -4.0190694, 0.0], [15.6376648, -4.0190694, 0.0], [15.6376648, -4.0176995, 0.0], [15.6362915, -4.0176995, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2647}, "geometry": {"type": "Polygon", "coordinates": [[[15.8862305, -4.0163295, 0.0], [15.8862305, -4.0176995, 0.0], [15.8876038, -4.0176995, 0.0], [15.8876038, -4.0163295, 0.0], [15.8862305, -4.0163295, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2648}, "geometry": {"type": "Polygon", "coordinates": [[[15.6376648, -4.0163295, 0.0], [15.6376648, -4.0176995, 0.0], [15.6390381, -4.0176995, 0.0], [15.6390381, -4.0163295, 0.0], [15.6376648, -4.0163295, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2649}, "geometry": {"type": "Polygon", "coordinates": [[[15.6459045, -4.0163295, 0.0], [15.6459045, -4.0149596, 0.0], [15.6445312, -4.0149596, 0.0], [15.6445312, -4.0135897, 0.0], [15.643158, -4.0135897, 0.0], [15.6417847, -4.0135897, 0.0], [15.6417847, -4.0149596, 0.0], [15.6404114, -4.0149596, 0.0], [15.6404114, -4.0163295, 0.0], [15.6417847, -4.0163295, 0.0], [15.643158, -4.0163295, 0.0], [15.643158, -4.0176995, 0.0], [15.6445312, -4.0176995, 0.0], [15.6459045, -4.0176995, 0.0], [15.6459045, -4.0163295, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2650}, "geometry": {"type": "Polygon", "coordinates": [[[15.7104492, -4.0135897, 0.0], [15.7104492, -4.0149596, 0.0], [15.7118225, -4.0149596, 0.0], [15.7118225, -4.0135897, 0.0], [15.7104492, -4.0135897, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2651}, "geometry": {"type": "Polygon", "coordinates": [[[15.6486511, -4.0135897, 0.0], [15.6486511, -4.0149596, 0.0], [15.6500244, -4.0149596, 0.0], [15.6500244, -4.0135897, 0.0], [15.6486511, -4.0135897, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2652}, "geometry": {"type": "Polygon", "coordinates": [[[15.8917236, -4.0135897, 0.0], [15.8917236, -4.0149596, 0.0], [15.8930969, -4.0149596, 0.0], [15.8930969, -4.0135897, 0.0], [15.8917236, -4.0135897, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2653}, "geometry": {"type": "Polygon", "coordinates": [[[15.6568909, -4.0108499, 0.0], [15.6568909, -4.0122198, 0.0], [15.6582642, -4.0122198, 0.0], [15.6582642, -4.0108499, 0.0], [15.6568909, -4.0108499, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2654}, "geometry": {"type": "Polygon", "coordinates": [[[15.6747437, -4.0067401, 0.0], [15.6733704, -4.0067401, 0.0], [15.6733704, -4.00811, 0.0], [15.6747437, -4.00811, 0.0], [15.6761169, -4.00811, 0.0], [15.6761169, -4.0067401, 0.0], [15.6747437, -4.0067401, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2655}, "geometry": {"type": "Polygon", "coordinates": [[[15.8395386, -4.0053701, 0.0], [15.8395386, -4.0067401, 0.0], [15.8409119, -4.0067401, 0.0], [15.8409119, -4.0053701, 0.0], [15.8395386, -4.0053701, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2656}, "geometry": {"type": "Polygon", "coordinates": [[[15.9082031, -4.0053701, 0.0], [15.9082031, -4.0067401, 0.0], [15.9095764, -4.0067401, 0.0], [15.9095764, -4.0053701, 0.0], [15.9082031, -4.0053701, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2657}, "geometry": {"type": "Polygon", "coordinates": [[[15.9384155, -4.0040002, 0.0], [15.9384155, -4.0053701, 0.0], [15.9397888, -4.0053701, 0.0], [15.9397888, -4.0040002, 0.0], [15.9384155, -4.0040002, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2658}, "geometry": {"type": "Polygon", "coordinates": [[[15.8738708, -4.0040002, 0.0], [15.8738708, -4.0053701, 0.0], [15.8752441, -4.0053701, 0.0], [15.8752441, -4.0040002, 0.0], [15.8738708, -4.0040002, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2659}, "geometry": {"type": "Polygon", "coordinates": [[[15.6843567, -4.0040002, 0.0], [15.6843567, -4.0053701, 0.0], [15.68573, -4.0053701, 0.0], [15.68573, -4.0040002, 0.0], [15.6843567, -4.0040002, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2660}, "geometry": {"type": "Polygon", "coordinates": [[[15.9370422, -4.0026302, 0.0], [15.9370422, -4.0012603, 0.0], [15.9370422, -3.9998904, 0.0], [15.9370422, -3.9985204, 0.0], [15.9356689, -3.9985204, 0.0], [15.9356689, -3.9998904, 0.0], [15.9356689, -4.0012603, 0.0], [15.9342957, -4.0012603, 0.0], [15.9342957, -4.0026302, 0.0], [15.9342957, -4.0040002, 0.0], [15.9356689, -4.0040002, 0.0], [15.9370422, -4.0040002, 0.0], [15.9370422, -4.0026302, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2661}, "geometry": {"type": "Polygon", "coordinates": [[[15.68573, -4.0026302, 0.0], [15.68573, -4.0040002, 0.0], [15.6871033, -4.0040002, 0.0], [15.6871033, -4.0026302, 0.0], [15.68573, -4.0026302, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2662}, "geometry": {"type": "Polygon", "coordinates": [[[15.8752441, -4.0026302, 0.0], [15.8752441, -4.0040002, 0.0], [15.8766174, -4.0040002, 0.0], [15.8766174, -4.0026302, 0.0], [15.8752441, -4.0026302, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2663}, "geometry": {"type": "Polygon", "coordinates": [[[15.6925964, -4.0012603, 0.0], [15.6925964, -4.0026302, 0.0], [15.6939697, -4.0026302, 0.0], [15.6939697, -4.0012603, 0.0], [15.6925964, -4.0012603, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2664}, "geometry": {"type": "Polygon", "coordinates": [[[15.9397888, -4.0012603, 0.0], [15.9397888, -4.0026302, 0.0], [15.9411621, -4.0026302, 0.0], [15.9411621, -4.0012603, 0.0], [15.9397888, -4.0012603, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2665}, "geometry": {"type": "Polygon", "coordinates": [[[15.9150696, -3.9998904, 0.0], [15.9136963, -3.9998904, 0.0], [15.9136963, -4.0012603, 0.0], [15.9150696, -4.0012603, 0.0], [15.9164429, -4.0012603, 0.0], [15.9164429, -3.9998904, 0.0], [15.9150696, -3.9998904, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2666}, "geometry": {"type": "Polygon", "coordinates": [[[15.846405, -3.9998904, 0.0], [15.846405, -4.0012603, 0.0], [15.8477783, -4.0012603, 0.0], [15.8477783, -3.9998904, 0.0], [15.846405, -3.9998904, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2667}, "geometry": {"type": "Polygon", "coordinates": [[[15.8834839, -3.9998904, 0.0], [15.8834839, -3.9985204, 0.0], [15.8821106, -3.9985204, 0.0], [15.8821106, -3.9998904, 0.0], [15.8821106, -4.0012603, 0.0], [15.8834839, -4.0012603, 0.0], [15.8834839, -3.9998904, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2668}, "geometry": {"type": "Polygon", "coordinates": [[[15.6980896, -3.9998904, 0.0], [15.6980896, -3.9985204, 0.0], [15.6967163, -3.9985204, 0.0], [15.6967163, -3.9998904, 0.0], [15.6967163, -4.0012603, 0.0], [15.6980896, -4.0012603, 0.0], [15.6980896, -3.9998904, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2669}, "geometry": {"type": "Polygon", "coordinates": [[[15.7928467, -3.9998904, 0.0], [15.7928467, -4.0012603, 0.0], [15.79422, -4.0012603, 0.0], [15.79422, -3.9998904, 0.0], [15.7928467, -3.9998904, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2670}, "geometry": {"type": "Polygon", "coordinates": [[[15.9260559, -3.9985204, 0.0], [15.9260559, -3.9998904, 0.0], [15.9274292, -3.9998904, 0.0], [15.9274292, -3.9985204, 0.0], [15.9260559, -3.9985204, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2671}, "geometry": {"type": "Polygon", "coordinates": [[[15.9164429, -3.9985204, 0.0], [15.9164429, -3.9998904, 0.0], [15.9178162, -3.9998904, 0.0], [15.9178162, -3.9985204, 0.0], [15.9164429, -3.9985204, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2672}, "geometry": {"type": "Polygon", "coordinates": [[[15.6994629, -3.9985204, 0.0], [15.6994629, -3.9998904, 0.0], [15.7008362, -3.9998904, 0.0], [15.7008362, -3.9985204, 0.0], [15.6994629, -3.9985204, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2673}, "geometry": {"type": "Polygon", "coordinates": [[[15.7077026, -3.9985204, 0.0], [15.7090759, -3.9985204, 0.0], [15.7090759, -3.9971505, 0.0], [15.7077026, -3.9971505, 0.0], [15.7063293, -3.9971505, 0.0], [15.7049561, -3.9971505, 0.0], [15.7049561, -3.9985204, 0.0], [15.7049561, -3.9998904, 0.0], [15.7063293, -3.9998904, 0.0], [15.7077026, -3.9998904, 0.0], [15.7077026, -3.9985204, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2674}, "geometry": {"type": "Polygon", "coordinates": [[[15.8615112, -3.9985204, 0.0], [15.8615112, -3.9998904, 0.0], [15.8628845, -3.9998904, 0.0], [15.8628845, -3.9985204, 0.0], [15.8615112, -3.9985204, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2675}, "geometry": {"type": "Polygon", "coordinates": [[[15.7901001, -3.9985204, 0.0], [15.7901001, -3.9998904, 0.0], [15.7914734, -3.9998904, 0.0], [15.7914734, -3.9985204, 0.0], [15.7901001, -3.9985204, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2676}, "geometry": {"type": "Polygon", "coordinates": [[[15.7159424, -3.9971505, 0.0], [15.7159424, -3.9985204, 0.0], [15.7173157, -3.9985204, 0.0], [15.718689, -3.9985204, 0.0], [15.718689, -3.9971505, 0.0], [15.7173157, -3.9971505, 0.0], [15.7159424, -3.9971505, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2677}, "geometry": {"type": "Polygon", "coordinates": [[[15.7228088, -3.9971505, 0.0], [15.7228088, -3.9957805, 0.0], [15.7214355, -3.9957805, 0.0], [15.7200623, -3.9957805, 0.0], [15.7200623, -3.9971505, 0.0], [15.7200623, -3.9985204, 0.0], [15.7214355, -3.9985204, 0.0], [15.7228088, -3.9985204, 0.0], [15.7241821, -3.9985204, 0.0], [15.7241821, -3.9971505, 0.0], [15.7228088, -3.9971505, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2678}, "geometry": {"type": "Polygon", "coordinates": [[[15.9507751, -3.9971505, 0.0], [15.9507751, -3.9985204, 0.0], [15.9521484, -3.9985204, 0.0], [15.9521484, -3.9971505, 0.0], [15.9507751, -3.9971505, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2679}, "geometry": {"type": "Polygon", "coordinates": [[[15.7118225, -3.9971505, 0.0], [15.7118225, -3.9985204, 0.0], [15.7131958, -3.9985204, 0.0], [15.7131958, -3.9971505, 0.0], [15.7118225, -3.9971505, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2680}, "geometry": {"type": "Polygon", "coordinates": [[[15.7296753, -3.9971505, 0.0], [15.7296753, -3.9957805, 0.0], [15.7296753, -3.9944106, 0.0], [15.728302, -3.9944106, 0.0], [15.728302, -3.9957805, 0.0], [15.728302, -3.9971505, 0.0], [15.728302, -3.9985204, 0.0], [15.7296753, -3.9985204, 0.0], [15.7296753, -3.9971505, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2681}, "geometry": {"type": "Polygon", "coordinates": [[[15.7873535, -3.9971505, 0.0], [15.7873535, -3.9957805, 0.0], [15.7859802, -3.9957805, 0.0], [15.7859802, -3.9971505, 0.0], [15.7859802, -3.9985204, 0.0], [15.7873535, -3.9985204, 0.0], [15.7873535, -3.9971505, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2682}, "geometry": {"type": "Polygon", "coordinates": [[[15.9301758, -3.9971505, 0.0], [15.9301758, -3.9985204, 0.0], [15.9315491, -3.9985204, 0.0], [15.9315491, -3.9971505, 0.0], [15.9301758, -3.9971505, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2683}, "geometry": {"type": "Polygon", "coordinates": [[[15.9274292, -3.9957805, 0.0], [15.9274292, -3.9971505, 0.0], [15.9288025, -3.9971505, 0.0], [15.9288025, -3.9957805, 0.0], [15.9274292, -3.9957805, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2684}, "geometry": {"type": "Polygon", "coordinates": [[[15.79422, -3.9957805, 0.0], [15.79422, -3.9971505, 0.0], [15.7955933, -3.9971505, 0.0], [15.7969666, -3.9971505, 0.0], [15.7969666, -3.9957805, 0.0], [15.7955933, -3.9957805, 0.0], [15.79422, -3.9957805, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2685}, "geometry": {"type": "Polygon", "coordinates": [[[15.9315491, -3.9944106, 0.0], [15.9315491, -3.9957805, 0.0], [15.9329224, -3.9957805, 0.0], [15.9329224, -3.9944106, 0.0], [15.9315491, -3.9944106, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2686}, "geometry": {"type": "Polygon", "coordinates": [[[15.8876038, -3.9957805, 0.0], [15.8862305, -3.9957805, 0.0], [15.8862305, -3.9971505, 0.0], [15.8876038, -3.9971505, 0.0], [15.8889771, -3.9971505, 0.0], [15.8889771, -3.9957805, 0.0], [15.8876038, -3.9957805, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2687}, "geometry": {"type": "Polygon", "coordinates": [[[15.8752441, -3.9957805, 0.0], [15.8752441, -3.9971505, 0.0], [15.8766174, -3.9971505, 0.0], [15.8766174, -3.9957805, 0.0], [15.8752441, -3.9957805, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2688}, "geometry": {"type": "Polygon", "coordinates": [[[15.8779907, -3.9944106, 0.0], [15.879364, -3.9944106, 0.0], [15.879364, -3.9930406, 0.0], [15.8779907, -3.9930406, 0.0], [15.8766174, -3.9930406, 0.0], [15.8766174, -3.9944106, 0.0], [15.8766174, -3.9957805, 0.0], [15.8779907, -3.9957805, 0.0], [15.8779907, -3.9944106, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2689}, "geometry": {"type": "Polygon", "coordinates": [[[15.8711243, -3.9944106, 0.0], [15.8711243, -3.9957805, 0.0], [15.8724976, -3.9957805, 0.0], [15.8724976, -3.9944106, 0.0], [15.8711243, -3.9944106, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2690}, "geometry": {"type": "Polygon", "coordinates": [[[15.9535217, -3.9944106, 0.0], [15.9535217, -3.9930406, 0.0], [15.9521484, -3.9930406, 0.0], [15.9521484, -3.9944106, 0.0], [15.9521484, -3.9957805, 0.0], [15.9535217, -3.9957805, 0.0], [15.9535217, -3.9944106, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2691}, "geometry": {"type": "Polygon", "coordinates": [[[15.9507751, -3.9944106, 0.0], [15.9507751, -3.9930406, 0.0], [15.9494019, -3.9930406, 0.0], [15.9494019, -3.9944106, 0.0], [15.9494019, -3.9957805, 0.0], [15.9507751, -3.9957805, 0.0], [15.9507751, -3.9944106, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2692}, "geometry": {"type": "Polygon", "coordinates": [[[15.7653809, -3.9944106, 0.0], [15.7667542, -3.9944106, 0.0], [15.7681274, -3.9944106, 0.0], [15.7681274, -3.9930406, 0.0], [15.7667542, -3.9930406, 0.0], [15.7667542, -3.9916706, 0.0], [15.7667542, -3.9903007, 0.0], [15.7653809, -3.9903007, 0.0], [15.7640076, -3.9903007, 0.0], [15.7626343, -3.9903007, 0.0], [15.761261, -3.9903007, 0.0], [15.761261, -3.9916706, 0.0], [15.761261, -3.9930406, 0.0], [15.7598877, -3.9930406, 0.0], [15.7598877, -3.9944106, 0.0], [15.761261, -3.9944106, 0.0], [15.7626343, -3.9944106, 0.0], [15.7640076, -3.9944106, 0.0], [15.7640076, -3.9957805, 0.0], [15.7653809, -3.9957805, 0.0], [15.7653809, -3.9944106, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2693}, "geometry": {"type": "Polygon", "coordinates": [[[15.9260559, -3.9944106, 0.0], [15.9260559, -3.9930406, 0.0], [15.9246826, -3.9930406, 0.0], [15.9246826, -3.9944106, 0.0], [15.9246826, -3.9957805, 0.0], [15.9260559, -3.9957805, 0.0], [15.9260559, -3.9944106, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2694}, "geometry": {"type": "Polygon", "coordinates": [[[15.7914734, -3.9930406, 0.0], [15.7914734, -3.9944106, 0.0], [15.7928467, -3.9944106, 0.0], [15.7928467, -3.9930406, 0.0], [15.7914734, -3.9930406, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2695}, "geometry": {"type": "Polygon", "coordinates": [[[15.7351685, -3.9930406, 0.0], [15.7337952, -3.9930406, 0.0], [15.7337952, -3.9944106, 0.0], [15.7351685, -3.9944106, 0.0], [15.7365417, -3.9944106, 0.0], [15.7365417, -3.9930406, 0.0], [15.7351685, -3.9930406, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2696}, "geometry": {"type": "Polygon", "coordinates": [[[15.770874, -3.9930406, 0.0], [15.770874, -3.9944106, 0.0], [15.7722473, -3.9944106, 0.0], [15.7722473, -3.9930406, 0.0], [15.770874, -3.9930406, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2697}, "geometry": {"type": "Polygon", "coordinates": [[[15.7434082, -3.9930406, 0.0], [15.7434082, -3.9944106, 0.0], [15.7447815, -3.9944106, 0.0], [15.7447815, -3.9930406, 0.0], [15.7434082, -3.9930406, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2698}, "geometry": {"type": "Polygon", "coordinates": [[[15.9466553, -3.9930406, 0.0], [15.9466553, -3.9944106, 0.0], [15.9480286, -3.9944106, 0.0], [15.9480286, -3.9930406, 0.0], [15.9466553, -3.9930406, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2699}, "geometry": {"type": "Polygon", "coordinates": [[[15.7530212, -3.9916706, 0.0], [15.7530212, -3.9930406, 0.0], [15.7543945, -3.9930406, 0.0], [15.7543945, -3.9916706, 0.0], [15.7530212, -3.9916706, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2700}, "geometry": {"type": "Polygon", "coordinates": [[[15.9329224, -3.9916706, 0.0], [15.9329224, -3.9930406, 0.0], [15.9342957, -3.9930406, 0.0], [15.9356689, -3.9930406, 0.0], [15.9356689, -3.9916706, 0.0], [15.9342957, -3.9916706, 0.0], [15.9329224, -3.9916706, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2701}, "geometry": {"type": "Polygon", "coordinates": [[[15.9466553, -3.9903007, 0.0], [15.9466553, -3.9916706, 0.0], [15.9480286, -3.9916706, 0.0], [15.9480286, -3.9903007, 0.0], [15.9466553, -3.9903007, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2702}, "geometry": {"type": "Polygon", "coordinates": [[[15.7695007, -3.9903007, 0.0], [15.7695007, -3.9916706, 0.0], [15.770874, -3.9916706, 0.0], [15.770874, -3.9903007, 0.0], [15.7695007, -3.9903007, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2703}, "geometry": {"type": "Polygon", "coordinates": [[[15.9178162, -3.9903007, 0.0], [15.9178162, -3.9916706, 0.0], [15.9191895, -3.9916706, 0.0], [15.9191895, -3.9903007, 0.0], [15.9178162, -3.9903007, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2704}, "geometry": {"type": "Polygon", "coordinates": [[[15.7997131, -3.9875608, 0.0], [15.7983398, -3.9875608, 0.0], [15.7983398, -3.9889307, 0.0], [15.7997131, -3.9889307, 0.0], [15.8010864, -3.9889307, 0.0], [15.8010864, -3.9875608, 0.0], [15.7997131, -3.9875608, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2705}, "geometry": {"type": "Polygon", "coordinates": [[[15.9274292, -3.9875608, 0.0], [15.9274292, -3.9889307, 0.0], [15.9288025, -3.9889307, 0.0], [15.9288025, -3.9875608, 0.0], [15.9274292, -3.9875608, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2706}, "geometry": {"type": "Polygon", "coordinates": [[[15.803833, -3.9875608, 0.0], [15.803833, -3.9889307, 0.0], [15.8052063, -3.9889307, 0.0], [15.8065796, -3.9889307, 0.0], [15.8065796, -3.9875608, 0.0], [15.8065796, -3.9861908, 0.0], [15.8052063, -3.9861908, 0.0], [15.8052063, -3.9875608, 0.0], [15.803833, -3.9875608, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2707}, "geometry": {"type": "Polygon", "coordinates": [[[15.7928467, -3.9861908, 0.0], [15.7928467, -3.9875608, 0.0], [15.79422, -3.9875608, 0.0], [15.79422, -3.9861908, 0.0], [15.7928467, -3.9861908, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2708}, "geometry": {"type": "Polygon", "coordinates": [[[15.9191895, -3.9861908, 0.0], [15.9205627, -3.9861908, 0.0], [15.9205627, -3.9848208, 0.0], [15.9191895, -3.9848208, 0.0], [15.9178162, -3.9848208, 0.0], [15.9178162, -3.9861908, 0.0], [15.9178162, -3.9875608, 0.0], [15.9191895, -3.9875608, 0.0], [15.9191895, -3.9861908, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2709}, "geometry": {"type": "Polygon", "coordinates": [[[15.9150696, -3.9875608, 0.0], [15.9150696, -3.9889307, 0.0], [15.9164429, -3.9889307, 0.0], [15.9164429, -3.9875608, 0.0], [15.9150696, -3.9875608, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2710}, "geometry": {"type": "Polygon", "coordinates": [[[15.9109497, -3.9875608, 0.0], [15.9109497, -3.9889307, 0.0], [15.912323, -3.9889307, 0.0], [15.912323, -3.9875608, 0.0], [15.9109497, -3.9875608, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2711}, "geometry": {"type": "Polygon", "coordinates": [[[15.8079529, -3.9875608, 0.0], [15.8079529, -3.9889307, 0.0], [15.8093262, -3.9889307, 0.0], [15.8093262, -3.9875608, 0.0], [15.8079529, -3.9875608, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2712}, "geometry": {"type": "Polygon", "coordinates": [[[15.8175659, -3.9861908, 0.0], [15.8175659, -3.9875608, 0.0], [15.8189392, -3.9875608, 0.0], [15.8203125, -3.9875608, 0.0], [15.8203125, -3.9861908, 0.0], [15.8216858, -3.9861908, 0.0], [15.8230591, -3.9861908, 0.0], [15.8230591, -3.9848208, 0.0], [15.8216858, -3.9848208, 0.0], [15.8203125, -3.9848208, 0.0], [15.8189392, -3.9848208, 0.0], [15.8189392, -3.9861908, 0.0], [15.8175659, -3.9861908, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2713}, "geometry": {"type": "Polygon", "coordinates": [[[15.9315491, -3.9861908, 0.0], [15.9315491, -3.9875608, 0.0], [15.9329224, -3.9875608, 0.0], [15.9329224, -3.9861908, 0.0], [15.9315491, -3.9861908, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2714}, "geometry": {"type": "Polygon", "coordinates": [[[15.9205627, -3.9861908, 0.0], [15.9205627, -3.9875608, 0.0], [15.921936, -3.9875608, 0.0], [15.921936, -3.9861908, 0.0], [15.9205627, -3.9861908, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2715}, "geometry": {"type": "Polygon", "coordinates": [[[15.846405, -3.9820809, 0.0], [15.846405, -3.9834508, 0.0], [15.8477783, -3.9834508, 0.0], [15.8477783, -3.9820809, 0.0], [15.846405, -3.9820809, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2716}, "geometry": {"type": "Polygon", "coordinates": [[[15.8834839, -3.9793409, 0.0], [15.8834839, -3.9807109, 0.0], [15.8848572, -3.9807109, 0.0], [15.8848572, -3.9793409, 0.0], [15.8834839, -3.9793409, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2717}, "geometry": {"type": "Polygon", "coordinates": [[[15.8395386, -3.9779709, 0.0], [15.8395386, -3.9793409, 0.0], [15.8409119, -3.9793409, 0.0], [15.8409119, -3.9779709, 0.0], [15.8395386, -3.9779709, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2718}, "geometry": {"type": "Polygon", "coordinates": [[[15.8354187, -3.9766009, 0.0], [15.8340454, -3.9766009, 0.0], [15.8340454, -3.9779709, 0.0], [15.8354187, -3.9779709, 0.0], [15.836792, -3.9779709, 0.0], [15.836792, -3.9766009, 0.0], [15.8354187, -3.9766009, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2719}, "geometry": {"type": "Polygon", "coordinates": [[[15.8656311, -3.968381, 0.0], [15.8670044, -3.968381, 0.0], [15.8670044, -3.967011, 0.0], [15.8670044, -3.965641, 0.0], [15.8656311, -3.965641, 0.0], [15.8642578, -3.965641, 0.0], [15.8642578, -3.967011, 0.0], [15.8642578, -3.968381, 0.0], [15.8642578, -3.969751, 0.0], [15.8656311, -3.969751, 0.0], [15.8656311, -3.968381, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2720}, "geometry": {"type": "Polygon", "coordinates": [[[15.8917236, -3.9834508, 0.0], [15.8917236, -3.9820809, 0.0], [15.8903503, -3.9820809, 0.0], [15.8903503, -3.9834508, 0.0], [15.8903503, -3.9848208, 0.0], [15.8917236, -3.9848208, 0.0], [15.8917236, -3.9834508, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2721}, "geometry": {"type": "Polygon", "coordinates": [[[15.8903503, -3.958791, 0.0], [15.8903503, -3.960161, 0.0], [15.8917236, -3.960161, 0.0], [15.8917236, -3.958791, 0.0], [15.8903503, -3.958791, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2722}, "geometry": {"type": "Polygon", "coordinates": [[[15.8930969, -3.9574209, 0.0], [15.8944702, -3.9574209, 0.0], [15.8958435, -3.9574209, 0.0], [15.8972168, -3.9574209, 0.0], [15.8972168, -3.9560509, 0.0], [15.8958435, -3.9560509, 0.0], [15.8944702, -3.9560509, 0.0], [15.8944702, -3.9546809, 0.0], [15.8930969, -3.9546809, 0.0], [15.8930969, -3.9560509, 0.0], [15.8917236, -3.9560509, 0.0], [15.8917236, -3.9574209, 0.0], [15.8917236, -3.958791, 0.0], [15.8930969, -3.958791, 0.0], [15.8930969, -3.9574209, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2723}, "geometry": {"type": "Polygon", "coordinates": [[[15.8985901, -3.9546809, 0.0], [15.8985901, -3.9560509, 0.0], [15.8999634, -3.9560509, 0.0], [15.8999634, -3.9546809, 0.0], [15.8985901, -3.9546809, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2724}, "geometry": {"type": "Polygon", "coordinates": [[[15.9054565, -3.9519409, 0.0], [15.9068298, -3.9519409, 0.0], [15.9068298, -3.9505708, 0.0], [15.9054565, -3.9505708, 0.0], [15.9054565, -3.9492008, 0.0], [15.9040833, -3.9492008, 0.0], [15.9040833, -3.9505708, 0.0], [15.9040833, -3.9519409, 0.0], [15.9054565, -3.9519409, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2725}, "geometry": {"type": "Polygon", "coordinates": [[[15.8601379, -4.0218092, 0.0], [15.8601379, -4.0231791, 0.0], [15.8615112, -4.0231791, 0.0], [15.8615112, -4.0218092, 0.0], [15.8601379, -4.0218092, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2726}, "geometry": {"type": "Polygon", "coordinates": [[[15.8821106, -4.0231791, 0.0], [15.8821106, -4.0218092, 0.0], [15.8807373, -4.0218092, 0.0], [15.8807373, -4.0231791, 0.0], [15.8807373, -4.024549, 0.0], [15.8821106, -4.024549, 0.0], [15.8821106, -4.0231791, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2727}, "geometry": {"type": "Polygon", "coordinates": [[[15.7859802, -4.0204393, 0.0], [15.7859802, -4.0190694, 0.0], [15.7846069, -4.0190694, 0.0], [15.7846069, -4.0204393, 0.0], [15.7846069, -4.0218092, 0.0], [15.7859802, -4.0218092, 0.0], [15.7859802, -4.0204393, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2728}, "geometry": {"type": "Polygon", "coordinates": [[[15.6980896, -4.0204393, 0.0], [15.6980896, -4.0190694, 0.0], [15.6967163, -4.0190694, 0.0], [15.6967163, -4.0204393, 0.0], [15.6967163, -4.0218092, 0.0], [15.6980896, -4.0218092, 0.0], [15.6994629, -4.0218092, 0.0], [15.6994629, -4.0204393, 0.0], [15.6980896, -4.0204393, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2729}, "geometry": {"type": "Polygon", "coordinates": [[[15.6335449, -4.0204393, 0.0], [15.6349182, -4.0204393, 0.0], [15.6349182, -4.0190694, 0.0], [15.6335449, -4.0190694, 0.0], [15.6321716, -4.0190694, 0.0], [15.6321716, -4.0204393, 0.0], [15.6321716, -4.0218092, 0.0], [15.6335449, -4.0218092, 0.0], [15.6335449, -4.0204393, 0.0]]]}}, {"type": "Feature", "properties": {"id": 2730}, "geometry": {"type": "Polygon", "coordinates": [[[15.921936, -4.0204393, 0.0], [15.921936, -4.0218092, 0.0], [15.9233093, -4.0218092, 0.0], [15.9233093, -4.0204393, 0.0], [15.921936, -4.0204393, 0.0]]]}}]} diff --git a/assets/docs/tile_size/files/tiles.geojson b/assets/docs/tile_size/files/tiles.geojson new file mode 100644 index 0000000..e4ba835 --- /dev/null +++ b/assets/docs/tile_size/files/tiles.geojson @@ -0,0 +1,4102 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "_uid_": 1, "task_x": 131070, "task_y": 0, "task_z": 18, "center_y": 85.051069544431002, "area_in_sqm": 175.08069014549301, "perimeter_in_m": 52.927224030679803, "length_x": 13.231979850792699, "length_y": 13.2322958064234 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 85.051128779806589, 0.0 ], [ -0.001373291015625, 85.051128779806589, 0.0 ], [ -0.001373291015625, 85.051010309055414, 0.0 ], [ -0.00274658203125, 85.051010309055414, 0.0 ], [ -0.00274658203125, 85.051128779806589, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2, "task_x": 131070, "task_y": 32, "task_z": 18, "center_y": 85.047277031591904, "area_in_sqm": 175.34843599796301, "perimeter_in_m": 52.967678647241101, "length_x": 13.242094145444099, "length_y": 13.242410340748499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 85.04733631224822, 0.0 ], [ -0.001373291015625, 85.04733631224822, 0.0 ], [ -0.001373291015625, 85.047217750935516, 0.0 ], [ -0.00274658203125, 85.047217750935516, 0.0 ], [ -0.00274658203125, 85.04733631224822, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3, "task_x": 131070, "task_y": 64, "task_z": 18, "center_y": 85.043481619685096, "area_in_sqm": 175.616590023041, "perimeter_in_m": 53.008163939354503, "length_x": 13.2522161124059, "length_y": 13.252532547561501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 85.043540945656545, 0.0 ], [ -0.001373291015625, 85.043540945656545, 0.0 ], [ -0.001373291015625, 85.043422293713618, 0.0 ], [ -0.00274658203125, 85.043422293713618, 0.0 ], [ -0.00274658203125, 85.043540945656545, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4, "task_x": 131070, "task_y": 96, "task_z": 18, "center_y": 85.039683306511193, "area_in_sqm": 175.88515245914499, "perimeter_in_m": 53.048679941040099, "length_x": 13.2623457573624, "length_y": 13.262662432547099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 85.039742677832152, 0.0 ], [ -0.001373291015625, 85.039742677832152, 0.0 ], [ -0.001373291015625, 85.039623935190249, 0.0 ], [ -0.00274658203125, 85.039623935190249, 0.0 ], [ -0.00274658203125, 85.039742677832152, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 5, "task_x": 131070, "task_y": 128, "task_z": 18, "center_y": 85.035882089869105, "area_in_sqm": 176.154124617577, "perimeter_in_m": 53.089226666147603, "length_x": 13.2724830860022, "length_y": 13.2728000013936 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 85.035941506573991, 0.0 ], [ -0.001373291015625, 85.035941506573991, 0.0 ], [ -0.001373291015625, 85.035822673164304, 0.0 ], [ -0.00274658203125, 85.035822673164304, 0.0 ], [ -0.00274658203125, 85.035941506573991, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 6, "task_x": 131070, "task_y": 160, "task_z": 18, "center_y": 85.032077967556305, "area_in_sqm": 176.423505783081, "perimeter_in_m": 53.1298041462329, "length_x": 13.2826281040174, "length_y": 13.2829452597935 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 85.032137429679423, 0.0 ], [ -0.001373291015625, 85.032137429679423, 0.0 ], [ -0.001373291015625, 85.032018505433086, 0.0 ], [ -0.00274658203125, 85.032018505433086, 0.0 ], [ -0.00274658203125, 85.032137429679423, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 7, "task_x": 131070, "task_y": 192, "task_z": 18, "center_y": 85.028270937368205, "area_in_sqm": 176.693297147751, "perimeter_in_m": 53.170412395867601, "length_x": 13.2927808171041, "length_y": 13.2930982134431 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 85.028330444944118, 0.0 ], [ -0.001373291015625, 85.028330444944118, 0.0 ], [ -0.001373291015625, 85.028211429792222, 0.0 ], [ -0.00274658203125, 85.028211429792222, 0.0 ], [ -0.00274658203125, 85.028330444944118, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 8, "task_x": 131070, "task_y": 224, "task_z": 18, "center_y": 85.024460997098899, "area_in_sqm": 176.96349942684199, "perimeter_in_m": 53.211051448395899, "length_x": 13.302941230962601, "length_y": 13.303258868042599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 85.024520550162137, 0.0 ], [ -0.001373291015625, 85.024520550162137, 0.0 ], [ -0.001373291015625, 85.024401444035718, 0.0 ], [ -0.00274658203125, 85.024401444035718, 0.0 ], [ -0.00274658203125, 85.024520550162137, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 9, "task_x": 131070, "task_y": 256, "task_z": 18, "center_y": 85.020648144540999, "area_in_sqm": 177.23411417007401, "perimeter_in_m": 53.251721315747197, "length_x": 13.313109351296699, "length_y": 13.313427229296 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 85.020707743125925, 0.0 ], [ -0.001373291015625, 85.020707743125925, 0.0 ], [ -0.001373291015625, 85.020588545955974, 0.0 ], [ -0.00274658203125, 85.020588545955974, 0.0 ], [ -0.00274658203125, 85.020707743125925, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 10, "task_x": 131070, "task_y": 288, "task_z": 18, "center_y": 85.016832377485002, "area_in_sqm": 177.505140185356, "perimeter_in_m": 53.292422025972698, "length_x": 13.3232851838142, "length_y": 13.3236033029113 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 85.016892021626276, 0.0 ], [ -0.001373291015625, 85.016892021626276, 0.0 ], [ -0.001373291015625, 85.016772733343728, 0.0 ], [ -0.00274658203125, 85.016772733343728, 0.0 ], [ -0.00274658203125, 85.016892021626276, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 11, "task_x": 131070, "task_y": 320, "task_z": 18, "center_y": 85.013013693720197, "area_in_sqm": 177.77657985687301, "perimeter_in_m": 53.333153602169702, "length_x": 13.3334687342271, "length_y": 13.333787094600501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 85.013073383452337, 0.0 ], [ -0.001373291015625, 85.013073383452337, 0.0 ], [ -0.001373291015625, 85.012954003988071, 0.0 ], [ -0.00274658203125, 85.012954003988071, 0.0 ], [ -0.00274658203125, 85.013073383452337, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 12, "task_x": 131070, "task_y": 352, "task_z": 18, "center_y": 85.009192091034095, "area_in_sqm": 178.04843199253099, "perimeter_in_m": 53.373916064083801, "length_x": 13.343660008251, "length_y": 13.3439786100794 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 85.009251826391619, 0.0 ], [ -0.001373291015625, 85.009251826391619, 0.0 ], [ -0.001373291015625, 85.009132355676485, 0.0 ], [ -0.00274658203125, 85.009132355676485, 0.0 ], [ -0.00274658203125, 85.009251826391619, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 13, "task_x": 131070, "task_y": 384, "task_z": 18, "center_y": 85.005367567212403, "area_in_sqm": 178.32069885730701, "perimeter_in_m": 53.414709434473998, "length_x": 13.3538590116056, "length_y": 13.3541778550677 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 85.005427348230015, 0.0 ], [ -0.001373291015625, 85.005427348230015, 0.0 ], [ -0.001373291015625, 85.005307786194777, 0.0 ], [ -0.00274658203125, 85.005307786194777, 0.0 ], [ -0.00274658203125, 85.005427348230015, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 14, "task_x": 131070, "task_y": 416, "task_z": 18, "center_y": 85.001540120039394, "area_in_sqm": 178.59338033199299, "perimeter_in_m": 53.455533745493703, "length_x": 13.3640657500142, "length_y": 13.364384835289099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 85.001599946751753, 0.0 ], [ -0.001373291015625, 85.001599946751753, 0.0 ], [ -0.001373291015625, 85.001480293327148, 0.0 ], [ -0.00274658203125, 85.001480293327148, 0.0 ], [ -0.00274658203125, 85.001599946751753, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 15, "task_x": 131070, "task_y": 448, "task_z": 18, "center_y": 84.997709747297804, "area_in_sqm": 178.86647713184399, "perimeter_in_m": 53.4963890096505, "length_x": 13.3742802292045, "length_y": 13.3745995564712 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.997769619739444, 0.0 ], [ -0.001373291015625, 84.997769619739444, 0.0 ], [ -0.001373291015625, 84.997649874856137, 0.0 ], [ -0.00274658203125, 84.997649874856137, 0.0 ], [ -0.00274658203125, 84.997769619739444, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 16, "task_x": 131070, "task_y": 480, "task_z": 18, "center_y": 84.993876446768397, "area_in_sqm": 179.13998997211499, "perimeter_in_m": 53.537275248491703, "length_x": 13.3845024549078, "length_y": 13.3848220243454 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.993936364974019, 0.0 ], [ -0.001373291015625, 84.993936364974019, 0.0 ], [ -0.001373291015625, 84.993816528562661, 0.0 ], [ -0.00274658203125, 84.993816528562661, 0.0 ], [ -0.00274658203125, 84.993936364974019, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 17, "task_x": 131070, "task_y": 512, "task_z": 18, "center_y": 84.990040216230398, "area_in_sqm": 179.41391921043399, "perimeter_in_m": 53.578192490118298, "length_x": 13.394732432859399, "length_y": 13.395052244647101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.990100180234805, 0.0 ], [ -0.001373291015625, 84.990100180234805, 0.0 ], [ -0.001373291015625, 84.989980252225962, 0.0 ], [ -0.00274658203125, 84.989980252225962, 0.0 ], [ -0.00274658203125, 84.990100180234805, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 18, "task_x": 131070, "task_y": 544, "task_z": 18, "center_y": 84.986201053461599, "area_in_sqm": 179.68826603889499, "perimeter_in_m": 53.6191407624653, "length_x": 13.404970168798499, "length_y": 13.4052902231159 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.986261063299452, 0.0 ], [ -0.001373291015625, 84.986261063299452, 0.0 ], [ -0.001373291015625, 84.986141043623661, 0.0 ], [ -0.00274658203125, 84.986141043623661, 0.0 ], [ -0.00274658203125, 84.986261063299452, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 19, "task_x": 131070, "task_y": 576, "task_z": 18, "center_y": 84.982358956237803, "area_in_sqm": 179.963029980659, "perimeter_in_m": 53.660120083029298, "length_x": 13.4152156684681, "length_y": 13.4155359654947 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.982419011943989, 0.0 ], [ -0.001373291015625, 84.982419011943989, 0.0 ], [ -0.001373291015625, 84.982298900531717, 0.0 ], [ -0.00274658203125, 84.982298900531717, 0.0 ], [ -0.00274658203125, 84.982419011943989, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 20, "task_x": 131070, "task_y": 608, "task_z": 18, "center_y": 84.978513922333605, "area_in_sqm": 180.23821318149601, "perimeter_in_m": 53.701130466131097, "length_x": 13.4254689376156, "length_y": 13.4257894775309 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.978574023942798, 0.0 ], [ -0.001373291015625, 84.978574023942798, 0.0 ], [ -0.001373291015625, 84.978453820724468, 0.0 ], [ -0.00274658203125, 84.978453820724468, 0.0 ], [ -0.00274658203125, 84.978574023942798, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 21, "task_x": 131070, "task_y": 640, "task_z": 18, "center_y": 84.974665949521594, "area_in_sqm": 180.51381540298499, "perimeter_in_m": 53.742171949284703, "length_x": 13.435729981991701, "length_y": 13.436050764975599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.974726097068597, 0.0 ], [ -0.001373291015625, 84.974726097068597, 0.0 ], [ -0.001373291015625, 84.974605801974576, 0.0 ], [ -0.00274658203125, 84.974605801974576, 0.0 ], [ -0.00274658203125, 84.974726097068597, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 22, "task_x": 131070, "task_y": 672, "task_z": 18, "center_y": 84.970815035572699, "area_in_sqm": 180.78983688354501, "perimeter_in_m": 53.783244549126898, "length_x": 13.445998807351399, "length_y": 13.4463198335839 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.970875229092442, 0.0 ], [ -0.001373291015625, 84.970875229092442, 0.0 ], [ -0.001373291015625, 84.970754842053054, 0.0 ], [ -0.00274658203125, 84.970754842053054, 0.0 ], [ -0.00274658203125, 84.970875229092442, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 23, "task_x": 131070, "task_y": 704, "task_z": 18, "center_y": 84.966961178256497, "area_in_sqm": 181.066279292107, "perimeter_in_m": 53.824348285842603, "length_x": 13.4562754194537, "length_y": 13.456596689114701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.967021417783783, 0.0 ], [ -0.001373291015625, 84.967021417783783, 0.0 ], [ -0.001373291015625, 84.966900938729296, 0.0 ], [ -0.00274658203125, 84.966900938729296, 0.0 ], [ -0.00274658203125, 84.967021417783783, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 24, "task_x": 131070, "task_y": 736, "task_z": 18, "center_y": 84.963104375340706, "area_in_sqm": 181.34314227104201, "perimeter_in_m": 53.865483190420498, "length_x": 13.466559824061299, "length_y": 13.466881337330999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.963164660910365, 0.0 ], [ -0.001373291015625, 84.963164660910365, 0.0 ], [ -0.001373291015625, 84.963044089771003, 0.0 ], [ -0.00274658203125, 84.963044089771003, 0.0 ], [ -0.00274658203125, 84.963164660910365, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 25, "task_x": 131070, "task_y": 768, "task_z": 18, "center_y": 84.959244624591307, "area_in_sqm": 181.62042737007101, "perimeter_in_m": 53.906649280760199, "length_x": 13.4768520269409, "length_y": 13.4771737839996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.959304956238341, 0.0 ], [ -0.001373291015625, 84.959304956238341, 0.0 ], [ -0.001373291015625, 84.959184292944244, 0.0 ], [ -0.00274658203125, 84.959184292944244, 0.0 ], [ -0.00274658203125, 84.959304956238341, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 26, "task_x": 131070, "task_y": 800, "task_z": 18, "center_y": 84.955381923772805, "area_in_sqm": 181.89813423156701, "perimeter_in_m": 53.947846573352798, "length_x": 13.4871520338633, "length_y": 13.487474034891299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.955442301532145, 0.0 ], [ -0.001373291015625, 84.955442301532145, 0.0 ], [ -0.001373291015625, 84.955321546013451, 0.0 ], [ -0.00274658203125, 84.955321546013451, 0.0 ], [ -0.00274658203125, 84.955442301532145, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 27, "task_x": 131070, "task_y": 832, "task_z": 18, "center_y": 84.951516270648, "area_in_sqm": 182.176264405251, "perimeter_in_m": 53.989075103280797, "length_x": 13.497459850603001, "length_y": 13.497782095780799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.951576694554603, 0.0 ], [ -0.001373291015625, 84.951576694554603, 0.0 ], [ -0.001373291015625, 84.951455846741368, 0.0 ], [ -0.00274658203125, 84.951455846741368, 0.0 ], [ -0.00274658203125, 84.951576694554603, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 28, "task_x": 131070, "task_y": 864, "task_z": 18, "center_y": 84.947647662978, "area_in_sqm": 182.454817891121, "perimeter_in_m": 54.030334895372697, "length_x": 13.5077754829385, "length_y": 13.508097972447001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.947708133066882, 0.0 ], [ -0.001373291015625, 84.947708133066882, 0.0 ], [ -0.001373291015625, 84.947587192889088, 0.0 ], [ -0.00274658203125, 84.947587192889088, 0.0 ], [ -0.00274658203125, 84.947708133066882, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 29, "task_x": 131070, "task_y": 896, "task_z": 18, "center_y": 84.943776098522306, "area_in_sqm": 182.73379540443401, "perimeter_in_m": 54.071625962070698, "length_x": 13.5180989366525, "length_y": 13.5184216706723 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.943836614828456, 0.0 ], [ -0.001373291015625, 84.943836614828456, 0.0 ], [ -0.001373291015625, 84.943715582216086, 0.0 ], [ -0.00274658203125, 84.943715582216086, 0.0 ], [ -0.00274658203125, 84.943836614828456, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 30, "task_x": 131070, "task_y": 928, "task_z": 18, "center_y": 84.939901575038604, "area_in_sqm": 183.01319849491099, "perimeter_in_m": 54.112948322904202, "length_x": 13.528430217531399, "length_y": 13.528753196243301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.939962137597163, 0.0 ], [ -0.001373291015625, 84.939962137597163, 0.0 ], [ -0.001373291015625, 84.939841012480116, 0.0 ], [ -0.00274658203125, 84.939841012480116, 0.0 ], [ -0.00274658203125, 84.939962137597163, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 31, "task_x": 131070, "task_y": 960, "task_z": 18, "center_y": 84.936024090283297, "area_in_sqm": 183.293026447296, "perimeter_in_m": 54.154302011930099, "length_x": 13.538769331365501, "length_y": 13.539092554950599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.936084699129196, 0.0 ], [ -0.001373291015625, 84.936084699129196, 0.0 ], [ -0.001373291015625, 84.935963481437341, 0.0 ], [ -0.00274658203125, 84.935963481437341, 0.0 ], [ -0.00274658203125, 84.936084699129196, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 32, "task_x": 131070, "task_y": 992, "task_z": 18, "center_y": 84.932143642010601, "area_in_sqm": 183.573280453682, "perimeter_in_m": 54.195687052763297, "length_x": 13.549116283949299, "length_y": 13.5494397525888 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.932204297179069, 0.0 ], [ -0.001373291015625, 84.932204297179069, 0.0 ], [ -0.001373291015625, 84.93208298684219, 0.0 ], [ -0.00274658203125, 84.93208298684219, 0.0 ], [ -0.00274658203125, 84.932204297179069, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 33, "task_x": 131070, "task_y": 1024, "task_z": 18, "center_y": 84.928260227973595, "area_in_sqm": 183.853962063789, "perimeter_in_m": 54.237103461952998, "length_x": 13.559471081081, "length_y": 13.559794794956 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.928320929499634, 0.0 ], [ -0.001373291015625, 84.928320929499634, 0.0 ], [ -0.001373291015625, 84.928199526447486, 0.0 ], [ -0.00274658203125, 84.928199526447486, 0.0 ], [ -0.00274658203125, 84.928320929499634, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 34, "task_x": 131070, "task_y": 1056, "task_z": 18, "center_y": 84.924373845923199, "area_in_sqm": 184.13507032394401, "perimeter_in_m": 54.278551260298698, "length_x": 13.5698337285628, "length_y": 13.570157687854801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.924434593842093, 0.0 ], [ -0.001373291015625, 84.924434593842093, 0.0 ], [ -0.001373291015625, 84.924313098004376, 0.0 ], [ -0.00274658203125, 84.924313098004376, 0.0 ], [ -0.00274658203125, 84.924434593842093, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 35, "task_x": 131070, "task_y": 1088, "task_z": 18, "center_y": 84.920484493609194, "area_in_sqm": 184.416606903076, "perimeter_in_m": 54.320030484542201, "length_x": 13.580204232201099, "length_y": 13.5805284370916 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.92054528795596, 0.0 ], [ -0.001373291015625, 84.92054528795596, 0.0 ], [ -0.001373291015625, 84.920423699262329, 0.0 ], [ -0.00274658203125, 84.920423699262329, 0.0 ], [ -0.00274658203125, 84.92054528795596, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 36, "task_x": 131070, "task_y": 1120, "task_z": 18, "center_y": 84.916592168779104, "area_in_sqm": 184.69857215881299, "perimeter_in_m": 54.361541149129302, "length_x": 13.5905825978059, "length_y": 13.5909070484766 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.916653009589126, 0.0 ], [ -0.001373291015625, 84.916653009589126, 0.0 ], [ -0.001373291015625, 84.916531327969153, 0.0 ], [ -0.00274658203125, 84.916531327969153, 0.0 ], [ -0.00274658203125, 84.916653009589126, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 37, "task_x": 131070, "task_y": 1152, "task_z": 18, "center_y": 84.912696869179399, "area_in_sqm": 184.98096656799299, "perimeter_in_m": 54.403083274176403, "length_x": 13.6009688311914, "length_y": 13.601293527824 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.912757756487764, 0.0 ], [ -0.001373291015625, 84.912757756487764, 0.0 ], [ -0.001373291015625, 84.912635981871006, 0.0 ], [ -0.00274658203125, 84.912635981871006, 0.0 ], [ -0.00274658203125, 84.912757756487764, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 38, "task_x": 131070, "task_y": 1184, "task_z": 18, "center_y": 84.908798592554405, "area_in_sqm": 185.26379108429001, "perimeter_in_m": 54.444656882817497, "length_x": 13.6113629381758, "length_y": 13.611687880951999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.908859526396412, 0.0 ], [ -0.001373291015625, 84.908859526396412, 0.0 ], [ -0.001373291015625, 84.908737658712354, 0.0 ], [ -0.00274658203125, 84.908737658712354, 0.0 ], [ -0.00274658203125, 84.908859526396412, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 39, "task_x": 131070, "task_y": 1216, "task_z": 18, "center_y": 84.904897336646997, "area_in_sqm": 185.547046542168, "perimeter_in_m": 54.486262012181101, "length_x": 13.621764924581001, "length_y": 13.622090113683001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.904958317057933, 0.0 ], [ -0.001373291015625, 84.904958317057933, 0.0 ], [ -0.001373291015625, 84.904836356236018, 0.0 ], [ -0.00274658203125, 84.904836356236018, 0.0 ], [ -0.00274658203125, 84.904958317057933, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 40, "task_x": 131070, "task_y": 1248, "task_z": 18, "center_y": 84.900993099198303, "area_in_sqm": 185.83073282241801, "perimeter_in_m": 54.527898665413701, "length_x": 13.6321747962331, "length_y": 13.632500231843 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.901054126213509, 0.0 ], [ -0.001373291015625, 84.901054126213509, 0.0 ], [ -0.001373291015625, 84.900932072183124, 0.0 ], [ -0.00274658203125, 84.900932072183124, 0.0 ], [ -0.00274658203125, 84.901054126213509, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 41, "task_x": 131070, "task_y": 1280, "task_z": 18, "center_y": 84.897085877947902, "area_in_sqm": 186.11485183239, "perimeter_in_m": 54.569566883021501, "length_x": 13.642592558962001, "length_y": 13.6429182412621 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.897146951602679, 0.0 ], [ -0.001373291015625, 84.897146951602679, 0.0 ], [ -0.001373291015625, 84.897024804293139, 0.0 ], [ -0.00274658203125, 84.897024804293139, 0.0 ], [ -0.00274658203125, 84.897146951602679, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 42, "task_x": 131070, "task_y": 1312, "task_z": 18, "center_y": 84.893175670633596, "area_in_sqm": 186.39940297603599, "perimeter_in_m": 54.611266678082103, "length_x": 13.6530182186019, "length_y": 13.653344147774501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.893236790963272, 0.0 ], [ -0.001373291015625, 84.893236790963272, 0.0 ], [ -0.001373291015625, 84.893114550303878, 0.0 ], [ -0.00274658203125, 84.893114550303878, 0.0 ], [ -0.00274658203125, 84.893236790963272, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 43, "task_x": 131070, "task_y": 1344, "task_z": 18, "center_y": 84.889262474991497, "area_in_sqm": 186.68438744545, "perimeter_in_m": 54.652998074829497, "length_x": 13.663451780990499, "length_y": 13.6637779572181 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.889323642031485, 0.0 ], [ -0.001373291015625, 84.889323642031485, 0.0 ], [ -0.001373291015625, 84.889201307951453, 0.0 ], [ -0.00274658203125, 84.889201307951453, 0.0 ], [ -0.00274658203125, 84.889323642031485, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 44, "task_x": 131070, "task_y": 1376, "task_z": 18, "center_y": 84.885346288756097, "area_in_sqm": 186.96980547905, "perimeter_in_m": 54.694761098925603, "length_x": 13.673893251969901, "length_y": 13.674219675435101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.885407502541796, 0.0 ], [ -0.001373291015625, 84.885407502541796, 0.0 ], [ -0.001373291015625, 84.885285074970312, 0.0 ], [ -0.00274658203125, 84.885285074970312, 0.0 ], [ -0.00274658203125, 84.885407502541796, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 45, "task_x": 131070, "task_y": 1408, "task_z": 18, "center_y": 84.881427109660095, "area_in_sqm": 187.25565826892901, "perimeter_in_m": 54.736555776215198, "length_x": 13.6843426373858, "length_y": 13.684669308271401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.881488370227046, 0.0 ], [ -0.001373291015625, 84.881488370227046, 0.0 ], [ -0.001373291015625, 84.881365849093228, 0.0 ], [ -0.00274658203125, 84.881365849093228, 0.0 ], [ -0.00274658203125, 84.881488370227046, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 46, "task_x": 131070, "task_y": 1440, "task_z": 18, "center_y": 84.877504935434899, "area_in_sqm": 187.54194653034199, "perimeter_in_m": 54.778382123701299, "length_x": 13.694799943088199, "length_y": 13.695126861577 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.877566242818389, 0.0 ], [ -0.001373291015625, 84.877566242818389, 0.0 ], [ -0.001373291015625, 84.87744362805131, 0.0 ], [ -0.00274658203125, 84.87744362805131, 0.0 ], [ -0.00274658203125, 84.877566242818389, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 47, "task_x": 131070, "task_y": 1472, "task_z": 18, "center_y": 84.873579763809602, "area_in_sqm": 187.82867050170901, "perimeter_in_m": 54.8202401734397, "length_x": 13.705265174930799, "length_y": 13.7055923412059 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.873641118045271, 0.0 ], [ -0.001373291015625, 84.873641118045271, 0.0 ], [ -0.001373291015625, 84.873518409573947, 0.0 ], [ -0.00274658203125, 84.873518409573947, 0.0 ], [ -0.00274658203125, 84.873641118045271, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 48, "task_x": 131070, "task_y": 1504, "task_z": 18, "center_y": 84.869651592512199, "area_in_sqm": 188.11583125591301, "perimeter_in_m": 54.862129939617702, "length_x": 13.715738338771599, "length_y": 13.7160657530161 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.869712993635517, 0.0 ], [ -0.001373291015625, 84.869712993635517, 0.0 ], [ -0.001373291015625, 84.869590191388909, 0.0 ], [ -0.00274658203125, 84.869590191388909, 0.0 ], [ -0.00274658203125, 84.869712993635517, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 49, "task_x": 131070, "task_y": 1536, "task_z": 18, "center_y": 84.865720419268698, "area_in_sqm": 188.40342903137201, "perimeter_in_m": 54.904051451473997, "length_x": 13.7262194404722, "length_y": 13.726547102869301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.865781867315206, 0.0 ], [ -0.001373291015625, 84.865781867315206, 0.0 ], [ -0.001373291015625, 84.865658971222246, 0.0 ], [ -0.00274658203125, 84.865658971222246, 0.0 ], [ -0.00274658203125, 84.865781867315206, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 50, "task_x": 131070, "task_y": 1568, "task_z": 18, "center_y": 84.8617862418036, "area_in_sqm": 188.69146454334299, "perimeter_in_m": 54.946004731531097, "length_x": 13.7367084858986, "length_y": 13.7370363966317 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.861847736808798, 0.0 ], [ -0.001373291015625, 84.861847736808798, 0.0 ], [ -0.001373291015625, 84.86172474679833, 0.0 ], [ -0.00274658203125, 84.86172474679833, 0.0 ], [ -0.00274658203125, 84.861847736808798, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 51, "task_x": 131070, "task_y": 1600, "task_z": 18, "center_y": 84.857849057839402, "area_in_sqm": 188.979938745499, "perimeter_in_m": 54.987989796832103, "length_x": 13.747205480920501, "length_y": 13.747533640173 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.857910599839016, 0.0 ], [ -0.001373291015625, 84.857910599839016, 0.0 ], [ -0.001373291015625, 84.85778751583986, 0.0 ], [ -0.00274658203125, 84.85778751583986, 0.0 ], [ -0.00274658203125, 84.857910599839016, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 52, "task_x": 131070, "task_y": 1632, "task_z": 18, "center_y": 84.853908865097395, "area_in_sqm": 189.268851995468, "perimeter_in_m": 55.0300066861994, "length_x": 13.757710431411599, "length_y": 13.7580388393673 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.853970454126951, 0.0 ], [ -0.001373291015625, 84.853970454126951, 0.0 ], [ -0.001373291015625, 84.853847276067853, 0.0 ], [ -0.00274658203125, 84.853847276067853, 0.0 ], [ -0.00274658203125, 84.853970454126951, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 53, "task_x": 131070, "task_y": 1664, "task_z": 18, "center_y": 84.849965661296807, "area_in_sqm": 189.55820512771601, "perimeter_in_m": 55.072055403946003, "length_x": 13.768223343249799, "length_y": 13.768552000092299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.850027297391961, 0.0 ], [ -0.001373291015625, 84.850027297391961, 0.0 ], [ -0.001373291015625, 84.849904025201639, 0.0 ], [ -0.00274658203125, 84.849904025201639, 0.0 ], [ -0.00274658203125, 84.850027297391961, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 54, "task_x": 131070, "task_y": 1696, "task_z": 18, "center_y": 84.846019444155303, "area_in_sqm": 189.847998976707, "perimeter_in_m": 55.114135991919603, "length_x": 13.7787442223167, "length_y": 13.7790731282299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.846081127351752, 0.0 ], [ -0.001373291015625, 84.846081127351752, 0.0 ], [ -0.001373291015625, 84.845957760958839, 0.0 ], [ -0.00274658203125, 84.845957760958839, 0.0 ], [ -0.00274658203125, 84.846081127351752, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 55, "task_x": 131070, "task_y": 1728, "task_z": 18, "center_y": 84.842070211388901, "area_in_sqm": 190.138234138489, "perimeter_in_m": 55.156248454627502, "length_x": 13.7892730744981, "length_y": 13.789602229666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.842131941722329, 0.0 ], [ -0.001373291015625, 84.842131941722329, 0.0 ], [ -0.001373291015625, 84.842008481055444, 0.0 ], [ -0.00274658203125, 84.842008481055444, 0.0 ], [ -0.00274658203125, 84.842131941722329, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 56, "task_x": 131070, "task_y": 1760, "task_z": 18, "center_y": 84.838117960711799, "area_in_sqm": 190.42891037464099, "perimeter_in_m": 55.198392835524103, "length_x": 13.7998099056837, "length_y": 13.800139310290501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.838179738218003, 0.0 ], [ -0.001373291015625, 84.838179738218003, 0.0 ], [ -0.001373291015625, 84.83805618320568, 0.0 ], [ -0.00274658203125, 84.83805618320568, 0.0 ], [ -0.00274658203125, 84.838179738218003, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 57, "task_x": 131070, "task_y": 1792, "task_z": 18, "center_y": 84.834162689836802, "area_in_sqm": 190.72002971172299, "perimeter_in_m": 55.2405691469245, "length_x": 13.8103547217673, "length_y": 13.8106843759972 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.834224514551423, 0.0 ], [ -0.001373291015625, 84.834224514551423, 0.0 ], [ -0.001373291015625, 84.834100865122153, 0.0 ], [ -0.00274658203125, 84.834100865122153, 0.0 ], [ -0.00274658203125, 84.834224514551423, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 58, "task_x": 131070, "task_y": 1824, "task_z": 18, "center_y": 84.830204396474599, "area_in_sqm": 191.01159226894401, "perimeter_in_m": 55.282777411587404, "length_x": 13.8209075286467, "length_y": 13.821237432683899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.830266268433519, 0.0 ], [ -0.001373291015625, 84.830266268433519, 0.0 ], [ -0.001373291015625, 84.830142524515736, 0.0 ], [ -0.00274658203125, 84.830142524515736, 0.0 ], [ -0.00274658203125, 84.830266268433519, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 59, "task_x": 131070, "task_y": 1856, "task_z": 18, "center_y": 84.826243078334599, "area_in_sqm": 191.30359852314001, "perimeter_in_m": 55.325017658126903, "length_x": 13.831468332223499, "length_y": 13.831798486252699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.82630499757353, 0.0 ], [ -0.001373291015625, 84.82630499757353, 0.0 ], [ -0.001373291015625, 84.826181159095626, 0.0 ], [ -0.00274658203125, 84.826181159095626, 0.0 ], [ -0.00274658203125, 84.82630499757353, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 60, "task_x": 131070, "task_y": 1888, "task_z": 18, "center_y": 84.822278733124193, "area_in_sqm": 191.596049427986, "perimeter_in_m": 55.3672899098503, "length_x": 13.8420371384035, "length_y": 13.842367542609299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.822340699679032, 0.0 ], [ -0.001373291015625, 84.822340699679032, 0.0 ], [ -0.001373291015625, 84.822216766569341, 0.0 ], [ -0.00274658203125, 84.822216766569341, 0.0 ], [ -0.00274658203125, 84.822340699679032, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 61, "task_x": 131070, "task_y": 1920, "task_z": 18, "center_y": 84.818311358549295, "area_in_sqm": 191.88894534111, "perimeter_in_m": 55.409594176270801, "length_x": 13.852613953096499, "length_y": 13.852944607663501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.818373372455866, 0.0 ], [ -0.001373291015625, 84.818373372455866, 0.0 ], [ -0.001373291015625, 84.81824934464268, 0.0 ], [ -0.00274658203125, 84.81824934464268, 0.0 ], [ -0.00274658203125, 84.818373372455866, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 62, "task_x": 131070, "task_y": 1952, "task_z": 18, "center_y": 84.814340952313998, "area_in_sqm": 192.18228733539601, "perimeter_in_m": 55.451930502484799, "length_x": 13.8631987822161, "length_y": 13.8635296873294 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.814403013608214, 0.0 ], [ -0.001373291015625, 84.814403013608214, 0.0 ], [ -0.001373291015625, 84.81427889101974, 0.0 ], [ -0.00274658203125, 84.81427889101974, 0.0 ], [ -0.00274658203125, 84.814403013608214, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 63, "task_x": 131070, "task_y": 1984, "task_z": 18, "center_y": 84.810367512120706, "area_in_sqm": 192.47607564926099, "perimeter_in_m": 55.494298903328399, "length_x": 13.8737916316803, "length_y": 13.874122787524801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.810429620838534, 0.0 ], [ -0.001373291015625, 84.810429620838534, 0.0 ], [ -0.001373291015625, 84.810305403402964, 0.0 ], [ -0.00274658203125, 84.810305403402964, 0.0 ], [ -0.00274658203125, 84.810429620838534, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 64, "task_x": 131070, "task_y": 2016, "task_z": 18, "center_y": 84.806391035670302, "area_in_sqm": 192.77031123638201, "perimeter_in_m": 55.536699390816601, "length_x": 13.8843925074107, "length_y": 13.884723914171399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.806453191847609, 0.0 ], [ -0.001373291015625, 84.806453191847609, 0.0 ], [ -0.001373291015625, 84.806328879493066, 0.0 ], [ -0.00274658203125, 84.806328879493066, 0.0 ], [ -0.00274658203125, 84.806453191847609, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 65, "task_x": 131070, "task_y": 2048, "task_z": 18, "center_y": 84.802411520661806, "area_in_sqm": 193.06499433517499, "perimeter_in_m": 55.579132008122599, "length_x": 13.8950014153331, "length_y": 13.8953330731953 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.802473724334519, 0.0 ], [ -0.001373291015625, 84.802473724334519, 0.0 ], [ -0.001373291015625, 84.802349316989051, 0.0 ], [ -0.00274658203125, 84.802349316989051, 0.0 ], [ -0.00274658203125, 84.802473724334519, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 66, "task_x": 131070, "task_y": 2080, "task_z": 18, "center_y": 84.798428964792393, "area_in_sqm": 193.36012637615201, "perimeter_in_m": 55.621596772409497, "length_x": 13.905618361377501, "length_y": 13.905950270526599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.79849121599662, 0.0 ], [ -0.001373291015625, 84.79849121599662, 0.0 ], [ -0.001373291015625, 84.798366713588265, 0.0 ], [ -0.00274658203125, 84.798366713588265, 0.0 ], [ -0.00274658203125, 84.79849121599662, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 67, "task_x": 131070, "task_y": 2112, "task_z": 18, "center_y": 84.794443365757999, "area_in_sqm": 193.655707478523, "perimeter_in_m": 55.664093698898697, "length_x": 13.916243351477499, "length_y": 13.916575512099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.794505664529595, 0.0 ], [ -0.001373291015625, 84.794505664529595, 0.0 ], [ -0.001373291015625, 84.794381066986304, 0.0 ], [ -0.00274658203125, 84.794381066986304, 0.0 ], [ -0.00274658203125, 84.794505664529595, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 68, "task_x": 131070, "task_y": 2144, "task_z": 18, "center_y": 84.790454721252303, "area_in_sqm": 193.95173883438099, "perimeter_in_m": 55.7066228274278, "length_x": 13.9268763915709, "length_y": 13.927208803850499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.790517067627434, 0.0 ], [ -0.001373291015625, 84.790517067627434, 0.0 ], [ -0.001373291015625, 84.790392374877115, 0.0 ], [ -0.00274658203125, 84.790392374877115, 0.0 ], [ -0.00274658203125, 84.790517067627434, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 69, "task_x": 131070, "task_y": 2176, "task_z": 18, "center_y": 84.786463028967603, "area_in_sqm": 194.248220920563, "perimeter_in_m": 55.7491841526993, "length_x": 13.9375174875999, "length_y": 13.937850151723101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.786525422982379, 0.0 ], [ -0.001373291015625, 84.786525422982379, 0.0 ], [ -0.001373291015625, 84.786400634952898, 0.0 ], [ -0.00274658203125, 84.786400634952898, 0.0 ], [ -0.00274658203125, 84.786525422982379, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 70, "task_x": 131070, "task_y": 2208, "task_z": 18, "center_y": 84.782468286594593, "area_in_sqm": 194.545153617859, "perimeter_in_m": 55.791777740768197, "length_x": 13.94816664551, "length_y": 13.948499561663001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.78253072828501, 0.0 ], [ -0.001373291015625, 84.78253072828501, 0.0 ], [ -0.001373291015625, 84.782405844904162, 0.0 ], [ -0.00274658203125, 84.782405844904162, 0.0 ], [ -0.00274658203125, 84.78253072828501, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 71, "task_x": 131070, "task_y": 2240, "task_z": 18, "center_y": 84.778470491821906, "area_in_sqm": 194.84253847599001, "perimeter_in_m": 55.834403577854196, "length_x": 13.958823871251401, "length_y": 13.9591570396199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.778532981224188, 0.0 ], [ -0.001373291015625, 84.778532981224188, 0.0 ], [ -0.001373291015625, 84.778408002419724, 0.0 ], [ -0.00274658203125, 84.778408002419724, 0.0 ], [ -0.00274658203125, 84.778532981224188, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 72, "task_x": 131070, "task_y": 2272, "task_z": 18, "center_y": 84.774469642336896, "area_in_sqm": 195.14037621021299, "perimeter_in_m": 55.877061710553498, "length_x": 13.9694891707778, "length_y": 13.969822591548199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.774532179487068, 0.0 ], [ -0.001373291015625, 84.774532179487068, 0.0 ], [ -0.001373291015625, 84.774407105186668, 0.0 ], [ -0.00274658203125, 84.774407105186668, 0.0 ], [ -0.00274658203125, 84.774532179487068, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 73, "task_x": 131070, "task_y": 2304, "task_z": 18, "center_y": 84.7704657358248, "area_in_sqm": 195.43866693973499, "perimeter_in_m": 55.919752146880199, "length_x": 13.9801625500473, "length_y": 13.9804962234057 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.770528320759084, 0.0 ], [ -0.001373291015625, 84.770528320759084, 0.0 ], [ -0.001373291015625, 84.770403150890417, 0.0 ], [ -0.00274658203125, 84.770403150890417, 0.0 ], [ -0.00274658203125, 84.770528320759084, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 74, "task_x": 131070, "task_y": 2336, "task_z": 18, "center_y": 84.766458769969304, "area_in_sqm": 195.73741281032599, "perimeter_in_m": 55.962474924771499, "length_x": 13.990844015021899, "length_y": 13.991177941154699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.766521402723981, 0.0 ], [ -0.001373291015625, 84.766521402723981, 0.0 ], [ -0.001373291015625, 84.766396137214613, 0.0 ], [ -0.00274658203125, 84.766396137214613, 0.0 ], [ -0.00274658203125, 84.766521402723981, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 75, "task_x": 131070, "task_y": 2368, "task_z": 18, "center_y": 84.762448742452506, "area_in_sqm": 196.03661191463499, "perimeter_in_m": 56.005230056149003, "length_x": 14.001533571667601, "length_y": 14.001867750761299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.762511423063785, 0.0 ], [ -0.001373291015625, 84.762511423063785, 0.0 ], [ -0.001373291015625, 84.762386061841269, 0.0 ], [ -0.00274658203125, 84.762386061841269, 0.0 ], [ -0.00274658203125, 84.762511423063785, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 76, "task_x": 131070, "task_y": 2400, "task_z": 18, "center_y": 84.758435650954695, "area_in_sqm": 196.336266875267, "perimeter_in_m": 56.048017567461002, "length_x": 14.012231225954499, "length_y": 14.0125656581956 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.758498379458814, 0.0 ], [ -0.001373291015625, 84.758498379458814, 0.0 ], [ -0.001373291015625, 84.758372922450633, 0.0 ], [ -0.00274658203125, 84.758372922450633, 0.0 ], [ -0.00274658203125, 84.758498379458814, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 77, "task_x": 131070, "task_y": 2432, "task_z": 18, "center_y": 84.754419493154401, "area_in_sqm": 196.636377811432, "perimeter_in_m": 56.090837492775499, "length_x": 14.022936983856599, "length_y": 14.023271669432001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.754482269587655, 0.0 ], [ -0.001373291015625, 84.754482269587655, 0.0 ], [ -0.001373291015625, 84.754356716721233, 0.0 ], [ -0.00274658203125, 84.754356716721233, 0.0 ], [ -0.00274658203125, 84.754482269587655, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 78, "task_x": 131070, "task_y": 2464, "task_z": 18, "center_y": 84.750400266728604, "area_in_sqm": 196.93694555759399, "perimeter_in_m": 56.133689850234298, "length_x": 14.033650851352, "length_y": 14.0339857904487 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.75046309112723, 0.0 ], [ -0.001373291015625, 84.75046309112723, 0.0 ], [ -0.001373291015625, 84.750337442329936, 0.0 ], [ -0.00274658203125, 84.750337442329936, 0.0 ], [ -0.00274658203125, 84.75046309112723, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 79, "task_x": 131070, "task_y": 2496, "task_z": 18, "center_y": 84.746377969352295, "area_in_sqm": 197.23797106742899, "perimeter_in_m": 56.176574657458602, "length_x": 14.044372834422999, "length_y": 14.0447080272279 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.746440841752687, 0.0 ], [ -0.001373291015625, 84.746440841752687, 0.0 ], [ -0.001373291015625, 84.746315096951847, 0.0 ], [ -0.00274658203125, 84.746315096951847, 0.0 ], [ -0.00274658203125, 84.746440841752687, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 80, "task_x": 131070, "task_y": 2528, "task_z": 18, "center_y": 84.742352598698901, "area_in_sqm": 197.53945469856299, "perimeter_in_m": 56.219491936679198, "length_x": 14.055102939055899, "length_y": 14.055438385755901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.742415519137495, 0.0 ], [ -0.001373291015625, 84.742415519137495, 0.0 ], [ -0.001373291015625, 84.742289678260377, 0.0 ], [ -0.00274658203125, 84.742289678260377, 0.0 ], [ -0.00274658203125, 84.742415519137495, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 81, "task_x": 131070, "task_y": 2560, "task_z": 18, "center_y": 84.738324152440299, "area_in_sqm": 197.841396450996, "perimeter_in_m": 56.262441735449102, "length_x": 14.065841171240599, "length_y": 14.0661768720234 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.738387120953391, 0.0 ], [ -0.001373291015625, 84.738387120953391, 0.0 ], [ -0.001373291015625, 84.738261183927207, 0.0 ], [ -0.00274658203125, 84.738261183927207, 0.0 ], [ -0.00274658203125, 84.738387120953391, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 82, "task_x": 131070, "task_y": 2592, "task_z": 18, "center_y": 84.734292628246394, "area_in_sqm": 198.14379835128801, "perimeter_in_m": 56.3054240418492, "length_x": 14.0765875369718, "length_y": 14.0769234920245 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.734355644870405, 0.0 ], [ -0.001373291015625, 84.734355644870405, 0.0 ], [ -0.001373291015625, 84.734229611622325, 0.0 ], [ -0.00274658203125, 84.734229611622325, 0.0 ], [ -0.00274658203125, 84.734355644870405, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 83, "task_x": 131070, "task_y": 2624, "task_z": 18, "center_y": 84.730258023785396, "area_in_sqm": 198.44666039943701, "perimeter_in_m": 56.348438911415798, "length_x": 14.087342042247601, "length_y": 14.087678251757699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.730321088556849, 0.0 ], [ -0.001373291015625, 84.730321088556849, 0.0 ], [ -0.001373291015625, 84.730194959013971, 0.0 ], [ -0.00274658203125, 84.730194959013971, 0.0 ], [ -0.00274658203125, 84.730321088556849, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 84, "task_x": 131070, "task_y": 2656, "task_z": 18, "center_y": 84.726220336723998, "area_in_sqm": 198.74998319149, "perimeter_in_m": 56.391486346762001, "length_x": 14.0981046930705, "length_y": 14.0984411572258 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.726283449679286, 0.0 ], [ -0.001373291015625, 84.726283449679286, 0.0 ], [ -0.001373291015625, 84.726157223768666, 0.0 ], [ -0.00274658203125, 84.726157223768666, 0.0 ], [ -0.00274658203125, 84.726283449679286, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 85, "task_x": 131070, "task_y": 2688, "task_z": 18, "center_y": 84.7221795647269, "area_in_sqm": 199.05376720428501, "perimeter_in_m": 56.434566383258399, "length_x": 14.108875495447, "length_y": 14.109212214435001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.722242725902603, 0.0 ], [ -0.001373291015625, 84.722242725902603, 0.0 ], [ -0.001373291015625, 84.72211640355124, 0.0 ], [ -0.00274658203125, 84.72211640355124, 0.0 ], [ -0.00274658203125, 84.722242725902603, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 86, "task_x": 131070, "task_y": 2720, "task_z": 18, "center_y": 84.7181357054573, "area_in_sqm": 199.35801422596001, "perimeter_in_m": 56.477679041060597, "length_x": 14.119654455387399, "length_y": 14.119991429396199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.718198914889925, 0.0 ], [ -0.001373291015625, 84.718198914889925, 0.0 ], [ -0.001373291015625, 84.718072496024774, 0.0 ], [ -0.00274658203125, 84.718072496024774, 0.0 ], [ -0.00274658203125, 84.718198914889925, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 87, "task_x": 131070, "task_y": 2752, "task_z": 18, "center_y": 84.714088756576601, "area_in_sqm": 199.66272401809701, "perimeter_in_m": 56.5208243493597, "length_x": 14.1304415789063, "length_y": 14.130778808123999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.714152014302684, 0.0 ], [ -0.001373291015625, 84.714152014302684, 0.0 ], [ -0.001373291015625, 84.714025498850617, 0.0 ], [ -0.00274658203125, 84.714025498850617, 0.0 ], [ -0.00274658203125, 84.714152014302684, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 88, "task_x": 131070, "task_y": 2784, "task_z": 18, "center_y": 84.710038715744503, "area_in_sqm": 199.96789741516099, "perimeter_in_m": 56.564002322663001, "length_x": 14.1412368720225, "length_y": 14.141574356637101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.710102021800537, 0.0 ], [ -0.001373291015625, 84.710102021800537, 0.0 ], [ -0.001373291015625, 84.709975409688411, 0.0 ], [ -0.00274658203125, 84.709975409688411, 0.0 ], [ -0.00274658203125, 84.710102021800537, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 89, "task_x": 131070, "task_y": 2816, "task_z": 18, "center_y": 84.705985580618801, "area_in_sqm": 200.27353501319899, "perimeter_in_m": 56.607212993539299, "length_x": 14.1520403407585, "length_y": 14.1523780809583 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.706048935041494, 0.0 ], [ -0.001373291015625, 84.706048935041494, 0.0 ], [ -0.001373291015625, 84.70592222619608, 0.0 ], [ -0.00274658203125, 84.70592222619608, 0.0 ], [ -0.00274658203125, 84.706048935041494, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 90, "task_x": 131070, "task_y": 2848, "task_z": 18, "center_y": 84.701929348855799, "area_in_sqm": 200.579637765884, "perimeter_in_m": 56.6504563850092, "length_x": 14.162851991141, "length_y": 14.1631899871144 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.701992751681757, 0.0 ], [ -0.001373291015625, 84.701992751681757, 0.0 ], [ -0.001373291015625, 84.701865946029784, 0.0 ], [ -0.00274658203125, 84.701865946029784, 0.0 ], [ -0.00274658203125, 84.701992751681757, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 91, "task_x": 131070, "task_y": 2880, "task_z": 18, "center_y": 84.697870018109896, "area_in_sqm": 200.88620615005499, "perimeter_in_m": 56.693732511605901, "length_x": 14.173671829200901, "length_y": 14.174010081136499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.697933469375855, 0.0 ], [ -0.001373291015625, 84.697933469375855, 0.0 ], [ -0.001373291015625, 84.697806566844008, 0.0 ], [ -0.00274658203125, 84.697806566844008, 0.0 ], [ -0.00274658203125, 84.697933469375855, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 92, "task_x": 131070, "task_y": 2912, "task_z": 18, "center_y": 84.693807586033998, "area_in_sqm": 201.19324171543099, "perimeter_in_m": 56.737041414418101, "length_x": 14.184499860973, "length_y": 14.184838369059401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.693871085776564, 0.0 ], [ -0.001373291015625, 84.693871085776564, 0.0 ], [ -0.001373291015625, 84.693744086291446, 0.0 ], [ -0.00274658203125, 84.693744086291446, 0.0 ], [ -0.00274658203125, 84.693871085776564, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 93, "task_x": 131070, "task_y": 2944, "task_z": 18, "center_y": 84.689742050278994, "area_in_sqm": 201.50074374675799, "perimeter_in_m": 56.780383099674303, "length_x": 14.1953360924963, "length_y": 14.195674856922199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.689805598534917, 0.0 ], [ -0.001373291015625, 84.689805598534917, 0.0 ], [ -0.001373291015625, 84.689678502023114, 0.0 ], [ -0.00274658203125, 84.689678502023114, 0.0 ], [ -0.00274658203125, 84.689805598534917, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 94, "task_x": 131070, "task_y": 2976, "task_z": 18, "center_y": 84.685673408494296, "area_in_sqm": 201.80871415138199, "perimeter_in_m": 56.823757604411902, "length_x": 14.206180529813601, "length_y": 14.206519550768 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.685737005300254, 0.0 ], [ -0.001373291015625, 84.685737005300254, 0.0 ], [ -0.001373291015625, 84.685609811688266, 0.0 ], [ -0.00274658203125, 84.685609811688266, 0.0 ], [ -0.00274658203125, 84.685737005300254, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 95, "task_x": 131070, "task_y": 3008, "task_z": 18, "center_y": 84.681601658327295, "area_in_sqm": 202.11715304851501, "perimeter_in_m": 56.867164947088298, "length_x": 14.2170331789721, "length_y": 14.217372456644 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.681665303720138, 0.0 ], [ -0.001373291015625, 84.681665303720138, 0.0 ], [ -0.001373291015625, 84.681538012934439, 0.0 ], [ -0.00274658203125, 84.681538012934439, 0.0 ], [ -0.00274658203125, 84.681665303720138, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 96, "task_x": 131070, "task_y": 3040, "task_z": 18, "center_y": 84.677526797423894, "area_in_sqm": 202.426060795784, "perimeter_in_m": 56.910605153604102, "length_x": 14.2278940460229, "length_y": 14.228233580601501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.677590491440426, 0.0 ], [ -0.001373291015625, 84.677590491440426, 0.0 ], [ -0.001373291015625, 84.677463103407405, 0.0 ], [ -0.00274658203125, 84.677463103407405, 0.0 ], [ -0.00274658203125, 84.677590491440426, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 97, "task_x": 131070, "task_y": 3072, "task_z": 18, "center_y": 84.673448823428203, "area_in_sqm": 202.735439300537, "perimeter_in_m": 56.954078247920798, "length_x": 14.238763137021101, "length_y": 14.239102928695701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.673512566105231, 0.0 ], [ -0.001373291015625, 84.673512566105231, 0.0 ], [ -0.001373291015625, 84.673385080751245, 0.0 ], [ -0.00274658203125, 84.673385080751245, 0.0 ], [ -0.00274658203125, 84.673512566105231, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 98, "task_x": 131070, "task_y": 3104, "task_z": 18, "center_y": 84.669367733982597, "area_in_sqm": 203.04528772831, "perimeter_in_m": 56.997584252769698, "length_x": 14.2496404580261, "length_y": 14.2499805069861 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.669431525356913, 0.0 ], [ -0.001373291015625, 84.669431525356913, 0.0 ], [ -0.001373291015625, 84.669303942608266, 0.0 ], [ -0.00274658203125, 84.669303942608266, 0.0 ], [ -0.00274658203125, 84.669431525356913, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 99, "task_x": 131070, "task_y": 3136, "task_z": 18, "center_y": 84.665283526727606, "area_in_sqm": 203.355608105659, "perimeter_in_m": 57.041123191950199, "length_x": 14.260526015101201, "length_y": 14.260866321536 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.665347366836144, 0.0 ], [ -0.001373291015625, 84.665347366836144, 0.0 ], [ -0.001373291015625, 84.665219686619068, 0.0 ], [ -0.00274658203125, 84.665219686619068, 0.0 ], [ -0.00274658203125, 84.665347366836144, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 100, "task_x": 131070, "task_y": 3168, "task_z": 18, "center_y": 84.661196199302097, "area_in_sqm": 203.66640043258701, "perimeter_in_m": 57.084695094583502, "length_x": 14.271419814313701, "length_y": 14.2717603784132 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.661260088181791, 0.0 ], [ -0.001373291015625, 84.661260088181791, 0.0 ], [ -0.001373291015625, 84.661132310422474, 0.0 ], [ -0.00274658203125, 84.661132310422474, 0.0 ], [ -0.00274658203125, 84.661260088181791, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 101, "task_x": 131070, "task_y": 3200, "task_z": 18, "center_y": 84.657105749343302, "area_in_sqm": 203.97766625881201, "perimeter_in_m": 57.128299987319402, "length_x": 14.2823218617353, "length_y": 14.282662683689299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.657169687031029, 0.0 ], [ -0.001373291015625, 84.657169687031029, 0.0 ], [ -0.001373291015625, 84.657041811655603, 0.0 ], [ -0.00274658203125, 84.657041811655603, 0.0 ], [ -0.00274658203125, 84.657169687031029, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 102, "task_x": 131070, "task_y": 3232, "task_z": 18, "center_y": 84.653012174486506, "area_in_sqm": 204.28940486907999, "perimeter_in_m": 57.171937876102803, "length_x": 14.2932321634415, "length_y": 14.293573243439701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.653076161019257, 0.0 ], [ -0.001373291015625, 84.653076161019257, 0.0 ], [ -0.001373291015625, 84.652948187953825, 0.0 ], [ -0.00274658203125, 84.652948187953825, 0.0 ], [ -0.00274658203125, 84.653076161019257, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 103, "task_x": 131070, "task_y": 3264, "task_z": 18, "center_y": 84.648915472365502, "area_in_sqm": 204.60161828994799, "perimeter_in_m": 57.215608807248699, "length_x": 14.304150725511899, "length_y": 14.3044920637446 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.648979507780183, 0.0 ], [ -0.001373291015625, 84.648979507780183, 0.0 ], [ -0.001373291015625, 84.648851436950736, 0.0 ], [ -0.00274658203125, 84.648851436950736, 0.0 ], [ -0.00274658203125, 84.648979507780183, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 104, "task_x": 131070, "task_y": 3296, "task_z": 18, "center_y": 84.644815640611995, "area_in_sqm": 204.91430640220599, "perimeter_in_m": 57.259312793270801, "length_x": 14.315077554030401, "length_y": 14.315419150687701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.64487972494571, 0.0 ], [ -0.001373291015625, 84.64487972494571, 0.0 ], [ -0.001373291015625, 84.644751556278223, 0.0 ], [ -0.00274658203125, 84.644751556278223, 0.0 ], [ -0.00274658203125, 84.64487972494571, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 105, "task_x": 131070, "task_y": 3328, "task_z": 18, "center_y": 84.640712676856197, "area_in_sqm": 205.22747004032101, "perimeter_in_m": 57.303049851290702, "length_x": 14.3260126550847, "length_y": 14.326354510356801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.640776810146022, 0.0 ], [ -0.001373291015625, 84.640776810146022, 0.0 ], [ -0.001373291015625, 84.640648543566428, 0.0 ], [ -0.00274658203125, 84.640648543566428, 0.0 ], [ -0.00274658203125, 84.640776810146022, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 106, "task_x": 131070, "task_y": 3360, "task_z": 18, "center_y": 84.6366065787266, "area_in_sqm": 205.54111027717599, "perimeter_in_m": 57.3468200311898, "length_x": 14.3369560347668, "length_y": 14.337298148844299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.636670761009569, 0.0 ], [ -0.001373291015625, 84.636670761009569, 0.0 ], [ -0.001373291015625, 84.636542396443716, 0.0 ], [ -0.00274658203125, 84.636542396443716, 0.0 ], [ -0.00274658203125, 84.636670761009569, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 107, "task_x": 131070, "task_y": 3392, "task_z": 18, "center_y": 84.632497343849906, "area_in_sqm": 205.85522747039801, "perimeter_in_m": 57.390623333642601, "length_x": 14.347907699172699, "length_y": 14.348250072246 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.632561575163052, 0.0 ], [ -0.001373291015625, 84.632561575163052, 0.0 ], [ -0.001373291015625, 84.632433112536745, 0.0 ], [ -0.00274658203125, 84.632433112536745, 0.0 ], [ -0.00274658203125, 84.632561575163052, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 108, "task_x": 131070, "task_y": 3424, "task_z": 18, "center_y": 84.628384969850899, "area_in_sqm": 206.16982281208001, "perimeter_in_m": 57.434459787480897, "length_x": 14.3588676544025, "length_y": 14.3592102866623 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.628449250231398, 0.0 ], [ -0.001373291015625, 84.628449250231398, 0.0 ], [ -0.001373291015625, 84.628320689470399, 0.0 ], [ -0.00274658203125, 84.628320689470399, 0.0 ], [ -0.00274658203125, 84.628449250231398, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 109, "task_x": 131070, "task_y": 3456, "task_z": 18, "center_y": 84.624269454352799, "area_in_sqm": 206.484897017479, "perimeter_in_m": 57.478329430926003, "length_x": 14.3698359065604, "length_y": 14.370178798197699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.624333783837812, 0.0 ], [ -0.001373291015625, 84.624333783837812, 0.0 ], [ -0.001373291015625, 84.6242051248678, 0.0 ], [ -0.00274658203125, 84.6242051248678, 0.0 ], [ -0.00274658203125, 84.624333783837812, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 110, "task_x": 131070, "task_y": 3488, "task_z": 18, "center_y": 84.620150794976993, "area_in_sqm": 206.800449967384, "perimeter_in_m": 57.522232269811802, "length_x": 14.3808124617548, "length_y": 14.3811556129605 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.620215173603725, 0.0 ], [ -0.001373291015625, 84.620215173603725, 0.0 ], [ -0.001373291015625, 84.620086416350347, 0.0 ], [ -0.00274658203125, 84.620086416350347, 0.0 ], [ -0.00274658203125, 84.620215173603725, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 111, "task_x": 131070, "task_y": 3520, "task_z": 18, "center_y": 84.616028989343306, "area_in_sqm": 207.116483449936, "perimeter_in_m": 57.566168333879602, "length_x": 14.391797326098001, "length_y": 14.392140737063 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.616093417148832, 0.0 ], [ -0.001373291015625, 84.616093417148832, 0.0 ], [ -0.001373291015625, 84.615964561537695, 0.0 ], [ -0.00274658203125, 84.615964561537695, 0.0 ], [ -0.00274658203125, 84.616093417148832, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 112, "task_x": 131070, "task_y": 3552, "task_z": 18, "center_y": 84.611904035069401, "area_in_sqm": 207.432997226715, "perimeter_in_m": 57.610137661019799, "length_x": 14.4027905057065, "length_y": 14.403134176622199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.611968512091067, 0.0 ], [ -0.001373291015625, 84.611968512091067, 0.0 ], [ -0.001373291015625, 84.611839558047691, 0.0 ], [ -0.00274658203125, 84.611839558047691, 0.0 ], [ -0.00274658203125, 84.611968512091067, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 113, "task_x": 131070, "task_y": 3584, "task_z": 18, "center_y": 84.607775929771606, "area_in_sqm": 207.749992966652, "perimeter_in_m": 57.654140257269198, "length_x": 14.4137920067009, "length_y": 14.4141359377586 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.607840456046631, 0.0 ], [ -0.001373291015625, 84.607840456046631, 0.0 ], [ -0.001373291015625, 84.607711403496495, 0.0 ], [ -0.00274658203125, 84.607711403496495, 0.0 ], [ -0.00274658203125, 84.607840456046631, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 114, "task_x": 131070, "task_y": 3616, "task_z": 18, "center_y": 84.603644671064202, "area_in_sqm": 208.06747031211901, "perimeter_in_m": 57.698176163191498, "length_x": 14.4248018352059, "length_y": 14.425146026597099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.603709246629947, 0.0 ], [ -0.001373291015625, 84.603709246629947, 0.0 ], [ -0.001373291015625, 84.603580095498458, 0.0 ], [ -0.00274658203125, 84.603580095498458, 0.0 ], [ -0.00274658203125, 84.603709246629947, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 115, "task_x": 131070, "task_y": 3648, "task_z": 18, "center_y": 84.599510256559896, "area_in_sqm": 208.38543117046399, "perimeter_in_m": 57.742245377933003, "length_x": 14.435819997350499, "length_y": 14.436164449266601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.599574881453663, 0.0 ], [ -0.001373291015625, 84.599574881453663, 0.0 ], [ -0.001373291015625, 84.599445631666214, 0.0 ], [ -0.00274658203125, 84.599445631666214, 0.0 ], [ -0.00274658203125, 84.599574881453663, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 116, "task_x": 131070, "task_y": 3680, "task_z": 18, "center_y": 84.595372683869698, "area_in_sqm": 208.70387530326801, "perimeter_in_m": 57.786347958184898, "length_x": 14.4468464992673, "length_y": 14.447191211900201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.59543735812872, 0.0 ], [ -0.001373291015625, 84.59543735812872, 0.0 ], [ -0.001373291015625, 84.595308009610605, 0.0 ], [ -0.00274658203125, 84.595308009610605, 0.0 ], [ -0.00274658203125, 84.59543735812872, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 117, "task_x": 131070, "task_y": 3712, "task_z": 18, "center_y": 84.591231950602506, "area_in_sqm": 209.02280390262601, "perimeter_in_m": 57.8304839163875, "length_x": 14.457881347093499, "length_y": 14.458226320634999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.591296674264257, 0.0 ], [ -0.001373291015625, 84.591296674264257, 0.0 ], [ -0.001373291015625, 84.591167226940726, 0.0 ], [ -0.00274658203125, 84.591167226940726, 0.0 ], [ -0.00274658203125, 84.591296674264257, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 118, "task_x": 131070, "task_y": 3744, "task_z": 18, "center_y": 84.587088054365793, "area_in_sqm": 209.342217564583, "perimeter_in_m": 57.8746532618038, "length_x": 14.4689245469703, "length_y": 14.469269781612301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.587152827467676, 0.0 ], [ -0.001373291015625, 84.587152827467676, 0.0 ], [ -0.001373291015625, 84.587023281263939, 0.0 ], [ -0.00274658203125, 84.587023281263939, 0.0 ], [ -0.00274658203125, 84.587152827467676, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 119, "task_x": 131070, "task_y": 3776, "task_z": 18, "center_y": 84.582940992765202, "area_in_sqm": 209.66211760044101, "perimeter_in_m": 57.918856043713497, "length_x": 14.4799761050427, "length_y": 14.4803216009776 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.583005815344592, 0.0 ], [ -0.001373291015625, 84.583005815344592, 0.0 ], [ -0.001373291015625, 84.582876170185813, 0.0 ], [ -0.00274658203125, 84.582876170185813, 0.0 ], [ -0.00274658203125, 84.583005815344592, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 120, "task_x": 131070, "task_y": 3808, "task_z": 18, "center_y": 84.578790763404498, "area_in_sqm": 209.98250389099101, "perimeter_in_m": 57.963092269624298, "length_x": 14.4910360274603, "length_y": 14.491381784880099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.578855635498897, 0.0 ], [ -0.001373291015625, 84.578855635498897, 0.0 ], [ -0.001373291015625, 84.578725891310157, 0.0 ], [ -0.00274658203125, 84.578725891310157, 0.0 ], [ -0.00274658203125, 84.578855635498897, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 121, "task_x": 131070, "task_y": 3840, "task_z": 18, "center_y": 84.574637363885799, "area_in_sqm": 210.30337691307099, "perimeter_in_m": 58.007361961394203, "length_x": 14.502104320376599, "length_y": 14.502450339473601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.57470228553268, 0.0 ], [ -0.001373291015625, 84.57470228553268, 0.0 ], [ -0.001373291015625, 84.574572442239017, 0.0 ], [ -0.00274658203125, 84.574572442239017, 0.0 ], [ -0.00274658203125, 84.57470228553268, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 122, "task_x": 131070, "task_y": 3872, "task_z": 18, "center_y": 84.570480791809501, "area_in_sqm": 210.62473917007401, "perimeter_in_m": 58.051665158410799, "length_x": 14.513180989948999, "length_y": 14.5135272709158 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.570545763046297, 0.0 ], [ -0.001373291015625, 84.570545763046297, 0.0 ], [ -0.001373291015625, 84.570415820572691, 0.0 ], [ -0.00274658203125, 84.570415820572691, 0.0 ], [ -0.00274658203125, 84.570545763046297, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 123, "task_x": 131070, "task_y": 3904, "task_z": 18, "center_y": 84.566321044774, "area_in_sqm": 210.94658935070001, "perimeter_in_m": 58.096001871928202, "length_x": 14.5242660423394, "length_y": 14.524612585368599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.566386065638298, 0.0 ], [ -0.001373291015625, 84.566386065638298, 0.0 ], [ -0.001373291015625, 84.566256023909688, 0.0 ], [ -0.00274658203125, 84.566256023909688, 0.0 ], [ -0.00274658203125, 84.566386065638298, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 124, "task_x": 131070, "task_y": 3936, "task_z": 18, "center_y": 84.562158120376097, "area_in_sqm": 211.268929362297, "perimeter_in_m": 58.140372140641801, "length_x": 14.5353594837136, "length_y": 14.535706288997799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.562223190905513, 0.0 ], [ -0.001373291015625, 84.562223190905513, 0.0 ], [ -0.001373291015625, 84.562093049846752, 0.0 ], [ -0.00274658203125, 84.562093049846752, 0.0 ], [ -0.00274658203125, 84.562223190905513, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 125, "task_x": 131070, "task_y": 3968, "task_z": 18, "center_y": 84.557992016210903, "area_in_sqm": 211.59175980091101, "perimeter_in_m": 58.184775977061598, "length_x": 14.546461320241299, "length_y": 14.5468083879737 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.558057136442983, 0.0 ], [ -0.001373291015625, 84.558057136442983, 0.0 ], [ -0.001373291015625, 84.557926895978895, 0.0 ], [ -0.00274658203125, 84.557926895978895, 0.0 ], [ -0.00274658203125, 84.558057136442983, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 126, "task_x": 131070, "task_y": 4000, "task_z": 18, "center_y": 84.553822729871598, "area_in_sqm": 211.915080666542, "perimeter_in_m": 58.229213403614402, "length_x": 14.557571558097001, "length_y": 14.557918888470301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.553887899843957, 0.0 ], [ -0.001373291015625, 84.553887899843957, 0.0 ], [ -0.001373291015625, 84.55375755989931, 0.0 ], [ -0.00274658203125, 84.55375755989931, 0.0 ], [ -0.00274658203125, 84.553887899843957, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 127, "task_x": 131070, "task_y": 4032, "task_z": 18, "center_y": 84.549650258949697, "area_in_sqm": 212.23889362812, "perimeter_in_m": 58.273684467519502, "length_x": 14.568690203458599, "length_y": 14.5690377966661 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.549715478699937, 0.0 ], [ -0.001373291015625, 84.549715478699937, 0.0 ], [ -0.001373291015625, 84.549585039199428, 0.0 ], [ -0.00274658203125, 84.549585039199428, 0.0 ], [ -0.00274658203125, 84.549715478699937, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 128, "task_x": 131070, "task_y": 4064, "task_z": 18, "center_y": 84.545474601034798, "area_in_sqm": 212.56319880485501, "perimeter_in_m": 58.318189160953501, "length_x": 14.5798172625086, "length_y": 14.5801651187435 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.545539870600663, 0.0 ], [ -0.001373291015625, 84.545539870600663, 0.0 ], [ -0.001373291015625, 84.545409331468946, 0.0 ], [ -0.00274658203125, 84.545409331468946, 0.0 ], [ -0.00274658203125, 84.545539870600663, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 129, "task_x": 131070, "task_y": 4096, "task_z": 18, "center_y": 84.541295753714905, "area_in_sqm": 212.88799762725799, "perimeter_in_m": 58.362727534337701, "length_x": 14.5909527414334, "length_y": 14.591300860889101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.54136107313407, 0.0 ], [ -0.001373291015625, 84.54136107313407, 0.0 ], [ -0.001373291015625, 84.541230434295741, 0.0 ], [ -0.00274658203125, 84.541230434295741, 0.0 ], [ -0.00274658203125, 84.54136107313407, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 130, "task_x": 131070, "task_y": 4128, "task_z": 18, "center_y": 84.537113714576194, "area_in_sqm": 213.213290095329, "perimeter_in_m": 58.407299604113803, "length_x": 14.6020966464236, "length_y": 14.602445029293699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.537179083886357, 0.0 ], [ -0.001373291015625, 84.537179083886357, 0.0 ], [ -0.001373291015625, 84.537048345265944, 0.0 ], [ -0.00274658203125, 84.537048345265944, 0.0 ], [ -0.00274658203125, 84.537179083886357, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 131, "task_x": 131070, "task_y": 4160, "task_z": 18, "center_y": 84.532928481202902, "area_in_sqm": 213.53907728195199, "perimeter_in_m": 58.451905386027299, "length_x": 14.613248983674, "length_y": 14.6135976301521 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.532993900441895, 0.0 ], [ -0.001373291015625, 84.532993900441895, 0.0 ], [ -0.001373291015625, 84.532863061963909, 0.0 ], [ -0.00274658203125, 84.532863061963909, 0.0 ], [ -0.00274658203125, 84.532993900441895, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 132, "task_x": 131070, "task_y": 4192, "task_z": 18, "center_y": 84.528740051177806, "area_in_sqm": 213.86536026000999, "perimeter_in_m": 58.496544921494802, "length_x": 14.624409759383401, "length_y": 14.624758669663301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.528805520383344, 0.0 ], [ -0.001373291015625, 84.528805520383344, 0.0 ], [ -0.001373291015625, 84.528674581972183, 0.0 ], [ -0.00274658203125, 84.528674581972183, 0.0 ], [ -0.00274658203125, 84.528805520383344, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 133, "task_x": 131070, "task_y": 4224, "task_z": 18, "center_y": 84.524548422081594, "area_in_sqm": 214.19213914871199, "perimeter_in_m": 58.541218218665698, "length_x": 14.635578979754801, "length_y": 14.635928154030401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.52461394129152, 0.0 ], [ -0.001373291015625, 84.52461394129152, 0.0 ], [ -0.001373291015625, 84.524482902871569, 0.0 ], [ -0.00274658203125, 84.524482902871569, 0.0 ], [ -0.00274658203125, 84.52461394129152, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 134, "task_x": 131070, "task_y": 4256, "task_z": 18, "center_y": 84.520353591493304, "area_in_sqm": 214.51941525936101, "perimeter_in_m": 58.585925317204897, "length_x": 14.6467566509954, "length_y": 14.647106089460699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.520419160745519, 0.0 ], [ -0.001373291015625, 84.520419160745519, 0.0 ], [ -0.001373291015625, 84.52028802224109, 0.0 ], [ -0.00274658203125, 84.52028802224109, 0.0 ], [ -0.00274658203125, 84.520419160745519, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 135, "task_x": 131070, "task_y": 4288, "task_z": 18, "center_y": 84.516155556990299, "area_in_sqm": 214.84718883037601, "perimeter_in_m": 58.630666222621599, "length_x": 14.657942779316601, "length_y": 14.658292482165701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.516221176322603, 0.0 ], [ -0.001373291015625, 84.516221176322603, 0.0 ], [ -0.001373291015625, 84.516089937657966, 0.0 ], [ -0.00274658203125, 84.516089937657966, 0.0 ], [ -0.00274658203125, 84.516221176322603, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 136, "task_x": 131070, "task_y": 4320, "task_z": 18, "center_y": 84.511954316148007, "area_in_sqm": 215.17546069622, "perimeter_in_m": 58.675440984687, "length_x": 14.6691373709335, "length_y": 14.669487338360801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.512019985598286, 0.0 ], [ -0.001373291015625, 84.512019985598286, 0.0 ], [ -0.001373291015625, 84.511888646697656, 0.0 ], [ -0.00274658203125, 84.511888646697656, 0.0 ], [ -0.00274658203125, 84.512019985598286, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 137, "task_x": 131070, "task_y": 4352, "task_z": 18, "center_y": 84.507749866540095, "area_in_sqm": 215.504231929779, "perimeter_in_m": 58.720249615831101, "length_x": 14.680340432066, "length_y": 14.680690664265899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.507815586146307, 0.0 ], [ -0.001373291015625, 84.507815586146307, 0.0 ], [ -0.001373291015625, 84.507684146933812, 0.0 ], [ -0.00274658203125, 84.507684146933812, 0.0 ], [ -0.00274658203125, 84.507815586146307, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 138, "task_x": 131070, "task_y": 4384, "task_z": 18, "center_y": 84.503542205738398, "area_in_sqm": 215.83350348472601, "perimeter_in_m": 58.765092136634003, "length_x": 14.691551968937601, "length_y": 14.6919024661048 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.503607975538586, 0.0 ], [ -0.001373291015625, 84.503607975538586, 0.0 ], [ -0.001373291015625, 84.503476435938325, 0.0 ], [ -0.00274658203125, 84.503476435938325, 0.0 ], [ -0.00274658203125, 84.503607975538586, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 139, "task_x": 131070, "task_y": 4416, "task_z": 18, "center_y": 84.4993313313133, "area_in_sqm": 216.16327488422399, "perimeter_in_m": 58.809968574234503, "length_x": 14.7027719877764, "length_y": 14.7031227501054 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.499397151345278, 0.0 ], [ -0.001373291015625, 84.499397151345278, 0.0 ], [ -0.001373291015625, 84.499265511281308, 0.0 ], [ -0.00274658203125, 84.499265511281308, 0.0 ], [ -0.00274658203125, 84.499397151345278, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 140, "task_x": 131070, "task_y": 4448, "task_z": 18, "center_y": 84.495117240832897, "area_in_sqm": 216.493548512459, "perimeter_in_m": 58.854878954893401, "length_x": 14.714000494814201, "length_y": 14.7143515224999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.49518311113475, 0.0 ], [ -0.001373291015625, 84.49518311113475, 0.0 ], [ -0.001373291015625, 84.495051370531044, 0.0 ], [ -0.00274658203125, 84.495051370531044, 0.0 ], [ -0.00274658203125, 84.49518311113475, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 141, "task_x": 131070, "task_y": 4480, "task_z": 18, "center_y": 84.490899931863794, "area_in_sqm": 216.82432401180299, "perimeter_in_m": 58.899823314439303, "length_x": 14.7252374962872, "length_y": 14.7255887895246 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.490965852473607, 0.0 ], [ -0.001373291015625, 84.490965852473607, 0.0 ], [ -0.001373291015625, 84.49083401125408, 0.0 ], [ -0.00274658203125, 84.49083401125408, 0.0 ], [ -0.00274658203125, 84.490965852473607, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 142, "task_x": 131070, "task_y": 4512, "task_z": 18, "center_y": 84.486679401970903, "area_in_sqm": 217.15560233593001, "perimeter_in_m": 58.944801652600503, "length_x": 14.7364829984359, "length_y": 14.7368345574199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.486745372926606, 0.0 ], [ -0.001373291015625, 84.486745372926606, 0.0 ], [ -0.001373291015625, 84.486613431015144, 0.0 ], [ -0.00274658203125, 84.486613431015144, 0.0 ], [ -0.00274658203125, 84.486745372926606, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 143, "task_x": 131070, "task_y": 4544, "task_z": 18, "center_y": 84.482455648717007, "area_in_sqm": 217.487384676933, "perimeter_in_m": 58.9898140229202, "length_x": 14.7477370075046, "length_y": 14.7480888324306 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.482521670056755, 0.0 ], [ -0.001373291015625, 84.482521670056755, 0.0 ], [ -0.001373291015625, 84.48238962737716, 0.0 ], [ -0.00274658203125, 84.48238962737716, 0.0 ], [ -0.00274658203125, 84.482521670056755, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 144, "task_x": 131070, "task_y": 4576, "task_z": 18, "center_y": 84.478228669663295, "area_in_sqm": 217.81967127323199, "perimeter_in_m": 59.034860431869497, "length_x": 14.758999529742001, "length_y": 14.7593516208052 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.478294741425273, 0.0 ], [ -0.001373291015625, 84.478294741425273, 0.0 ], [ -0.001373291015625, 84.478162597901317, 0.0 ], [ -0.00274658203125, 84.478162597901317, 0.0 ], [ -0.00274658203125, 84.478294741425273, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 145, "task_x": 131070, "task_y": 4608, "task_z": 18, "center_y": 84.473998462369295, "area_in_sqm": 218.15246343612699, "perimeter_in_m": 59.079940902917102, "length_x": 14.7702705714009, "length_y": 14.770622928796801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.474064584591588, 0.0 ], [ -0.001373291015625, 84.474064584591588, 0.0 ], [ -0.001373291015625, 84.473932340146959, 0.0 ], [ -0.00274658203125, 84.473932340146959, 0.0 ], [ -0.00274658203125, 84.474064584591588, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 146, "task_x": 131070, "task_y": 4640, "task_z": 18, "center_y": 84.469765024392501, "area_in_sqm": 218.4857609272, "perimeter_in_m": 59.1250554742359, "length_x": 14.781550138738201, "length_y": 14.7819027626624 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.469831197113294, 0.0 ], [ -0.001373291015625, 84.469831197113294, 0.0 ], [ -0.001373291015625, 84.469698851671652, 0.0 ], [ -0.00274658203125, 84.469698851671652, 0.0 ], [ -0.00274658203125, 84.469831197113294, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 147, "task_x": 131070, "task_y": 4672, "task_z": 18, "center_y": 84.465528353288704, "area_in_sqm": 218.81956613063801, "perimeter_in_m": 59.170204164356498, "length_x": 14.792838238014999, "length_y": 14.793191128663301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.465594576546252, 0.0 ], [ -0.001373291015625, 84.465594576546252, 0.0 ], [ -0.001373291015625, 84.46546213003117, 0.0 ], [ -0.00274658203125, 84.46546213003117, 0.0 ], [ -0.00274658203125, 84.465594576546252, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 148, "task_x": 131070, "task_y": 4704, "task_z": 18, "center_y": 84.461288446612002, "area_in_sqm": 219.15387856960299, "perimeter_in_m": 59.215386996597601, "length_x": 14.8041348754967, "length_y": 14.804488033064899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.461354720444461, 0.0 ], [ -0.001373291015625, 84.461354720444461, 0.0 ], [ -0.001373291015625, 84.4612221727795, 0.0 ], [ -0.00274658203125, 84.4612221727795, 0.0 ], [ -0.00274658203125, 84.461354720444461, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 149, "task_x": 131070, "task_y": 4736, "task_z": 18, "center_y": 84.457045301914505, "area_in_sqm": 219.48869872093201, "perimeter_in_m": 59.2606039958793, "length_x": 14.8154400574526, "length_y": 14.8157934821367 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.457111626360188, 0.0 ], [ -0.001373291015625, 84.457111626360188, 0.0 ], [ -0.001373291015625, 84.456978977468808, 0.0 ], [ -0.00274658203125, 84.456978977468808, 0.0 ], [ -0.00274658203125, 84.457111626360188, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 150, "task_x": 131070, "task_y": 4768, "task_z": 18, "center_y": 84.452798916746701, "area_in_sqm": 219.824028849602, "perimeter_in_m": 59.305855190315597, "length_x": 14.8267537901565, "length_y": 14.8271074821526 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.45286529184385, 0.0 ], [ -0.001373291015625, 84.45286529184385, 0.0 ], [ -0.001373291015625, 84.452732541649482, 0.0 ], [ -0.00274658203125, 84.452732541649482, 0.0 ], [ -0.00274658203125, 84.45286529184385, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 151, "task_x": 131070, "task_y": 4800, "task_z": 18, "center_y": 84.448549288657105, "area_in_sqm": 220.159867882729, "perimeter_in_m": 59.351140601657598, "length_x": 14.838076079885999, "length_y": 14.8384300393903 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.448615714444102, 0.0 ], [ -0.001373291015625, 84.448615714444102, 0.0 ], [ -0.001373291015625, 84.448482862870108, 0.0 ], [ -0.00274658203125, 84.448482862870108, 0.0 ], [ -0.00274658203125, 84.448615714444102, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 152, "task_x": 131070, "task_y": 4832, "task_z": 18, "center_y": 84.444296415192596, "area_in_sqm": 220.49621796608, "perimeter_in_m": 59.396460262284897, "length_x": 14.849406932922999, "length_y": 14.849761160131999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.444362891707755, 0.0 ], [ -0.001373291015625, 84.444362891707755, 0.0 ], [ -0.001373291015625, 84.444229938677452, 0.0 ], [ -0.00274658203125, 84.444229938677452, 0.0 ], [ -0.00274658203125, 84.444362891707755, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 153, "task_x": 131070, "task_y": 4864, "task_z": 18, "center_y": 84.440040293898207, "area_in_sqm": 220.83307921886399, "perimeter_in_m": 59.441814188121803, "length_x": 14.8607463555539, "length_y": 14.861100850664 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.440106821179882, 0.0 ], [ -0.001373291015625, 84.440106821179882, 0.0 ], [ -0.001373291015625, 84.439973766616504, 0.0 ], [ -0.00274658203125, 84.439973766616504, 0.0 ], [ -0.00274658203125, 84.440106821179882, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 154, "task_x": 131070, "task_y": 4896, "task_z": 18, "center_y": 84.435780922317093, "area_in_sqm": 221.170452833176, "perimeter_in_m": 59.487202402536802, "length_x": 14.8720943540688, "length_y": 14.8724491172766 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.435847500403682, 0.0 ], [ -0.001373291015625, 84.435847500403682, 0.0 ], [ -0.001373291015625, 84.435714344230448, 0.0 ], [ -0.00274658203125, 84.435714344230448, 0.0 ], [ -0.00274658203125, 84.435847500403682, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 155, "task_x": 131070, "task_y": 4928, "task_z": 18, "center_y": 84.431518297990607, "area_in_sqm": 221.50833916664101, "perimeter_in_m": 59.532624943247498, "length_x": 14.8834509347622, "length_y": 14.8838059662646 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.431584926920593, 0.0 ], [ -0.001373291015625, 84.431584926920593, 0.0 ], [ -0.001373291015625, 84.431451669060635, 0.0 ], [ -0.00274658203125, 84.431451669060635, 0.0 ], [ -0.00274658203125, 84.431584926920593, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 156, "task_x": 131070, "task_y": 4960, "task_z": 18, "center_y": 84.427252418458394, "area_in_sqm": 221.84673976898199, "perimeter_in_m": 59.578081829388204, "length_x": 14.894816103932699, "length_y": 14.8951714039266 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.427319098270246, 0.0 ], [ -0.001373291015625, 84.427319098270246, 0.0 ], [ -0.001373291015625, 84.427185738646642, 0.0 ], [ -0.00274658203125, 84.427185738646642, 0.0 ], [ -0.00274658203125, 84.427319098270246, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 157, "task_x": 131070, "task_y": 4992, "task_z": 18, "center_y": 84.422983281258297, "area_in_sqm": 222.18565404415099, "perimeter_in_m": 59.623573081520902, "length_x": 14.906189867883199, "length_y": 14.906545436565599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.423050011990441, 0.0 ], [ -0.001373291015625, 84.423050011990441, 0.0 ], [ -0.001373291015625, 84.422916550526224, 0.0 ], [ -0.00274658203125, 84.422916550526224, 0.0 ], [ -0.00274658203125, 84.423050011990441, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 158, "task_x": 131070, "task_y": 5024, "task_z": 18, "center_y": 84.418710883926295, "area_in_sqm": 222.525083422661, "perimeter_in_m": 59.669098726233699, "length_x": 14.917572232920699, "length_y": 14.917928070488699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.418777665617213, 0.0 ], [ -0.001373291015625, 84.418777665617213, 0.0 ], [ -0.001373291015625, 84.418644102235348, 0.0 ], [ -0.00274658203125, 84.418644102235348, 0.0 ], [ -0.00274658203125, 84.418777665617213, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 159, "task_x": 131070, "task_y": 5056, "task_z": 18, "center_y": 84.414435223996406, "area_in_sqm": 222.865029335022, "perimeter_in_m": 59.714658799681203, "length_x": 14.9289632053564, "length_y": 14.9293193120073 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.414502056684725, 0.0 ], [ -0.001373291015625, 84.414502056684725, 0.0 ], [ -0.001373291015625, 84.41436839130813, 0.0 ], [ -0.00274658203125, 84.41436839130813, 0.0 ], [ -0.00274658203125, 84.414502056684725, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 160, "task_x": 131070, "task_y": 5088, "task_z": 18, "center_y": 84.410156299001201, "area_in_sqm": 223.205491781235, "perimeter_in_m": 59.7602533082894, "length_x": 14.940362791505599, "length_y": 14.9407191674369 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.410223182725389, 0.0 ], [ -0.001373291015625, 84.410223182725389, 0.0 ], [ -0.001373291015625, 84.410089415276929, 0.0 ], [ -0.00274658203125, 84.410089415276929, 0.0 ], [ -0.00274658203125, 84.410223182725389, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 161, "task_x": 131070, "task_y": 5120, "task_z": 18, "center_y": 84.405874106471003, "area_in_sqm": 223.546471953392, "perimeter_in_m": 59.805882289822698, "length_x": 14.951770997688101, "length_y": 14.952127643097199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.40594104126977, 0.0 ], [ -0.001373291015625, 84.40594104126977, 0.0 ], [ -0.001373291015625, 84.405807171672237, 0.0 ], [ -0.00274658203125, 84.405807171672237, 0.0 ], [ -0.00274658203125, 84.40594104126977, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 162, "task_x": 131070, "task_y": 5152, "task_z": 18, "center_y": 84.401588643934701, "area_in_sqm": 223.88797044754, "perimeter_in_m": 59.851545774621002, "length_x": 14.9631878302273, "length_y": 14.963544745312101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.40165562984663, 0.0 ], [ -0.001373291015625, 84.40165562984663, 0.0 ], [ -0.001373291015625, 84.401521658022773, 0.0 ], [ -0.00274658203125, 84.401521658022773, 0.0 ], [ -0.00274658203125, 84.40165562984663, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 163, "task_x": 131070, "task_y": 5184, "task_z": 18, "center_y": 84.397299908919194, "area_in_sqm": 224.22998809814499, "perimeter_in_m": 59.897243769133198, "length_x": 14.9746132954514, "length_y": 14.974970480409601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.397366945982924, 0.0 ], [ -0.001373291015625, 84.397366945982924, 0.0 ], [ -0.001373291015625, 84.397232871855437, 0.0 ], [ -0.00274658203125, 84.397232871855437, 0.0 ], [ -0.00274658203125, 84.397366945982924, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 164, "task_x": 131070, "task_y": 5216, "task_z": 18, "center_y": 84.393007898949605, "area_in_sqm": 224.57252526283301, "perimeter_in_m": 59.942976317699298, "length_x": 14.986047399692399, "length_y": 14.986404854721901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.393074987203804, 0.0 ], [ -0.001373291015625, 84.393074987203804, 0.0 ], [ -0.001373291015625, 84.392940810695308, 0.0 ], [ -0.00274658203125, 84.392940810695308, 0.0 ], [ -0.00274658203125, 84.393074987203804, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 165, "task_x": 131070, "task_y": 5248, "task_z": 18, "center_y": 84.388712611549096, "area_in_sqm": 224.91558372974399, "perimeter_in_m": 59.988743435637097, "length_x": 14.997490149286699, "length_y": 14.9978478745857 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.388779751032558, 0.0 ], [ -0.001373291015625, 84.388779751032558, 0.0 ], [ -0.001373291015625, 84.388645472065633, 0.0 ], [ -0.00274658203125, 84.388645472065633, 0.0 ], [ -0.00274658203125, 84.388779751032558, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 166, "task_x": 131070, "task_y": 5280, "task_z": 18, "center_y": 84.384414044239307, "area_in_sqm": 225.25916302204101, "perimeter_in_m": 60.034545152255703, "length_x": 15.0089415505748, "length_y": 15.009299546341399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.384481234990702, 0.0 ], [ -0.001373291015625, 84.384481234990702, 0.0 ], [ -0.001373291015625, 84.38434685348787, 0.0 ], [ -0.00274658203125, 84.38434685348787, 0.0 ], [ -0.00274658203125, 84.384481234990702, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 167, "task_x": 131070, "task_y": 5312, "task_z": 18, "center_y": 84.380112194539805, "area_in_sqm": 225.60326480865501, "perimeter_in_m": 60.080381488909701, "length_x": 15.0204016099014, "length_y": 15.020759876333999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.380179436597913, 0.0 ], [ -0.001373291015625, 84.380179436597913, 0.0 ], [ -0.001373291015625, 84.380044952481626, 0.0 ], [ -0.00274658203125, 84.380044952481626, 0.0 ], [ -0.00274658203125, 84.380179436597913, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 168, "task_x": 131070, "task_y": 5344, "task_z": 18, "center_y": 84.375807059968395, "area_in_sqm": 225.94788920879401, "perimeter_in_m": 60.1262524788186, "length_x": 15.0318703336154, "length_y": 15.032228870912499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.375874353372069, 0.0 ], [ -0.001373291015625, 84.375874353372069, 0.0 ], [ -0.001373291015625, 84.37573976656472, 0.0 ], [ -0.00274658203125, 84.37573976656472, 0.0 ], [ -0.00274658203125, 84.375874353372069, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 169, "task_x": 131070, "task_y": 5376, "task_z": 18, "center_y": 84.371498638041203, "area_in_sqm": 226.29303836822501, "perimeter_in_m": 60.172158139458801, "length_x": 15.0433477280699, "length_y": 15.043706536430101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.371565982829182, 0.0 ], [ -0.001373291015625, 84.371565982829182, 0.0 ], [ -0.001373291015625, 84.371431293253139, 0.0 ], [ -0.00274658203125, 84.371431293253139, 0.0 ], [ -0.00274658203125, 84.371565982829182, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 170, "task_x": 131070, "task_y": 5408, "task_z": 18, "center_y": 84.367186926272296, "area_in_sqm": 226.63871121406601, "perimeter_in_m": 60.218098498049699, "length_x": 15.054833799622299, "length_y": 15.0551928792443 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.367254322483504, 0.0 ], [ -0.001373291015625, 84.367254322483504, 0.0 ], [ -0.001373291015625, 84.367119530061046, 0.0 ], [ -0.00274658203125, 84.367119530061046, 0.0 ], [ -0.00274658203125, 84.367254322483504, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 171, "task_x": 131070, "task_y": 5440, "task_z": 18, "center_y": 84.362871922174094, "area_in_sqm": 226.98491001129199, "perimeter_in_m": 60.264073575976397, "length_x": 15.066328554634101, "length_y": 15.0666879057167 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.362939369847396, 0.0 ], [ -0.001373291015625, 84.362939369847396, 0.0 ], [ -0.001373291015625, 84.362804474500763, 0.0 ], [ -0.00274658203125, 84.362804474500763, 0.0 ], [ -0.00274658203125, 84.362939369847396, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 172, "task_x": 131070, "task_y": 5472, "task_z": 18, "center_y": 84.358553623257095, "area_in_sqm": 227.33163475990301, "perimeter_in_m": 60.310083408972197, "length_x": 15.077831999471, "length_y": 15.0781916222132 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.358621122431444, 0.0 ], [ -0.001373291015625, 84.358621122431444, 0.0 ], [ -0.001373291015625, 84.358486124082802, 0.0 ], [ -0.00274658203125, 84.358486124082802, 0.0 ], [ -0.00274658203125, 84.358621122431444, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 173, "task_x": 131070, "task_y": 5504, "task_z": 18, "center_y": 84.354232027030093, "area_in_sqm": 227.67888629436499, "perimeter_in_m": 60.356128011360802, "length_x": 15.089344140502901, "length_y": 15.0897040351039 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.354299577744385, 0.0 ], [ -0.001373291015625, 84.354299577744385, 0.0 ], [ -0.001373291015625, 84.354164476315873, 0.0 ], [ -0.00274658203125, 84.354164476315873, 0.0 ], [ -0.00274658203125, 84.354299577744385, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 174, "task_x": 131070, "task_y": 5536, "task_z": 18, "center_y": 84.349907130999995, "area_in_sqm": 228.02666580677001, "perimeter_in_m": 60.4022074254408, "length_x": 15.100864984103801, "length_y": 15.101225150763 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.349974733293152, 0.0 ], [ -0.001373291015625, 84.349974733293152, 0.0 ], [ -0.001373291015625, 84.349839528706809, 0.0 ], [ -0.00274658203125, 84.349839528706809, 0.0 ], [ -0.00274658203125, 84.349974733293152, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 175, "task_x": 131070, "task_y": 5568, "task_z": 18, "center_y": 84.3455789326717, "area_in_sqm": 228.37497377395599, "perimeter_in_m": 60.448321652274799, "length_x": 15.112394536652401, "length_y": 15.112754975568899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.345646586582831, 0.0 ], [ -0.001373291015625, 84.345646586582831, 0.0 ], [ -0.001373291015625, 84.345511278760668, 0.0 ], [ -0.00274658203125, 84.345511278760668, 0.0 ], [ -0.00274658203125, 84.345646586582831, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 176, "task_x": 131070, "task_y": 5600, "task_z": 18, "center_y": 84.341247429548602, "area_in_sqm": 228.72381150722501, "perimeter_in_m": 60.494470735595598, "length_x": 15.123932804531099, "length_y": 15.124293515904499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.341315135116659, 0.0 ], [ -0.001373291015625, 84.341315135116659, 0.0 ], [ -0.001373291015625, 84.341179723980616, 0.0 ], [ -0.00274658203125, 84.341179723980616, 0.0 ], [ -0.00274658203125, 84.341315135116659, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 177, "task_x": 131070, "task_y": 5632, "task_z": 18, "center_y": 84.336912619132093, "area_in_sqm": 229.073179244995, "perimeter_in_m": 60.540654699672103, "length_x": 15.1354797941264, "length_y": 15.135840778156499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.33698037639607, 0.0 ], [ -0.001373291015625, 84.33698037639607, 0.0 ], [ -0.001373291015625, 84.336844861868059, 0.0 ], [ -0.00274658203125, 84.336844861868059, 0.0 ], [ -0.00274658203125, 84.33698037639607, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 178, "task_x": 131070, "task_y": 5664, "task_z": 18, "center_y": 84.332574498921602, "area_in_sqm": 229.42307806015, "perimeter_in_m": 60.586873557630199, "length_x": 15.147035511829699, "length_y": 15.147396768716201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.332642307920679, 0.0 ], [ -0.001373291015625, 84.332642307920679, 0.0 ], [ -0.001373291015625, 84.332506689922525, 0.0 ], [ -0.00274658203125, 84.332506689922525, 0.0 ], [ -0.00274658203125, 84.332642307920679, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 179, "task_x": 131070, "task_y": 5696, "task_z": 18, "center_y": 84.328233066414995, "area_in_sqm": 229.77350807189899, "perimeter_in_m": 60.633127349861603, "length_x": 15.1585999640361, "length_y": 15.158961493978801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.328300927188224, 0.0 ], [ -0.001373291015625, 84.328300927188224, 0.0 ], [ -0.001373291015625, 84.328165205641696, 0.0 ], [ -0.00274658203125, 84.328165205641696, 0.0 ], [ -0.00274658203125, 84.328300927188224, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 180, "task_x": 131070, "task_y": 5728, "task_z": 18, "center_y": 84.323888319108093, "area_in_sqm": 230.12447130680101, "perimeter_in_m": 60.6794161008402, "length_x": 15.1701731571448, "length_y": 15.1705349603439 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.323956231694666, 0.0 ], [ -0.001373291015625, 84.323956231694666, 0.0 ], [ -0.001373291015625, 84.323820406521463, 0.0 ], [ -0.00274658203125, 84.323820406521463, 0.0 ], [ -0.00274658203125, 84.323956231694666, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 181, "task_x": 131070, "task_y": 5760, "task_z": 18, "center_y": 84.319540254494996, "area_in_sqm": 230.47596716880801, "perimeter_in_m": 60.725739823892397, "length_x": 15.1817550975596, "length_y": 15.1821171742153 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.31960821893405, 0.0 ], [ -0.001373291015625, 84.31960821893405, 0.0 ], [ -0.001373291015625, 84.31947229005587, 0.0 ], [ -0.00274658203125, 84.31947229005587, 0.0 ], [ -0.00274658203125, 84.31960821893405, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 182, "task_x": 131070, "task_y": 5792, "task_z": 18, "center_y": 84.3151888700679, "area_in_sqm": 230.82799744606001, "perimeter_in_m": 60.772098550587202, "length_x": 15.193345791688399, "length_y": 15.193708142001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.315256886398672, 0.0 ], [ -0.001373291015625, 84.315256886398672, 0.0 ], [ -0.001373291015625, 84.315120853737099, 0.0 ], [ -0.00274658203125, 84.315120853737099, 0.0 ], [ -0.00274658203125, 84.315256886398672, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 183, "task_x": 131070, "task_y": 5824, "task_z": 18, "center_y": 84.310834163317196, "area_in_sqm": 231.18056261539499, "perimeter_in_m": 60.818492303295002, "length_x": 15.2049452459433, "length_y": 15.205307870113099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.310902231578922, 0.0 ], [ -0.001373291015625, 84.310902231578922, 0.0 ], [ -0.001373291015625, 84.310766095055513, 0.0 ], [ -0.00274658203125, 84.310766095055513, 0.0 ], [ -0.00274658203125, 84.310902231578922, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 184, "task_x": 131070, "task_y": 5856, "task_z": 18, "center_y": 84.3064761317315, "area_in_sqm": 231.53366374969499, "perimeter_in_m": 60.864921122808298, "length_x": 15.2165534667405, "length_y": 15.216916364968201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.306544251963402, 0.0 ], [ -0.001373291015625, 84.306544251963402, 0.0 ], [ -0.001373291015625, 84.306408011499627, 0.0 ], [ -0.00274658203125, 84.306408011499627, 0.0 ], [ -0.00274658203125, 84.306544251963402, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 185, "task_x": 131070, "task_y": 5888, "task_z": 18, "center_y": 84.302114772797495, "area_in_sqm": 231.887301206589, "perimeter_in_m": 60.911385021604403, "length_x": 15.2281704605006, "length_y": 15.228533632986901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.302182945038822, 0.0 ], [ -0.001373291015625, 84.302182945038822, 0.0 ], [ -0.001373291015625, 84.302046600556125, 0.0 ], [ -0.00274658203125, 84.302046600556125, 0.0 ], [ -0.00274658203125, 84.302182945038822, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 186, "task_x": 131070, "task_y": 5920, "task_z": 18, "center_y": 84.297750084, "area_in_sqm": 232.24147617816899, "perimeter_in_m": 60.957884021546803, "length_x": 15.239796233648301, "length_y": 15.240159680593999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.297818308290104, 0.0 ], [ -0.001373291015625, 84.297818308290104, 0.0 ], [ -0.001373291015625, 84.297681859709854, 0.0 ], [ -0.00274658203125, 84.297681859709854, 0.0 ], [ -0.00274658203125, 84.297818308290104, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 187, "task_x": 131070, "task_y": 5952, "task_z": 18, "center_y": 84.293382062822005, "area_in_sqm": 232.59618914127401, "perimeter_in_m": 61.0044181639825, "length_x": 15.2514307926127, "length_y": 15.251794514218901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.293450339200277, 0.0 ], [ -0.001373291015625, 84.293450339200277, 0.0 ], [ -0.001373291015625, 84.29331378644379, 0.0 ], [ -0.00274658203125, 84.29331378644379, 0.0 ], [ -0.00274658203125, 84.293450339200277, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 188, "task_x": 131070, "task_y": 5984, "task_z": 18, "center_y": 84.289010706744804, "area_in_sqm": 232.95144140720399, "perimeter_in_m": 61.050987457874101, "length_x": 15.263074143827099, "length_y": 15.263438140294699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.289079035250552, 0.0 ], [ -0.001373291015625, 84.289079035250552, 0.0 ], [ -0.001373291015625, 84.288942378239099, 0.0 ], [ -0.00274658203125, 84.288942378239099, 0.0 ], [ -0.00274658203125, 84.289079035250552, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 189, "task_x": 131070, "task_y": 6016, "task_z": 18, "center_y": 84.284636013247706, "area_in_sqm": 233.30723321437799, "perimeter_in_m": 61.097591937504198, "length_x": 15.274726293728699, "length_y": 15.2750905652591 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.284704393920322, 0.0 ], [ -0.001373291015625, 84.284704393920322, 0.0 ], [ -0.001373291015625, 84.284567632575076, 0.0 ], [ -0.00274658203125, 84.284567632575076, 0.0 ], [ -0.00274658203125, 84.284704393920322, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 190, "task_x": 131070, "task_y": 6048, "task_z": 18, "center_y": 84.280257979808098, "area_in_sqm": 233.663566112518, "perimeter_in_m": 61.144231631143498, "length_x": 15.2863872487594, "length_y": 15.286751795554 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.28032641268706, 0.0 ], [ -0.001373291015625, 84.28032641268706, 0.0 ], [ -0.001373291015625, 84.280189546929194, 0.0 ], [ -0.00274658203125, 84.280189546929194, 0.0 ], [ -0.00274658203125, 84.28032641268706, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 191, "task_x": 131070, "task_y": 6080, "task_z": 18, "center_y": 84.275876603901807, "area_in_sqm": 234.020440220833, "perimeter_in_m": 61.190906561234598, "length_x": 15.298057015365099, "length_y": 15.2984218376253 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.275945089026465, 0.0 ], [ -0.001373291015625, 84.275945089026465, 0.0 ], [ -0.001373291015625, 84.275808118777036, 0.0 ], [ -0.00274658203125, 84.275808118777036, 0.0 ], [ -0.00274658203125, 84.275945089026465, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 192, "task_x": 131070, "task_y": 6112, "task_z": 18, "center_y": 84.271491883002398, "area_in_sqm": 234.37785613536801, "perimeter_in_m": 61.237616746330602, "length_x": 15.309735599995999, "length_y": 15.310100697923399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.271560420412328, 0.0 ], [ -0.001373291015625, 84.271560420412328, 0.0 ], [ -0.001373291015625, 84.271423345592396, 0.0 ], [ -0.00274658203125, 84.271423345592396, 0.0 ], [ -0.00274658203125, 84.271560420412328, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 193, "task_x": 131070, "task_y": 6144, "task_z": 18, "center_y": 84.267103814581901, "area_in_sqm": 234.73581552505499, "perimeter_in_m": 61.284362218445096, "length_x": 15.3214230091064, "length_y": 15.3217883829029 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.267172404316653, 0.0 ], [ -0.001373291015625, 84.267172404316653, 0.0 ], [ -0.001373291015625, 84.267035224847149, 0.0 ], [ -0.00274658203125, 84.267035224847149, 0.0 ], [ -0.00274658203125, 84.267172404316653, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 194, "task_x": 131070, "task_y": 6176, "task_z": 18, "center_y": 84.262712396110501, "area_in_sqm": 235.09431850910201, "perimeter_in_m": 61.331143008364698, "length_x": 15.3331192491551, "length_y": 15.3334848990224 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.262781038209525, 0.0 ], [ -0.001373291015625, 84.262781038209525, 0.0 ], [ -0.001373291015625, 84.262643754011393, 0.0 ], [ -0.00274658203125, 84.262643754011393, 0.0 ], [ -0.00274658203125, 84.262781038209525, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 195, "task_x": 131070, "task_y": 6208, "task_z": 18, "center_y": 84.258317625056307, "area_in_sqm": 235.45336687564901, "perimeter_in_m": 61.377959136969103, "length_x": 15.344824326604799, "length_y": 15.3451902527452 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.258386319559236, 0.0 ], [ -0.001373291015625, 84.258386319559236, 0.0 ], [ -0.001373291015625, 84.258248930553307, 0.0 ], [ -0.00274658203125, 84.258248930553307, 0.0 ], [ -0.00274658203125, 84.258386319559236, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 196, "task_x": 131070, "task_y": 6240, "task_z": 18, "center_y": 84.253919498885693, "area_in_sqm": 235.81295979023, "perimeter_in_m": 61.424810637362597, "length_x": 15.356538247922799, "length_y": 15.3569044505384 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.253988245832161, 0.0 ], [ -0.001373291015625, 84.253988245832161, 0.0 ], [ -0.001373291015625, 84.25385075193924, 0.0 ], [ -0.00274658203125, 84.25385075193924, 0.0 ], [ -0.00274658203125, 84.253988245832161, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 197, "task_x": 131070, "task_y": 6272, "task_z": 18, "center_y": 84.249518015063302, "area_in_sqm": 236.173099398613, "perimeter_in_m": 61.471697519464698, "length_x": 15.368261019580499, "length_y": 15.368627498873501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.249586814492901, 0.0 ], [ -0.001373291015625, 84.249586814492901, 0.0 ], [ -0.001373291015625, 84.249449215633717, 0.0 ], [ -0.00274658203125, 84.249449215633717, 0.0 ], [ -0.00274658203125, 84.249586814492901, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 198, "task_x": 131070, "task_y": 6304, "task_z": 18, "center_y": 84.245113171051798, "area_in_sqm": 236.533786296844, "perimeter_in_m": 61.518619824363803, "length_x": 15.3799926480535, "length_y": 15.380359404226301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.245182023004119, 0.0 ], [ -0.001373291015625, 84.245182023004119, 0.0 ], [ -0.001373291015625, 84.245044319099364, 0.0 ], [ -0.00274658203125, 84.245044319099364, 0.0 ], [ -0.00274658203125, 84.245182023004119, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 199, "task_x": 131070, "task_y": 6336, "task_z": 18, "center_y": 84.240704964311803, "area_in_sqm": 236.89502096176099, "perimeter_in_m": 61.565577565360101, "length_x": 15.3917331398216, "length_y": 15.3921001730769 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.240773868826665, 0.0 ], [ -0.001373291015625, 84.240773868826665, 0.0 ], [ -0.001373291015625, 84.240636059796955, 0.0 ], [ -0.00274658203125, 84.240636059796955, 0.0 ], [ -0.00274658203125, 84.240773868826665, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 200, "task_x": 131070, "task_y": 6368, "task_z": 18, "center_y": 84.2362933923025, "area_in_sqm": 237.25680458545699, "perimeter_in_m": 61.612570777893701, "length_x": 15.403482501369099, "length_y": 15.403849811909501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.236362349419522, 0.0 ], [ -0.001373291015625, 84.236362349419522, 0.0 ], [ -0.001373291015625, 84.23622443518542, 0.0 ], [ -0.00274658203125, 84.23622443518542, 0.0 ], [ -0.00274658203125, 84.236362349419522, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 201, "task_x": 131070, "task_y": 6400, "task_z": 18, "center_y": 84.2318784524808, "area_in_sqm": 237.619137883186, "perimeter_in_m": 61.659599486612301, "length_x": 15.415240739184201, "length_y": 15.415608327212601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.231947462239816, 0.0 ], [ -0.001373291015625, 84.231947462239816, 0.0 ], [ -0.001373291015625, 84.231809442721826, 0.0 ], [ -0.00274658203125, 84.231809442721826, 0.0 ], [ -0.00274658203125, 84.231947462239816, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 202, "task_x": 131070, "task_y": 6432, "task_z": 18, "center_y": 84.227460142302107, "area_in_sqm": 237.98202121257799, "perimeter_in_m": 61.706663712630998, "length_x": 15.4270078597597, "length_y": 15.427375725478999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.227529204742808, 0.0 ], [ -0.001373291015625, 84.227529204742808, 0.0 ], [ -0.001373291015625, 84.227391079861377, 0.0 ], [ -0.00274658203125, 84.227391079861377, 0.0 ], [ -0.00274658203125, 84.227529204742808, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 203, "task_x": 131070, "task_y": 6464, "task_z": 18, "center_y": 84.223038459219694, "area_in_sqm": 238.345456361771, "perimeter_in_m": 61.7537634861051, "length_x": 15.4387838695925, "length_y": 15.4391520132057 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.223107574381899, 0.0 ], [ -0.001373291015625, 84.223107574381899, 0.0 ], [ -0.001373291015625, 84.222969344057418, 0.0 ], [ -0.00274658203125, 84.222969344057418, 0.0 ], [ -0.00274658203125, 84.223107574381899, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 204, "task_x": 131070, "task_y": 6496, "task_z": 18, "center_y": 84.218613400685001, "area_in_sqm": 238.709443211555, "perimeter_in_m": 61.800898834009601, "length_x": 15.4505687751836, "length_y": 15.450937196894101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.218682568608614, 0.0 ], [ -0.001373291015625, 84.218682568608614, 0.0 ], [ -0.001373291015625, 84.218544232761417, 0.0 ], [ -0.00274658203125, 84.218544232761417, 0.0 ], [ -0.00274658203125, 84.218682568608614, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 205, "task_x": 131070, "task_y": 6528, "task_z": 18, "center_y": 84.214184964147805, "area_in_sqm": 239.07398283481601, "perimeter_in_m": 61.848069780848199, "length_x": 15.462362583038599, "length_y": 15.462731283049701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.21425418487263, 0.0 ], [ -0.001373291015625, 84.21425418487263, 0.0 ], [ -0.001373291015625, 84.21411574342298, 0.0 ], [ -0.00274658203125, 84.21411574342298, 0.0 ], [ -0.00274658203125, 84.21425418487263, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 206, "task_x": 131070, "task_y": 6560, "task_z": 18, "center_y": 84.209753147055807, "area_in_sqm": 239.43907701969101, "perimeter_in_m": 61.895276356801403, "length_x": 15.474165299667, "length_y": 15.4745342781824 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.209822420621748, 0.0 ], [ -0.001373291015625, 84.209822420621748, 0.0 ], [ -0.001373291015625, 84.209683873489865, 0.0 ], [ -0.00274658203125, 84.209683873489865, 0.0 ], [ -0.00274658203125, 84.209822420621748, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 207, "task_x": 131070, "task_y": 6592, "task_z": 18, "center_y": 84.205317946854905, "area_in_sqm": 239.80472528934499, "perimeter_in_m": 61.942518574529998, "length_x": 15.485976931583, "length_y": 15.486346188806101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.205387273301909, 0.0 ], [ -0.001373291015625, 84.205387273301909, 0.0 ], [ -0.001373291015625, 84.205248620407943, 0.0 ], [ -0.00274658203125, 84.205248620407943, 0.0 ], [ -0.00274658203125, 84.205387273301909, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 208, "task_x": 131070, "task_y": 6624, "task_z": 18, "center_y": 84.200879360989205, "area_in_sqm": 240.17092895507801, "perimeter_in_m": 61.989796467240403, "length_x": 15.4977974853046, "length_y": 15.4981670214391 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.200948740357177, 0.0 ], [ -0.001373291015625, 84.200948740357177, 0.0 ], [ -0.001373291015625, 84.200809981621219, 0.0 ], [ -0.00274658203125, 84.200809981621219, 0.0 ], [ -0.00274658203125, 84.200948740357177, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 209, "task_x": 131070, "task_y": 6656, "task_z": 18, "center_y": 84.196437386900797, "area_in_sqm": 240.53768885135699, "perimeter_in_m": 62.037110064603198, "length_x": 15.5096269673544, "length_y": 15.509996782604199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.196506819229739, 0.0 ], [ -0.001373291015625, 84.196506819229739, 0.0 ], [ -0.001373291015625, 84.196367954571855, 0.0 ], [ -0.00274658203125, 84.196367954571855, 0.0 ], [ -0.00274658203125, 84.196506819229739, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 210, "task_x": 131070, "task_y": 6688, "task_z": 18, "center_y": 84.191992022030007, "area_in_sqm": 240.90500569343601, "perimeter_in_m": 62.084459400196202, "length_x": 15.521465384258899, "length_y": 15.521835478828301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.192061507359938, 0.0 ], [ -0.001373291015625, 84.192061507359938, 0.0 ], [ -0.001373291015625, 84.191922536700076, 0.0 ], [ -0.00274658203125, 84.191922536700076, 0.0 ], [ -0.00274658203125, 84.192061507359938, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 211, "task_x": 131070, "task_y": 6720, "task_z": 18, "center_y": 84.1875432638153, "area_in_sqm": 241.272880792618, "perimeter_in_m": 62.131844478040897, "length_x": 15.5333127425494, "length_y": 15.533683116642401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.187612802186223, 0.0 ], [ -0.001373291015625, 84.187612802186223, 0.0 ], [ -0.001373291015625, 84.18747372544432, 0.0 ], [ -0.00274658203125, 84.18747372544432, 0.0 ], [ -0.00274658203125, 84.187612802186223, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 212, "task_x": 131070, "task_y": 6752, "task_z": 18, "center_y": 84.183091109693095, "area_in_sqm": 241.641314744949, "perimeter_in_m": 62.179265344830398, "length_x": 15.5451690487611, "length_y": 15.5455397025819 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.183160701145169, 0.0 ], [ -0.001373291015625, 84.183160701145169, 0.0 ], [ -0.001373291015625, 84.183021518241091, 0.0 ], [ -0.00274658203125, 84.183021518241091, 0.0 ], [ -0.00274658203125, 84.183160701145169, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 213, "task_x": 131070, "task_y": 6784, "task_z": 18, "center_y": 84.178635557098303, "area_in_sqm": 242.010308146477, "perimeter_in_m": 62.226722014693301, "length_x": 15.5570343094334, "length_y": 15.557405243186601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.178705201671505, 0.0 ], [ -0.001373291015625, 84.178705201671505, 0.0 ], [ -0.001373291015625, 84.178565912525045, 0.0 ], [ -0.00274658203125, 84.178565912525045, 0.0 ], [ -0.00274658203125, 84.178705201671505, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 214, "task_x": 131070, "task_y": 6816, "task_z": 18, "center_y": 84.174176603463494, "area_in_sqm": 242.37986171245601, "perimeter_in_m": 62.274214516990803, "length_x": 15.568908531110299, "length_y": 15.569279745000401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.174246301198025, 0.0 ], [ -0.001373291015625, 84.174246301198025, 0.0 ], [ -0.001373291015625, 84.174106905728934, 0.0 ], [ -0.00274658203125, 84.174106905728934, 0.0 ], [ -0.00274658203125, 84.174246301198025, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 215, "task_x": 131070, "task_y": 6848, "task_z": 18, "center_y": 84.169714246219698, "area_in_sqm": 242.74997711181601, "perimeter_in_m": 62.321742879145503, "length_x": 15.580791720339899, "length_y": 15.5811632145715 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.169783997155704, 0.0 ], [ -0.001373291015625, 84.169783997155704, 0.0 ], [ -0.001373291015625, 84.169644495283677, 0.0 ], [ -0.00274658203125, 84.169644495283677, 0.0 ], [ -0.00274658203125, 84.169783997155704, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 216, "task_x": 131070, "task_y": 6880, "task_z": 18, "center_y": 84.165248482795903, "area_in_sqm": 243.12065410613999, "perimeter_in_m": 62.369307131423497, "length_x": 15.5926838836745, "length_y": 15.593055658452499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.165318286973616, 0.0 ], [ -0.001373291015625, 84.165318286973616, 0.0 ], [ -0.001373291015625, 84.165178678618275, 0.0 ], [ -0.00274658203125, 84.165178678618275, 0.0 ], [ -0.00274658203125, 84.165318286973616, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 217, "task_x": 131070, "task_y": 6912, "task_z": 18, "center_y": 84.160779310619404, "area_in_sqm": 243.491894483566, "perimeter_in_m": 62.416907286393297, "length_x": 15.6045850276707, "length_y": 15.6049570832001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.16084916807894, 0.0 ], [ -0.001373291015625, 84.16084916807894, 0.0 ], [ -0.001373291015625, 84.160709453159853, 0.0 ], [ -0.00274658203125, 84.160709453159853, 0.0 ], [ -0.00274658203125, 84.16084916807894, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 218, "task_x": 131070, "task_y": 6944, "task_z": 18, "center_y": 84.156306727115407, "area_in_sqm": 243.86369824409499, "perimeter_in_m": 62.464543383539301, "length_x": 15.616495158889601, "length_y": 15.6168674953754 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.156376637897012, 0.0 ], [ -0.001373291015625, 84.156376637897012, 0.0 ], [ -0.001373291015625, 84.156236816333688, 0.0 ], [ -0.00274658203125, 84.156236816333688, 0.0 ], [ -0.00274658203125, 84.156376637897012, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 219, "task_x": 131070, "task_y": 6976, "task_z": 18, "center_y": 84.1518307297072, "area_in_sqm": 244.23606741428401, "perimeter_in_m": 62.512215446249698, "length_x": 15.6284142838963, "length_y": 15.628786901543901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.151900693851246, 0.0 ], [ -0.001373291015625, 84.151900693851246, 0.0 ], [ -0.001373291015625, 84.151760765563154, 0.0 ], [ -0.00274658203125, 84.151760765563154, 0.0 ], [ -0.00274658203125, 84.151900693851246, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 220, "task_x": 131070, "task_y": 7008, "task_z": 18, "center_y": 84.147351315816493, "area_in_sqm": 244.609001278877, "perimeter_in_m": 62.559923502873197, "length_x": 15.6403424092604, "length_y": 15.640715308275 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.147421333363212, 0.0 ], [ -0.001373291015625, 84.147421333363212, 0.0 ], [ -0.001373291015625, 84.147281298269718, 0.0 ], [ -0.00274658203125, 84.147281298269718, 0.0 ], [ -0.00274658203125, 84.147421333363212, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 221, "task_x": 131070, "task_y": 7040, "task_z": 18, "center_y": 84.142868482862795, "area_in_sqm": 244.98250210285201, "perimeter_in_m": 62.607667569201098, "length_x": 15.6522795415556, "length_y": 15.6526527221428 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.142938553852545, 0.0 ], [ -0.001373291015625, 84.142938553852545, 0.0 ], [ -0.001373291015625, 84.142798411873002, 0.0 ], [ -0.00274658203125, 84.142798411873002, 0.0 ], [ -0.00274658203125, 84.142938553852545, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 222, "task_x": 131070, "task_y": 7072, "task_z": 18, "center_y": 84.138382228263893, "area_in_sqm": 245.356569647789, "perimeter_in_m": 62.655447682983798, "length_x": 15.6642256873601, "length_y": 15.6645991497255 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.138452352737033, 0.0 ], [ -0.001373291015625, 84.138452352737033, 0.0 ], [ -0.001373291015625, 84.13831210379071, 0.0 ], [ -0.00274658203125, 84.13831210379071, 0.0 ], [ -0.00274658203125, 84.138452352737033, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 223, "task_x": 131070, "task_y": 7104, "task_z": 18, "center_y": 84.1338925494356, "area_in_sqm": 245.73120582103701, "perimeter_in_m": 62.703263869940798, "length_x": 15.676180853256099, "length_y": 15.676554597605501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.133962727432575, 0.0 ], [ -0.001373291015625, 84.133962727432575, 0.0 ], [ -0.001373291015625, 84.133822371438683, 0.0 ], [ -0.00274658203125, 84.133822371438683, 0.0 ], [ -0.00274658203125, 84.133962727432575, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 224, "task_x": 131070, "task_y": 7136, "task_z": 18, "center_y": 84.129399443791996, "area_in_sqm": 246.10641086101501, "perimeter_in_m": 62.751116145181498, "length_x": 15.6881450458303, "length_y": 15.6885190723696 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.129469675353178, 0.0 ], [ -0.001373291015625, 84.129469675353178, 0.0 ], [ -0.001373291015625, 84.129329212230871, 0.0 ], [ -0.00274658203125, 84.129329212230871, 0.0 ], [ -0.00274658203125, 84.129469675353178, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 225, "task_x": 131070, "task_y": 7168, "task_z": 18, "center_y": 84.124902908745099, "area_in_sqm": 246.48218512535101, "perimeter_in_m": 62.799004542586196, "length_x": 15.7001182716738, "length_y": 15.7004925806089 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.124973193910932, 0.0 ], [ -0.001373291015625, 84.124973193910932, 0.0 ], [ -0.001373291015625, 84.124832623579323, 0.0 ], [ -0.00274658203125, 84.124832623579323, 0.0 ], [ -0.00274658203125, 84.124973193910932, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 226, "task_x": 131070, "task_y": 7200, "task_z": 18, "center_y": 84.120402941705095, "area_in_sqm": 246.85853040218399, "perimeter_in_m": 62.846929090910599, "length_x": 15.7121005373816, "length_y": 15.7124751289188 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.12047328051608, 0.0 ], [ -0.001373291015625, 84.12047328051608, 0.0 ], [ -0.001373291015625, 84.120332602894194, 0.0 ], [ -0.00274658203125, 84.120332602894194, 0.0 ], [ -0.00274658203125, 84.12047328051608, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 227, "task_x": 131070, "task_y": 7232, "task_z": 18, "center_y": 84.115899540080406, "area_in_sqm": 247.23544764518701, "perimeter_in_m": 62.894889813610398, "length_x": 15.7240918495534, "length_y": 15.724466723899001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.115969932576931, 0.0 ], [ -0.001373291015625, 84.115969932576931, 0.0 ], [ -0.001373291015625, 84.115829147583767, 0.0 ], [ -0.00274658203125, 84.115829147583767, 0.0 ], [ -0.00274658203125, 84.115969932576931, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 228, "task_x": 131070, "task_y": 7264, "task_z": 18, "center_y": 84.111392701277197, "area_in_sqm": 247.61293661594399, "perimeter_in_m": 62.942886739633501, "length_x": 15.736092214793, "length_y": 15.7364673721535 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.111463147499947, 0.0 ], [ -0.001373291015625, 84.111463147499947, 0.0 ], [ -0.001373291015625, 84.111322255054418, 0.0 ], [ -0.00274658203125, 84.111322255054418, 0.0 ], [ -0.00274658203125, 84.111463147499947, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 229, "task_x": 131070, "task_y": 7296, "task_z": 18, "center_y": 84.106882422700096, "area_in_sqm": 247.99099898338301, "perimeter_in_m": 62.990919891213402, "length_x": 15.7481016397085, "length_y": 15.748477080290399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.106952922689658, 0.0 ], [ -0.001373291015625, 84.106952922689658, 0.0 ], [ -0.001373291015625, 84.106811922710605, 0.0 ], [ -0.00274658203125, 84.106811922710605, 0.0 ], [ -0.00274658203125, 84.106952922689658, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 230, "task_x": 131070, "task_y": 7328, "task_z": 18, "center_y": 84.1023687017518, "area_in_sqm": 248.36963522434201, "perimeter_in_m": 63.038989292890697, "length_x": 15.7601201309123, "length_y": 15.760495854922199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.102439255548703, 0.0 ], [ -0.001373291015625, 84.102439255548703, 0.0 ], [ -0.001373291015625, 84.102298147954954, 0.0 ], [ -0.00274658203125, 84.102298147954954, 0.0 ], [ -0.00274658203125, 84.102439255548703, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 231, "task_x": 131070, "task_y": 7360, "task_z": 18, "center_y": 84.097851535833001, "area_in_sqm": 248.74884665012399, "perimeter_in_m": 63.087094980368299, "length_x": 15.772147695021101, "length_y": 15.772523702666099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.097922143477845, 0.0 ], [ -0.001373291015625, 84.097922143477845, 0.0 ], [ -0.001373291015625, 84.097780928188129, 0.0 ], [ -0.00274658203125, 84.097780928188129, 0.0 ], [ -0.00274658203125, 84.097922143477845, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 232, "task_x": 131070, "task_y": 7392, "task_z": 18, "center_y": 84.093330922342403, "area_in_sqm": 249.12863397598301, "perimeter_in_m": 63.135236972717401, "length_x": 15.7841843386561, "length_y": 15.7845606301429 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.093401583875931, 0.0 ], [ -0.001373291015625, 84.093401583875931, 0.0 ], [ -0.001373291015625, 84.093260260808933, 0.0 ], [ -0.00274658203125, 84.093260260808933, 0.0 ], [ -0.00274658203125, 84.093401583875931, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 233, "task_x": 131070, "task_y": 7424, "task_z": 18, "center_y": 84.088806858677103, "area_in_sqm": 249.508997678757, "perimeter_in_m": 63.183415294328803, "length_x": 15.796230068442499, "length_y": 15.796606643978301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.0888775741399, 0.0 ], [ -0.001373291015625, 84.0888775741399, 0.0 ], [ -0.001373291015625, 84.088736143214263, 0.0 ], [ -0.00274658203125, 84.088736143214263, 0.0 ], [ -0.00274658203125, 84.0888775741399, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 234, "task_x": 131070, "task_y": 7456, "task_z": 18, "center_y": 84.084279342231895, "area_in_sqm": 249.88993906974801, "perimeter_in_m": 63.231629981638299, "length_x": 15.808284891009899, "length_y": 15.8086617508021 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.084350111664833, 0.0 ], [ -0.001373291015625, 84.084350111664833, 0.0 ], [ -0.001373291015625, 84.084208572799085, 0.0 ], [ -0.00274658203125, 84.084208572799085, 0.0 ], [ -0.00274658203125, 84.084350111664833, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 235, "task_x": 131070, "task_y": 7488, "task_z": 18, "center_y": 84.079748370400196, "area_in_sqm": 250.271458625793, "perimeter_in_m": 63.279881053035098, "length_x": 15.8203488129924, "length_y": 15.8207259572482 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.079819193843846, 0.0 ], [ -0.001373291015625, 84.079819193843846, 0.0 ], [ -0.001373291015625, 84.079677546956518, 0.0 ], [ -0.00274658203125, 84.079677546956518, 0.0 ], [ -0.00274658203125, 84.079819193843846, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 236, "task_x": 131070, "task_y": 7520, "task_z": 18, "center_y": 84.075213940572993, "area_in_sqm": 250.65355753898601, "perimeter_in_m": 63.328168533289599, "length_x": 15.832421841028101, "length_y": 15.8327992699551 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.075284818068198, 0.0 ], [ -0.001373291015625, 84.075284818068198, 0.0 ], [ -0.001373291015625, 84.075143063077746, 0.0 ], [ -0.00274658203125, 84.075143063077746, 0.0 ], [ -0.00274658203125, 84.075284818068198, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 237, "task_x": 131070, "task_y": 7552, "task_z": 18, "center_y": 84.070676050139596, "area_in_sqm": 251.03623676300001, "perimeter_in_m": 63.376492457978401, "length_x": 15.844503981759599, "length_y": 15.8448816955654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.07074698172724, 0.0 ], [ -0.001373291015625, 84.07074698172724, 0.0 ], [ -0.001373291015625, 84.070605118552038, 0.0 ], [ -0.00274658203125, 84.070605118552038, 0.0 ], [ -0.00274658203125, 84.07074698172724, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 238, "task_x": 131070, "task_y": 7584, "task_z": 18, "center_y": 84.066134696487595, "area_in_sqm": 251.41949725151099, "perimeter_in_m": 63.424852847285997, "length_x": 15.856595241833899, "length_y": 15.856973240726299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.066205682208405, 0.0 ], [ -0.001373291015625, 84.066205682208405, 0.0 ], [ -0.001373291015625, 84.06606371076677, 0.0 ], [ -0.00274658203125, 84.06606371076677, 0.0 ], [ -0.00274658203125, 84.066205682208405, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 239, "task_x": 131070, "task_y": 7616, "task_z": 18, "center_y": 84.061589877002305, "area_in_sqm": 251.803339004517, "perimeter_in_m": 63.473249730258097, "length_x": 15.868695627902, "length_y": 15.869073912088901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.06166091689721, 0.0 ], [ -0.001373291015625, 84.06166091689721, 0.0 ], [ -0.001373291015625, 84.061518837107414, 0.0 ], [ -0.00274658203125, 84.061518837107414, 0.0 ], [ -0.00274658203125, 84.06166091689721, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 240, "task_x": 131070, "task_y": 7648, "task_z": 18, "center_y": 84.057041589067396, "area_in_sqm": 252.18776392936701, "perimeter_in_m": 63.521683132052402, "length_x": 15.880805146619499, "length_y": 15.881183716309 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.057112683177294, 0.0 ], [ -0.001373291015625, 84.057112683177294, 0.0 ], [ -0.001373291015625, 84.05697049495754, 0.0 ], [ -0.00274658203125, 84.05697049495754, 0.0 ], [ -0.00274658203125, 84.057112683177294, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 241, "task_x": 131070, "task_y": 7680, "task_z": 18, "center_y": 84.052489830064602, "area_in_sqm": 252.57277202606201, "perimeter_in_m": 63.570153076951001, "length_x": 15.892923804646101, "length_y": 15.8933026600464 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.052560978430364, 0.0 ], [ -0.001373291015625, 84.052560978430364, 0.0 ], [ -0.001373291015625, 84.052418681698811, 0.0 ], [ -0.00274658203125, 84.052418681698811, 0.0 ], [ -0.00274658203125, 84.052560978430364, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 242, "task_x": 131070, "task_y": 7712, "task_z": 18, "center_y": 84.047934597373597, "area_in_sqm": 252.95836520194999, "perimeter_in_m": 63.618659595972197, "length_x": 15.9050516086462, "length_y": 15.9054307499656 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.048005800036208, 0.0 ], [ -0.001373291015625, 84.048005800036208, 0.0 ], [ -0.001373291015625, 84.04786339471093, 0.0 ], [ -0.00274658203125, 84.04786339471093, 0.0 ], [ -0.00274658203125, 84.048005800036208, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 243, "task_x": 131070, "task_y": 7744, "task_z": 18, "center_y": 84.043375888372296, "area_in_sqm": 253.34454345703099, "perimeter_in_m": 63.667202713060497, "length_x": 15.9171885652881, "length_y": 15.917567992735 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.043447145372724, 0.0 ], [ -0.001373291015625, 84.043447145372724, 0.0 ], [ -0.001373291015625, 84.043304631371768, 0.0 ], [ -0.00274658203125, 84.043304631371768, 0.0 ], [ -0.00274658203125, 84.043447145372724, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 244, "task_x": 131070, "task_y": 7776, "task_z": 18, "center_y": 84.038813700436606, "area_in_sqm": 253.73130822181699, "perimeter_in_m": 63.715782456595399, "length_x": 15.9293346812445, "length_y": 15.929714395027601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.038885011815893, 0.0 ], [ -0.001373291015625, 84.038885011815893, 0.0 ], [ -0.001373291015625, 84.038742389057219, 0.0 ], [ -0.00274658203125, 84.038742389057219, 0.0 ], [ -0.00274658203125, 84.038885011815893, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 245, "task_x": 131070, "task_y": 7808, "task_z": 18, "center_y": 84.034248030940503, "area_in_sqm": 254.118659615517, "perimeter_in_m": 63.764398850186197, "length_x": 15.9414899631926, "length_y": 15.941869963520499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.034319396739775, 0.0 ], [ -0.001373291015625, 84.034319396739775, 0.0 ], [ -0.001373291015625, 84.034176665141288, 0.0 ], [ -0.00274658203125, 84.034176665141288, 0.0 ], [ -0.00274658203125, 84.034319396739775, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 246, "task_x": 131070, "task_y": 7840, "task_z": 18, "center_y": 84.029678877256302, "area_in_sqm": 254.50659918785101, "perimeter_in_m": 63.813051928069797, "length_x": 15.9536544178137, "length_y": 15.954034704895401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.029750297516514, 0.0 ], [ -0.001373291015625, 84.029750297516514, 0.0 ], [ -0.001373291015625, 84.029607456996061, 0.0 ], [ -0.00274658203125, 84.029607456996061, 0.0 ], [ -0.00274658203125, 84.029750297516514, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 247, "task_x": 131070, "task_y": 7872, "task_z": 18, "center_y": 84.025106236753999, "area_in_sqm": 254.89512836933099, "perimeter_in_m": 63.861741711039997, "length_x": 15.9658280517938, "length_y": 15.966208625838201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.025177711516349, 0.0 ], [ -0.001373291015625, 84.025177711516349, 0.0 ], [ -0.001373291015625, 84.025034761991719, 0.0 ], [ -0.00274658203125, 84.025034761991719, 0.0 ], [ -0.00274658203125, 84.025177711516349, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 248, "task_x": 131070, "task_y": 7904, "task_z": 18, "center_y": 84.020530106801999, "area_in_sqm": 255.284246325493, "perimeter_in_m": 63.910468221671103, "length_x": 15.978010871822701, "length_y": 15.978391733039 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.020601636107571, 0.0 ], [ -0.001373291015625, 84.020601636107571, 0.0 ], [ -0.001373291015625, 84.020458577496498, 0.0 ], [ -0.00274658203125, 84.020458577496498, 0.0 ], [ -0.00274658203125, 84.020601636107571, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 249, "task_x": 131070, "task_y": 7936, "task_z": 18, "center_y": 84.015950484766705, "area_in_sqm": 255.67395532131201, "perimeter_in_m": 63.959231496172002, "length_x": 15.990202884595, "length_y": 15.9905840331925 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.016022068656596, 0.0 ], [ -0.001373291015625, 84.016022068656596, 0.0 ], [ -0.001373291015625, 84.015878900876743, 0.0 ], [ -0.00274658203125, 84.015878900876743, 0.0 ], [ -0.00274658203125, 84.016022068656596, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 250, "task_x": 131070, "task_y": 7968, "task_z": 18, "center_y": 84.011367368012401, "area_in_sqm": 256.06425631046301, "perimeter_in_m": 64.008031550229902, "length_x": 16.0024040968093, "length_y": 16.002785532997301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.01143900652788, 0.0 ], [ -0.001373291015625, 84.01143900652788, 0.0 ], [ -0.001373291015625, 84.011295729496865, 0.0 ], [ -0.00274658203125, 84.011295729496865, 0.0 ], [ -0.00274658203125, 84.01143900652788, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 251, "task_x": 131070, "task_y": 8000, "task_z": 18, "center_y": 84.006780753901694, "area_in_sqm": 256.45514929294598, "perimeter_in_m": 64.056868423433698, "length_x": 16.014614515168699, "length_y": 16.014996239156801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.006852447083986, 0.0 ], [ -0.001373291015625, 84.006852447083986, 0.0 ], [ -0.001373291015625, 84.006709060719345, 0.0 ], [ -0.00274658203125, 84.006709060719345, 0.0 ], [ -0.00274658203125, 84.006852447083986, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 252, "task_x": 131070, "task_y": 8032, "task_z": 18, "center_y": 84.002190639795103, "area_in_sqm": 256.846635341644, "perimeter_in_m": 64.105742133968505, "length_x": 16.026834146380601, "length_y": 16.027216158378501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 84.002262387685519, 0.0 ], [ -0.001373291015625, 84.002262387685519, 0.0 ], [ -0.001373291015625, 84.002118891904757, 0.0 ], [ -0.00274658203125, 84.002118891904757, 0.0 ], [ -0.00274658203125, 84.002262387685519, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 253, "task_x": 131070, "task_y": 8064, "task_z": 18, "center_y": 83.997597023051497, "area_in_sqm": 257.23871624469803, "perimeter_in_m": 64.154652710114803, "length_x": 16.039062997156801, "length_y": 16.0394452973743 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.997668825691207, 0.0 ], [ -0.001373291015625, 83.997668825691207, 0.0 ], [ -0.001373291015625, 83.997525220411745, 0.0 ], [ -0.00274658203125, 83.997525220411745, 0.0 ], [ -0.00274658203125, 83.997668825691207, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 254, "task_x": 131070, "task_y": 8096, "task_z": 18, "center_y": 83.992999901027403, "area_in_sqm": 257.631392002106, "perimeter_in_m": 64.203600176439807, "length_x": 16.051301074213299, "length_y": 16.051683662860199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.993071758457816, 0.0 ], [ -0.001373291015625, 83.993071758457816, 0.0 ], [ -0.001373291015625, 83.992928043597018, 0.0 ], [ -0.00274658203125, 83.992928043597018, 0.0 ], [ -0.00274658203125, 83.993071758457816, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 255, "task_x": 131070, "task_y": 8128, "task_z": 18, "center_y": 83.988399271077796, "area_in_sqm": 258.024663329124, "perimeter_in_m": 64.252584569031896, "length_x": 16.063548384270401, "length_y": 16.063931261556998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.988471183340209, 0.0 ], [ -0.001373291015625, 83.988471183340209, 0.0 ], [ -0.001373291015625, 83.988327358815383, 0.0 ], [ -0.00274658203125, 83.988327358815383, 0.0 ], [ -0.00274658203125, 83.988471183340209, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 256, "task_x": 131070, "task_y": 8160, "task_z": 18, "center_y": 83.983795130555507, "area_in_sqm": 258.41853189468401, "perimeter_in_m": 64.301605910001499, "length_x": 16.075804934053, "length_y": 16.076188100189501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.983867097691288, 0.0 ], [ -0.001373291015625, 83.983867097691288, 0.0 ], [ -0.001373291015625, 83.983723163419683, 0.0 ], [ -0.00274658203125, 83.983723163419683, 0.0 ], [ -0.00274658203125, 83.983867097691288, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 257, "task_x": 131070, "task_y": 8192, "task_z": 18, "center_y": 83.979187476811504, "area_in_sqm": 258.81299853324902, "perimeter_in_m": 64.350664218104498, "length_x": 16.088070730290202, "length_y": 16.0884541854868 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.979259498862049, 0.0 ], [ -0.001373291015625, 83.979259498862049, 0.0 ], [ -0.001373291015625, 83.979115454760858, 0.0 ], [ -0.00274658203125, 83.979115454760858, 0.0 ], [ -0.00274658203125, 83.979259498862049, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 258, "task_x": 131070, "task_y": 8224, "task_z": 18, "center_y": 83.974576307194795, "area_in_sqm": 259.20806407928501, "perimeter_in_m": 64.399759529452297, "length_x": 16.100345779715301, "length_y": 16.100729524182601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.974648384201572, 0.0 ], [ -0.001373291015625, 83.974648384201572, 0.0 ], [ -0.001373291015625, 83.974504230187918, 0.0 ], [ -0.00274658203125, 83.974504230187918, 0.0 ], [ -0.00274658203125, 83.974648384201572, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 259, "task_x": 131070, "task_y": 8256, "task_z": 18, "center_y": 83.969961619052498, "area_in_sqm": 259.60372853279102, "perimeter_in_m": 64.448891869720995, "length_x": 16.112630089066101, "length_y": 16.1130141230147 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.970033751056974, 0.0 ], [ -0.001373291015625, 83.970033751056974, 0.0 ], [ -0.001373291015625, 83.969889487047922, 0.0 ], [ -0.00274658203125, 83.969889487047922, 0.0 ], [ -0.00274658203125, 83.970033751056974, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 260, "task_x": 131070, "task_y": 8288, "task_z": 18, "center_y": 83.965343409729698, "area_in_sqm": 259.99999403953598, "perimeter_in_m": 64.498061262828003, "length_x": 16.124923665084701, "length_y": 16.1253079887254 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.965415596773468, 0.0 ], [ -0.001373291015625, 83.965415596773468, 0.0 ], [ -0.001373291015625, 83.965271222686027, 0.0 ], [ -0.00274658203125, 83.965271222686027, 0.0 ], [ -0.00274658203125, 83.965415596773468, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 261, "task_x": 131070, "task_y": 8320, "task_z": 18, "center_y": 83.960721676569804, "area_in_sqm": 260.39686024189001, "perimeter_in_m": 64.547267739420903, "length_x": 16.1372265145177, "length_y": 16.137611128061302 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.960793918694293, 0.0 ], [ -0.001373291015625, 83.960793918694293, 0.0 ], [ -0.001373291015625, 83.960649434445401, 0.0 ], [ -0.00274658203125, 83.960649434445401, 0.0 ], [ -0.00274658203125, 83.960793918694293, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 262, "task_x": 131070, "task_y": 8352, "task_z": 18, "center_y": 83.956096416914093, "area_in_sqm": 260.79432940483099, "perimeter_in_m": 64.596511324495694, "length_x": 16.149538644115701, "length_y": 16.149923547773302 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.956168714160796, 0.0 ], [ -0.001373291015625, 83.956168714160796, 0.0 ], [ -0.001373291015625, 83.956024119667347, 0.0 ], [ -0.00274658203125, 83.956024119667347, 0.0 ], [ -0.00274658203125, 83.956168714160796, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 263, "task_x": 131070, "task_y": 8384, "task_z": 18, "center_y": 83.951467628101796, "area_in_sqm": 261.19240105152102, "perimeter_in_m": 64.645792037214306, "length_x": 16.161860060634002, "length_y": 16.1622452546166 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.951539980512365, 0.0 ], [ -0.001373291015625, 83.951539980512365, 0.0 ], [ -0.001373291015625, 83.951395275691198, 0.0 ], [ -0.00274658203125, 83.951395275691198, 0.0 ], [ -0.00274658203125, 83.951539980512365, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 264, "task_x": 131070, "task_y": 8416, "task_z": 18, "center_y": 83.946835307470394, "area_in_sqm": 261.59107768535603, "perimeter_in_m": 64.695109922236099, "length_x": 16.174190770831899, "length_y": 16.174576255351099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.946907715086468, 0.0 ], [ -0.001373291015625, 83.946907715086468, 0.0 ], [ -0.001373291015625, 83.94676289985432, 0.0 ], [ -0.00274658203125, 83.94676289985432, 0.0 ], [ -0.00274658203125, 83.946907715086468, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 265, "task_x": 131070, "task_y": 8448, "task_z": 18, "center_y": 83.942199452355396, "area_in_sqm": 261.990358710289, "perimeter_in_m": 64.744464990067897, "length_x": 16.1865307814736, "length_y": 16.186916556740599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.942271915218583, 0.0 ], [ -0.001373291015625, 83.942271915218583, 0.0 ], [ -0.001373291015625, 83.942126989492166, 0.0 ], [ -0.00274658203125, 83.942126989492166, 0.0 ], [ -0.00274658203125, 83.942271915218583, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 266, "task_x": 131070, "task_y": 8480, "task_z": 18, "center_y": 83.937560060090306, "area_in_sqm": 262.39024615287798, "perimeter_in_m": 64.793857280253505, "length_x": 16.198880099326999, "length_y": 16.1992661655535 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.937632578242315, 0.0 ], [ -0.001373291015625, 83.937632578242315, 0.0 ], [ -0.001373291015625, 83.937487541938282, 0.0 ], [ -0.00274658203125, 83.937487541938282, 0.0 ], [ -0.00274658203125, 83.937632578242315, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 267, "task_x": 131070, "task_y": 8512, "task_z": 18, "center_y": 83.932917128006807, "area_in_sqm": 262.79074001312301, "perimeter_in_m": 64.843286816946105, "length_x": 16.211238731164698, "length_y": 16.2116250885624 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.932989701489291, 0.0 ], [ -0.001373291015625, 83.932989701489291, 0.0 ], [ -0.001373291015625, 83.932844554524209, 0.0 ], [ -0.00274658203125, 83.932844554524209, 0.0 ], [ -0.00274658203125, 83.932989701489291, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 268, "task_x": 131070, "task_y": 8544, "task_z": 18, "center_y": 83.928270653434396, "area_in_sqm": 263.19184160232498, "perimeter_in_m": 64.892753617225594, "length_x": 16.223606683763801, "length_y": 16.223993332544499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.928343282289191, 0.0 ], [ -0.001373291015625, 83.928343282289191, 0.0 ], [ -0.001373291015625, 83.928198024579586, 0.0 ], [ -0.00274658203125, 83.928198024579586, 0.0 ], [ -0.00274658203125, 83.928343282289191, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 269, "task_x": 131070, "task_y": 8576, "task_z": 18, "center_y": 83.923620633700907, "area_in_sqm": 263.59355187416099, "perimeter_in_m": 64.942257713937195, "length_x": 16.235983963905401, "length_y": 16.236370904281198 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.923693317969764, 0.0 ], [ -0.001373291015625, 83.923693317969764, 0.0 ], [ -0.001373291015625, 83.923547949432105, 0.0 ], [ -0.00274658203125, 83.923547949432105, 0.0 ], [ -0.00274658203125, 83.923693317969764, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 270, "task_x": 131070, "task_y": 8608, "task_z": 18, "center_y": 83.918967066132197, "area_in_sqm": 263.99587166309402, "perimeter_in_m": 64.991799143473202, "length_x": 16.248370578375201, "length_y": 16.2487578105582 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.919039805856812, 0.0 ], [ -0.001373291015625, 83.919039805856812, 0.0 ], [ -0.001373291015625, 83.918894326407496, 0.0 ], [ -0.00274658203125, 83.918894326407496, 0.0 ], [ -0.00274658203125, 83.919039805856812, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 271, "task_x": 131070, "task_y": 8640, "task_z": 18, "center_y": 83.914309948051894, "area_in_sqm": 264.39880216121702, "perimeter_in_m": 65.041377916922201, "length_x": 16.260766533963299, "length_y": 16.261154058165602 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.914382743274189, 0.0 ], [ -0.001373291015625, 83.914382743274189, 0.0 ], [ -0.001373291015625, 83.914237152829557, 0.0 ], [ -0.00274658203125, 83.914237152829557, 0.0 ], [ -0.00274658203125, 83.914382743274189, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 272, "task_x": 131070, "task_y": 8672, "task_z": 18, "center_y": 83.909649276782005, "area_in_sqm": 264.80234396457701, "perimeter_in_m": 65.090994075828405, "length_x": 16.273171837463799, "length_y": 16.273559653898001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.909722127543802, 0.0 ], [ -0.001373291015625, 83.909722127543802, 0.0 ], [ -0.001373291015625, 83.909576426020124, 0.0 ], [ -0.00274658203125, 83.909576426020124, 0.0 ], [ -0.00274658203125, 83.909722127543802, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 273, "task_x": 131070, "task_y": 8704, "task_z": 18, "center_y": 83.904985049642306, "area_in_sqm": 265.206497907639, "perimeter_in_m": 65.140647633952099, "length_x": 16.285586495675702, "length_y": 16.285974604554099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.905057955985598, 0.0 ], [ -0.001373291015625, 83.905057955985598, 0.0 ], [ -0.001373291015625, 83.9049121432991, 0.0 ], [ -0.00274658203125, 83.9049121432991, 0.0 ], [ -0.00274658203125, 83.905057955985598, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 274, "task_x": 131070, "task_y": 8736, "task_z": 18, "center_y": 83.900317263950996, "area_in_sqm": 265.611265182495, "perimeter_in_m": 65.190338635864293, "length_x": 16.298010515401899, "length_y": 16.298398916937298 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.90039022591759, 0.0 ], [ -0.001373291015625, 83.90039022591759, 0.0 ], [ -0.001373291015625, 83.900244301984415, 0.0 ], [ -0.00274658203125, 83.900244301984415, 0.0 ], [ -0.00274658203125, 83.90039022591759, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 275, "task_x": 131070, "task_y": 8768, "task_z": 18, "center_y": 83.895645917023899, "area_in_sqm": 266.01664686202997, "perimeter_in_m": 65.240067095519706, "length_x": 16.310443903449901, "length_y": 16.3108325978552 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.895718934655818, 0.0 ], [ -0.001373291015625, 83.895718934655818, 0.0 ], [ -0.001373291015625, 83.895572899392064, 0.0 ], [ -0.00274658203125, 83.895572899392064, 0.0 ], [ -0.00274658203125, 83.895718934655818, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 276, "task_x": 131070, "task_y": 8800, "task_z": 18, "center_y": 83.890971006175207, "area_in_sqm": 266.42264330387098, "perimeter_in_m": 65.289833034849494, "length_x": 16.3228866666316, "length_y": 16.323275654119499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.891044079514387, 0.0 ], [ -0.001373291015625, 83.891044079514387, 0.0 ], [ -0.001373291015625, 83.890897932836097, 0.0 ], [ -0.00274658203125, 83.890897932836097, 0.0 ], [ -0.00274658203125, 83.891044079514387, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 277, "task_x": 131070, "task_y": 8832, "task_z": 18, "center_y": 83.886292528716993, "area_in_sqm": 266.82925570011099, "perimeter_in_m": 65.339636498803699, "length_x": 16.335338811763101, "length_y": 16.335728092546901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.886365657805456, 0.0 ], [ -0.001373291015625, 83.886365657805456, 0.0 ], [ -0.001373291015625, 83.886219399628601, 0.0 ], [ -0.00274658203125, 83.886219399628601, 0.0 ], [ -0.00274658203125, 83.886365657805456, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 278, "task_x": 131070, "task_y": 8864, "task_z": 18, "center_y": 83.881610481959399, "area_in_sqm": 267.23648500442499, "perimeter_in_m": 65.389477497999493, "length_x": 16.347800345665, "length_y": 16.3481899199578 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.881683666839194, 0.0 ], [ -0.001373291015625, 83.881683666839194, 0.0 ], [ -0.001373291015625, 83.881537297079689, 0.0 ], [ -0.00274658203125, 83.881537297079689, 0.0 ], [ -0.00274658203125, 83.881683666839194, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 279, "task_x": 131070, "task_y": 8896, "task_z": 18, "center_y": 83.876924863210704, "area_in_sqm": 267.644332170486, "perimeter_in_m": 65.439356071388801, "length_x": 16.360271275162201, "length_y": 16.3606611431773 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.876998103923853, 0.0 ], [ -0.001373291015625, 83.876998103923853, 0.0 ], [ -0.001373291015625, 83.876851622497554, 0.0 ], [ -0.00274658203125, 83.876851622497554, 0.0 ], [ -0.00274658203125, 83.876998103923853, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 280, "task_x": 131070, "task_y": 8928, "task_z": 18, "center_y": 83.872235669776998, "area_in_sqm": 268.05279815197002, "perimeter_in_m": 65.489272241288404, "length_x": 16.372751607083998, "length_y": 16.373141769035001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.872308966365708, 0.0 ], [ -0.001373291015625, 83.872308966365708, 0.0 ], [ -0.001373291015625, 83.872162373188388, 0.0 ], [ -0.00274658203125, 83.872162373188388, 0.0 ], [ -0.00274658203125, 83.872308966365708, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 281, "task_x": 131070, "task_y": 8960, "task_z": 18, "center_y": 83.867542898962796, "area_in_sqm": 268.46188390255003, "perimeter_in_m": 65.539226035690504, "length_x": 16.385241348264099, "length_y": 16.3856318043646 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.867616251469059, 0.0 ], [ -0.001373291015625, 83.867616251469059, 0.0 ], [ -0.001373291015625, 83.867469546456448, 0.0 ], [ -0.00274658203125, 83.867469546456448, 0.0 ], [ -0.00274658203125, 83.867616251469059, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 282, "task_x": 131070, "task_y": 8992, "task_z": 18, "center_y": 83.862846548070195, "area_in_sqm": 268.87159037589998, "perimeter_in_m": 65.589217479763903, "length_x": 16.397740505540501, "length_y": 16.398131256004199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.862919956536274, 0.0 ], [ -0.001373291015625, 83.862919956536274, 0.0 ], [ -0.001373291015625, 83.862773139604045, 0.0 ], [ -0.00274658203125, 83.862773139604045, 0.0 ], [ -0.00274658203125, 83.862919956536274, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 283, "task_x": 131070, "task_y": 9024, "task_z": 18, "center_y": 83.858146614399601, "area_in_sqm": 269.28191828727699, "perimeter_in_m": 65.639246600986894, "length_x": 16.4102490857559, "length_y": 16.4106401307967 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.858220078867731, 0.0 ], [ -0.001373291015625, 83.858220078867731, 0.0 ], [ -0.001373291015625, 83.858073149931499, 0.0 ], [ -0.00274658203125, 83.858073149931499, 0.0 ], [ -0.00274658203125, 83.858220078867731, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 284, "task_x": 131070, "task_y": 9056, "task_z": 18, "center_y": 83.853443095249503, "area_in_sqm": 269.69286847114603, "perimeter_in_m": 65.689313441362998, "length_x": 16.422767095756601, "length_y": 16.4231584355887 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.85351661576189, 0.0 ], [ -0.001373291015625, 83.85351661576189, 0.0 ], [ -0.001373291015625, 83.853369574737187, 0.0 ], [ -0.00274658203125, 83.853369574737187, 0.0 ], [ -0.00274658203125, 83.85351661576189, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 285, "task_x": 131070, "task_y": 9088, "task_z": 18, "center_y": 83.848735987916299, "area_in_sqm": 270.10444223880802, "perimeter_in_m": 65.739418006612198, "length_x": 16.4352945423942, "length_y": 16.435686177231698 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.848809564515193, 0.0 ], [ -0.001373291015625, 83.848809564515193, 0.0 ], [ -0.001373291015625, 83.848662411317491, 0.0 ], [ -0.00274658203125, 83.848662411317491, 0.0 ], [ -0.00274658203125, 83.848809564515193, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 286, "task_x": 131070, "task_y": 9120, "task_z": 18, "center_y": 83.8440252896945, "area_in_sqm": 270.516640424728, "perimeter_in_m": 65.789560329374197, "length_x": 16.4478314325243, "length_y": 16.448223362581299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.844098922422148, 0.0 ], [ -0.001373291015625, 83.844098922422148, 0.0 ], [ -0.001373291015625, 83.843951656966894, 0.0 ], [ -0.00274658203125, 83.843951656966894, 0.0 ], [ -0.00274658203125, 83.844098922422148, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 287, "task_x": 131070, "task_y": 9152, "task_z": 18, "center_y": 83.839310997876595, "area_in_sqm": 270.92946326732601, "perimeter_in_m": 65.839740444067502, "length_x": 16.460377773006499, "length_y": 16.4607699984977 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.83938468677529, 0.0 ], [ -0.001373291015625, 83.83938468677529, 0.0 ], [ -0.001373291015625, 83.839237308977829, 0.0 ], [ -0.00274658203125, 83.839237308977829, 0.0 ], [ -0.00274658203125, 83.83938468677529, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 288, "task_x": 131070, "task_y": 9184, "task_z": 18, "center_y": 83.834593109753001, "area_in_sqm": 271.34291279315897, "perimeter_in_m": 65.889958375024904, "length_x": 16.4729335707055, "length_y": 16.473326091845301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.834666854865176, 0.0 ], [ -0.001373291015625, 83.834666854865176, 0.0 ], [ -0.001373291015625, 83.834519364640812, 0.0 ], [ -0.00274658203125, 83.834519364640812, 0.0 ], [ -0.00274658203125, 83.834666854865176, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 289, "task_x": 131070, "task_y": 9216, "task_z": 18, "center_y": 83.829871622612401, "area_in_sqm": 271.756989598274, "perimeter_in_m": 65.940214145177194, "length_x": 16.485498832489899, "length_y": 16.485891649493102 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.829945423980405, 0.0 ], [ -0.001373291015625, 83.829945423980405, 0.0 ], [ -0.001373291015625, 83.82979782124437, 0.0 ], [ -0.00274658203125, 83.82979782124437, 0.0 ], [ -0.00274658203125, 83.829945423980405, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 290, "task_x": 131070, "task_y": 9248, "task_z": 18, "center_y": 83.825146533741403, "area_in_sqm": 272.17169439792599, "perimeter_in_m": 65.990507790381102, "length_x": 16.498073565232801, "length_y": 16.498466678314202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.825220391407612, 0.0 ], [ -0.001373291015625, 83.825220391407612, 0.0 ], [ -0.001373291015625, 83.825072676075081, 0.0 ], [ -0.00274658203125, 83.825072676075081, 0.0 ], [ -0.00274658203125, 83.825220391407612, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 291, "task_x": 131070, "task_y": 9280, "task_z": 18, "center_y": 83.820417840424497, "area_in_sqm": 272.58702838420902, "perimeter_in_m": 66.040839336240197, "length_x": 16.510657775811602, "length_y": 16.5110511851863 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.820491754431444, 0.0 ], [ -0.001373291015625, 83.820491754431444, 0.0 ], [ -0.001373291015625, 83.820343926417536, 0.0 ], [ -0.00274658203125, 83.820343926417536, 0.0 ], [ -0.00274658203125, 83.820491754431444, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 292, "task_x": 131070, "task_y": 9312, "task_z": 18, "center_y": 83.815685539944496, "area_in_sqm": 273.002992630005, "perimeter_in_m": 66.0912088014598, "length_x": 16.523251471108299, "length_y": 16.523645176991401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.815759510334587, 0.0 ], [ -0.001373291015625, 83.815759510334587, 0.0 ], [ -0.001373291015625, 83.815611569554349, 0.0 ], [ -0.00274658203125, 83.815611569554349, 0.0 ], [ -0.00274658203125, 83.815759510334587, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 293, "task_x": 131070, "task_y": 9344, "task_z": 18, "center_y": 83.810949629581899, "area_in_sqm": 273.41958689689602, "perimeter_in_m": 66.141616229182304, "length_x": 16.535854658009299, "length_y": 16.536248660616 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.811023656397737, 0.0 ], [ -0.001373291015625, 83.811023656397737, 0.0 ], [ -0.001373291015625, 83.81087560276616, 0.0 ], [ -0.00274658203125, 83.81087560276616, 0.0 ], [ -0.00274658203125, 83.811023656397737, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 294, "task_x": 131070, "task_y": 9376, "task_z": 18, "center_y": 83.806210106615595, "area_in_sqm": 273.83681368827803, "perimeter_in_m": 66.192061626271396, "length_x": 16.5484673434051, "length_y": 16.548861642950701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.806284189899628, 0.0 ], [ -0.001373291015625, 83.806284189899628, 0.0 ], [ -0.001373291015625, 83.806136023331646, 0.0 ], [ -0.00274658203125, 83.806136023331646, 0.0 ], [ -0.00274658203125, 83.806284189899628, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 295, "task_x": 131070, "task_y": 9408, "task_z": 18, "center_y": 83.801466968322202, "area_in_sqm": 274.25467288494099, "perimeter_in_m": 66.242545041552702, "length_x": 16.561089534190799, "length_y": 16.561484130891099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.801541108117007, 0.0 ], [ -0.001373291015625, 83.801541108117007, 0.0 ], [ -0.001373291015625, 83.801392828527483, 0.0 ], [ -0.00274658203125, 83.801392828527483, 0.0 ], [ -0.00274658203125, 83.801541108117007, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 296, "task_x": 131070, "task_y": 9440, "task_z": 18, "center_y": 83.796720211976506, "area_in_sqm": 274.67316603660601, "perimeter_in_m": 66.293066491290105, "length_x": 16.573721237265801, "length_y": 16.5741161313364 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.796794408324672, 0.0 ], [ -0.001373291015625, 83.796794408324672, 0.0 ], [ -0.001373291015625, 83.796646015628397, 0.0 ], [ -0.00274658203125, 83.796646015628397, 0.0 ], [ -0.00274658203125, 83.796794408324672, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 297, "task_x": 131070, "task_y": 9472, "task_z": 18, "center_y": 83.791969834851301, "area_in_sqm": 275.09229385852802, "perimeter_in_m": 66.343626000427307, "length_x": 16.5863624595342, "length_y": 16.586757651190801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.792044087795389, 0.0 ], [ -0.001373291015625, 83.792044087795389, 0.0 ], [ -0.001373291015625, 83.791895581907127, 0.0 ], [ -0.00274658203125, 83.791895581907127, 0.0 ], [ -0.00274658203125, 83.792044087795389, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 298, "task_x": 131070, "task_y": 9504, "task_z": 18, "center_y": 83.787215834217207, "area_in_sqm": 275.51205754280102, "perimeter_in_m": 66.394223600292094, "length_x": 16.599013207904001, "length_y": 16.599408697362701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.787290143799993, 0.0 ], [ -0.001373291015625, 83.787290143799993, 0.0 ], [ -0.001373291015625, 83.787141524634407, 0.0 ], [ -0.00274658203125, 83.787141524634407, 0.0 ], [ -0.00274658203125, 83.787290143799993, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 299, "task_x": 131070, "task_y": 9536, "task_z": 18, "center_y": 83.782458207343197, "area_in_sqm": 275.93245792388899, "perimeter_in_m": 66.444859326823405, "length_x": 16.611673489287998, "length_y": 16.612069276764899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.782532573607298, 0.0 ], [ -0.001373291015625, 83.782532573607298, 0.0 ], [ -0.001373291015625, 83.782383841079024, 0.0 ], [ -0.00274658203125, 83.782383841079024, 0.0 ], [ -0.00274658203125, 83.782532573607298, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 300, "task_x": 131070, "task_y": 9568, "task_z": 18, "center_y": 83.777696951495997, "area_in_sqm": 276.353495359421, "perimeter_in_m": 66.495533199502901, "length_x": 16.624343310603201, "length_y": 16.624739396314499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.777771374484175, 0.0 ], [ -0.001373291015625, 83.777771374484175, 0.0 ], [ -0.001373291015625, 83.777622528507763, 0.0 ], [ -0.00274658203125, 83.777622528507763, 0.0 ], [ -0.00274658203125, 83.777771374484175, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 301, "task_x": 131070, "task_y": 9600, "task_z": 18, "center_y": 83.772932063940402, "area_in_sqm": 276.77517187595402, "perimeter_in_m": 66.546245238004005, "length_x": 16.637022678771199, "length_y": 16.637419062933098 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.773006543695473, 0.0 ], [ -0.001373291015625, 83.773006543695473, 0.0 ], [ -0.001373291015625, 83.772857584185417, 0.0 ], [ -0.00274658203125, 83.772857584185417, 0.0 ], [ -0.00274658203125, 83.773006543695473, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 302, "task_x": 131070, "task_y": 9632, "task_z": 18, "center_y": 83.768163541939401, "area_in_sqm": 277.19748723506899, "perimeter_in_m": 66.596995479172406, "length_x": 16.649711600717598, "length_y": 16.6501082835467 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.768238078504083, 0.0 ], [ -0.001373291015625, 83.768238078504083, 0.0 ], [ -0.001373291015625, 83.768089005374819, 0.0 ], [ -0.00274658203125, 83.768089005374819, 0.0 ], [ -0.00274658203125, 83.768238078504083, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 303, "task_x": 131070, "task_y": 9664, "task_z": 18, "center_y": 83.763391382753795, "area_in_sqm": 277.62044382095303, "perimeter_in_m": 66.647783953497196, "length_x": 16.662410083372901, "length_y": 16.6628070650859 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.763465976170878, 0.0 ], [ -0.001373291015625, 83.763465976170878, 0.0 ], [ -0.001373291015625, 83.763316789336784, 0.0 ], [ -0.00274658203125, 83.763316789336784, 0.0 ], [ -0.00274658203125, 83.763465976170878, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 304, "task_x": 131070, "task_y": 9696, "task_z": 18, "center_y": 83.758615583642495, "area_in_sqm": 278.04404151439701, "perimeter_in_m": 66.698610686161103, "length_x": 16.675118133671599, "length_y": 16.6755154144853 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.758690233954781, 0.0 ], [ -0.001373291015625, 83.758690233954781, 0.0 ], [ -0.001373291015625, 83.758540933330153, 0.0 ], [ -0.00274658203125, 83.758540933330153, 0.0 ], [ -0.00274658203125, 83.758690233954781, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 305, "task_x": 131070, "task_y": 9728, "task_z": 18, "center_y": 83.753836141862294, "area_in_sqm": 278.46828114986403, "perimeter_in_m": 66.749475702531996, "length_x": 16.687835758553, "length_y": 16.688233338684199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.7539108491127, 0.0 ], [ -0.001373291015625, 83.7539108491127, 0.0 ], [ -0.001373291015625, 83.753761434611789, 0.0 ], [ -0.00274658203125, 83.753761434611789, 0.0 ], [ -0.00274658203125, 83.7539108491127, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 306, "task_x": 131070, "task_y": 9760, "task_z": 18, "center_y": 83.749053054667996, "area_in_sqm": 278.89316415786698, "perimeter_in_m": 66.800379030469898, "length_x": 16.700562964960401, "length_y": 16.700960844626302 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.749127818899552, 0.0 ], [ -0.001373291015625, 83.749127818899552, 0.0 ], [ -0.001373291015625, 83.74897829043654, 0.0 ], [ -0.00274658203125, 83.74897829043654, 0.0 ], [ -0.00274658203125, 83.749127818899552, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 307, "task_x": 131070, "task_y": 9792, "task_z": 18, "center_y": 83.7442663193128, "area_in_sqm": 279.31869196891802, "perimeter_in_m": 66.851320698545607, "length_x": 16.713299759841799, "length_y": 16.7136979392595 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.744341140568281, 0.0 ], [ -0.001373291015625, 83.744341140568281, 0.0 ], [ -0.001373291015625, 83.74419149805729, 0.0 ], [ -0.00274658203125, 83.74419149805729, 0.0 ], [ -0.00274658203125, 83.744341140568281, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 308, "task_x": 131070, "task_y": 9824, "task_z": 18, "center_y": 83.739475933047402, "area_in_sqm": 279.74486458301499, "perimeter_in_m": 66.902300736582603, "length_x": 16.7260461501495, "length_y": 16.726444629536299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.73955081136981, 0.0 ], [ -0.001373291015625, 83.73955081136981, 0.0 ], [ -0.001373291015625, 83.739401054724894, 0.0 ], [ -0.00274658203125, 83.739401054724894, 0.0 ], [ -0.00274658203125, 83.73955081136981, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 309, "task_x": 131070, "task_y": 9856, "task_z": 18, "center_y": 83.734681893120694, "area_in_sqm": 280.17168378830002, "perimeter_in_m": 66.953319168214406, "length_x": 16.7388021428402, "length_y": 16.739200922413598 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.734756828553088, 0.0 ], [ -0.001373291015625, 83.734756828553088, 0.0 ], [ -0.001373291015625, 83.734606957688257, 0.0 ], [ -0.00274658203125, 83.734606957688257, 0.0 ], [ -0.00274658203125, 83.734756828553088, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 310, "task_x": 131070, "task_y": 9888, "task_z": 18, "center_y": 83.729884196779693, "area_in_sqm": 280.599150300026, "perimeter_in_m": 67.004376023810906, "length_x": 16.751567744875, "length_y": 16.751966824852602 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.729959189365061, 0.0 ], [ -0.001373291015625, 83.729959189365061, 0.0 ], [ -0.001373291015625, 83.72980920419424, 0.0 ], [ -0.00274658203125, 83.72980920419424, 0.0 ], [ -0.00274658203125, 83.729959189365061, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 311, "task_x": 131070, "task_y": 9920, "task_z": 18, "center_y": 83.725082841269199, "area_in_sqm": 281.02726435661299, "perimeter_in_m": 67.055471331450207, "length_x": 16.764342963219502, "length_y": 16.764742343819101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.725157891050671, 0.0 ], [ -0.001373291015625, 83.725157891050671, 0.0 ], [ -0.001373291015625, 83.725007791487741, 0.0 ], [ -0.00274658203125, 83.725007791487741, 0.0 ], [ -0.00274658203125, 83.725157891050671, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 312, "task_x": 131070, "task_y": 9952, "task_z": 18, "center_y": 83.720277823832305, "area_in_sqm": 281.45602786541002, "perimeter_in_m": 67.106605124706604, "length_x": 16.777127804843701, "length_y": 16.777527486283201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.720352930852883, 0.0 ], [ -0.001373291015625, 83.720352930852883, 0.0 ], [ -0.001373291015625, 83.720202716811642, 0.0 ], [ -0.00274658203125, 83.720202716811642, 0.0 ], [ -0.00274658203125, 83.720352930852883, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 313, "task_x": 131070, "task_y": 9984, "task_z": 18, "center_y": 83.715469141709704, "area_in_sqm": 281.885441184044, "perimeter_in_m": 67.157777420877196, "length_x": 16.789922276721899, "length_y": 16.790322259219302 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.715544306012646, 0.0 ], [ -0.001373291015625, 83.715544306012646, 0.0 ], [ -0.001373291015625, 83.715393977406848, 0.0 ], [ -0.00274658203125, 83.715393977406848, 0.0 ], [ -0.00274658203125, 83.715544306012646, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 314, "task_x": 131070, "task_y": 10016, "task_z": 18, "center_y": 83.710656792140597, "area_in_sqm": 282.31550598144503, "perimeter_in_m": 67.208988250367796, "length_x": 16.8027263858331, "length_y": 16.803126669606499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.71073201376889, 0.0 ], [ -0.001373291015625, 83.71073201376889, 0.0 ], [ -0.001373291015625, 83.710581570512232, 0.0 ], [ -0.00274658203125, 83.710581570512232, 0.0 ], [ -0.00274658203125, 83.71073201376889, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 315, "task_x": 131070, "task_y": 10048, "task_z": 18, "center_y": 83.705840772361597, "area_in_sqm": 282.746222496033, "perimeter_in_m": 67.260237638634294, "length_x": 16.815540139160301, "length_y": 16.815940724428 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.705916051358585, 0.0 ], [ -0.001373291015625, 83.705916051358585, 0.0 ], [ -0.001373291015625, 83.70576549336468, 0.0 ], [ -0.00274658203125, 83.70576549336468, 0.0 ], [ -0.00274658203125, 83.705916051358585, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 316, "task_x": 131070, "task_y": 10080, "task_z": 18, "center_y": 83.701021079607898, "area_in_sqm": 283.17759215831802, "perimeter_in_m": 67.311525625129804, "length_x": 16.828363543691299, "length_y": 16.828764430671701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.701096416016668, 0.0 ], [ -0.001373291015625, 83.701096416016668, 0.0 ], [ -0.001373291015625, 83.700945743199071, 0.0 ], [ -0.00274658203125, 83.700945743199071, 0.0 ], [ -0.00274658203125, 83.701096416016668, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 317, "task_x": 131070, "task_y": 10112, "task_z": 18, "center_y": 83.696197711112205, "area_in_sqm": 283.60961592197401, "perimeter_in_m": 67.3628522300166, "length_x": 16.841196606418102, "length_y": 16.8415977953299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.696273104976072, 0.0 ], [ -0.001373291015625, 83.696273104976072, 0.0 ], [ -0.001373291015625, 83.696122317248282, 0.0 ], [ -0.00274658203125, 83.696122317248282, 0.0 ], [ -0.00274658203125, 83.696273104976072, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 318, "task_x": 131070, "task_y": 10144, "task_z": 18, "center_y": 83.691370664105506, "area_in_sqm": 284.04229450225802, "perimeter_in_m": 67.414217478250293, "length_x": 16.854039334337202, "length_y": 16.854440825398999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.691446115467741, 0.0 ], [ -0.001373291015625, 83.691446115467741, 0.0 ], [ -0.001373291015625, 83.691295212743199, 0.0 ], [ -0.00274658203125, 83.691295212743199, 0.0 ], [ -0.00274658203125, 83.691446115467741, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 319, "task_x": 131070, "task_y": 10176, "task_z": 18, "center_y": 83.686539935816597, "area_in_sqm": 284.47562897205398, "perimeter_in_m": 67.465621406297899, "length_x": 16.866891734449499, "length_y": 16.8672935278802 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.686615444720601, 0.0 ], [ -0.001373291015625, 83.686615444720601, 0.0 ], [ -0.001373291015625, 83.686464426912664, 0.0 ], [ -0.00274658203125, 83.686464426912664, 0.0 ], [ -0.00274658203125, 83.686615444720601, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 320, "task_x": 131070, "task_y": 10208, "task_z": 18, "center_y": 83.681705523472502, "area_in_sqm": 284.90962064266199, "perimeter_in_m": 67.5170640364733, "length_x": 16.879753813760399, "length_y": 16.880155909778999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.681781089961561, 0.0 ], [ -0.001373291015625, 83.681781089961561, 0.0 ], [ -0.001373291015625, 83.681629956983542, 0.0 ], [ -0.00274658203125, 83.681629956983542, 0.0 ], [ -0.00274658203125, 83.681781089961561, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 321, "task_x": 131070, "task_y": 10240, "task_z": 18, "center_y": 83.676867424298095, "area_in_sqm": 285.34426975250199, "perimeter_in_m": 67.5685453921636, "length_x": 16.892625579279599, "length_y": 16.893027978105199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.676943048415524, 0.0 ], [ -0.001373291015625, 83.676943048415524, 0.0 ], [ -0.001373291015625, 83.676791800180681, 0.0 ], [ -0.00274658203125, 83.676791800180681, 0.0 ], [ -0.00274658203125, 83.676943048415524, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 322, "task_x": 131070, "task_y": 10272, "task_z": 18, "center_y": 83.672025635516206, "area_in_sqm": 285.77957808971399, "perimeter_in_m": 67.620065509333898, "length_x": 16.905507038021501, "length_y": 16.905909739873302 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.67210131730539, 0.0 ], [ -0.001373291015625, 83.67210131730539, 0.0 ], [ -0.001373291015625, 83.671949953726909, 0.0 ], [ -0.00274658203125, 83.671949953726909, 0.0 ], [ -0.00274658203125, 83.67210131730539, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 323, "task_x": 131070, "task_y": 10304, "task_z": 18, "center_y": 83.667180154347605, "area_in_sqm": 286.21554613113398, "perimeter_in_m": 67.671624415812502, "length_x": 16.9183981970045, "length_y": 16.918801202101999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.667255893852058, 0.0 ], [ -0.001373291015625, 83.667255893852058, 0.0 ], [ -0.001373291015625, 83.667104414843038, 0.0 ], [ -0.00274658203125, 83.667104414843038, 0.0 ], [ -0.00274658203125, 83.667255893852058, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 324, "task_x": 131070, "task_y": 10336, "task_z": 18, "center_y": 83.662330978011099, "area_in_sqm": 286.65217554569199, "perimeter_in_m": 67.723222135540894, "length_x": 16.9312990632517, "length_y": 16.931702371814499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.662406775274377, 0.0 ], [ -0.001373291015625, 83.662406775274377, 0.0 ], [ -0.001373291015625, 83.662255180747891, 0.0 ], [ -0.00274658203125, 83.662255180747891, 0.0 ], [ -0.00274658203125, 83.662406775274377, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 325, "task_x": 131070, "task_y": 10368, "task_z": 18, "center_y": 83.657478103723705, "area_in_sqm": 287.08946669101698, "perimeter_in_m": 67.774858701149398, "length_x": 16.9442096437907, "length_y": 16.944613256038402 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.657553958789208, 0.0 ], [ -0.001373291015625, 83.657553958789208, 0.0 ], [ -0.001373291015625, 83.657402248658244, 0.0 ], [ -0.00274658203125, 83.657402248658244, 0.0 ], [ -0.00274658203125, 83.657553958789208, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 326, "task_x": 131070, "task_y": 10400, "task_z": 18, "center_y": 83.652621528700095, "area_in_sqm": 287.52742028236401, "perimeter_in_m": 67.826534135713203, "length_x": 16.957129945653499, "length_y": 16.957533861805899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.65269744161138, 0.0 ], [ -0.001373291015625, 83.65269744161138, 0.0 ], [ -0.001373291015625, 83.652545615788867, 0.0 ], [ -0.00274658203125, 83.652545615788867, 0.0 ], [ -0.00274658203125, 83.65269744161138, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 327, "task_x": 131070, "task_y": 10432, "task_z": 18, "center_y": 83.647761250153096, "area_in_sqm": 287.96603822708101, "perimeter_in_m": 67.878248472760603, "length_x": 16.9700599758763, "length_y": 16.970464196153401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.647837220953733, 0.0 ], [ -0.001373291015625, 83.647837220953733, 0.0 ], [ -0.001373291015625, 83.647685279352544, 0.0 ], [ -0.00274658203125, 83.647685279352544, 0.0 ], [ -0.00274658203125, 83.647837220953733, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 328, "task_x": 131070, "task_y": 10464, "task_z": 18, "center_y": 83.642897265293499, "area_in_sqm": 288.40532040596003, "perimeter_in_m": 67.930001732553706, "length_x": 16.982999741499999, "length_y": 16.983404266121799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.642973294027058, 0.0 ], [ -0.001373291015625, 83.642973294027058, 0.0 ], [ -0.001373291015625, 83.642821236559996, 0.0 ], [ -0.00274658203125, 83.642821236559996, 0.0 ], [ -0.00274658203125, 83.642973294027058, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 329, "task_x": 131070, "task_y": 10496, "task_z": 18, "center_y": 83.638029571329994, "area_in_sqm": 288.84526836872101, "perimeter_in_m": 67.981793948639094, "length_x": 16.995949249569801, "length_y": 16.9963540787566 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.638105658040132, 0.0 ], [ -0.001373291015625, 83.638105658040132, 0.0 ], [ -0.001373291015625, 83.637953484619942, 0.0 ], [ -0.00274658203125, 83.637953484619942, 0.0 ], [ -0.00274658203125, 83.638105658040132, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 330, "task_x": 131070, "task_y": 10528, "task_z": 18, "center_y": 83.633158165469396, "area_in_sqm": 289.285884141922, "perimeter_in_m": 68.033625152095695, "length_x": 17.008908507135398, "length_y": 17.0093136411076 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.633234310199725, 0.0 ], [ -0.001373291015625, 83.633234310199725, 0.0 ], [ -0.001373291015625, 83.633082020739081, 0.0 ], [ -0.00274658203125, 83.633082020739081, 0.0 ], [ -0.00274658203125, 83.633234310199725, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 331, "task_x": 131070, "task_y": 10560, "task_z": 18, "center_y": 83.628283044916301, "area_in_sqm": 289.72716689109802, "perimeter_in_m": 68.085495360554901, "length_x": 17.0218775212509, "length_y": 17.022282960228999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.628359247710563, 0.0 ], [ -0.001373291015625, 83.628359247710563, 0.0 ], [ -0.001373291015625, 83.628206842122097, 0.0 ], [ -0.00274658203125, 83.628206842122097, 0.0 ], [ -0.00274658203125, 83.628359247710563, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 332, "task_x": 131070, "task_y": 10592, "task_z": 18, "center_y": 83.623404206873502, "area_in_sqm": 290.169118523598, "perimeter_in_m": 68.137404618213495, "length_x": 17.034856298974901, "length_y": 17.0352620431796 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.62348046777538, 0.0 ], [ -0.001373291015625, 83.62348046777538, 0.0 ], [ -0.001373291015625, 83.62332794597161, 0.0 ], [ -0.00274658203125, 83.62332794597161, 0.0 ], [ -0.00274658203125, 83.62348046777538, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 333, "task_x": 131070, "task_y": 10624, "task_z": 18, "center_y": 83.618521648541503, "area_in_sqm": 290.61174046993301, "perimeter_in_m": 68.189352937054807, "length_x": 17.047844847370399, "length_y": 17.048250897022498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.618597967594823, 0.0 ], [ -0.001373291015625, 83.618597967594823, 0.0 ], [ -0.001373291015625, 83.618445329488267, 0.0 ], [ -0.00274658203125, 83.618445329488267, 0.0 ], [ -0.00274658203125, 83.618597967594823, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 334, "task_x": 131070, "task_y": 10656, "task_z": 18, "center_y": 83.613635367119102, "area_in_sqm": 291.055032849312, "perimeter_in_m": 68.241340355983894, "length_x": 17.0608431735049, "length_y": 17.061249528825201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.613711744367606, 0.0 ], [ -0.001373291015625, 83.613711744367606, 0.0 ], [ -0.001373291015625, 83.613558989870668, 0.0 ], [ -0.00274658203125, 83.613558989870668, 0.0 ], [ -0.00274658203125, 83.613711744367606, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 335, "task_x": 131070, "task_y": 10688, "task_z": 18, "center_y": 83.608745359802896, "area_in_sqm": 291.49899721145601, "perimeter_in_m": 68.293366898862502, "length_x": 17.0738512844502, "length_y": 17.074257945659799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.608821795290325, 0.0 ], [ -0.001373291015625, 83.608821795290325, 0.0 ], [ -0.001373291015625, 83.608668924315381, 0.0 ], [ -0.00274658203125, 83.608668924315381, 0.0 ], [ -0.00274658203125, 83.608821795290325, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 336, "task_x": 131070, "task_y": 10720, "task_z": 18, "center_y": 83.603851623787307, "area_in_sqm": 291.94363427162199, "perimeter_in_m": 68.345432593280904, "length_x": 17.086869187282701, "length_y": 17.0872761546029 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.603928117557587, 0.0 ], [ -0.001373291015625, 83.603928117557587, 0.0 ], [ -0.001373291015625, 83.603775130016942, 0.0 ], [ -0.00274658203125, 83.603775130016942, 0.0 ], [ -0.00274658203125, 83.603928117557587, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 337, "task_x": 131070, "task_y": 10752, "task_z": 18, "center_y": 83.598954156264895, "area_in_sqm": 292.38894534111, "perimeter_in_m": 68.397537472680398, "length_x": 17.099896889083201, "length_y": 17.100304162735299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.59903070836198, 0.0 ], [ -0.001373291015625, 83.59903070836198, 0.0 ], [ -0.001373291015625, 83.598877604167853, 0.0 ], [ -0.00274658203125, 83.598877604167853, 0.0 ], [ -0.00274658203125, 83.59903070836198, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 338, "task_x": 131070, "task_y": 10784, "task_z": 18, "center_y": 83.594052954426303, "area_in_sqm": 292.83493125438702, "perimeter_in_m": 68.449681557765402, "length_x": 17.1129343969369, "length_y": 17.113341977142401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.594129564894033, 0.0 ], [ -0.001373291015625, 83.594129564894033, 0.0 ], [ -0.001373291015625, 83.593976343958616, 0.0 ], [ -0.00274658203125, 83.593976343958616, 0.0 ], [ -0.00274658203125, 83.594129564894033, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 339, "task_x": 131070, "task_y": 10816, "task_z": 18, "center_y": 83.589148015459998, "area_in_sqm": 293.281592726707, "perimeter_in_m": 68.501864885181703, "length_x": 17.125981717933598, "length_y": 17.126389604914099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.58922468434227, 0.0 ], [ -0.001373291015625, 83.58922468434227, 0.0 ], [ -0.001373291015625, 83.589071346577654, 0.0 ], [ -0.00274658203125, 83.589071346577654, 0.0 ], [ -0.00274658203125, 83.58922468434227, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 340, "task_x": 131070, "task_y": 10848, "task_z": 18, "center_y": 83.584239336552301, "area_in_sqm": 293.72893118858298, "perimeter_in_m": 68.554087475118195, "length_x": 17.139038859167201, "length_y": 17.139447053144501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.584316063893169, 0.0 ], [ -0.001373291015625, 83.584316063893169, 0.0 ], [ -0.001373291015625, 83.584162609211404, 0.0 ], [ -0.00274658203125, 83.584162609211404, 0.0 ], [ -0.00274658203125, 83.584316063893169, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 341, "task_x": 131070, "task_y": 10880, "task_z": 18, "center_y": 83.579326914887702, "area_in_sqm": 294.17694771289803, "perimeter_in_m": 68.606349366009496, "length_x": 17.152105827736499, "length_y": 17.152514328932501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.579403700731149, 0.0 ], [ -0.001373291015625, 83.579403700731149, 0.0 ], [ -0.001373291015625, 83.579250129044212, 0.0 ], [ -0.00274658203125, 83.579250129044212, 0.0 ], [ -0.00274658203125, 83.579403700731149, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 342, "task_x": 131070, "task_y": 10912, "task_z": 18, "center_y": 83.5744107476485, "area_in_sqm": 294.62564277648897, "perimeter_in_m": 68.658650567618395, "length_x": 17.165182630744599, "length_y": 17.165591439381199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.574487592038622, 0.0 ], [ -0.001373291015625, 83.574487592038622, 0.0 ], [ -0.001373291015625, 83.574333903258434, 0.0 ], [ -0.00274658203125, 83.574333903258434, 0.0 ], [ -0.00274658203125, 83.574487592038622, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 343, "task_x": 131070, "task_y": 10944, "task_z": 18, "center_y": 83.569490832015205, "area_in_sqm": 295.07501804828598, "perimeter_in_m": 68.710991133088697, "length_x": 17.178269275298799, "length_y": 17.1786783915983 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.569567734995957, 0.0 ], [ -0.001373291015625, 83.569567734995957, 0.0 ], [ -0.001373291015625, 83.569413929034368, 0.0 ], [ -0.00274658203125, 83.569413929034368, 0.0 ], [ -0.00274658203125, 83.569567734995957, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 344, "task_x": 131070, "task_y": 10976, "task_z": 18, "center_y": 83.564567165165897, "area_in_sqm": 295.525074481964, "perimeter_in_m": 68.763371068839504, "length_x": 17.191365768511201, "length_y": 17.1917751926959 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.564644126781474, 0.0 ], [ -0.001373291015625, 83.564644126781474, 0.0 ], [ -0.001373291015625, 83.564490203550292, 0.0 ], [ -0.00274658203125, 83.564490203550292, 0.0 ], [ -0.00274658203125, 83.564644126781474, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 345, "task_x": 131070, "task_y": 11008, "task_z": 18, "center_y": 83.559639744276893, "area_in_sqm": 295.97581267356901, "perimeter_in_m": 68.815790422721605, "length_x": 17.204472117498099, "length_y": 17.2048818497905 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.559716764571462, 0.0 ], [ -0.001373291015625, 83.559716764571462, 0.0 ], [ -0.001373291015625, 83.559562723982395, 0.0 ], [ -0.00274658203125, 83.559562723982395, 0.0 ], [ -0.00274658203125, 83.559716764571462, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 346, "task_x": 131070, "task_y": 11040, "task_z": 18, "center_y": 83.554708566522507, "area_in_sqm": 296.42723393440201, "perimeter_in_m": 68.868249208783794, "length_x": 17.217588329380501, "length_y": 17.217998370003201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.554785645540164, 0.0 ], [ -0.001373291015625, 83.554785645540164, 0.0 ], [ -0.001373291015625, 83.554631487504878, 0.0 ], [ -0.00274658203125, 83.554631487504878, 0.0 ], [ -0.00274658203125, 83.554785645540164, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 347, "task_x": 131070, "task_y": 11072, "task_z": 18, "center_y": 83.549773629074807, "area_in_sqm": 296.87933862209297, "perimeter_in_m": 68.920747460908501, "length_x": 17.230714411283799, "length_y": 17.231124760459402 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.549850766859777, 0.0 ], [ -0.001373291015625, 83.549850766859777, 0.0 ], [ -0.001373291015625, 83.549696491289865, 0.0 ], [ -0.00274658203125, 83.549696491289865, 0.0 ], [ -0.00274658203125, 83.549850766859777, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 348, "task_x": 131070, "task_y": 11104, "task_z": 18, "center_y": 83.544834929103999, "area_in_sqm": 297.33212876319902, "perimeter_in_m": 68.973285205554006, "length_x": 17.243850370337501, "length_y": 17.244261028288999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.544912125700463, 0.0 ], [ -0.001373291015625, 83.544912125700463, 0.0 ], [ -0.001373291015625, 83.544757732507463, 0.0 ], [ -0.00274658203125, 83.544757732507463, 0.0 ], [ -0.00274658203125, 83.544912125700463, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 349, "task_x": 131070, "task_y": 11136, "task_z": 18, "center_y": 83.539892463778003, "area_in_sqm": 297.78560519218399, "perimeter_in_m": 69.025862473434799, "length_x": 17.256996213676, "length_y": 17.257407180626501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.539969719230328, 0.0 ], [ -0.001373291015625, 83.539969719230328, 0.0 ], [ -0.001373291015625, 83.539815208325706, 0.0 ], [ -0.00274658203125, 83.539815208325706, 0.0 ], [ -0.00274658203125, 83.539969719230328, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 350, "task_x": 131070, "task_y": 11168, "task_z": 18, "center_y": 83.534946230263003, "area_in_sqm": 298.23976826667803, "perimeter_in_m": 69.078479292973, "length_x": 17.270151948438102, "length_y": 17.270563224610601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.535023544615413, 0.0 ], [ -0.001373291015625, 83.535023544615413, 0.0 ], [ -0.001373291015625, 83.534868915910593, 0.0 ], [ -0.00274658203125, 83.534868915910593, 0.0 ], [ -0.00274658203125, 83.535023544615413, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 351, "task_x": 131070, "task_y": 11200, "task_z": 18, "center_y": 83.529996225722897, "area_in_sqm": 298.69461953640001, "perimeter_in_m": 69.131135689591105, "length_x": 17.283317581766902, "length_y": 17.283729167384799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.530073599019772, 0.0 ], [ -0.001373291015625, 83.530073599019772, 0.0 ], [ -0.001373291015625, 83.529918852426079, 0.0 ], [ -0.00274658203125, 83.529918852426079, 0.0 ], [ -0.00274658203125, 83.530073599019772, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 352, "task_x": 131070, "task_y": 11232, "task_z": 18, "center_y": 83.525042447319706, "area_in_sqm": 299.15015983581497, "perimeter_in_m": 69.183831700582303, "length_x": 17.296493120809998, "length_y": 17.296905016096801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.525119879605342, 0.0 ], [ -0.001373291015625, 83.525119879605342, 0.0 ], [ -0.001373291015625, 83.524965015034056, 0.0 ], [ -0.00274658203125, 83.524965015034056, 0.0 ], [ -0.00274658203125, 83.525119879605342, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 353, "task_x": 131070, "task_y": 11264, "task_z": 18, "center_y": 83.520084892213205, "area_in_sqm": 299.60639035701797, "perimeter_in_m": 69.236567343241305, "length_x": 17.309678572719701, "length_y": 17.3100907778988 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.520162383532039, 0.0 ], [ -0.001373291015625, 83.520162383532039, 0.0 ], [ -0.001373291015625, 83.520007400894372, 0.0 ], [ -0.00274658203125, 83.520007400894372, 0.0 ], [ -0.00274658203125, 83.520162383532039, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 354, "task_x": 131070, "task_y": 11296, "task_z": 18, "center_y": 83.515123557561296, "area_in_sqm": 300.063312292099, "perimeter_in_m": 69.289342645496703, "length_x": 17.3228739446525, "length_y": 17.3232864599476 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.515201107957722, 0.0 ], [ -0.001373291015625, 83.515201107957722, 0.0 ], [ -0.001373291015625, 83.515046007164841, 0.0 ], [ -0.00274658203125, 83.515046007164841, 0.0 ], [ -0.00274658203125, 83.515201107957722, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 355, "task_x": 131070, "task_y": 11328, "task_z": 18, "center_y": 83.510158440519703, "area_in_sqm": 300.52092635631601, "perimeter_in_m": 69.342157644488694, "length_x": 17.336079243769301, "length_y": 17.336492069404301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.510236050038216, 0.0 ], [ -0.001373291015625, 83.510236050038216, 0.0 ], [ -0.001373291015625, 83.51008083100119, 0.0 ], [ -0.00274658203125, 83.51008083100119, 0.0 ], [ -0.00274658203125, 83.510236050038216, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 356, "task_x": 131070, "task_y": 11360, "task_z": 18, "center_y": 83.505189538242206, "area_in_sqm": 300.97923350334202, "perimeter_in_m": 69.395012369047507, "length_x": 17.349294477235802, "length_y": 17.349707613434699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.505267206927243, 0.0 ], [ -0.001373291015625, 83.505267206927243, 0.0 ], [ -0.001373291015625, 83.505111869557112, 0.0 ], [ -0.00274658203125, 83.505111869557112, 0.0 ], [ -0.00274658203125, 83.505267206927243, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 357, "task_x": 131070, "task_y": 11392, "task_z": 18, "center_y": 83.500216847880395, "area_in_sqm": 301.438235163689, "perimeter_in_m": 69.447906849959693, "length_x": 17.362519652221799, "length_y": 17.362933099208899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.50029457577655, 0.0 ], [ -0.001373291015625, 83.50029457577655, 0.0 ], [ -0.001373291015625, 83.50013911998424, 0.0 ], [ -0.00274658203125, 83.50013911998424, 0.0 ], [ -0.00274658203125, 83.50029457577655, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 358, "task_x": 131070, "task_y": 11424, "task_z": 18, "center_y": 83.4952403665839, "area_in_sqm": 301.89793169498398, "perimeter_in_m": 69.500841099607797, "length_x": 17.3757547759019, "length_y": 17.3761685339013 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.495318153735724, 0.0 ], [ -0.001373291015625, 83.495318153735724, 0.0 ], [ -0.001373291015625, 83.495162579432161, 0.0 ], [ -0.00274658203125, 83.495162579432161, 0.0 ], [ -0.00274658203125, 83.495318153735724, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 359, "task_x": 131070, "task_y": 11456, "task_z": 18, "center_y": 83.490260091500403, "area_in_sqm": 302.35832464695, "perimeter_in_m": 69.553815162783707, "length_x": 17.388999855455101, "length_y": 17.389413924691201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.490337937952376, 0.0 ], [ -0.001373291015625, 83.490337937952376, 0.0 ], [ -0.001373291015625, 83.490182245048373, 0.0 ], [ -0.00274658203125, 83.490182245048373, 0.0 ], [ -0.00274658203125, 83.490337937952376, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 360, "task_x": 131070, "task_y": 11488, "task_z": 18, "center_y": 83.485276019775199, "area_in_sqm": 302.81941509246798, "perimeter_in_m": 69.606829065519094, "length_x": 17.402254898064601, "length_y": 17.4026692787622 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.485353925572014, 0.0 ], [ -0.001373291015625, 83.485353925572014, 0.0 ], [ -0.001373291015625, 83.485198113978328, 0.0 ], [ -0.00274658203125, 83.485198113978328, 0.0 ], [ -0.00274658203125, 83.485353925572014, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 361, "task_x": 131070, "task_y": 11520, "task_z": 18, "center_y": 83.480288148551793, "area_in_sqm": 303.28120398521401, "perimeter_in_m": 69.6598828299622, "length_x": 17.415519910918501, "length_y": 17.415934603301999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.480366113738114, 0.0 ], [ -0.001373291015625, 83.480366113738114, 0.0 ], [ -0.001373291015625, 83.480210183365458, 0.0 ], [ -0.00274658203125, 83.480210183365458, 0.0 ], [ -0.00274658203125, 83.480366113738114, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 362, "task_x": 131070, "task_y": 11552, "task_z": 18, "center_y": 83.475296474971501, "area_in_sqm": 303.74369287490799, "perimeter_in_m": 69.712976487651602, "length_x": 17.428794901208999, "length_y": 17.429209905503299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.47537449959205, 0.0 ], [ -0.001373291015625, 83.47537449959205, 0.0 ], [ -0.001373291015625, 83.475218450351051, 0.0 ], [ -0.00274658203125, 83.475218450351051, 0.0 ], [ -0.00274658203125, 83.47537449959205, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 363, "task_x": 131070, "task_y": 11584, "task_z": 18, "center_y": 83.470300996173805, "area_in_sqm": 304.20688164234201, "perimeter_in_m": 69.766110068541906, "length_x": 17.442079876133, "length_y": 17.442495192563101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.470379080273176, 0.0 ], [ -0.001373291015625, 83.470379080273176, 0.0 ], [ -0.001373291015625, 83.470222912074419, 0.0 ], [ -0.00274658203125, 83.470222912074419, 0.0 ], [ -0.00274658203125, 83.470379080273176, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 364, "task_x": 131070, "task_y": 11616, "task_z": 18, "center_y": 83.465301709295701, "area_in_sqm": 304.670772314072, "perimeter_in_m": 69.819283602595505, "length_x": 17.4553748428918, "length_y": 17.4557904716828 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.465379852918744, 0.0 ], [ -0.001373291015625, 83.465379852918744, 0.0 ], [ -0.001373291015625, 83.46522356567273, 0.0 ], [ -0.00274658203125, 83.46522356567273, 0.0 ], [ -0.00274658203125, 83.465379852918744, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 365, "task_x": 131070, "task_y": 11648, "task_z": 18, "center_y": 83.460298611472595, "area_in_sqm": 305.13536536693601, "perimeter_in_m": 69.872497121557004, "length_x": 17.468679808691199, "length_y": 17.469095750068501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.460376814663974, 0.0 ], [ -0.001373291015625, 83.460376814663974, 0.0 ], [ -0.001373291015625, 83.460220408281131, 0.0 ], [ -0.00274658203125, 83.460220408281131, 0.0 ], [ -0.00274658203125, 83.460376814663974, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 366, "task_x": 131070, "task_y": 11680, "task_z": 18, "center_y": 83.455291699837304, "area_in_sqm": 305.60066211223602, "perimeter_in_m": 69.9257506428374, "length_x": 17.481994780741498, "length_y": 17.482411034930301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.455369962641996, 0.0 ], [ -0.001373291015625, 83.455369962641996, 0.0 ], [ -0.001373291015625, 83.455213437032711, 0.0 ], [ -0.00274658203125, 83.455213437032711, 0.0 ], [ -0.00274658203125, 83.455369962641996, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 367, "task_x": 131070, "task_y": 11712, "task_z": 18, "center_y": 83.450280971521096, "area_in_sqm": 306.06666362285603, "perimeter_in_m": 69.979044208818394, "length_x": 17.495319766257399, "length_y": 17.4957363334833 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.450359293983851, 0.0 ], [ -0.001373291015625, 83.450359293983851, 0.0 ], [ -0.001373291015625, 83.45020264905844, 0.0 ], [ -0.00274658203125, 83.45020264905844, 0.0 ], [ -0.00274658203125, 83.450359293983851, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 368, "task_x": 131070, "task_y": 11744, "task_z": 18, "center_y": 83.445266423652896, "area_in_sqm": 306.53337085247, "perimeter_in_m": 70.0323778399422, "length_x": 17.5086547724582, "length_y": 17.509071652946901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.445344805818578, 0.0 ], [ -0.001373291015625, 83.445344805818578, 0.0 ], [ -0.001373291015625, 83.44518804148727, 0.0 ], [ -0.00274658203125, 83.44518804148727, 0.0 ], [ -0.00274658203125, 83.445344805818578, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 369, "task_x": 131070, "task_y": 11776, "task_z": 18, "center_y": 83.440248053359596, "area_in_sqm": 307.00078523158999, "perimeter_in_m": 70.085751562319501, "length_x": 17.521999806567599, "length_y": 17.522417000544799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.440326495273055, 0.0 ], [ -0.001373291015625, 83.440326495273055, 0.0 ], [ -0.001373291015625, 83.440169611446066, 0.0 ], [ -0.00274658203125, 83.440169611446066, 0.0 ], [ -0.00274658203125, 83.440326495273055, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 370, "task_x": 131070, "task_y": 11808, "task_z": 18, "center_y": 83.4352258577659, "area_in_sqm": 307.46890711784403, "perimeter_in_m": 70.139165418182998, "length_x": 17.535354875813699, "length_y": 17.535772383505599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.43530435947217, 0.0 ], [ -0.001373291015625, 83.43530435947217, 0.0 ], [ -0.001373291015625, 83.435147356059588, 0.0 ], [ -0.00274658203125, 83.435147356059588, 0.0 ], [ -0.00274658203125, 83.43530435947217, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 371, "task_x": 131070, "task_y": 11840, "task_z": 18, "center_y": 83.430199833994607, "area_in_sqm": 307.93773818016098, "perimeter_in_m": 70.192619419501298, "length_x": 17.548719987429401, "length_y": 17.549137809061801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.430278395538679, 0.0 ], [ -0.001373291015625, 83.430278395538679, 0.0 ], [ -0.001373291015625, 83.430121272450577, 0.0 ], [ -0.00274658203125, 83.430121272450577, 0.0 ], [ -0.00274658203125, 83.430278395538679, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 372, "task_x": 131070, "task_y": 11872, "task_z": 18, "center_y": 83.425169979166498, "area_in_sqm": 308.40727913379698, "perimeter_in_m": 70.246113611004603, "length_x": 17.5620951486518, "length_y": 17.5625132844511 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.425248600593292, 0.0 ], [ -0.001373291015625, 83.425248600593292, 0.0 ], [ -0.001373291015625, 83.425091357739646, 0.0 ], [ -0.00274658203125, 83.425091357739646, 0.0 ], [ -0.00274658203125, 83.425248600593292, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 373, "task_x": 131070, "task_y": 11904, "task_z": 18, "center_y": 83.420136290399995, "area_in_sqm": 308.87753129005398, "perimeter_in_m": 70.299648013883598, "length_x": 17.575480366722399, "length_y": 17.575898816915 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.420214971754632, 0.0 ], [ -0.001373291015625, 83.420214971754632, 0.0 ], [ -0.001373291015625, 83.420057609045372, 0.0 ], [ -0.00274658203125, 83.420057609045372, 0.0 ], [ -0.00274658203125, 83.420214971754632, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 374, "task_x": 131070, "task_y": 11936, "task_z": 18, "center_y": 83.415098764811702, "area_in_sqm": 309.34849560260801, "perimeter_in_m": 70.353222656067402, "length_x": 17.588875648887601, "length_y": 17.589294413699999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.415177506139244, 0.0 ], [ -0.001373291015625, 83.415177506139244, 0.0 ], [ -0.001373291015625, 83.415020023484232, 0.0 ], [ -0.00274658203125, 83.415020023484232, 0.0 ], [ -0.00274658203125, 83.415177506139244, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 375, "task_x": 131070, "task_y": 11968, "task_z": 18, "center_y": 83.410057399516106, "area_in_sqm": 309.82017290592199, "perimeter_in_m": 70.406837564253294, "length_x": 17.602281002398001, "length_y": 17.6027000820567 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.410136200861601, 0.0 ], [ -0.001373291015625, 83.410136200861601, 0.0 ], [ -0.001373291015625, 83.409978598170611, 0.0 ], [ -0.00274658203125, 83.409978598170611, 0.0 ], [ -0.00274658203125, 83.410136200861601, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 376, "task_x": 131070, "task_y": 12000, "task_z": 18, "center_y": 83.405012191625502, "area_in_sqm": 310.29256451129902, "perimeter_in_m": 70.460492777894899, "length_x": 17.6156964345086, "length_y": 17.616115829240599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.405091053034084, 0.0 ], [ -0.001373291015625, 83.405091053034084, 0.0 ], [ -0.001373291015625, 83.404933330216863, 0.0 ], [ -0.00274658203125, 83.404933330216863, 0.0 ], [ -0.00274658203125, 83.405091053034084, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 377, "task_x": 131070, "task_y": 12032, "task_z": 18, "center_y": 83.399963138250101, "area_in_sqm": 310.765671253204, "perimeter_in_m": 70.514188308131594, "length_x": 17.6291219524791, "length_y": 17.629541662511201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.400042059766989, 0.0 ], [ -0.001373291015625, 83.400042059766989, 0.0 ], [ -0.001373291015625, 83.399884216733199, 0.0 ], [ -0.00274658203125, 83.399884216733199, 0.0 ], [ -0.00274658203125, 83.400042059766989, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 378, "task_x": 131070, "task_y": 12064, "task_z": 18, "center_y": 83.394910236498205, "area_in_sqm": 311.23949444293999, "perimeter_in_m": 70.567924201513193, "length_x": 17.6425575635737, "length_y": 17.642977589133 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.394989218168561, 0.0 ], [ -0.001373291015625, 83.394989218168561, 0.0 ], [ -0.001373291015625, 83.394831254827807, 0.0 ], [ -0.00274658203125, 83.394831254827807, 0.0 ], [ -0.00274658203125, 83.394989218168561, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 379, "task_x": 131070, "task_y": 12096, "task_z": 18, "center_y": 83.389853483475804, "area_in_sqm": 311.714035868645, "perimeter_in_m": 70.621700478046407, "length_x": 17.6560032750609, "length_y": 17.656423616374699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.389932525344932, 0.0 ], [ -0.001373291015625, 83.389932525344932, 0.0 ], [ -0.001373291015625, 83.389774441606733, 0.0 ], [ -0.00274658203125, 83.389774441606733, 0.0 ], [ -0.00274658203125, 83.389932525344932, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 380, "task_x": 131070, "task_y": 12128, "task_z": 18, "center_y": 83.384792876287094, "area_in_sqm": 312.189295053482, "perimeter_in_m": 70.675517177928697, "length_x": 17.669459094213899, "length_y": 17.669879751509502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.384871978400142, 0.0 ], [ -0.001373291015625, 83.384871978400142, 0.0 ], [ -0.001373291015625, 83.38471377417396, 0.0 ], [ -0.00274658203125, 83.38471377417396, 0.0 ], [ -0.00274658203125, 83.384871978400142, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 381, "task_x": 131070, "task_y": 12160, "task_z": 18, "center_y": 83.379728412033799, "area_in_sqm": 312.66527390480002, "perimeter_in_m": 70.729374312157603, "length_x": 17.682925028310301, "length_y": 17.683346001815199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.379807574436157, 0.0 ], [ -0.001373291015625, 83.379807574436157, 0.0 ], [ -0.001373291015625, 83.379649249631413, 0.0 ], [ -0.00274658203125, 83.379649249631413, 0.0 ], [ -0.00274658203125, 83.379807574436157, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 382, "task_x": 131070, "task_y": 12192, "task_z": 18, "center_y": 83.374660087815897, "area_in_sqm": 313.14197361469297, "perimeter_in_m": 70.7832719211236, "length_x": 17.6964010846322, "length_y": 17.696822374574001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.374739310552854, 0.0 ], [ -0.001373291015625, 83.374739310552854, 0.0 ], [ -0.001373291015625, 83.374580865078883, 0.0 ], [ -0.00274658203125, 83.374580865078883, 0.0 ], [ -0.00274658203125, 83.374739310552854, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 383, "task_x": 131070, "task_y": 12224, "task_z": 18, "center_y": 83.369587900731105, "area_in_sqm": 313.61939465999598, "perimeter_in_m": 70.837210034076605, "length_x": 17.709887270466101, "length_y": 17.710308877072698 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.369667183848037, 0.0 ], [ -0.001373291015625, 83.369667183848037, 0.0 ], [ -0.001373291015625, 83.369508617614102, 0.0 ], [ -0.00274658203125, 83.369508617614102, 0.0 ], [ -0.00274658203125, 83.369667183848037, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 384, "task_x": 131070, "task_y": 12256, "task_z": 18, "center_y": 83.364511847875093, "area_in_sqm": 314.09753870964101, "perimeter_in_m": 70.891188676377197, "length_x": 17.7233835931033, "length_y": 17.7238055166025 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.364591191417389, 0.0 ], [ -0.001373291015625, 83.364591191417389, 0.0 ], [ -0.001373291015625, 83.364432504332697, 0.0 ], [ -0.00274658203125, 83.364432504332697, 0.0 ], [ -0.00274658203125, 83.364591191417389, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 385, "task_x": 131070, "task_y": 12288, "task_z": 18, "center_y": 83.359431926341401, "area_in_sqm": 314.57640683650999, "perimeter_in_m": 70.945207879415605, "length_x": 17.7368900598393, "length_y": 17.737312300459099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.359511330354508, 0.0 ], [ -0.001373291015625, 83.359511330354508, 0.0 ], [ -0.001373291015625, 83.359352522328209, 0.0 ], [ -0.00274658203125, 83.359352522328209, 0.0 ], [ -0.00274658203125, 83.359511330354508, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 386, "task_x": 131070, "task_y": 12320, "task_z": 18, "center_y": 83.354348133221507, "area_in_sqm": 315.05599987506901, "perimeter_in_m": 70.999267672292504, "length_x": 17.750406677974102, "length_y": 17.750829235942899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.354427597750913, 0.0 ], [ -0.001373291015625, 83.354427597750913, 0.0 ], [ -0.001373291015625, 83.354268668692086, 0.0 ], [ -0.00274658203125, 83.354268668692086, 0.0 ], [ -0.00274658203125, 83.354427597750913, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 387, "task_x": 131070, "task_y": 12352, "task_z": 18, "center_y": 83.3492604656048, "area_in_sqm": 315.53631925582903, "perimeter_in_m": 71.053368086944403, "length_x": 17.763933454812499, "length_y": 17.764356330358499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.349339990696024, 0.0 ], [ -0.001373291015625, 83.349339990696024, 0.0 ], [ -0.001373291015625, 83.349180940513662, 0.0 ], [ -0.00274658203125, 83.349180940513662, 0.0 ], [ -0.00274658203125, 83.349339990696024, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 388, "task_x": 131070, "task_y": 12384, "task_z": 18, "center_y": 83.344168920578696, "area_in_sqm": 316.01736545562699, "perimeter_in_m": 71.1075091400959, "length_x": 17.777470397663599, "length_y": 17.7778935910152 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.34424850627714, 0.0 ], [ -0.001373291015625, 83.34424850627714, 0.0 ], [ -0.001373291015625, 83.344089334880209, 0.0 ], [ -0.00274658203125, 83.344089334880209, 0.0 ], [ -0.00274658203125, 83.34424850627714, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 389, "task_x": 131070, "task_y": 12416, "task_z": 18, "center_y": 83.339073495228206, "area_in_sqm": 316.499139904976, "perimeter_in_m": 71.161690880700405, "length_x": 17.791017513840799, "length_y": 17.791441025226799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.339153141579501, 0.0 ], [ -0.001373291015625, 83.339153141579501, 0.0 ], [ -0.001373291015625, 83.338993848876868, 0.0 ], [ -0.00274658203125, 83.338993848876868, 0.0 ], [ -0.00274658203125, 83.339153141579501, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 390, "task_x": 131070, "task_y": 12448, "task_z": 18, "center_y": 83.333974186636496, "area_in_sqm": 316.98164367675798, "perimeter_in_m": 71.215913326560596, "length_x": 17.804574810662402, "length_y": 17.804998640311499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.334053893686246, 0.0 ], [ -0.001373291015625, 83.334053893686246, 0.0 ], [ -0.001373291015625, 83.333894479586718, 0.0 ], [ -0.00274658203125, 83.333894479586718, 0.0 ], [ -0.00274658203125, 83.334053893686246, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 391, "task_x": 131070, "task_y": 12480, "task_z": 18, "center_y": 83.3288709918845, "area_in_sqm": 317.46487784385698, "perimeter_in_m": 71.270176500092006, "length_x": 17.818142295451, "length_y": 17.818566443592101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.328950759678349, 0.0 ], [ -0.001373291015625, 83.328950759678349, 0.0 ], [ -0.001373291015625, 83.328791224090693, 0.0 ], [ -0.00274658203125, 83.328791224090693, 0.0 ], [ -0.00274658203125, 83.328950759678349, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 392, "task_x": 131070, "task_y": 12512, "task_z": 18, "center_y": 83.323763908051205, "area_in_sqm": 317.94884371757502, "perimeter_in_m": 71.324480450451802, "length_x": 17.831719975533701, "length_y": 17.832144442395901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.323843736634785, 0.0 ], [ -0.001373291015625, 83.323843736634785, 0.0 ], [ -0.001373291015625, 83.323684079467654, 0.0 ], [ -0.00274658203125, 83.323684079467654, 0.0 ], [ -0.00274658203125, 83.323843736634785, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 393, "task_x": 131070, "task_y": 12544, "task_z": 18, "center_y": 83.318652932213396, "area_in_sqm": 318.43354213237802, "perimeter_in_m": 71.378825178121204, "length_x": 17.845307858242201, "length_y": 17.8457326440546 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.318732821632338, 0.0 ], [ -0.001373291015625, 83.318732821632338, 0.0 ], [ -0.001373291015625, 83.318573042794384, 0.0 ], [ -0.00274658203125, 83.318573042794384, 0.0 ], [ -0.00274658203125, 83.318732821632338, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 394, "task_x": 131070, "task_y": 12576, "task_z": 18, "center_y": 83.313538061445598, "area_in_sqm": 318.91897428035702, "perimeter_in_m": 71.433210745198195, "length_x": 17.858905950912501, "length_y": 17.859331055904502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.313618011745746, 0.0 ], [ -0.001373291015625, 83.313618011745746, 0.0 ], [ -0.001373291015625, 83.313458111145493, 0.0 ], [ -0.00274658203125, 83.313458111145493, 0.0 ], [ -0.00274658203125, 83.313618011745746, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 395, "task_x": 131070, "task_y": 12608, "task_z": 18, "center_y": 83.308419292820602, "area_in_sqm": 319.40514135360701, "perimeter_in_m": 71.487637159086304, "length_x": 17.872514260885499, "length_y": 17.8729396852865 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.308499304047601, 0.0 ], [ -0.001373291015625, 83.308499304047601, 0.0 ], [ -0.001373291015625, 83.308339281593547, 0.0 ], [ -0.00274658203125, 83.308339281593547, 0.0 ], [ -0.00274658203125, 83.308499304047601, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 396, "task_x": 131070, "task_y": 12640, "task_z": 18, "center_y": 83.303296623408698, "area_in_sqm": 319.892043590546, "perimeter_in_m": 71.542104450743807, "length_x": 17.8861327955061, "length_y": 17.886558539545799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.303376695608421, 0.0 ], [ -0.001373291015625, 83.303376695608421, 0.0 ], [ -0.001373291015625, 83.30321655120899, 0.0 ], [ -0.00274658203125, 83.30321655120899, 0.0 ], [ -0.00274658203125, 83.303376695608421, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 397, "task_x": 131070, "task_y": 12672, "task_z": 18, "center_y": 83.298170050278401, "area_in_sqm": 320.37968313694, "perimeter_in_m": 71.596612660164496, "length_x": 17.899761562124201, "length_y": 17.900187626032299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.298250183496606, 0.0 ], [ -0.001373291015625, 83.298250183496606, 0.0 ], [ -0.001373291015625, 83.298089917060125, 0.0 ], [ -0.00274658203125, 83.298089917060125, 0.0 ], [ -0.00274658203125, 83.298250183496606, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 398, "task_x": 131070, "task_y": 12704, "task_z": 18, "center_y": 83.293039570495793, "area_in_sqm": 320.86806094646499, "perimeter_in_m": 71.651161805404001, "length_x": 17.913400568094001, "length_y": 17.913826952100301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.293119764778424, 0.0 ], [ -0.001373291015625, 83.293119764778424, 0.0 ], [ -0.001373291015625, 83.292959376213204, 0.0 ], [ -0.00274658203125, 83.292959376213204, 0.0 ], [ -0.00274658203125, 83.293119764778424, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 399, "task_x": 131070, "task_y": 12736, "task_z": 18, "center_y": 83.287905181125197, "area_in_sqm": 321.35717797279398, "perimeter_in_m": 71.705751926297296, "length_x": 17.927049820773998, "length_y": 17.927476525108698 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.287985436518056, 0.0 ], [ -0.001373291015625, 83.287985436518056, 0.0 ], [ -0.001373291015625, 83.287824925732323, 0.0 ], [ -0.00274658203125, 83.287824925732323, 0.0 ], [ -0.00274658203125, 83.287985436518056, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 400, "task_x": 131070, "task_y": 12768, "task_z": 18, "center_y": 83.282766879228504, "area_in_sqm": 321.84703552722902, "perimeter_in_m": 71.760383043215796, "length_x": 17.9407093275275, "length_y": 17.941136352420699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.282847195777592, 0.0 ], [ -0.001373291015625, 83.282847195777592, 0.0 ], [ -0.001373291015625, 83.282686562679487, 0.0 ], [ -0.00274658203125, 83.282686562679487, 0.0 ], [ -0.00274658203125, 83.282847195777592, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 401, "task_x": 131070, "task_y": 12800, "task_z": 18, "center_y": 83.277624661865801, "area_in_sqm": 322.33763360977201, "perimeter_in_m": 71.815055191058306, "length_x": 17.954379095722398, "length_y": 17.954806441404401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.277705039616961, 0.0 ], [ -0.001373291015625, 83.277705039616961, 0.0 ], [ -0.001373291015625, 83.277544284114583, 0.0 ], [ -0.00274658203125, 83.277544284114583, 0.0 ], [ -0.00274658203125, 83.277705039616961, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 402, "task_x": 131070, "task_y": 12832, "task_z": 18, "center_y": 83.272478526094702, "area_in_sqm": 322.82897484302498, "perimeter_in_m": 71.869768395525597, "length_x": 17.968059132730801, "length_y": 17.9684867994321 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.272558965093992, 0.0 ], [ -0.001373291015625, 83.272558965093992, 0.0 ], [ -0.001373291015625, 83.272398087095368, 0.0 ], [ -0.00274658203125, 83.272398087095368, 0.0 ], [ -0.00274658203125, 83.272558965093992, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 403, "task_x": 131070, "task_y": 12864, "task_z": 18, "center_y": 83.267328468971002, "area_in_sqm": 323.32105934619898, "perimeter_in_m": 71.924522685514006, "length_x": 17.981749445929498, "length_y": 17.982177433880601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.267408969264437, 0.0 ], [ -0.001373291015625, 83.267408969264437, 0.0 ], [ -0.001373291015625, 83.267247968677509, 0.0 ], [ -0.00274658203125, 83.267247968677509, 0.0 ], [ -0.00274658203125, 83.267408969264437, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 404, "task_x": 131070, "task_y": 12896, "task_z": 18, "center_y": 83.262174487548194, "area_in_sqm": 323.81388878822298, "perimeter_in_m": 71.979318095771603, "length_x": 17.995450042699801, "length_y": 17.995878352131498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.262255049181874, 0.0 ], [ -0.001373291015625, 83.262255049181874, 0.0 ], [ -0.001373291015625, 83.262093925914542, 0.0 ], [ -0.00274658203125, 83.262093925914542, 0.0 ], [ -0.00274658203125, 83.262255049181874, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 405, "task_x": 131070, "task_y": 12928, "task_z": 18, "center_y": 83.257016578877895, "area_in_sqm": 324.30746400356298, "perimeter_in_m": 72.034154655564194, "length_x": 18.009160930427502, "length_y": 18.009589561570699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.257097201897821, 0.0 ], [ -0.001373291015625, 83.257097201897821, 0.0 ], [ -0.001373291015625, 83.256935955857898, 0.0 ], [ -0.00274658203125, 83.256935955857898, 0.0 ], [ -0.00274658203125, 83.257097201897821, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 406, "task_x": 131070, "task_y": 12960, "task_z": 18, "center_y": 83.251854740009307, "area_in_sqm": 324.80178594589199, "perimeter_in_m": 72.089032390454605, "length_x": 18.022882116502998, "length_y": 18.023311069588701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.251935424461621, 0.0 ], [ -0.001373291015625, 83.251935424461621, 0.0 ], [ -0.001373291015625, 83.251774055556879, 0.0 ], [ -0.00274658203125, 83.251774055556879, 0.0 ], [ -0.00274658203125, 83.251935424461621, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 407, "task_x": 131070, "task_y": 12992, "task_z": 18, "center_y": 83.246688967989598, "area_in_sqm": 325.29685664176901, "perimeter_in_m": 72.143951326543203, "length_x": 18.036613608321002, "length_y": 18.037042883580401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.246769713920514, 0.0 ], [ -0.001373291015625, 83.246769713920514, 0.0 ], [ -0.001373291015625, 83.246608222058654, 0.0 ], [ -0.00274658203125, 83.246608222058654, 0.0 ], [ -0.00274658203125, 83.246769713920514, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 408, "task_x": 131070, "task_y": 13024, "task_z": 18, "center_y": 83.241519259864006, "area_in_sqm": 325.79267549514799, "perimeter_in_m": 72.198911496133505, "length_x": 18.050355413281, "length_y": 18.050785010945301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.241600067319652, 0.0 ], [ -0.001373291015625, 83.241600067319652, 0.0 ], [ -0.001373291015625, 83.241438452408289, 0.0 ], [ -0.00274658203125, 83.241438452408289, 0.0 ], [ -0.00274658203125, 83.241600067319652, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 409, "task_x": 131070, "task_y": 13056, "task_z": 18, "center_y": 83.236345612675393, "area_in_sqm": 326.28924512863199, "perimeter_in_m": 72.253912941631896, "length_x": 18.0641075387868, "length_y": 18.0645374590875 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.236426481702026, 0.0 ], [ -0.001373291015625, 83.236426481702026, 0.0 ], [ -0.001373291015625, 83.236264743648718, 0.0 ], [ -0.00274658203125, 83.236264743648718, 0.0 ], [ -0.00274658203125, 83.236426481702026, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 410, "task_x": 131070, "task_y": 13088, "task_z": 18, "center_y": 83.231168023464605, "area_in_sqm": 326.78656613826797, "perimeter_in_m": 72.3089556758854, "length_x": 18.077869992246899, "length_y": 18.0783002354156 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.231248954108509, 0.0 ], [ -0.001373291015625, 83.231248954108509, 0.0 ], [ -0.001373291015625, 83.231087092820744, 0.0 ], [ -0.00274658203125, 83.231087092820744, 0.0 ], [ -0.00274658203125, 83.231248954108509, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 411, "task_x": 131070, "task_y": 13120, "task_z": 18, "center_y": 83.225986489270497, "area_in_sqm": 327.28463983535801, "perimeter_in_m": 72.364039735654501, "length_x": 18.091642781074199, "length_y": 18.092073347342598 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.226067481577857, 0.0 ], [ -0.001373291015625, 83.226067481577857, 0.0 ], [ -0.001373291015625, 83.225905496963065, 0.0 ], [ -0.00274658203125, 83.225905496963065, 0.0 ], [ -0.00274658203125, 83.226067481577857, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 412, "task_x": 131070, "task_y": 13152, "task_z": 18, "center_y": 83.220801007129495, "area_in_sqm": 327.78346669673903, "perimeter_in_m": 72.419165149739001, "length_x": 18.105425912686201, "length_y": 18.105856802286201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.220882061146682, 0.0 ], [ -0.001373291015625, 83.220882061146682, 0.0 ], [ -0.001373291015625, 83.220719953112237, 0.0 ], [ -0.00274658203125, 83.220719953112237, 0.0 ], [ -0.00274658203125, 83.220882061146682, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 413, "task_x": 131070, "task_y": 13184, "task_z": 18, "center_y": 83.215611574076107, "area_in_sqm": 328.28304886817898, "perimeter_in_m": 72.474331945531603, "length_x": 18.119219394504899, "length_y": 18.1196506076685 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.21569268984949, 0.0 ], [ -0.001373291015625, 83.21569268984949, 0.0 ], [ -0.001373291015625, 83.215530458302666, 0.0 ], [ -0.00274658203125, 83.215530458302666, 0.0 ], [ -0.00274658203125, 83.21569268984949, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 414, "task_x": 131070, "task_y": 13216, "task_z": 18, "center_y": 83.210418187142693, "area_in_sqm": 328.78338658809702, "perimeter_in_m": 72.529540159285901, "length_x": 18.133023233956699, "length_y": 18.133454770916099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.210499364718657, 0.0 ], [ -0.001373291015625, 83.210499364718657, 0.0 ], [ -0.001373291015625, 83.210337009566686, 0.0 ], [ -0.00274658203125, 83.210337009566686, 0.0 ], [ -0.00274658203125, 83.210499364718657, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 415, "task_x": 131070, "task_y": 13248, "task_z": 18, "center_y": 83.205220843359399, "area_in_sqm": 329.28448152542097, "perimeter_in_m": 72.584789806553502, "length_x": 18.146837438472801, "length_y": 18.147269299460199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.205302082784385, 0.0 ], [ -0.001373291015625, 83.205302082784385, 0.0 ], [ -0.001373291015625, 83.205139603934441, 0.0 ], [ -0.00274658203125, 83.205139603934441, 0.0 ], [ -0.00274658203125, 83.205302082784385, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 416, "task_x": 131070, "task_y": 13280, "task_z": 18, "center_y": 83.200019539754393, "area_in_sqm": 329.78633391857102, "perimeter_in_m": 72.640080938298198, "length_x": 18.160662015488601, "length_y": 18.1610942007365 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.200100841074814, 0.0 ], [ -0.001373291015625, 83.200100841074814, 0.0 ], [ -0.001373291015625, 83.199938238433973, 0.0 ], [ -0.00274658203125, 83.199938238433973, 0.0 ], [ -0.00274658203125, 83.200100841074814, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 417, "task_x": 131070, "task_y": 13312, "task_z": 18, "center_y": 83.194814273353501, "area_in_sqm": 330.28894650936098, "perimeter_in_m": 72.695413567256907, "length_x": 18.174496972444398, "length_y": 18.174929482185298 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.194895636615882, 0.0 ], [ -0.001373291015625, 83.194895636615882, 0.0 ], [ -0.001373291015625, 83.19473291009119, 0.0 ], [ -0.00274658203125, 83.19473291009119, 0.0 ], [ -0.00274658203125, 83.194895636615882, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 418, "task_x": 131070, "task_y": 13344, "task_z": 18, "center_y": 83.189605041180599, "area_in_sqm": 330.792318940163, "perimeter_in_m": 72.750787724937894, "length_x": 18.188342316784698, "length_y": 18.188775151251399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.189686466431439, 0.0 ], [ -0.001373291015625, 83.189686466431439, 0.0 ], [ -0.001373291015625, 83.189523615929843, 0.0 ], [ -0.00274658203125, 83.189523615929843, 0.0 ], [ -0.00274658203125, 83.189686466431439, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 419, "task_x": 131070, "task_y": 13376, "task_z": 18, "center_y": 83.184391840257405, "area_in_sqm": 331.29645299911499, "perimeter_in_m": 72.806203446403998, "length_x": 18.2021980559587, "length_y": 18.202631215384098 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.184473327543188, 0.0 ], [ -0.001373291015625, 83.184473327543188, 0.0 ], [ -0.001373291015625, 83.184310352971579, 0.0 ], [ -0.00274658203125, 83.184310352971579, 0.0 ], [ -0.00274658203125, 83.184473327543188, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 420, "task_x": 131070, "task_y": 13408, "task_z": 18, "center_y": 83.179174667603306, "area_in_sqm": 331.80134963989298, "perimeter_in_m": 72.861660763357705, "length_x": 18.216064197420199, "length_y": 18.2164976820372 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.179256216970657, 0.0 ], [ -0.001373291015625, 83.179256216970657, 0.0 ], [ -0.001373291015625, 83.179093118235869, 0.0 ], [ -0.00274658203125, 83.179093118235869, 0.0 ], [ -0.00274658203125, 83.179256216970657, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 421, "task_x": 131070, "task_y": 13440, "task_z": 18, "center_y": 83.173953520235699, "area_in_sqm": 332.30701041221602, "perimeter_in_m": 72.917159696007104, "length_x": 18.2299407486273, "length_y": 18.230374558668998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.174035131731287, 0.0 ], [ -0.001373291015625, 83.174035131731287, 0.0 ], [ -0.001373291015625, 83.173871908740082, 0.0 ], [ -0.00274658203125, 83.173871908740082, 0.0 ], [ -0.00274658203125, 83.174035131731287, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 422, "task_x": 131070, "task_y": 13472, "task_z": 18, "center_y": 83.168728395169893, "area_in_sqm": 332.81343591213198, "perimeter_in_m": 72.972700288289104, "length_x": 18.243827717042802, "length_y": 18.244261852742699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.168810068840358, 0.0 ], [ -0.001373291015625, 83.168810068840358, 0.0 ], [ -0.001373291015625, 83.168646721499414, 0.0 ], [ -0.00274658203125, 83.168646721499414, 0.0 ], [ -0.00274658203125, 83.168810068840358, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 423, "task_x": 131070, "task_y": 13504, "task_z": 18, "center_y": 83.163499289418993, "area_in_sqm": 333.32062745094299, "perimeter_in_m": 73.028282554588799, "length_x": 18.257725110133901, "length_y": 18.258159571725301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.163581025311018, 0.0 ], [ -0.001373291015625, 83.163581025311018, 0.0 ], [ -0.001373291015625, 83.163417553526969, 0.0 ], [ -0.00274658203125, 83.163417553526969, 0.0 ], [ -0.00274658203125, 83.163581025311018, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 424, "task_x": 131070, "task_y": 13536, "task_z": 18, "center_y": 83.158266199993903, "area_in_sqm": 333.82858610153198, "perimeter_in_m": 73.083906532488498, "length_x": 18.271632935372701, "length_y": 18.272067723089101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.158347998154227, 0.0 ], [ -0.001373291015625, 83.158347998154227, 0.0 ], [ -0.001373291015625, 83.158184401833637, 0.0 ], [ -0.00274658203125, 83.158184401833637, 0.0 ], [ -0.00274658203125, 83.158347998154227, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 425, "task_x": 131070, "task_y": 13568, "task_z": 18, "center_y": 83.153029123903494, "area_in_sqm": 334.33731341362, "perimeter_in_m": 73.139572251791506, "length_x": 18.2855512002353, "length_y": 18.285986314310399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.15311098437887, 0.0 ], [ -0.001373291015625, 83.15311098437887, 0.0 ], [ -0.001373291015625, 83.152947263428231, 0.0 ], [ -0.00274658203125, 83.152947263428231, 0.0 ], [ -0.00274658203125, 83.15311098437887, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 426, "task_x": 131070, "task_y": 13600, "task_z": 18, "center_y": 83.147788058154504, "area_in_sqm": 334.84681034088101, "perimeter_in_m": 73.195279740362295, "length_x": 18.299479912202699, "length_y": 18.299915352870499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.147869980991629, 0.0 ], [ -0.001373291015625, 83.147869980991629, 0.0 ], [ -0.001373291015625, 83.147706135317364, 0.0 ], [ -0.00274658203125, 83.147706135317364, 0.0 ], [ -0.00274658203125, 83.147869980991629, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 427, "task_x": 131070, "task_y": 13632, "task_z": 18, "center_y": 83.142542999751299, "area_in_sqm": 335.357077598572, "perimeter_in_m": 73.251029028551997, "length_x": 18.313419078760401, "length_y": 18.313854846254699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.142624984997084, 0.0 ], [ -0.001373291015625, 83.142624984997084, 0.0 ], [ -0.001373291015625, 83.142461014505557, 0.0 ], [ -0.00274658203125, 83.142461014505557, 0.0 ], [ -0.00274658203125, 83.142624984997084, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 428, "task_x": 131070, "task_y": 13664, "task_z": 18, "center_y": 83.137293945696399, "area_in_sqm": 335.86811649799301, "perimeter_in_m": 73.306820150793101, "length_x": 18.3273687073983, "length_y": 18.327804801953398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.137375993397626, 0.0 ], [ -0.001373291015625, 83.137375993397626, 0.0 ], [ -0.001373291015625, 83.137211897995115, 0.0 ], [ -0.00274658203125, 83.137211897995115, 0.0 ], [ -0.00274658203125, 83.137375993397626, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 429, "task_x": 131070, "task_y": 13696, "task_z": 18, "center_y": 83.132040892989906, "area_in_sqm": 336.37992882728599, "perimeter_in_m": 73.362653133030705, "length_x": 18.3413288056109, "length_y": 18.341765227461099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.132123003193527, 0.0 ], [ -0.001373291015625, 83.132123003193527, 0.0 ], [ -0.001373291015625, 83.13195878278627, 0.0 ], [ -0.00274658203125, 83.13195878278627, 0.0 ], [ -0.00274658203125, 83.132123003193527, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 430, "task_x": 131070, "task_y": 13728, "task_z": 18, "center_y": 83.126783838630004, "area_in_sqm": 336.892515182495, "perimeter_in_m": 73.4185280100711, "length_x": 18.3552993808973, "length_y": 18.355736130276998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.126866011382901, 0.0 ], [ -0.001373291015625, 83.126866011382901, 0.0 ], [ -0.001373291015625, 83.126701665877036, 0.0 ], [ -0.00274658203125, 83.126701665877036, 0.0 ], [ -0.00274658203125, 83.126866011382901, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 431, "task_x": 131070, "task_y": 13760, "task_z": 18, "center_y": 83.121522779612505, "area_in_sqm": 337.40587651729601, "perimeter_in_m": 73.4744448062809, "length_x": 18.369280440761202, "length_y": 18.3697175179048 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.121605014961688, 0.0 ], [ -0.001373291015625, 83.121605014961688, 0.0 ], [ -0.001373291015625, 83.121440544263308, 0.0 ], [ -0.00274658203125, 83.121440544263308, 0.0 ], [ -0.00274658203125, 83.121605014961688, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 432, "task_x": 131070, "task_y": 13792, "task_z": 18, "center_y": 83.116257712931301, "area_in_sqm": 337.92001450061798, "perimeter_in_m": 73.530403544092707, "length_x": 18.3832719927107, "length_y": 18.383709397853 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.116340010923693, 0.0 ], [ -0.001373291015625, 83.116340010923693, 0.0 ], [ -0.001373291015625, 83.116175414938837, 0.0 ], [ -0.00274658203125, 83.116175414938837, 0.0 ], [ -0.00274658203125, 83.116340010923693, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 433, "task_x": 131070, "task_y": 13824, "task_z": 18, "center_y": 83.110988635577897, "area_in_sqm": 338.43493020534498, "perimeter_in_m": 73.586404267188698, "length_x": 18.3972740442583, "length_y": 18.3977117776341 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.111070996260594, 0.0 ], [ -0.001373291015625, 83.111070996260594, 0.0 ], [ -0.001373291015625, 83.1109062748952, 0.0 ], [ -0.00274658203125, 83.1109062748952, 0.0 ], [ -0.00274658203125, 83.111070996260594, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 434, "task_x": 131070, "task_y": 13856, "task_z": 18, "center_y": 83.105715544541795, "area_in_sqm": 338.950623989105, "perimeter_in_m": 73.642447001914903, "length_x": 18.4112866029214, "length_y": 18.411724664765799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.105797967961848, 0.0 ], [ -0.001373291015625, 83.105797967961848, 0.0 ], [ -0.001373291015625, 83.105633121121812, 0.0 ], [ -0.00274658203125, 83.105633121121812, 0.0 ], [ -0.00274658203125, 83.105797967961848, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 435, "task_x": 131070, "task_y": 13888, "task_z": 18, "center_y": 83.100438436810407, "area_in_sqm": 339.46709835529299, "perimeter_in_m": 73.698531774974597, "length_x": 18.425309676221701, "length_y": 18.4257480667697 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.100520923014827, 0.0 ], [ -0.001373291015625, 83.100520923014827, 0.0 ], [ -0.001373291015625, 83.100355950605959, 0.0 ], [ -0.00274658203125, 83.100355950605959, 0.0 ], [ -0.00274658203125, 83.100520923014827, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 436, "task_x": 131070, "task_y": 13920, "task_z": 18, "center_y": 83.095157309368702, "area_in_sqm": 339.98435318470001, "perimeter_in_m": 73.754658621404701, "length_x": 18.439343271685601, "length_y": 18.439781991172499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.095239858404682, 0.0 ], [ -0.001373291015625, 83.095239858404682, 0.0 ], [ -0.001373291015625, 83.095074760332736, 0.0 ], [ -0.00274658203125, 83.095074760332736, 0.0 ], [ -0.00274658203125, 83.095239858404682, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 437, "task_x": 131070, "task_y": 13952, "task_z": 18, "center_y": 83.0898721591998, "area_in_sqm": 340.502390742302, "perimeter_in_m": 73.810827566339199, "length_x": 18.453387396843802, "length_y": 18.453826445505101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.089954771114435, 0.0 ], [ -0.001373291015625, 83.089954771114435, 0.0 ], [ -0.001373291015625, 83.089789547285108, 0.0 ], [ -0.00274658203125, 83.089789547285108, 0.0 ], [ -0.00274658203125, 83.089954771114435, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 438, "task_x": 131070, "task_y": 13984, "task_z": 18, "center_y": 83.084582983284406, "area_in_sqm": 341.02121126651798, "perimeter_in_m": 73.867038643060098, "length_x": 18.4674420592319, "length_y": 18.467881437303099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.084665658124948, 0.0 ], [ -0.001373291015625, 83.084665658124948, 0.0 ], [ -0.001373291015625, 83.08450030844385, 0.0 ], [ -0.00274658203125, 83.08450030844385, 0.0 ], [ -0.00274658203125, 83.084665658124948, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 439, "task_x": 131070, "task_y": 14016, "task_z": 18, "center_y": 83.079289778601293, "area_in_sqm": 341.54081702232401, "perimeter_in_m": 73.923291880611103, "length_x": 18.481507266389698, "length_y": 18.481946974106499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.079372516414921, 0.0 ], [ -0.001373291015625, 83.079372516414921, 0.0 ], [ -0.001373291015625, 83.079207040787594, 0.0 ], [ -0.00274658203125, 83.079207040787594, 0.0 ], [ -0.00274658203125, 83.079372516414921, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 440, "task_x": 131070, "task_y": 14048, "task_z": 18, "center_y": 83.073992542126902, "area_in_sqm": 342.06120777130099, "perimeter_in_m": 73.979587313534196, "length_x": 18.495583025861698, "length_y": 18.496023063460001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.074075342960882, 0.0 ], [ -0.001373291015625, 83.074075342960882, 0.0 ], [ -0.001373291015625, 83.073909741292809, 0.0 ], [ -0.00274658203125, 83.073909741292809, 0.0 ], [ -0.00274658203125, 83.074075342960882, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 441, "task_x": 131070, "task_y": 14080, "task_z": 18, "center_y": 83.068691270835501, "area_in_sqm": 342.58238577842701, "perimeter_in_m": 74.035924956907294, "length_x": 18.509669345197, "length_y": 18.510109712912602 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.068774134737183, 0.0 ], [ -0.001373291015625, 83.068774134737183, 0.0 ], [ -0.001373291015625, 83.068608406933791, 0.0 ], [ -0.00274658203125, 83.068608406933791, 0.0 ], [ -0.00274658203125, 83.068774134737183, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 442, "task_x": 131070, "task_y": 14112, "task_z": 18, "center_y": 83.063385961699296, "area_in_sqm": 343.10435152053799, "perimeter_in_m": 74.0923048598045, "length_x": 18.5237662319492, "length_y": 18.524206930018401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.063468888716031, 0.0 ], [ -0.001373291015625, 83.063468888716031, 0.0 ], [ -0.001373291015625, 83.063303034682662, 0.0 ], [ -0.00274658203125, 83.063303034682662, 0.0 ], [ -0.00274658203125, 83.063468888716031, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 443, "task_x": 131070, "task_y": 14144, "task_z": 18, "center_y": 83.058076611688406, "area_in_sqm": 343.62710630893702, "perimeter_in_m": 74.148727040685301, "length_x": 18.537873693676399, "length_y": 18.5383147223355 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.058159601867459, 0.0 ], [ -0.001373291015625, 83.058159601867459, 0.0 ], [ -0.001373291015625, 83.057993621509382, 0.0 ], [ -0.00274658203125, 83.057993621509382, 0.0 ], [ -0.00274658203125, 83.058159601867459, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 444, "task_x": 131070, "task_y": 14176, "task_z": 18, "center_y": 83.052763217770504, "area_in_sqm": 344.15065228939102, "perimeter_in_m": 74.205191528107605, "length_x": 18.5519917379414, "length_y": 18.552433097426601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.052846271159325, 0.0 ], [ -0.001373291015625, 83.052846271159325, 0.0 ], [ -0.001373291015625, 83.052680164381755, 0.0 ], [ -0.00274658203125, 83.052680164381755, 0.0 ], [ -0.00274658203125, 83.052846271159325, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 445, "task_x": 131070, "task_y": 14208, "task_z": 18, "center_y": 83.047445776911403, "area_in_sqm": 344.67498910427099, "perimeter_in_m": 74.261698371882801, "length_x": 18.5661203723113, "length_y": 18.566562062859301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.047528893557342, 0.0 ], [ -0.001373291015625, 83.047528893557342, 0.0 ], [ -0.001373291015625, 83.047362660265406, 0.0 ], [ -0.00274658203125, 83.047362660265406, 0.0 ], [ -0.00274658203125, 83.047528893557342, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 446, "task_x": 131070, "task_y": 14240, "task_z": 18, "center_y": 83.042124286074397, "area_in_sqm": 345.20011937618301, "perimeter_in_m": 74.318247569784006, "length_x": 18.580259604358002, "length_y": 18.5807016262053 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.04220746602499, 0.0 ], [ -0.001373291015625, 83.04220746602499, 0.0 ], [ -0.001373291015625, 83.04204110612379, 0.0 ], [ -0.00274658203125, 83.04204110612379, 0.0 ], [ -0.00274658203125, 83.04220746602499, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 447, "task_x": 131070, "task_y": 14272, "task_z": 18, "center_y": 83.036798742220896, "area_in_sqm": 345.726043224335, "perimeter_in_m": 74.374839185448906, "length_x": 18.594409441657699, "length_y": 18.5948517950414 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.036881985523635, 0.0 ], [ -0.001373291015625, 83.036881985523635, 0.0 ], [ -0.001373291015625, 83.03671549891817, 0.0 ], [ -0.00274658203125, 83.03671549891817, 0.0 ], [ -0.00274658203125, 83.036881985523635, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 448, "task_x": 131070, "task_y": 14304, "task_z": 18, "center_y": 83.031469142310101, "area_in_sqm": 346.25276207923901, "perimeter_in_m": 74.431473235610596, "length_x": 18.608569891791401, "length_y": 18.609012576948398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.031552449012466, 0.0 ], [ -0.001373291015625, 83.031552449012466, 0.0 ], [ -0.001373291015625, 83.031385835607665, 0.0 ], [ -0.00274658203125, 83.031385835607665, 0.0 ], [ -0.00274658203125, 83.031552449012466, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 449, "task_x": 131070, "task_y": 14336, "task_z": 18, "center_y": 83.026135483298802, "area_in_sqm": 346.78027713298798, "perimeter_in_m": 74.488149731348798, "length_x": 18.622740962344601, "length_y": 18.623183979512 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.026218853448441, 0.0 ], [ -0.001373291015625, 83.026218853448441, 0.0 ], [ -0.001373291015625, 83.026052113149191, 0.0 ], [ -0.00274658203125, 83.026052113149191, 0.0 ], [ -0.00274658203125, 83.026218853448441, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 450, "task_x": 131070, "task_y": 14368, "task_z": 18, "center_y": 83.020797762141996, "area_in_sqm": 347.30858969688398, "perimeter_in_m": 74.544868735086197, "length_x": 18.636922660907199, "length_y": 18.6373660103222 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.020881195786416, 0.0 ], [ -0.001373291015625, 83.020881195786416, 0.0 ], [ -0.001373291015625, 83.020714328497519, 0.0 ], [ -0.00274658203125, 83.020714328497519, 0.0 ], [ -0.00274658203125, 83.020881195786416, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 451, "task_x": 131070, "task_y": 14400, "task_z": 18, "center_y": 83.015455975792094, "area_in_sqm": 347.837701559067, "perimeter_in_m": 74.601630251192901, "length_x": 18.6511149950739, "length_y": 18.651558676973899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.015539472979029, 0.0 ], [ -0.001373291015625, 83.015539472979029, 0.0 ], [ -0.001373291015625, 83.015372478605201, 0.0 ], [ -0.00274658203125, 83.015372478605201, 0.0 ], [ -0.00274658203125, 83.015539472979029, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 452, "task_x": 131070, "task_y": 14432, "task_z": 18, "center_y": 83.010110121199702, "area_in_sqm": 348.36761248111702, "perimeter_in_m": 74.658434330959395, "length_x": 18.665317972443599, "length_y": 18.665761987066301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.010193681976716, 0.0 ], [ -0.001373291015625, 83.010193681976716, 0.0 ], [ -0.001373291015625, 83.010026560422631, 0.0 ], [ -0.00274658203125, 83.010026560422631, 0.0 ], [ -0.00274658203125, 83.010193681976716, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 453, "task_x": 131070, "task_y": 14464, "task_z": 18, "center_y": 83.004760195312898, "area_in_sqm": 348.89832520484902, "perimeter_in_m": 74.715280995943502, "length_x": 18.679531600620098, "length_y": 18.679975948203101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 83.004843819727782, 0.0 ], [ -0.001373291015625, 83.004843819727782, 0.0 ], [ -0.001373291015625, 83.004676570898042, 0.0 ], [ -0.00274658203125, 83.004676570898042, 0.0 ], [ -0.00274658203125, 83.004843819727782, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 454, "task_x": 131070, "task_y": 14496, "task_z": 18, "center_y": 82.999406195077896, "area_in_sqm": 349.42983961105301, "perimeter_in_m": 74.772170272141395, "length_x": 18.693755887211701, "length_y": 18.694200567992699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.999489883178313, 0.0 ], [ -0.001373291015625, 82.999489883178313, 0.0 ], [ -0.001373291015625, 82.99932250697745, 0.0 ], [ -0.00274658203125, 82.99932250697745, 0.0 ], [ -0.00274658203125, 82.999489883178313, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 455, "task_x": 131070, "task_y": 14528, "task_z": 18, "center_y": 82.994048117438496, "area_in_sqm": 349.96215736865997, "perimeter_in_m": 74.829102192279905, "length_x": 18.707990839831002, "length_y": 18.708435854048201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.994131869272223, 0.0 ], [ -0.001373291015625, 82.994131869272223, 0.0 ], [ -0.001373291015625, 82.993964365604711, 0.0 ], [ -0.00274658203125, 82.993964365604711, 0.0 ], [ -0.00274658203125, 82.994131869272223, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 456, "task_x": 131070, "task_y": 14560, "task_z": 18, "center_y": 82.988685959336394, "area_in_sqm": 350.49527990818001, "perimeter_in_m": 74.886076788036803, "length_x": 18.722236466095499, "length_y": 18.722681813986799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.988769774951265, 0.0 ], [ -0.001373291015625, 82.988769774951265, 0.0 ], [ -0.001373291015625, 82.988602143721479, 0.0 ], [ -0.00274658203125, 82.988602143721479, 0.0 ], [ -0.00274658203125, 82.988769774951265, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 457, "task_x": 131070, "task_y": 14592, "task_z": 18, "center_y": 82.983319717711097, "area_in_sqm": 351.02920866012602, "perimeter_in_m": 74.943094094992603, "length_x": 18.736492773626999, "length_y": 18.736938455430799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.983403597154961, 0.0 ], [ -0.001373291015625, 82.983403597154961, 0.0 ], [ -0.001373291015625, 82.98323583826722, 0.0 ], [ -0.00274658203125, 82.98323583826722, 0.0 ], [ -0.00274658203125, 82.983403597154961, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 458, "task_x": 131070, "task_y": 14624, "task_z": 18, "center_y": 82.977949389499997, "area_in_sqm": 351.56394422054302, "perimeter_in_m": 75.000154125192296, "length_x": 18.750759770051999, "length_y": 18.751205786006601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.978033332820658, 0.0 ], [ -0.001373291015625, 82.978033332820658, 0.0 ], [ -0.001373291015625, 82.977865446179251, 0.0 ], [ -0.00274658203125, 82.977865446179251, 0.0 ], [ -0.00274658203125, 82.978033332820658, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 459, "task_x": 131070, "task_y": 14656, "task_z": 18, "center_y": 82.972574971638096, "area_in_sqm": 352.09948766231503, "perimeter_in_m": 75.057256931051697, "length_x": 18.765037463001502, "length_y": 18.7654838133456 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.972658978883558, 0.0 ], [ -0.001373291015625, 82.972658978883558, 0.0 ], [ -0.001373291015625, 82.972490964392648, 0.0 ], [ -0.00274658203125, 82.972490964392648, 0.0 ], [ -0.00274658203125, 82.972658978883558, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 460, "task_x": 131070, "task_y": 14688, "task_z": 18, "center_y": 82.967196461058506, "area_in_sqm": 352.635840654373, "perimeter_in_m": 75.114402538794295, "length_x": 18.779325860111101, "length_y": 18.779772545083301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.967280532276618, 0.0 ], [ -0.001373291015625, 82.967280532276618, 0.0 ], [ -0.001373291015625, 82.967112389840324, 0.0 ], [ -0.00274658203125, 82.967112389840324, 0.0 ], [ -0.00274658203125, 82.967280532276618, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 461, "task_x": 131070, "task_y": 14720, "task_z": 18, "center_y": 82.961813854691798, "area_in_sqm": 353.17300450801798, "perimeter_in_m": 75.171590972177796, "length_x": 18.793624969021, "length_y": 18.7940719888601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.96189798993062, 0.0 ], [ -0.001373291015625, 82.96189798993062, 0.0 ], [ -0.001373291015625, 82.961729719453004, 0.0 ], [ -0.00274658203125, 82.961729719453004, 0.0 ], [ -0.00274658203125, 82.96189798993062, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 462, "task_x": 131070, "task_y": 14752, "task_z": 18, "center_y": 82.956427149466705, "area_in_sqm": 353.71098005771597, "perimeter_in_m": 75.228822260631304, "length_x": 18.807934797375701, "length_y": 18.8083821523207 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.956511348774171, 0.0 ], [ -0.001373291015625, 82.956511348774171, 0.0 ], [ -0.001373291015625, 82.956342950159211, 0.0 ], [ -0.00274658203125, 82.956342950159211, 0.0 ], [ -0.00274658203125, 82.956511348774171, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 463, "task_x": 131070, "task_y": 14784, "task_z": 18, "center_y": 82.951036342309493, "area_in_sqm": 354.24976909160603, "perimeter_in_m": 75.286096442797302, "length_x": 18.822255352824602, "length_y": 18.822703043114601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.951120605733649, 0.0 ], [ -0.001373291015625, 82.951120605733649, 0.0 ], [ -0.001373291015625, 82.95095207888528, 0.0 ], [ -0.00274658203125, 82.95095207888528, 0.0 ], [ -0.00274658203125, 82.951120605733649, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 464, "task_x": 131070, "task_y": 14816, "task_z": 18, "center_y": 82.945641430144306, "area_in_sqm": 354.78937208652502, "perimeter_in_m": 75.343413538213099, "length_x": 18.836586643021601, "length_y": 18.8370346688958 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.9457257577333, 0.0 ], [ -0.001373291015625, 82.9457257577333, 0.0 ], [ -0.001373291015625, 82.945557102555341, 0.0 ], [ -0.00274658203125, 82.945557102555341, 0.0 ], [ -0.00274658203125, 82.9457257577333, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 465, "task_x": 131070, "task_y": 14848, "task_z": 18, "center_y": 82.940242409893202, "area_in_sqm": 355.32979011535599, "perimeter_in_m": 75.400773586601304, "length_x": 18.850928675624999, "length_y": 18.851377037322798 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.940326801695093, 0.0 ], [ -0.001373291015625, 82.940326801695093, 0.0 ], [ -0.001373291015625, 82.940158018091324, 0.0 ], [ -0.00274658203125, 82.940158018091324, 0.0 ], [ -0.00274658203125, 82.940326801695093, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 466, "task_x": 131070, "task_y": 14880, "task_z": 18, "center_y": 82.934839278475906, "area_in_sqm": 355.87102508544899, "perimeter_in_m": 75.458176613179305, "length_x": 18.865281458297702, "length_y": 18.8657301560586 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.934923734538842, 0.0 ], [ -0.001373291015625, 82.934923734538842, 0.0 ], [ -0.001373291015625, 82.934754822412998, 0.0 ], [ -0.00274658203125, 82.934754822412998, 0.0 ], [ -0.00274658203125, 82.934923734538842, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 467, "task_x": 131070, "task_y": 14912, "task_z": 18, "center_y": 82.929432032809999, "area_in_sqm": 356.41307830810501, "perimeter_in_m": 75.515622659637103, "length_x": 18.8796449987071, "length_y": 18.880094032771002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.929516553182182, 0.0 ], [ -0.001373291015625, 82.929516553182182, 0.0 ], [ -0.001373291015625, 82.929347512437872, 0.0 ], [ -0.00274658203125, 82.929347512437872, 0.0 ], [ -0.00274658203125, 82.929516553182182, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 468, "task_x": 131070, "task_y": 14944, "task_z": 18, "center_y": 82.924020669810901, "area_in_sqm": 356.95595026016201, "perimeter_in_m": 75.573111743246002, "length_x": 18.8940193045256, "length_y": 18.894468675132199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.924105254540507, 0.0 ], [ -0.001373291015625, 82.924105254540507, 0.0 ], [ -0.001373291015625, 82.923936085081309, 0.0 ], [ -0.00274658203125, 82.923936085081309, 0.0 ], [ -0.00274658203125, 82.924105254540507, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 469, "task_x": 131070, "task_y": 14976, "task_z": 18, "center_y": 82.918605186391702, "area_in_sqm": 357.49964249134098, "perimeter_in_m": 75.630643900399306, "length_x": 18.908404383429598, "length_y": 18.908854090818899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.918689835527019, 0.0 ], [ -0.001373291015625, 82.918689835527019, 0.0 ], [ -0.001373291015625, 82.918520537256441, 0.0 ], [ -0.00274658203125, 82.918520537256441, 0.0 ], [ -0.00274658203125, 82.918689835527019, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 470, "task_x": 131070, "task_y": 15008, "task_z": 18, "center_y": 82.913185579463502, "area_in_sqm": 358.04415643215202, "perimeter_in_m": 75.688219156355004, "length_x": 18.922800243100401, "length_y": 18.923250287512399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.913270293052733, 0.0 ], [ -0.001373291015625, 82.913270293052733, 0.0 ], [ -0.001373291015625, 82.913100865874213, 0.0 ], [ -0.00274658203125, 82.913100865874213, 0.0 ], [ -0.00274658203125, 82.913270293052733, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 471, "task_x": 131070, "task_y": 15040, "task_z": 18, "center_y": 82.9077618459349, "area_in_sqm": 358.58949351310702, "perimeter_in_m": 75.745837550356995, "length_x": 18.937206891223699, "length_y": 18.9376572728988 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.907846624026448, 0.0 ], [ -0.001373291015625, 82.907846624026448, 0.0 ], [ -0.001373291015625, 82.907677067843338, 0.0 ], [ -0.00274658203125, 82.907677067843338, 0.0 ], [ -0.00274658203125, 82.907846624026448, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 472, "task_x": 131070, "task_y": 15072, "task_z": 18, "center_y": 82.902333982712605, "area_in_sqm": 359.13565385341599, "perimeter_in_m": 75.803499111043493, "length_x": 18.9516243354899, "length_y": 18.952075054668502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.902418825354758, 0.0 ], [ -0.001373291015625, 82.902418825354758, 0.0 ], [ -0.001373291015625, 82.902249140070367, 0.0 ], [ -0.00274658203125, 82.902249140070367, 0.0 ], [ -0.00274658203125, 82.902418825354758, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 473, "task_x": 131070, "task_y": 15104, "task_z": 18, "center_y": 82.896901986700797, "area_in_sqm": 359.68263995647402, "perimeter_in_m": 75.861203865640306, "length_x": 18.966052583593999, "length_y": 18.9665036405165 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.896986893942056, 0.0 ], [ -0.001373291015625, 82.896986893942056, 0.0 ], [ -0.001373291015625, 82.896817079459595, 0.0 ], [ -0.00274658203125, 82.896817079459595, 0.0 ], [ -0.00274658203125, 82.896986893942056, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 474, "task_x": 131070, "task_y": 15136, "task_z": 18, "center_y": 82.891465854801794, "area_in_sqm": 360.23045206069901, "perimeter_in_m": 75.918951849353206, "length_x": 18.980491643235201, "length_y": 18.980943038142399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.891550826690505, 0.0 ], [ -0.001373291015625, 82.891550826690505, 0.0 ], [ -0.001373291015625, 82.89138088291314, 0.0 ], [ -0.00274658203125, 82.89138088291314, 0.0 ], [ -0.00274658203125, 82.891550826690505, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 475, "task_x": 131070, "task_y": 15168, "task_z": 18, "center_y": 82.886025583915497, "area_in_sqm": 360.77909219265001, "perimeter_in_m": 75.976743080399203, "length_x": 18.994941522117902, "length_y": 18.995393255250502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.886110620500077, 0.0 ], [ -0.001373291015625, 82.886110620500077, 0.0 ], [ -0.001373291015625, 82.885940547330904, 0.0 ], [ -0.00274658203125, 82.885940547330904, 0.0 ], [ -0.00274658203125, 82.886110620500077, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 476, "task_x": 131070, "task_y": 15200, "task_z": 18, "center_y": 82.880581170939607, "area_in_sqm": 361.32856118679001, "perimeter_in_m": 76.034577610108997, "length_x": 19.0094022279504, "length_y": 19.009854299549499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.880666272268542, 0.0 ], [ -0.001373291015625, 82.880666272268542, 0.0 ], [ -0.001373291015625, 82.880496069610572, 0.0 ], [ -0.00274658203125, 82.880496069610572, 0.0 ], [ -0.00274658203125, 82.880666272268542, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 477, "task_x": 131070, "task_y": 15232, "task_z": 18, "center_y": 82.875132612769505, "area_in_sqm": 361.878859996796, "perimeter_in_m": 76.092455458667501, "length_x": 19.023873768445998, "length_y": 19.024326178752698 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.875217778891454, 0.0 ], [ -0.001373291015625, 82.875217778891454, 0.0 ], [ -0.001373291015625, 82.875047446647628, 0.0 ], [ -0.00274658203125, 82.875047446647628, 0.0 ], [ -0.00274658203125, 82.875217778891454, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 478, "task_x": 131070, "task_y": 15264, "task_z": 18, "center_y": 82.8696799062987, "area_in_sqm": 362.42999064922299, "perimeter_in_m": 76.150376650867301, "length_x": 19.0383561513225, "length_y": 19.038808900578001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.869765137262121, 0.0 ], [ -0.001373291015625, 82.869765137262121, 0.0 ], [ -0.001373291015625, 82.869594675335335, 0.0 ], [ -0.00274658203125, 82.869594675335335, 0.0 ], [ -0.00274658203125, 82.869765137262121, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 479, "task_x": 131070, "task_y": 15296, "task_z": 18, "center_y": 82.864223048418197, "area_in_sqm": 362.98195374011999, "perimeter_in_m": 76.208341225500604, "length_x": 19.052849384302199, "length_y": 19.053302472747902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.864308344271663, 0.0 ], [ -0.001373291015625, 82.864308344271663, 0.0 ], [ -0.001373291015625, 82.86413775256473, 0.0 ], [ -0.00274658203125, 82.86413775256473, 0.0 ], [ -0.00274658203125, 82.864308344271663, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 480, "task_x": 131070, "task_y": 15328, "task_z": 18, "center_y": 82.858762036016799, "area_in_sqm": 363.53475046157803, "perimeter_in_m": 76.266349212690002, "length_x": 19.067353475112, "length_y": 19.0678069029894 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.858847396808997, 0.0 ], [ -0.001373291015625, 82.858847396808997, 0.0 ], [ -0.001373291015625, 82.858676675224643, 0.0 ], [ -0.00274658203125, 82.858676675224643, 0.0 ], [ -0.00274658203125, 82.858847396808997, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 481, "task_x": 131070, "task_y": 15360, "task_z": 18, "center_y": 82.853296865981207, "area_in_sqm": 364.08838176727301, "perimeter_in_m": 76.324400632479495, "length_x": 19.0818684314834, "length_y": 19.082322199034099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.853382291760781, 0.0 ], [ -0.001373291015625, 82.853382291760781, 0.0 ], [ -0.001373291015625, 82.853211440201704, 0.0 ], [ -0.00274658203125, 82.853211440201704, 0.0 ], [ -0.00274658203125, 82.853382291760781, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 482, "task_x": 131070, "task_y": 15392, "task_z": 18, "center_y": 82.847827535195904, "area_in_sqm": 364.64285027980799, "perimeter_in_m": 76.382495538201994, "length_x": 19.096394261152199, "length_y": 19.0968483686183 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.847913026011511, 0.0 ], [ -0.001373291015625, 82.847913026011511, 0.0 ], [ -0.001373291015625, 82.847742044380283, 0.0 ], [ -0.00274658203125, 82.847742044380283, 0.0 ], [ -0.00274658203125, 82.847913026011511, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 483, "task_x": 131070, "task_y": 15424, "task_z": 18, "center_y": 82.842354040543, "area_in_sqm": 365.19815635681198, "perimeter_in_m": 76.440633945136199, "length_x": 19.110930971859201, "length_y": 19.111385419482499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.842439596443398, 0.0 ], [ -0.001373291015625, 82.842439596443398, 0.0 ], [ -0.001373291015625, 82.842268484642574, 0.0 ], [ -0.00274658203125, 82.842268484642574, 0.0 ], [ -0.00274658203125, 82.842439596443398, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 484, "task_x": 131070, "task_y": 15456, "task_z": 18, "center_y": 82.836876378902502, "area_in_sqm": 365.75430095195799, "perimeter_in_m": 76.4988158876955, "length_x": 19.1254785713496, "length_y": 19.125933359372301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.836961999936491, 0.0 ], [ -0.001373291015625, 82.836961999936491, 0.0 ], [ -0.001373291015625, 82.836790757868528, 0.0 ], [ -0.00274658203125, 82.836790757868528, 0.0 ], [ -0.00274658203125, 82.836961999936491, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 485, "task_x": 131070, "task_y": 15488, "task_z": 18, "center_y": 82.8313945471522, "area_in_sqm": 366.311285495758, "perimeter_in_m": 76.557041387549106, "length_x": 19.140037067373001, "length_y": 19.140492196037201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.831480233368566, 0.0 ], [ -0.001373291015625, 82.831480233368566, 0.0 ], [ -0.001373291015625, 82.831308860935877, 0.0 ], [ -0.00274658203125, 82.831308860935877, 0.0 ], [ -0.00274658203125, 82.831480233368566, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 486, "task_x": 131070, "task_y": 15520, "task_z": 18, "center_y": 82.825908542167696, "area_in_sqm": 366.869111418724, "perimeter_in_m": 76.615310492047897, "length_x": 19.154606467684001, "length_y": 19.155061937232201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.82599429361521, 0.0 ], [ -0.001373291015625, 82.82599429361521, 0.0 ], [ -0.001373291015625, 82.825822790720096, 0.0 ], [ -0.00274658203125, 82.825822790720096, 0.0 ], [ -0.00274658203125, 82.82599429361521, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 487, "task_x": 131070, "task_y": 15552, "task_z": 18, "center_y": 82.820418360822103, "area_in_sqm": 367.42778027057602, "perimeter_in_m": 76.673623221468006, "length_x": 19.169186780041201, "length_y": 19.169642590715899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.820504177549765, 0.0 ], [ -0.001373291015625, 82.820504177549765, 0.0 ], [ -0.001373291015625, 82.820332544094498, 0.0 ], [ -0.00274658203125, 82.820332544094498, 0.0 ], [ -0.00274658203125, 82.820504177549765, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 488, "task_x": 131070, "task_y": 15584, "task_z": 18, "center_y": 82.814923999986704, "area_in_sqm": 367.98729264736198, "perimeter_in_m": 76.731979611846299, "length_x": 19.183778012208201, "length_y": 19.1842341642521 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.81500988204337, 0.0 ], [ -0.001373291015625, 82.81500988204337, 0.0 ], [ -0.001373291015625, 82.814838117930123, 0.0 ], [ -0.00274658203125, 82.814838117930123, 0.0 ], [ -0.00274658203125, 82.81500988204337, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 489, "task_x": 131070, "task_y": 15616, "task_z": 18, "center_y": 82.809425456530306, "area_in_sqm": 368.54764986038202, "perimeter_in_m": 76.7903796861318, "length_x": 19.198380171953001, "length_y": 19.198836665608901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.809511403964891, 0.0 ], [ -0.001373291015625, 82.809511403964891, 0.0 ], [ -0.001373291015625, 82.809339509095807, 0.0 ], [ -0.00274658203125, 82.809339509095807, 0.0 ], [ -0.00274658203125, 82.809511403964891, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 490, "task_x": 131070, "task_y": 15648, "task_z": 18, "center_y": 82.803922727319602, "area_in_sqm": 369.10885357856802, "perimeter_in_m": 76.848823489409497, "length_x": 19.212993267048301, "length_y": 19.2134501025593 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.804008740181018, 0.0 ], [ -0.001373291015625, 82.804008740181018, 0.0 ], [ -0.001373291015625, 82.803836714458114, 0.0 ], [ -0.00274658203125, 82.803836714458114, 0.0 ], [ -0.00274658203125, 82.804008740181018, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 491, "task_x": 131070, "task_y": 15680, "task_z": 18, "center_y": 82.798415809218795, "area_in_sqm": 369.670904636383, "perimeter_in_m": 76.907311038805204, "length_x": 19.227617305271298, "length_y": 19.228074482880299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.798501887556171, 0.0 ], [ -0.001373291015625, 82.798501887556171, 0.0 ], [ -0.001373291015625, 82.798329730881449, 0.0 ], [ -0.00274658203125, 82.798329730881449, 0.0 ], [ -0.00274658203125, 82.798501887556171, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 492, "task_x": 131070, "task_y": 15712, "task_z": 18, "center_y": 82.792904699090201, "area_in_sqm": 370.23380458355001, "perimeter_in_m": 76.965842382605501, "length_x": 19.242252294403698, "length_y": 19.2427098143541 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.792990842952548, 0.0 ], [ -0.001373291015625, 82.792990842952548, 0.0 ], [ -0.001373291015625, 82.792818555227896, 0.0 ], [ -0.00274658203125, 82.792818555227896, 0.0 ], [ -0.00274658203125, 82.792990842952548, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 493, "task_x": 131070, "task_y": 15744, "task_z": 18, "center_y": 82.787389393793703, "area_in_sqm": 370.797554969788, "perimeter_in_m": 77.0244175260963, "length_x": 19.256898242231902, "length_y": 19.257356104766998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.787475603230121, 0.0 ], [ -0.001373291015625, 82.787475603230121, 0.0 ], [ -0.001373291015625, 82.787303184357384, 0.0 ], [ -0.00274658203125, 82.787303184357384, 0.0 ], [ -0.00274658203125, 82.787475603230121, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 494, "task_x": 131070, "task_y": 15776, "task_z": 18, "center_y": 82.781869890187096, "area_in_sqm": 371.36215603351599, "perimeter_in_m": 77.083036520591904, "length_x": 19.2715551565467, "length_y": 19.272013361910201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.781956165246626, 0.0 ], [ -0.001373291015625, 82.781956165246626, 0.0 ], [ -0.001373291015625, 82.78178361512758, 0.0 ], [ -0.00274658203125, 82.78178361512758, 0.0 ], [ -0.00274658203125, 82.781956165246626, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 495, "task_x": 131070, "task_y": 15808, "task_z": 18, "center_y": 82.776346185125703, "area_in_sqm": 371.92761063575699, "perimeter_in_m": 77.141699390868595, "length_x": 19.286223045143799, "length_y": 19.2866815935792 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.776432525857558, 0.0 ], [ -0.001373291015625, 82.776432525857558, 0.0 ], [ -0.001373291015625, 82.776259844393891, 0.0 ], [ -0.00274658203125, 82.776259844393891, 0.0 ], [ -0.00274658203125, 82.776432525857558, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 496, "task_x": 131070, "task_y": 15840, "task_z": 18, "center_y": 82.770818275462901, "area_in_sqm": 372.49391853809402, "perimeter_in_m": 77.200406171087906, "length_x": 19.300901915823101, "length_y": 19.301360807574401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.770904681916178, 0.0 ], [ -0.001373291015625, 82.770904681916178, 0.0 ], [ -0.001373291015625, 82.770731869009524, 0.0 ], [ -0.00274658203125, 82.770731869009524, 0.0 ], [ -0.00274658203125, 82.770904681916178, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 497, "task_x": 131070, "task_y": 15872, "task_z": 18, "center_y": 82.765286158049506, "area_in_sqm": 373.061081290245, "perimeter_in_m": 77.259156882855393, "length_x": 19.3155917763894, "length_y": 19.316051011700399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.76537263027349, 0.0 ], [ -0.001373291015625, 82.76537263027349, 0.0 ], [ -0.001373291015625, 82.765199685825408, 0.0 ], [ -0.00274658203125, 82.765199685825408, 0.0 ], [ -0.00274658203125, 82.76537263027349, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 498, "task_x": 131070, "task_y": 15904, "task_z": 18, "center_y": 82.759749829734304, "area_in_sqm": 373.62910091877001, "perimeter_in_m": 77.3179515683197, "length_x": 19.330292634651901, "length_y": 19.3307522137668 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.759836367778291, 0.0 ], [ -0.001373291015625, 82.759836367778291, 0.0 ], [ -0.001373291015625, 82.759663291690273, 0.0 ], [ -0.00274658203125, 82.759663291690273, 0.0 ], [ -0.00274658203125, 82.759836367778291, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 499, "task_x": 131070, "task_y": 15936, "task_z": 18, "center_y": 82.754209287363906, "area_in_sqm": 374.19797801971401, "perimeter_in_m": 77.376790259370907, "length_x": 19.345004498424299, "length_y": 19.345464421587401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.754295891277124, 0.0 ], [ -0.001373291015625, 82.754295891277124, 0.0 ], [ -0.001373291015625, 82.754122683450575, 0.0 ], [ -0.00274658203125, 82.754122683450575, 0.0 ], [ -0.00274658203125, 82.754295891277124, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 500, "task_x": 131070, "task_y": 15968, "task_z": 18, "center_y": 82.748664527782395, "area_in_sqm": 374.76771426200901, "perimeter_in_m": 77.435672973038905, "length_x": 19.3597273755252, "length_y": 19.360187642980701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.748751197614268, 0.0 ], [ -0.001373291015625, 82.748751197614268, 0.0 ], [ -0.001373291015625, 82.748577857950551, 0.0 ], [ -0.00274658203125, 82.748577857950551, 0.0 ], [ -0.00274658203125, 82.748751197614268, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 501, "task_x": 131070, "task_y": 16000, "task_z": 18, "center_y": 82.743115547832005, "area_in_sqm": 375.33831095695501, "perimeter_in_m": 77.494599764599599, "length_x": 19.3744612737772, "length_y": 19.374921885769901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.743202283631803, 0.0 ], [ -0.001373291015625, 82.743202283631803, 0.0 ], [ -0.001373291015625, 82.743028812032179, 0.0 ], [ -0.00274658203125, 82.743028812032179, 0.0 ], [ -0.00274658203125, 82.743202283631803, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 502, "task_x": 131070, "task_y": 16032, "task_z": 18, "center_y": 82.737562344352298, "area_in_sqm": 375.90976893901802, "perimeter_in_m": 77.553570638708507, "length_x": 19.3892062010083, "length_y": 19.3896671577827 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.737649146169488, 0.0 ], [ -0.001373291015625, 82.737649146169488, 0.0 ], [ -0.001373291015625, 82.737475542535179, 0.0 ], [ -0.00274658203125, 82.737475542535179, 0.0 ], [ -0.00274658203125, 82.737649146169488, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 503, "task_x": 131070, "task_y": 16064, "task_z": 18, "center_y": 82.732004914181005, "area_in_sqm": 376.482089877129, "perimeter_in_m": 77.612585639684596, "length_x": 19.403962165050402, "length_y": 19.404423466851298 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.732091782064927, 0.0 ], [ -0.001373291015625, 82.732091782064927, 0.0 ], [ -0.001373291015625, 82.731918046297068, 0.0 ], [ -0.00274658203125, 82.731918046297068, 0.0 ], [ -0.00274658203125, 82.732091782064927, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 504, "task_x": 131070, "task_y": 16096, "task_z": 18, "center_y": 82.726443254153196, "area_in_sqm": 377.05527400970499, "perimeter_in_m": 77.671644805835498, "length_x": 19.4187291737401, "length_y": 19.419190820812702 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.726530188153419, 0.0 ], [ -0.001373291015625, 82.726530188153419, 0.0 ], [ -0.001373291015625, 82.726356320153073, 0.0 ], [ -0.00274658203125, 82.726356320153073, 0.0 ], [ -0.00274658203125, 82.726530188153419, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 505, "task_x": 131070, "task_y": 16128, "task_z": 18, "center_y": 82.720877361102097, "area_in_sqm": 377.629324316978, "perimeter_in_m": 77.730748157775295, "length_x": 19.433507234918899, "length_y": 19.4339692275082 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.720964361268017, 0.0 ], [ -0.001373291015625, 82.720964361268017, 0.0 ], [ -0.001373291015625, 82.720790360936178, 0.0 ], [ -0.00274658203125, 82.720790360936178, 0.0 ], [ -0.00274658203125, 82.720964361268017, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 506, "task_x": 131070, "task_y": 16160, "task_z": 18, "center_y": 82.715307231858304, "area_in_sqm": 378.20424115657801, "perimeter_in_m": 77.789895731357603, "length_x": 19.4482963564326, "length_y": 19.448758694783798 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.715394298239545, 0.0 ], [ -0.001373291015625, 82.715394298239545, 0.0 ], [ -0.001373291015625, 82.715220165477149, 0.0 ], [ -0.00274658203125, 82.715220165477149, 0.0 ], [ -0.00274658203125, 82.715394298239545, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 507, "task_x": 131070, "task_y": 16192, "task_z": 18, "center_y": 82.709732863250494, "area_in_sqm": 378.78002560138702, "perimeter_in_m": 77.849087550397201, "length_x": 19.463096546131599, "length_y": 19.463559230490102 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.709819995896552, 0.0 ], [ -0.001373291015625, 82.709819995896552, 0.0 ], [ -0.001373291015625, 82.70964573060445, 0.0 ], [ -0.00274658203125, 82.70964573060445, 0.0 ], [ -0.00274658203125, 82.709819995896552, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 508, "task_x": 131070, "task_y": 16224, "task_z": 18, "center_y": 82.7041542521048, "area_in_sqm": 379.35667967796297, "perimeter_in_m": 77.908323653596895, "length_x": 19.477907811870999, "length_y": 19.478370842482398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.704241451065343, 0.0 ], [ -0.001373291015625, 82.704241451065343, 0.0 ], [ -0.001373291015625, 82.704067053144328, 0.0 ], [ -0.00274658203125, 82.704067053144328, 0.0 ], [ -0.00274658203125, 82.704241451065343, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 509, "task_x": 131070, "task_y": 16256, "task_z": 18, "center_y": 82.698571395245395, "area_in_sqm": 379.93420386314398, "perimeter_in_m": 77.967604079664198, "length_x": 19.492730161510298, "length_y": 19.4931935386204 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.69865866056999, 0.0 ], [ -0.001373291015625, 82.69865866056999, 0.0 ], [ -0.001373291015625, 82.698484129920757, 0.0 ], [ -0.00274658203125, 82.698484129920757, 0.0 ], [ -0.00274658203125, 82.69865866056999, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 510, "task_x": 131070, "task_y": 16288, "task_z": 18, "center_y": 82.692984289493893, "area_in_sqm": 380.51260054111498, "perimeter_in_m": 78.026928841114497, "length_x": 19.507563602913901, "length_y": 19.5080273267683 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.693071621232264, 0.0 ], [ -0.001373291015625, 82.693071621232264, 0.0 ], [ -0.001373291015625, 82.69289695775548, 0.0 ], [ -0.00274658203125, 82.69289695775548, 0.0 ], [ -0.00274658203125, 82.693071621232264, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 511, "task_x": 131070, "task_y": 16320, "task_z": 18, "center_y": 82.687392931669805, "area_in_sqm": 381.09186959266702, "perimeter_in_m": 78.086297976677301, "length_x": 19.522408143950301, "length_y": 19.5228722147951 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.687480329871718, 0.0 ], [ -0.001373291015625, 82.687480329871718, 0.0 ], [ -0.001373291015625, 82.687305533467949, 0.0 ], [ -0.00274658203125, 82.687305533467949, 0.0 ], [ -0.00274658203125, 82.687480329871718, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 512, "task_x": 131070, "task_y": 16352, "task_z": 18, "center_y": 82.681797318590498, "area_in_sqm": 381.67201328277599, "perimeter_in_m": 78.145711529688, "length_x": 19.5372637924931, "length_y": 19.5377282105744 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.681884783305634, 0.0 ], [ -0.001373291015625, 82.681884783305634, 0.0 ], [ -0.001373291015625, 82.681709853875375, 0.0 ], [ -0.00274658203125, 82.681709853875375, 0.0 ], [ -0.00274658203125, 82.681884783305634, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 513, "task_x": 131070, "task_y": 16384, "task_z": 18, "center_y": 82.676197447070905, "area_in_sqm": 382.25303232669802, "perimeter_in_m": 78.205169524732696, "length_x": 19.552130556420099, "length_y": 19.552595321984199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.676284978349031, 0.0 ], [ -0.001373291015625, 82.676284978349031, 0.0 ], [ -0.001373291015625, 82.676109915792722, 0.0 ], [ -0.00274658203125, 82.676109915792722, 0.0 ], [ -0.00274658203125, 82.676284978349031, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 514, "task_x": 131070, "task_y": 16416, "task_z": 18, "center_y": 82.670593313923703, "area_in_sqm": 382.834928870201, "perimeter_in_m": 78.264671980737702, "length_x": 19.567008443613901, "length_y": 19.5674735569071 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.670680911814657, 0.0 ], [ -0.001373291015625, 82.670680911814657, 0.0 ], [ -0.001373291015625, 82.670505716032665, 0.0 ], [ -0.00274658203125, 82.670505716032665, 0.0 ], [ -0.00274658203125, 82.670680911814657, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 515, "task_x": 131070, "task_y": 16448, "task_z": 18, "center_y": 82.664984915959295, "area_in_sqm": 383.417703270912, "perimeter_in_m": 78.324218947438396, "length_x": 19.5818974619615, "length_y": 19.582362923230399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.665072580513012, 0.0 ], [ -0.001373291015625, 82.665072580513012, 0.0 ], [ -0.001373291015625, 82.66489725140562, 0.0 ], [ -0.00274658203125, 82.66489725140562, 0.0 ], [ -0.00274658203125, 82.665072580513012, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 516, "task_x": 131070, "task_y": 16480, "task_z": 18, "center_y": 82.659372249986106, "area_in_sqm": 384.00135755538901, "perimeter_in_m": 78.383810442722506, "length_x": 19.596797619354799, "length_y": 19.597263428845999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.65945998125234, 0.0 ], [ -0.001373291015625, 82.65945998125234, 0.0 ], [ -0.001373291015625, 82.659284518719772, 0.0 ], [ -0.00274658203125, 82.659284518719772, 0.0 ], [ -0.00274658203125, 82.65945998125234, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 517, "task_x": 131070, "task_y": 16512, "task_z": 18, "center_y": 82.653755312809807, "area_in_sqm": 384.58589267730702, "perimeter_in_m": 78.443446511032604, "length_x": 19.6117089236898, "length_y": 19.6121750816503 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.653843110838594, 0.0 ], [ -0.001373291015625, 82.653843110838594, 0.0 ], [ -0.001373291015625, 82.653667514781006, 0.0 ], [ -0.00274658203125, 82.653667514781006, 0.0 ], [ -0.00274658203125, 82.653843110838594, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 518, "task_x": 131070, "task_y": 16544, "task_z": 18, "center_y": 82.648134101234206, "area_in_sqm": 385.17130970954901, "perimeter_in_m": 78.503127170626101, "length_x": 19.626631382867501, "length_y": 19.627097889544199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.648221966075482, 0.0 ], [ -0.001373291015625, 82.648221966075482, 0.0 ], [ -0.001373291015625, 82.648046236392958, 0.0 ], [ -0.00274658203125, 82.648046236392958, 0.0 ], [ -0.00274658203125, 82.648221966075482, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 519, "task_x": 131070, "task_y": 16576, "task_z": 18, "center_y": 82.642508612060695, "area_in_sqm": 385.75761044025398, "perimeter_in_m": 78.562852463487104, "length_x": 19.641565004793399, "length_y": 19.642031860433299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.642596543764441, 0.0 ], [ -0.001373291015625, 82.642596543764441, 0.0 ], [ -0.001373291015625, 82.642420680356977, 0.0 ], [ -0.00274658203125, 82.642420680356977, 0.0 ], [ -0.00274658203125, 82.642596543764441, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 520, "task_x": 131070, "task_y": 16608, "task_z": 18, "center_y": 82.636878842088393, "area_in_sqm": 386.344795823097, "perimeter_in_m": 78.622622411432403, "length_x": 19.656509797377399, "length_y": 19.656977002227901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.63696684070463, 0.0 ], [ -0.001373291015625, 82.63696684070463, 0.0 ], [ -0.001373291015625, 82.63679084347217, 0.0 ], [ -0.00274658203125, 82.63679084347217, 0.0 ], [ -0.00274658203125, 82.63696684070463, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 521, "task_x": 131070, "task_y": 16640, "task_z": 18, "center_y": 82.631244788114103, "area_in_sqm": 386.93286764621701, "perimeter_in_m": 78.682437060004503, "length_x": 19.671465768534201, "length_y": 19.671933322842701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.631332853692939, 0.0 ], [ -0.001373291015625, 82.631332853692939, 0.0 ], [ -0.001373291015625, 82.631156722535337, 0.0 ], [ -0.00274658203125, 82.631156722535337, 0.0 ], [ -0.00274658203125, 82.631332853692939, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 522, "task_x": 131070, "task_y": 16672, "task_z": 18, "center_y": 82.625606446932494, "area_in_sqm": 387.52182686328899, "perimeter_in_m": 78.742296423600493, "length_x": 19.686432926182899, "length_y": 19.686900830196901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.625694579524009, 0.0 ], [ -0.001373291015625, 82.625694579524009, 0.0 ], [ -0.001373291015625, 82.625518314341065, 0.0 ], [ -0.00274658203125, 82.625518314341065, 0.0 ], [ -0.00274658203125, 82.625694579524009, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 523, "task_x": 131070, "task_y": 16704, "task_z": 18, "center_y": 82.619963815335893, "area_in_sqm": 388.11167478561401, "perimeter_in_m": 78.802200545306405, "length_x": 19.701411278247299, "length_y": 19.701879532214502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.620052014990151, 0.0 ], [ -0.001373291015625, 82.620052014990151, 0.0 ], [ -0.001373291015625, 82.619875615681607, 0.0 ], [ -0.00274658203125, 82.619875615681607, 0.0 ], [ -0.00274658203125, 82.620052014990151, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 524, "task_x": 131070, "task_y": 16736, "task_z": 18, "center_y": 82.614316890114196, "area_in_sqm": 388.702412247658, "perimeter_in_m": 78.862149457949201, "length_x": 19.7164008326558, "length_y": 19.716869436824101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.614405156881475, 0.0 ], [ -0.001373291015625, 82.614405156881475, 0.0 ], [ -0.001373291015625, 82.61422862334696, 0.0 ], [ -0.00274658203125, 82.61422862334696, 0.0 ], [ -0.00274658203125, 82.614405156881475, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 525, "task_x": 131070, "task_y": 16768, "task_z": 18, "center_y": 82.608665668055295, "area_in_sqm": 389.29404163360601, "perimeter_in_m": 78.922143186925297, "length_x": 19.7314015973413, "length_y": 19.7318705519587 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.608754001985758, 0.0 ], [ -0.001373291015625, 82.608754001985758, 0.0 ], [ -0.001373291015625, 82.608577334124874, 0.0 ], [ -0.00274658203125, 82.608577334124874, 0.0 ], [ -0.00274658203125, 82.608754001985758, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 526, "task_x": 131070, "task_y": 16800, "task_z": 18, "center_y": 82.603010145944694, "area_in_sqm": 389.886563539505, "perimeter_in_m": 78.982181767206399, "length_x": 19.746413580241398, "length_y": 19.746882885555902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.603098547088535, 0.0 ], [ -0.001373291015625, 82.603098547088535, 0.0 ], [ -0.001373291015625, 82.602921744800767, 0.0 ], [ -0.00274658203125, 82.602921744800767, 0.0 ], [ -0.00274658203125, 82.603098547088535, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 527, "task_x": 131070, "task_y": 16832, "task_z": 18, "center_y": 82.597350320565397, "area_in_sqm": 390.47997975349398, "perimeter_in_m": 79.042265231645601, "length_x": 19.761436789298202, "length_y": 19.7619064455581 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.597438788973037, 0.0 ], [ -0.001373291015625, 82.597438788973037, 0.0 ], [ -0.001373291015625, 82.597261852157843, 0.0 ], [ -0.00274658203125, 82.597261852157843, 0.0 ], [ -0.00274658203125, 82.597438788973037, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 528, "task_x": 131070, "task_y": 16864, "task_z": 18, "center_y": 82.591686188698603, "area_in_sqm": 391.07429087162001, "perimeter_in_m": 79.102393602482707, "length_x": 19.776471232458402, "length_y": 19.776941239912102 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.591774724420233, 0.0 ], [ -0.001373291015625, 82.591774724420233, 0.0 ], [ -0.001373291015625, 82.591597652976986, 0.0 ], [ -0.00274658203125, 82.591597652976986, 0.0 ], [ -0.00274658203125, 82.591774724420233, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 529, "task_x": 131070, "task_y": 16896, "task_z": 18, "center_y": 82.586017747122796, "area_in_sqm": 391.66949880123099, "perimeter_in_m": 79.162566931002203, "length_x": 19.7915169176731, "length_y": 19.791987276569301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.586106350208809, 0.0 ], [ -0.001373291015625, 82.586106350208809, 0.0 ], [ -0.001373291015625, 82.585929144036797, 0.0 ], [ -0.00274658203125, 82.585929144036797, 0.0 ], [ -0.00274658203125, 82.586106350208809, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 530, "task_x": 131070, "task_y": 16928, "task_z": 18, "center_y": 82.5803449926144, "area_in_sqm": 392.26560497283901, "perimeter_in_m": 79.222785228486202, "length_x": 19.806573852898499, "length_y": 19.8070445634857 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.580433663115159, 0.0 ], [ -0.001373291015625, 82.580433663115159, 0.0 ], [ -0.001373291015625, 82.580256322113613, 0.0 ], [ -0.00274658203125, 82.580256322113613, 0.0 ], [ -0.00274658203125, 82.580433663115159, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 531, "task_x": 131070, "task_y": 16960, "task_z": 18, "center_y": 82.574667921947395, "area_in_sqm": 392.86261034011801, "perimeter_in_m": 79.283048544110898, "length_x": 19.821642046094802, "length_y": 19.822113108621998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.57475665991339, 0.0 ], [ -0.001373291015625, 82.57475665991339, 0.0 ], [ -0.001373291015625, 82.574579183981456, 0.0 ], [ -0.00274658203125, 82.574579183981456, 0.0 ], [ -0.00274658203125, 82.57475665991339, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 532, "task_x": 131070, "task_y": 16992, "task_z": 18, "center_y": 82.5689865318937, "area_in_sqm": 393.46051621437101, "perimeter_in_m": 79.343356886347806, "length_x": 19.836721505227199, "length_y": 19.837192919943199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.569075337375352, 0.0 ], [ -0.001373291015625, 82.569075337375352, 0.0 ], [ -0.001373291015625, 82.568897726412118, 0.0 ], [ -0.00274658203125, 82.568897726412118, 0.0 ], [ -0.00274658203125, 82.569075337375352, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 533, "task_x": 131070, "task_y": 17024, "task_z": 18, "center_y": 82.563300819222803, "area_in_sqm": 394.05932462215401, "perimeter_in_m": 79.403710315719707, "length_x": 19.8518122382652, "length_y": 19.8522840054193 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.56338969227059, 0.0 ], [ -0.001373291015625, 82.56338969227059, 0.0 ], [ -0.001373291015625, 82.563211946175059, 0.0 ], [ -0.00274658203125, 82.563211946175059, 0.0 ], [ -0.00274658203125, 82.56338969227059, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 534, "task_x": 131070, "task_y": 17056, "task_z": 18, "center_y": 82.557610780701907, "area_in_sqm": 394.65903556346899, "perimeter_in_m": 79.464108839298305, "length_x": 19.8669142531832, "length_y": 19.867386373024502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.557699721366333, 0.0 ], [ -0.001373291015625, 82.557699721366333, 0.0 ], [ -0.001373291015625, 82.557521840037467, 0.0 ], [ -0.00274658203125, 82.557521840037467, 0.0 ], [ -0.00274658203125, 82.557699721366333, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 535, "task_x": 131070, "task_y": 17088, "task_z": 18, "center_y": 82.551916413095896, "area_in_sqm": 395.25965178012802, "perimeter_in_m": 79.5245525105437, "length_x": 19.882027557959699, "length_y": 19.882500030737798 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.55200542142758, 0.0 ], [ -0.001373291015625, 82.55200542142758, 0.0 ], [ -0.001373291015625, 82.551827404764225, 0.0 ], [ -0.00274658203125, 82.551827404764225, 0.0 ], [ -0.00274658203125, 82.55200542142758, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 536, "task_x": 131070, "task_y": 17120, "task_z": 18, "center_y": 82.546217713167493, "area_in_sqm": 395.86117422580702, "perimeter_in_m": 79.585041333716106, "length_x": 19.897152160578401, "length_y": 19.897624986542599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.546306789216985, 0.0 ], [ -0.001373291015625, 82.546306789216985, 0.0 ], [ -0.001373291015625, 82.54612863711796, 0.0 ], [ -0.00274658203125, 82.54612863711796, 0.0 ], [ -0.00274658203125, 82.546306789216985, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 537, "task_x": 131070, "task_y": 17152, "task_z": 18, "center_y": 82.540514677676995, "area_in_sqm": 396.46360349655203, "perimeter_in_m": 79.645575370434699, "length_x": 19.912288069027099, "length_y": 19.912761248427302 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.540603821494955, 0.0 ], [ -0.001373291015625, 82.540603821494955, 0.0 ], [ -0.001373291015625, 82.540425533858965, 0.0 ], [ -0.00274658203125, 82.540425533858965, 0.0 ], [ -0.00274658203125, 82.540603821494955, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 538, "task_x": 131070, "task_y": 17184, "task_z": 18, "center_y": 82.534807303382394, "area_in_sqm": 397.06694185733801, "perimeter_in_m": 79.706154639141005, "length_x": 19.927435291298401, "length_y": 19.927908824384399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.534896515019568, 0.0 ], [ -0.001373291015625, 82.534896515019568, 0.0 ], [ -0.001373291015625, 82.534718091745276, 0.0 ], [ -0.00274658203125, 82.534718091745276, 0.0 ], [ -0.00274658203125, 82.534896515019568, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 539, "task_x": 131070, "task_y": 17216, "task_z": 18, "center_y": 82.529095587039606, "area_in_sqm": 397.671189785004, "perimeter_in_m": 79.766779172795296, "length_x": 19.942593835389399, "length_y": 19.9430677224112 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.529184866546629, 0.0 ], [ -0.001373291015625, 82.529184866546629, 0.0 ], [ -0.001373291015625, 82.529006307532612, 0.0 ], [ -0.00274658203125, 82.529006307532612, 0.0 ], [ -0.00274658203125, 82.529184866546629, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 540, "task_x": 131070, "task_y": 17248, "task_z": 18, "center_y": 82.523379525402007, "area_in_sqm": 398.27634942531603, "perimeter_in_m": 79.827448993749002, "length_x": 19.957763709301901, "length_y": 19.958237950509599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.523468872829653, 0.0 ], [ -0.001373291015625, 82.523468872829653, 0.0 ], [ -0.001373291015625, 82.523290177974417, 0.0 ], [ -0.00274658203125, 82.523290177974417, 0.0 ], [ -0.00274658203125, 82.523468872829653, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 541, "task_x": 131070, "task_y": 17280, "task_z": 18, "center_y": 82.517659115220795, "area_in_sqm": 398.88242161274002, "perimeter_in_m": 79.888164147376003, "length_x": 19.972944921042199, "length_y": 19.9734195166861 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.517748530619812, 0.0 ], [ -0.001373291015625, 82.517748530619812, 0.0 ], [ -0.001373291015625, 82.517569699821806, 0.0 ], [ -0.00274658203125, 82.517569699821806, 0.0 ], [ -0.00274658203125, 82.517748530619812, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 542, "task_x": 131070, "task_y": 17312, "task_z": 18, "center_y": 82.511934353244797, "area_in_sqm": 399.48940837383299, "perimeter_in_m": 79.948924662767794, "length_x": 19.988137478621201, "length_y": 19.988612428951701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.512023836666046, 0.0 ], [ -0.001373291015625, 82.512023836666046, 0.0 ], [ -0.001373291015625, 82.511844869823634, 0.0 ], [ -0.00274658203125, 82.511844869823634, 0.0 ], [ -0.00274658203125, 82.512023836666046, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 543, "task_x": 131070, "task_y": 17344, "task_z": 18, "center_y": 82.506205236220694, "area_in_sqm": 400.09730994701403, "perimeter_in_m": 80.009730569743397, "length_x": 20.003341390054501, "length_y": 20.003816695322001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.50629478771495, 0.0 ], [ -0.001373291015625, 82.50629478771495, 0.0 ], [ -0.001373291015625, 82.506115684726424, 0.0 ], [ -0.00274658203125, 82.506115684726424, 0.0 ], [ -0.00274658203125, 82.50629478771495, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 544, "task_x": 131070, "task_y": 17376, "task_z": 18, "center_y": 82.500471760892694, "area_in_sqm": 400.70612907409702, "perimeter_in_m": 80.070581900953101, "length_x": 20.018556663361899, "length_y": 20.019032323817399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.500561380510845, 0.0 ], [ -0.001373291015625, 82.500561380510845, 0.0 ], [ -0.001373291015625, 82.500382141274429, 0.0 ], [ -0.00274658203125, 82.500382141274429, 0.0 ], [ -0.00274658203125, 82.500561380510845, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 545, "task_x": 131070, "task_y": 17408, "task_z": 18, "center_y": 82.494733924002603, "area_in_sqm": 401.31586587429001, "perimeter_in_m": 80.131478694725004, "length_x": 20.033783306568299, "length_y": 20.0342593224625 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.494823611795724, 0.0 ], [ -0.001373291015625, 82.494823611795724, 0.0 ], [ -0.001373291015625, 82.494644236209552, 0.0 ], [ -0.00274658203125, 82.494644236209552, 0.0 ], [ -0.00274658203125, 82.494823611795724, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 546, "task_x": 131070, "task_y": 17440, "task_z": 18, "center_y": 82.488991722290393, "area_in_sqm": 401.92652237415302, "perimeter_in_m": 80.192420971341704, "length_x": 20.049021327702899, "length_y": 20.0494976992868 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.489081478309288, 0.0 ], [ -0.001373291015625, 82.489081478309288, 0.0 ], [ -0.001373291015625, 82.488901966271456, 0.0 ], [ -0.00274658203125, 82.488901966271456, 0.0 ], [ -0.00274658203125, 82.489081478309288, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 547, "task_x": 131070, "task_y": 17472, "task_z": 18, "center_y": 82.483245152493197, "area_in_sqm": 402.53809964656801, "perimeter_in_m": 80.253408764547501, "length_x": 20.064270734799599, "length_y": 20.064747462324199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.483334976788939, 0.0 ], [ -0.001373291015625, 82.483334976788939, 0.0 ], [ -0.001373291015625, 82.483155328197455, 0.0 ], [ -0.00274658203125, 82.483155328197455, 0.0 ], [ -0.00274658203125, 82.483334976788939, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 548, "task_x": 131070, "task_y": 17504, "task_z": 18, "center_y": 82.477494211346198, "area_in_sqm": 403.15059959888498, "perimeter_in_m": 80.314442109509102, "length_x": 20.079531535896699, "length_y": 20.080008619613398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.477584103969761, 0.0 ], [ -0.001373291015625, 82.477584103969761, 0.0 ], [ -0.001373291015625, 82.477404318722563, 0.0 ], [ -0.00274658203125, 82.477404318722563, 0.0 ], [ -0.00274658203125, 82.477584103969761, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 549, "task_x": 131070, "task_y": 17536, "task_z": 18, "center_y": 82.471738895582007, "area_in_sqm": 403.76402246952102, "perimeter_in_m": 80.375521051675705, "length_x": 20.094803739037101, "length_y": 20.0952811791974 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.471828856584551, 0.0 ], [ -0.001373291015625, 82.471828856584551, 0.0 ], [ -0.001373291015625, 82.471648934579491, 0.0 ], [ -0.00274658203125, 82.471648934579491, 0.0 ], [ -0.00274658203125, 82.471828856584551, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 550, "task_x": 131070, "task_y": 17568, "task_z": 18, "center_y": 82.465979201931205, "area_in_sqm": 404.37837100028997, "perimeter_in_m": 80.436645600031994, "length_x": 20.1100873522687, "length_y": 20.110565149124099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.466069231363775, 0.0 ], [ -0.001373291015625, 82.466069231363775, 0.0 ], [ -0.001373291015625, 82.465889172498635, 0.0 ], [ -0.00274658203125, 82.465889172498635, 0.0 ], [ -0.00274658203125, 82.466069231363775, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 551, "task_x": 131070, "task_y": 17600, "task_z": 18, "center_y": 82.460215127121799, "area_in_sqm": 404.99364542961098, "perimeter_in_m": 80.497815806770006, "length_x": 20.125382383643601, "length_y": 20.125860537445799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.460305225035597, 0.0 ], [ -0.001373291015625, 82.460305225035597, 0.0 ], [ -0.001373291015625, 82.460125029208101, 0.0 ], [ -0.00274658203125, 82.460125029208101, 0.0 ], [ -0.00274658203125, 82.460305225035597, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 552, "task_x": 131070, "task_y": 17632, "task_z": 18, "center_y": 82.454446667879793, "area_in_sqm": 405.60984754562401, "perimeter_in_m": 80.559031679480995, "length_x": 20.140688841218498, "length_y": 20.141167352219199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.454536834325864, 0.0 ], [ -0.001373291015625, 82.454536834325864, 0.0 ], [ -0.001373291015625, 82.454356501433679, 0.0 ], [ -0.00274658203125, 82.454356501433679, 0.0 ], [ -0.00274658203125, 82.454536834325864, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 553, "task_x": 131070, "task_y": 17664, "task_z": 18, "center_y": 82.448673820928505, "area_in_sqm": 406.22697937488601, "perimeter_in_m": 80.620293277098199, "length_x": 20.156006733054699, "length_y": 20.156485601506098 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.448764055958122, 0.0 ], [ -0.001373291015625, 82.448764055958122, 0.0 ], [ -0.001373291015625, 82.448583585898803, 0.0 ], [ -0.00274658203125, 82.448583585898803, 0.0 ], [ -0.00274658203125, 82.448764055958122, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 554, "task_x": 131070, "task_y": 17696, "task_z": 18, "center_y": 82.442896582989107, "area_in_sqm": 406.84504103660601, "perimeter_in_m": 80.681600615022106, "length_x": 20.171336067218299, "length_y": 20.171815293372401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.442986886653614, 0.0 ], [ -0.001373291015625, 82.442986886653614, 0.0 ], [ -0.001373291015625, 82.442806279324657, 0.0 ], [ -0.00274658203125, 82.442806279324657, 0.0 ], [ -0.00274658203125, 82.442986886653614, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 555, "task_x": 131070, "task_y": 17728, "task_z": 18, "center_y": 82.437114950780597, "area_in_sqm": 407.46403455734298, "perimeter_in_m": 80.7429537320224, "length_x": 20.186676851779701, "length_y": 20.187156435888699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.437205323131224, 0.0 ], [ -0.001373291015625, 82.437205323131224, 0.0 ], [ -0.001373291015625, 82.437024578430069, 0.0 ], [ -0.00274658203125, 82.437024578430069, 0.0 ], [ -0.00274658203125, 82.437205323131224, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 556, "task_x": 131070, "task_y": 17760, "task_z": 18, "center_y": 82.431328921019599, "area_in_sqm": 408.08396172523499, "perimeter_in_m": 80.804352659803797, "length_x": 20.202029094814002, "length_y": 20.2025090371306 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.431419362107562, 0.0 ], [ -0.001373291015625, 82.431419362107562, 0.0 ], [ -0.001373291015625, 82.431238479931565, 0.0 ], [ -0.00274658203125, 82.431238479931565, 0.0 ], [ -0.00274658203125, 82.431419362107562, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 557, "task_x": 131070, "task_y": 17792, "task_z": 18, "center_y": 82.425538490420095, "area_in_sqm": 408.70482313632999, "perimeter_in_m": 80.865797430430106, "length_x": 20.217392804401101, "length_y": 20.217873105177599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.425629000296894, 0.0 ], [ -0.001373291015625, 82.425629000296894, 0.0 ], [ -0.001373291015625, 82.425447980543325, 0.0 ], [ -0.00274658203125, 82.425447980543325, 0.0 ], [ -0.00274658203125, 82.425629000296894, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 558, "task_x": 131070, "task_y": 17824, "task_z": 18, "center_y": 82.419743655694205, "area_in_sqm": 409.32662069797499, "perimeter_in_m": 80.927288074204796, "length_x": 20.232767988625, "length_y": 20.233248648114301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.419834234411184, 0.0 ], [ -0.001373291015625, 82.419834234411184, 0.0 ], [ -0.001373291015625, 82.419653076977269, 0.0 ], [ -0.00274658203125, 82.419653076977269, 0.0 ], [ -0.00274658203125, 82.419834234411184, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 559, "task_x": 131070, "task_y": 17856, "task_z": 18, "center_y": 82.413944413551505, "area_in_sqm": 409.94935572147398, "perimeter_in_m": 80.988824630289201, "length_x": 20.248154655574801, "length_y": 20.2486356740297 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.414035061160078, 0.0 ], [ -0.001373291015625, 82.414035061160078, 0.0 ], [ -0.001373291015625, 82.413853765942946, 0.0 ], [ -0.00274658203125, 82.413853765942946, 0.0 ], [ -0.00274658203125, 82.414035061160078, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 560, "task_x": 131070, "task_y": 17888, "task_z": 18, "center_y": 82.408140760699197, "area_in_sqm": 410.57302987575503, "perimeter_in_m": 81.050407122990705, "length_x": 20.2635528133438, "length_y": 20.264034191017299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.408231477250865, 0.0 ], [ -0.001373291015625, 82.408231477250865, 0.0 ], [ -0.001373291015625, 82.408050044147572, 0.0 ], [ -0.00274658203125, 82.408050044147572, 0.0 ], [ -0.00274658203125, 82.408231477250865, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 561, "task_x": 131070, "task_y": 17920, "task_z": 18, "center_y": 82.402332693842297, "area_in_sqm": 411.19764316082001, "perimeter_in_m": 81.112035581932702, "length_x": 20.278962470030301, "length_y": 20.279444207175398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.402423479388546, 0.0 ], [ -0.001373291015625, 82.402423479388546, 0.0 ], [ -0.001373291015625, 82.402241908296105, 0.0 ], [ -0.00274658203125, 82.402241908296105, 0.0 ], [ -0.00274658203125, 82.402423479388546, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 562, "task_x": 131070, "task_y": 17952, "task_z": 18, "center_y": 82.396520209683501, "area_in_sqm": 411.82319855690002, "perimeter_in_m": 81.173710047718203, "length_x": 20.2943836337367, "length_y": 20.294865730606801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.396611064275788, 0.0 ], [ -0.001373291015625, 82.396611064275788, 0.0 ], [ -0.001373291015625, 82.396429355091115, 0.0 ], [ -0.00274658203125, 82.396429355091115, 0.0 ], [ -0.00274658203125, 82.396611064275788, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 563, "task_x": 131070, "task_y": 17984, "task_z": 18, "center_y": 82.390703304922894, "area_in_sqm": 412.44969677925098, "perimeter_in_m": 81.235430548929202, "length_x": 20.309816312570199, "length_y": 20.310298769418701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.390794228612933, 0.0 ], [ -0.001373291015625, 82.390794228612933, 0.0 ], [ -0.001373291015625, 82.390612381232884, 0.0 ], [ -0.00274658203125, 82.390612381232884, 0.0 ], [ -0.00274658203125, 82.390794228612933, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 564, "task_x": 131070, "task_y": 18016, "task_z": 18, "center_y": 82.384881976258697, "area_in_sqm": 413.07713985443098, "perimeter_in_m": 81.297197117693102, "length_x": 20.3252605146428, "length_y": 20.325743331723199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.384972969097987, 0.0 ], [ -0.001373291015625, 82.384972969097987, 0.0 ], [ -0.001373291015625, 82.384790983419322, 0.0 ], [ -0.00274658203125, 82.384790983419322, 0.0 ], [ -0.00274658203125, 82.384972969097987, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 565, "task_x": 131070, "task_y": 18048, "task_z": 18, "center_y": 82.379056220386403, "area_in_sqm": 413.70552849769598, "perimeter_in_m": 81.359009793936906, "length_x": 20.340716248070699, "length_y": 20.341199425636901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.379147282426644, 0.0 ], [ -0.001373291015625, 82.379147282426644, 0.0 ], [ -0.001373291015625, 82.378965158346077, 0.0 ], [ -0.00274658203125, 82.378965158346077, 0.0 ], [ -0.00274658203125, 82.379147282426644, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 566, "task_x": 131070, "task_y": 18080, "task_z": 18, "center_y": 82.373226033999302, "area_in_sqm": 414.33486378192902, "perimeter_in_m": 81.420868597770706, "length_x": 20.356183520975001, "length_y": 20.356667059280699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.373317165292249, 0.0 ], [ -0.001373291015625, 82.373317165292249, 0.0 ], [ -0.001373291015625, 82.373134902706411, 0.0 ], [ -0.00274658203125, 82.373134902706411, 0.0 ], [ -0.00274658203125, 82.373317165292249, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 567, "task_x": 131070, "task_y": 18112, "task_z": 18, "center_y": 82.367391413788496, "area_in_sqm": 414.96514797210699, "perimeter_in_m": 81.482773565598194, "length_x": 20.371662341481098, "length_y": 20.3721462407803 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.367482614385821, 0.0 ], [ -0.001373291015625, 82.367482614385821, 0.0 ], [ -0.001373291015625, 82.367300213191271, 0.0 ], [ -0.00274658203125, 82.367300213191271, 0.0 ], [ -0.00274658203125, 82.367482614385821, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 568, "task_x": 131070, "task_y": 18144, "task_z": 18, "center_y": 82.361552356442701, "area_in_sqm": 415.59638166427601, "perimeter_in_m": 81.544724743745306, "length_x": 20.387152717719299, "length_y": 20.387636978266201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.361643626396074, 0.0 ], [ -0.001373291015625, 82.361643626396074, 0.0 ], [ -0.001373291015625, 82.361461086489271, 0.0 ], [ -0.00274658203125, 82.361461086489271, 0.0 ], [ -0.00274658203125, 82.361643626396074, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 569, "task_x": 131070, "task_y": 18176, "task_z": 18, "center_y": 82.355708858648001, "area_in_sqm": 416.22856736183201, "perimeter_in_m": 81.606722143145205, "length_x": 20.402654657824201, "length_y": 20.403139279873201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.35580019800932, 0.0 ], [ -0.001373291015625, 82.35580019800932, 0.0 ], [ -0.001373291015625, 82.35561751928671, 0.0 ], [ -0.00274658203125, 82.35561751928671, 0.0 ], [ -0.00274658203125, 82.35580019800932, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 570, "task_x": 131070, "task_y": 18208, "task_z": 18, "center_y": 82.349860917088606, "area_in_sqm": 416.86170530319202, "perimeter_in_m": 81.668765805184293, "length_x": 20.418168169935299, "length_y": 20.4186531537406 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.349952325909626, 0.0 ], [ -0.001373291015625, 82.349952325909626, 0.0 ], [ -0.001373291015625, 82.349769508267514, 0.0 ], [ -0.00274658203125, 82.349769508267514, 0.0 ], [ -0.00274658203125, 82.349952325909626, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 571, "task_x": 131070, "task_y": 18240, "task_z": 18, "center_y": 82.344008528445997, "area_in_sqm": 417.495797157288, "perimeter_in_m": 81.730855769490603, "length_x": 20.4336932621964, "length_y": 20.434178608012701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.344100006778646, 0.0 ], [ -0.001373291015625, 82.344100006778646, 0.0 ], [ -0.001373291015625, 82.343917050113319, 0.0 ], [ -0.00274658203125, 82.343917050113319, 0.0 ], [ -0.00274658203125, 82.344100006778646, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 572, "task_x": 131070, "task_y": 18272, "task_z": 18, "center_y": 82.338151689399595, "area_in_sqm": 418.130845308304, "perimeter_in_m": 81.792992054814306, "length_x": 20.4492299427558, "length_y": 20.449715650837799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.338243237295742, 0.0 ], [ -0.001373291015625, 82.338243237295742, 0.0 ], [ -0.001373291015625, 82.338060141503377, 0.0 ], [ -0.00274658203125, 82.338060141503377, 0.0 ], [ -0.00274658203125, 82.338243237295742, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 573, "task_x": 131070, "task_y": 18304, "task_z": 18, "center_y": 82.332290396626306, "area_in_sqm": 418.76685035228701, "perimeter_in_m": 81.855174703629899, "length_x": 20.464778219766799, "length_y": 20.465264290369301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.332382014137906, 0.0 ], [ -0.001373291015625, 82.332382014137906, 0.0 ], [ -0.001373291015625, 82.332198779114634, 0.0 ], [ -0.00274658203125, 82.332198779114634, 0.0 ], [ -0.00274658203125, 82.332382014137906, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 574, "task_x": 131070, "task_y": 18336, "task_z": 18, "center_y": 82.326424646800703, "area_in_sqm": 419.403813123703, "perimeter_in_m": 81.917403742492894, "length_x": 20.480338101387002, "length_y": 20.480824534764999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.326516333979811, 0.0 ], [ -0.001373291015625, 82.326516333979811, 0.0 ], [ -0.001373291015625, 82.326332959621681, 0.0 ], [ -0.00274658203125, 82.326332959621681, 0.0 ], [ -0.00274658203125, 82.326516333979811, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 575, "task_x": 131070, "task_y": 18368, "task_z": 18, "center_y": 82.320554436595302, "area_in_sqm": 420.04173636436502, "perimeter_in_m": 81.979679219211505, "length_x": 20.495909595778599, "length_y": 20.4963963921873 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.320646193493786, 0.0 ], [ -0.001373291015625, 82.320646193493786, 0.0 ], [ -0.001373291015625, 82.32046267969676, 0.0 ], [ -0.00274658203125, 82.32046267969676, 0.0 ], [ -0.00274658203125, 82.320646193493786, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 576, "task_x": 131070, "task_y": 18400, "task_z": 18, "center_y": 82.314679762679802, "area_in_sqm": 420.68062031269102, "perimeter_in_m": 82.042001141946798, "length_x": 20.5114927111083, "length_y": 20.5119798708029 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.314771589349817, 0.0 ], [ -0.001373291015625, 82.314771589349817, 0.0 ], [ -0.001373291015625, 82.314587936009787, 0.0 ], [ -0.00274658203125, 82.314587936009787, 0.0 ], [ -0.00274658203125, 82.314771589349817, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 577, "task_x": 131070, "task_y": 18432, "task_z": 18, "center_y": 82.3088006217219, "area_in_sqm": 421.32046723365801, "perimeter_in_m": 82.1043695631258, "length_x": 20.527087455547701, "length_y": 20.527574978783701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.308892518215529, 0.0 ], [ -0.001373291015625, 82.308892518215529, 0.0 ], [ -0.001373291015625, 82.308708725228342, 0.0 ], [ -0.00274658203125, 82.308708725228342, 0.0 ], [ -0.00274658203125, 82.308892518215529, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 578, "task_x": 131070, "task_y": 18464, "task_z": 18, "center_y": 82.302917010386906, "area_in_sqm": 421.96127820014999, "perimeter_in_m": 82.166784508634805, "length_x": 20.542693837272601, "length_y": 20.5431817243057 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.303008976756217, 0.0 ], [ -0.001373291015625, 82.303008976756217, 0.0 ], [ -0.001373291015625, 82.302825044017609, 0.0 ], [ -0.00274658203125, 82.302825044017609, 0.0 ], [ -0.00274658203125, 82.303008976756217, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 579, "task_x": 131070, "task_y": 18496, "task_z": 18, "center_y": 82.2970289253376, "area_in_sqm": 422.60305440425901, "perimeter_in_m": 82.229246010029499, "length_x": 20.5583118644638, "length_y": 20.558800115549499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.297120961634818, 0.0 ], [ -0.001373291015625, 82.297120961634818, 0.0 ], [ -0.001373291015625, 82.296936889040467, 0.0 ], [ -0.00274658203125, 82.296936889040467, 0.0 ], [ -0.00274658203125, 82.297120961634818, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 580, "task_x": 131070, "task_y": 18528, "task_z": 18, "center_y": 82.291136363234699, "area_in_sqm": 423.24579787254299, "perimeter_in_m": 82.291754097811406, "length_x": 20.573941545306202, "length_y": 20.574430160700398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.291228469511935, 0.0 ], [ -0.001373291015625, 82.291228469511935, 0.0 ], [ -0.001373291015625, 82.291044256957463, 0.0 ], [ -0.00274658203125, 82.291044256957463, 0.0 ], [ -0.00274658203125, 82.291228469511935, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 581, "task_x": 131070, "task_y": 18560, "task_z": 18, "center_y": 82.285239320736295, "area_in_sqm": 423.88950967788702, "perimeter_in_m": 82.354308810641101, "length_x": 20.5895828879896, "length_y": 20.590071867948399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.285331497045817, 0.0 ], [ -0.001373291015625, 82.285331497045817, 0.0 ], [ -0.001373291015625, 82.285147144426745, 0.0 ], [ -0.00274658203125, 82.285147144426745, 0.0 ], [ -0.00274658203125, 82.285331497045817, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 582, "task_x": 131070, "task_y": 18592, "task_z": 18, "center_y": 82.279337794498204, "area_in_sqm": 424.53419113159202, "perimeter_in_m": 82.416910172664302, "length_x": 20.605235900708301, "length_y": 20.605725245487701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.27943004089235, 0.0 ], [ -0.001373291015625, 82.27943004089235, 0.0 ], [ -0.001373291015625, 82.279245548104143, 0.0 ], [ -0.00274658203125, 82.279245548104143, 0.0 ], [ -0.00274658203125, 82.27943004089235, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 583, "task_x": 131070, "task_y": 18624, "task_z": 18, "center_y": 82.273431781174096, "area_in_sqm": 425.179843902588, "perimeter_in_m": 82.479558230698998, "length_x": 20.620900591661201, "length_y": 20.6213903015177 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.273524097705092, 0.0 ], [ -0.001373291015625, 82.273524097705092, 0.0 ], [ -0.001373291015625, 82.273339464643115, 0.0 ], [ -0.00274658203125, 82.273339464643115, 0.0 ], [ -0.00274658203125, 82.273524097705092, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 584, "task_x": 131070, "task_y": 18656, "task_z": 18, "center_y": 82.267521277415, "area_in_sqm": 425.82646906375902, "perimeter_in_m": 82.542253003958393, "length_x": 20.636576969051902, "length_y": 20.6370670442417 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.267613664135197, 0.0 ], [ -0.001373291015625, 82.267613664135197, 0.0 ], [ -0.001373291015625, 82.267428890694788, 0.0 ], [ -0.00274658203125, 82.267428890694788, 0.0 ], [ -0.00274658203125, 82.267613664135197, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 585, "task_x": 131070, "task_y": 18688, "task_z": 18, "center_y": 82.261606279869696, "area_in_sqm": 426.47406816482498, "perimeter_in_m": 82.604994534673594, "length_x": 20.652265041088199, "length_y": 20.652755481867999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.261698736831534, 0.0 ], [ -0.001373291015625, 82.261698736831534, 0.0 ], [ -0.001373291015625, 82.261513822907915, 0.0 ], [ -0.00274658203125, 82.261513822907915, 0.0 ], [ -0.00274658203125, 82.261698736831534, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 586, "task_x": 131070, "task_y": 18720, "task_z": 18, "center_y": 82.255686785184693, "area_in_sqm": 427.12264358997299, "perimeter_in_m": 82.6677828445507, "length_x": 20.667964815982899, "length_y": 20.6684556226094 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.255779312440552, 0.0 ], [ -0.001373291015625, 82.255779312440552, 0.0 ], [ -0.001373291015625, 82.255594257928905, 0.0 ], [ -0.00274658203125, 82.255594257928905, 0.0 ], [ -0.00274658203125, 82.255779312440552, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 587, "task_x": 131070, "task_y": 18752, "task_z": 18, "center_y": 82.249762790004098, "area_in_sqm": 427.77219521999399, "perimeter_in_m": 82.730617975491498, "length_x": 20.683676301953199, "length_y": 20.684167474683299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.249855387606402, 0.0 ], [ -0.001373291015625, 82.249855387606402, 0.0 ], [ -0.001373291015625, 82.249670192401794, 0.0 ], [ -0.00274658203125, 82.249670192401794, 0.0 ], [ -0.00274658203125, 82.249855387606402, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 588, "task_x": 131070, "task_y": 18784, "task_z": 18, "center_y": 82.243834290969502, "area_in_sqm": 428.422725439072, "perimeter_in_m": 82.793499959839096, "length_x": 20.6993995072208, "length_y": 20.6998910463115 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.243926958970803, 0.0 ], [ -0.001373291015625, 82.243926958970803, 0.0 ], [ -0.001373291015625, 82.243741622968273, 0.0 ], [ -0.00274658203125, 82.243741622968273, 0.0 ], [ -0.00274658203125, 82.243926958970803, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 589, "task_x": 131070, "task_y": 18816, "task_z": 18, "center_y": 82.237901284720394, "area_in_sqm": 429.07423579692801, "perimeter_in_m": 82.856428827826207, "length_x": 20.7151344400121, "length_y": 20.715626345720501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.237994023173201, 0.0 ], [ -0.001373291015625, 82.237994023173201, 0.0 ], [ -0.001373291015625, 82.237808546267672, 0.0 ], [ -0.00274658203125, 82.237808546267672, 0.0 ], [ -0.00274658203125, 82.237994023173201, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 590, "task_x": 131070, "task_y": 18848, "task_z": 18, "center_y": 82.231963767893802, "area_in_sqm": 429.72672736644699, "perimeter_in_m": 82.919404616775495, "length_x": 20.730881108558101, "length_y": 20.731373381141601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.232056576850582, 0.0 ], [ -0.001373291015625, 82.232056576850582, 0.0 ], [ -0.001373291015625, 82.231870958936938, 0.0 ], [ -0.00274658203125, 82.231870958936938, 0.0 ], [ -0.00274658203125, 82.232056576850582, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 591, "task_x": 131070, "task_y": 18880, "task_z": 18, "center_y": 82.226021737124199, "area_in_sqm": 430.38020181655901, "perimeter_in_m": 82.982427352332707, "length_x": 20.746639521094401, "length_y": 20.747132160810299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.226114616637659, 0.0 ], [ -0.001373291015625, 82.226114616637659, 0.0 ], [ -0.001373291015625, 82.225928857610683, 0.0 ], [ -0.00274658203125, 82.225928857610683, 0.0 ], [ -0.00274658203125, 82.226114616637659, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 592, "task_x": 131070, "task_y": 18912, "task_z": 18, "center_y": 82.220075189043897, "area_in_sqm": 431.03465986251803, "perimeter_in_m": 83.045497072901597, "length_x": 20.762409685860899, "length_y": 20.762902692966801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.220168139166731, 0.0 ], [ -0.001373291015625, 82.220168139166731, 0.0 ], [ -0.001373291015625, 82.219982238921162, 0.0 ], [ -0.00274658203125, 82.219982238921162, 0.0 ], [ -0.00274658203125, 82.220168139166731, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 593, "task_x": 131070, "task_y": 18944, "task_z": 18, "center_y": 82.214124120283003, "area_in_sqm": 431.69010376930203, "perimeter_in_m": 83.108613803439894, "length_x": 20.7781916111024, "length_y": 20.778684985856 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.214217141067749, 0.0 ], [ -0.001373291015625, 82.214217141067749, 0.0 ], [ -0.001373291015625, 82.214031099498214, 0.0 ], [ -0.00274658203125, 82.214031099498214, 0.0 ], [ -0.00274658203125, 82.214217141067749, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 594, "task_x": 131070, "task_y": 18976, "task_z": 18, "center_y": 82.2081685274688, "area_in_sqm": 432.346535086632, "perimeter_in_m": 83.171777583428494, "length_x": 20.793985305068102, "length_y": 20.7944790477273 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.20826161896828, 0.0 ], [ -0.001373291015625, 82.20826161896828, 0.0 ], [ -0.001373291015625, 82.208075435969363, 0.0 ], [ -0.00274658203125, 82.208075435969363, 0.0 ], [ -0.00274658203125, 82.20826161896828, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 595, "task_x": 131070, "task_y": 19008, "task_z": 18, "center_y": 82.202208407226607, "area_in_sqm": 433.00395488739002, "perimeter_in_m": 83.234988458733596, "length_x": 20.809790776011901, "length_y": 20.8102848868348 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.202301569493528, 0.0 ], [ -0.001373291015625, 82.202301569493528, 0.0 ], [ -0.001373291015625, 82.202115244959728, 0.0 ], [ -0.00274658203125, 82.202115244959728, 0.0 ], [ -0.00274658203125, 82.202301569493528, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 596, "task_x": 131070, "task_y": 19040, "task_z": 18, "center_y": 82.1962437561792, "area_in_sqm": 433.66236448287998, "perimeter_in_m": 83.298246435221301, "length_x": 20.825608032192299, "length_y": 20.8261025114369 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.196336989266342, 0.0 ], [ -0.001373291015625, 82.196336989266342, 0.0 ], [ -0.001373291015625, 82.196150523092086, 0.0 ], [ -0.00274658203125, 82.196150523092086, 0.0 ], [ -0.00274658203125, 82.196336989266342, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 597, "task_x": 131070, "task_y": 19072, "task_z": 18, "center_y": 82.190274570946997, "area_in_sqm": 434.32176566124002, "perimeter_in_m": 83.3615515591258, "length_x": 20.841437081872101, "length_y": 20.841931929796701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.190367874907196, 0.0 ], [ -0.001373291015625, 82.190367874907196, 0.0 ], [ -0.001373291015625, 82.190181266986841, 0.0 ], [ -0.00274658203125, 82.190181266986841, 0.0 ], [ -0.00274658203125, 82.190367874907196, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 598, "task_x": 131070, "task_y": 19104, "task_z": 18, "center_y": 82.184300848148098, "area_in_sqm": 434.98215997219103, "perimeter_in_m": 83.424903872447501, "length_x": 20.857277933318901, "length_y": 20.857773150182101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.18439422303419, 0.0 ], [ -0.001373291015625, 82.18439422303419, 0.0 ], [ -0.001373291015625, 82.184207473262006, 0.0 ], [ -0.00274658203125, 82.184207473262006, 0.0 ], [ -0.00274658203125, 82.18439422303419, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 599, "task_x": 131070, "task_y": 19136, "task_z": 18, "center_y": 82.178322584398103, "area_in_sqm": 435.64354860782601, "perimeter_in_m": 83.4883033913449, "length_x": 20.873130594805001, "length_y": 20.873626180865202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.178416030263023, 0.0 ], [ -0.001373291015625, 82.178416030263023, 0.0 ], [ -0.001373291015625, 82.178229138533212, 0.0 ], [ -0.00274658203125, 82.178229138533212, 0.0 ], [ -0.00274658203125, 82.178416030263023, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 600, "task_x": 131070, "task_y": 19168, "task_z": 18, "center_y": 82.172339776310395, "area_in_sqm": 436.30593287944799, "perimeter_in_m": 83.551750157835599, "length_x": 20.888995074606999, "length_y": 20.889491030123001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.172433293207064, 0.0 ], [ -0.001373291015625, 82.172433293207064, 0.0 ], [ -0.001373291015625, 82.172246259413768, 0.0 ], [ -0.00274658203125, 82.172246259413768, 0.0 ], [ -0.00274658203125, 82.172433293207064, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 601, "task_x": 131070, "task_y": 19200, "task_z": 18, "center_y": 82.166352420495897, "area_in_sqm": 436.96931457519503, "perimeter_in_m": 83.615244207217202, "length_x": 20.904871381006199, "length_y": 20.905367706236799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.16644600847728, 0.0 ], [ -0.001373291015625, 82.16644600847728, 0.0 ], [ -0.001373291015625, 82.166258832514529, 0.0 ], [ -0.00274658203125, 82.166258832514529, 0.0 ], [ -0.00274658203125, 82.16644600847728, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 602, "task_x": 131070, "task_y": 19232, "task_z": 18, "center_y": 82.160360513563205, "area_in_sqm": 437.63369512558, "perimeter_in_m": 83.678785575500001, "length_x": 20.9207595222884, "length_y": 20.921256217492701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.160454172682265, 0.0 ], [ -0.001373291015625, 82.160454172682265, 0.0 ], [ -0.001373291015625, 82.16026685444406, 0.0 ], [ -0.00274658203125, 82.16026685444406, 0.0 ], [ -0.00274658203125, 82.160454172682265, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 603, "task_x": 131070, "task_y": 19264, "task_z": 18, "center_y": 82.154364052118396, "area_in_sqm": 438.29907608032198, "perimeter_in_m": 83.742374285258407, "length_x": 20.9366595067441, "length_y": 20.937156572181198 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.154457782428238, 0.0 ], [ -0.001373291015625, 82.154457782428238, 0.0 ], [ -0.001373291015625, 82.154270321808468, 0.0 ], [ -0.00274658203125, 82.154270321808468, 0.0 ], [ -0.00274658203125, 82.154457782428238, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 604, "task_x": 131070, "task_y": 19296, "task_z": 18, "center_y": 82.148363032765303, "area_in_sqm": 438.96545922756201, "perimeter_in_m": 83.806010368983394, "length_x": 20.952571342668399, "length_y": 20.953068778597601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.14845683431902, 0.0 ], [ -0.001373291015625, 82.14845683431902, 0.0 ], [ -0.001373291015625, 82.148269231211529, 0.0 ], [ -0.00274658203125, 82.148269231211529, 0.0 ], [ -0.00274658203125, 82.14845683431902, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 605, "task_x": 131070, "task_y": 19328, "task_z": 18, "center_y": 82.142357452105401, "area_in_sqm": 439.63284504413599, "perimeter_in_m": 83.869693867320095, "length_x": 20.9684950383607, "length_y": 20.968992845041399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.142451324956085, 0.0 ], [ -0.001373291015625, 82.142451324956085, 0.0 ], [ -0.001373291015625, 82.142263579254632, 0.0 ], [ -0.00274658203125, 82.142263579254632, 0.0 ], [ -0.00274658203125, 82.142451324956085, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 606, "task_x": 131070, "task_y": 19360, "task_z": 18, "center_y": 82.136347306737605, "area_in_sqm": 440.30123591423001, "perimeter_in_m": 83.933424814902807, "length_x": 20.9844306021253, "length_y": 20.9849287798171 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.136441250938489, 0.0 ], [ -0.001373291015625, 82.136441250938489, 0.0 ], [ -0.001373291015625, 82.136253362536749, 0.0 ], [ -0.00274658203125, 82.136253362536749, 0.0 ], [ -0.00274658203125, 82.136441250938489, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 607, "task_x": 131070, "task_y": 19392, "task_z": 18, "center_y": 82.1303325932587, "area_in_sqm": 440.97063267230999, "perimeter_in_m": 83.997203233630202, "length_x": 21.000378042270899, "length_y": 21.000876591233499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.130426608862919, 0.0 ], [ -0.001373291015625, 82.130426608862919, 0.0 ], [ -0.001373291015625, 82.130238577654509, 0.0 ], [ -0.00274658203125, 82.130238577654509, 0.0 ], [ -0.00274658203125, 82.130426608862919, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 608, "task_x": 131070, "task_y": 19424, "task_z": 18, "center_y": 82.124313308262899, "area_in_sqm": 441.64103722572298, "perimeter_in_m": 84.061029174088304, "length_x": 21.016337367110701, "length_y": 21.0168362876041 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.124407395323686, 0.0 ], [ -0.001373291015625, 82.124407395323686, 0.0 ], [ -0.001373291015625, 82.124219221202125, 0.0 ], [ -0.00274658203125, 82.124219221202125, 0.0 ], [ -0.00274658203125, 82.124407395323686, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 609, "task_x": 131070, "task_y": 19456, "task_z": 18, "center_y": 82.118289448342097, "area_in_sqm": 442.312451124191, "perimeter_in_m": 84.124902661377405, "length_x": 21.032308584962699, "length_y": 21.032807877246899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.118383606912687, 0.0 ], [ -0.001373291015625, 82.118383606912687, 0.0 ], [ -0.001373291015625, 82.11819528977145, 0.0 ], [ -0.00274658203125, 82.11819528977145, 0.0 ], [ -0.00274658203125, 82.118383606912687, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 610, "task_x": 131070, "task_y": 19488, "task_z": 18, "center_y": 82.112261010085703, "area_in_sqm": 442.984875679016, "perimeter_in_m": 84.188823714593596, "length_x": 21.0482917041493, "length_y": 21.048791368484299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.112355240219472, 0.0 ], [ -0.001373291015625, 82.112355240219472, 0.0 ], [ -0.001373291015625, 82.112166779951934, 0.0 ], [ -0.00274658203125, 82.112166779951934, 0.0 ], [ -0.00274658203125, 82.112355240219472, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 611, "task_x": 131070, "task_y": 19520, "task_z": 18, "center_y": 82.106227990080896, "area_in_sqm": 443.658312320709, "perimeter_in_m": 84.252792391072106, "length_x": 21.064286732997498, "length_y": 21.0647867696436 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.106322291831162, 0.0 ], [ -0.001373291015625, 82.106322291831162, 0.0 ], [ -0.001373291015625, 82.10613368833063, 0.0 ], [ -0.00274658203125, 82.10613368833063, 0.0 ], [ -0.00274658203125, 82.106322291831162, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 612, "task_x": 131070, "task_y": 19552, "task_z": 18, "center_y": 82.100190384912395, "area_in_sqm": 444.33276271820102, "perimeter_in_m": 84.3168087021416, "length_x": 21.0802936798388, "length_y": 21.0807940890565 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.100284758332506, 0.0 ], [ -0.001373291015625, 82.100284758332506, 0.0 ], [ -0.001373291015625, 82.100096011492226, 0.0 ], [ -0.00274658203125, 82.100096011492226, 0.0 ], [ -0.00274658203125, 82.100284758332506, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 613, "task_x": 131070, "task_y": 19584, "task_z": 18, "center_y": 82.094148191162404, "area_in_sqm": 445.00822794437403, "perimeter_in_m": 84.380872695947502, "length_x": 21.096312553009501, "length_y": 21.096813335059402 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.094242636305864, 0.0 ], [ -0.001373291015625, 82.094242636305864, 0.0 ], [ -0.001373291015625, 82.094053746018986, 0.0 ], [ -0.00274658203125, 82.094053746018986, 0.0 ], [ -0.00274658203125, 82.094242636305864, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 614, "task_x": 131070, "task_y": 19616, "task_z": 18, "center_y": 82.088101405410995, "area_in_sqm": 445.68471014499698, "perimeter_in_m": 84.444984401535095, "length_x": 21.1123433608503, "length_y": 21.112844515993 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.088195922331195, 0.0 ], [ -0.001373291015625, 82.088195922331195, 0.0 ], [ -0.001373291015625, 82.088006888490796, 0.0 ], [ -0.00274658203125, 82.088006888490796, 0.0 ], [ -0.00274658203125, 82.088195922331195, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 615, "task_x": 131070, "task_y": 19648, "task_z": 18, "center_y": 82.082050024235599, "area_in_sqm": 446.36221039295202, "perimeter_in_m": 84.509143852207302, "length_x": 21.128386111706298, "length_y": 21.128887640202802 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.082144612986056, 0.0 ], [ -0.001373291015625, 82.082144612986056, 0.0 ], [ -0.001373291015625, 82.081955435485156, 0.0 ], [ -0.00274658203125, 82.081955435485156, 0.0 ], [ -0.00274658203125, 82.082144612986056, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 616, "task_x": 131070, "task_y": 19680, "task_z": 18, "center_y": 82.075994044211399, "area_in_sqm": 447.04073035716999, "perimeter_in_m": 84.5733510826838, "length_x": 21.1444408139274, "length_y": 21.144942716038699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.076088704845631, 0.0 ], [ -0.001373291015625, 82.076088704845631, 0.0 ], [ -0.001373291015625, 82.075899383577166, 0.0 ], [ -0.00274658203125, 82.075899383577166, 0.0 ], [ -0.00274658203125, 82.076088704845631, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 617, "task_x": 131070, "task_y": 19712, "task_z": 18, "center_y": 82.069933461911106, "area_in_sqm": 447.72027134895302, "perimeter_in_m": 84.637606120270107, "length_x": 21.160507475868201, "length_y": 21.1610097518553 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.070028194482674, 0.0 ], [ -0.001373291015625, 82.070028194482674, 0.0 ], [ -0.001373291015625, 82.069838729339509, 0.0 ], [ -0.00274658203125, 82.069838729339509, 0.0 ], [ -0.00274658203125, 82.070028194482674, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 618, "task_x": 131070, "task_y": 19744, "task_z": 18, "center_y": 82.063868273905001, "area_in_sqm": 448.40083491802199, "perimeter_in_m": 84.701909008203799, "length_x": 21.176586105887498, "length_y": 21.177088756011901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.06396307846758, 0.0 ], [ -0.001373291015625, 82.06396307846758, 0.0 ], [ -0.001373291015625, 82.063773469342493, 0.0 ], [ -0.00274658203125, 82.063773469342493, 0.0 ], [ -0.00274658203125, 82.06396307846758, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 619, "task_x": 131070, "task_y": 19776, "task_z": 18, "center_y": 82.057798476761207, "area_in_sqm": 449.082422733307, "perimeter_in_m": 84.766259770263304, "length_x": 21.192676712348899, "length_y": 21.193179736871901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.0578933533683, 0.0 ], [ -0.001373291015625, 82.0578933533683, 0.0 ], [ -0.001373291015625, 82.057703600154014, 0.0 ], [ -0.00274658203125, 82.057703600154014, 0.0 ], [ -0.00274658203125, 82.0578933533683, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 620, "task_x": 131070, "task_y": 19808, "task_z": 18, "center_y": 82.051724067045001, "area_in_sqm": 449.76503622531902, "perimeter_in_m": 84.830658443335594, "length_x": 21.208779303620599, "length_y": 21.209282702803801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.051819015750425, 0.0 ], [ -0.001373291015625, 82.051819015750425, 0.0 ], [ -0.001373291015625, 82.051629118339577, 0.0 ], [ -0.00274658203125, 82.051629118339577, 0.0 ], [ -0.00274658203125, 82.051819015750425, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 621, "task_x": 131070, "task_y": 19840, "task_z": 18, "center_y": 82.045645041319702, "area_in_sqm": 450.44867730140697, "perimeter_in_m": 84.895105064666694, "length_x": 21.224893888075101, "length_y": 21.2253976621802 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.045740062177131, 0.0 ], [ -0.001373291015625, 82.045740062177131, 0.0 ], [ -0.001373291015625, 82.045550020462258, 0.0 ], [ -0.00274658203125, 82.045550020462258, 0.0 ], [ -0.00274658203125, 82.045740062177131, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 622, "task_x": 131070, "task_y": 19872, "task_z": 18, "center_y": 82.039561396145999, "area_in_sqm": 451.133347034454, "perimeter_in_m": 84.959599661249001, "length_x": 21.241020474089598, "length_y": 21.241524623378499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.039656489209165, 0.0 ], [ -0.001373291015625, 82.039656489209165, 0.0 ], [ -0.001373291015625, 82.039466303082776, 0.0 ], [ -0.00274658203125, 82.039466303082776, 0.0 ], [ -0.00274658203125, 82.039656489209165, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 623, "task_x": 131070, "task_y": 19904, "task_z": 18, "center_y": 82.033473128082093, "area_in_sqm": 451.81904602050798, "perimeter_in_m": 85.024142271062203, "length_x": 21.2571590700462, "length_y": 21.257663594780901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.033568293404898, 0.0 ], [ -0.001373291015625, 82.033568293404898, 0.0 ], [ -0.001373291015625, 82.033377962759388, 0.0 ], [ -0.00274658203125, 82.033377962759388, 0.0 ], [ -0.00274658203125, 82.033568293404898, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 624, "task_x": 131070, "task_y": 19936, "task_z": 18, "center_y": 82.027380233684099, "area_in_sqm": 452.50577735900902, "perimeter_in_m": 85.088732923232897, "length_x": 21.2733096843311, "length_y": 21.2738145847736 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.027475471320287, 0.0 ], [ -0.001373291015625, 82.027475471320287, 0.0 ], [ -0.001373291015625, 82.027284996047996, 0.0 ], [ -0.00274658203125, 82.027284996047996, 0.0 ], [ -0.00274658203125, 82.027475471320287, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 625, "task_x": 131070, "task_y": 19968, "task_z": 18, "center_y": 82.021282709505499, "area_in_sqm": 453.19354188442202, "perimeter_in_m": 85.153371663902007, "length_x": 21.289472325335002, "length_y": 21.2899776017478 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.021378019508873, 0.0 ], [ -0.001373291015625, 82.021378019508873, 0.0 ], [ -0.001373291015625, 82.021187399502054, 0.0 ], [ -0.00274658203125, 82.021187399502054, 0.0 ], [ -0.00274658203125, 82.021378019508873, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 626, "task_x": 131070, "task_y": 20000, "task_z": 18, "center_y": 82.015180552097206, "area_in_sqm": 453.88234162330599, "perimeter_in_m": 85.218058513367097, "length_x": 21.3056470014536, "length_y": 21.306152654099101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.015275934521796, 0.0 ], [ -0.001373291015625, 82.015275934521796, 0.0 ], [ -0.001373291015625, 82.015085169672631, 0.0 ], [ -0.00274658203125, 82.015085169672631, 0.0 ], [ -0.00274658203125, 82.015275934521796, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 627, "task_x": 131070, "task_y": 20032, "task_z": 18, "center_y": 82.0090737580081, "area_in_sqm": 454.57217741012602, "perimeter_in_m": 85.282793503624006, "length_x": 21.321833721087, "length_y": 21.322339750227801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.009169212907779, 0.0 ], [ -0.001373291015625, 82.009169212907779, 0.0 ], [ -0.001373291015625, 82.008978303108393, 0.0 ], [ -0.00274658203125, 82.008978303108393, 0.0 ], [ -0.00274658203125, 82.009169212907779, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 628, "task_x": 131070, "task_y": 20064, "task_z": 18, "center_y": 82.002962323784303, "area_in_sqm": 455.26305079460099, "perimeter_in_m": 85.347576672337695, "length_x": 21.338032492639702, "length_y": 21.338538898538399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 82.003057851213129, 0.0 ], [ -0.001373291015625, 82.003057851213129, 0.0 ], [ -0.001373291015625, 82.002866796355562, 0.0 ], [ -0.00274658203125, 82.002866796355562, 0.0 ], [ -0.00274658203125, 82.003057851213129, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 629, "task_x": 131070, "task_y": 20096, "task_z": 18, "center_y": 81.996846245969905, "area_in_sqm": 455.95496380329098, "perimeter_in_m": 85.412408067803597, "length_x": 21.354243324520699, "length_y": 21.354750107440299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.99694184598178, 0.0 ], [ -0.001373291015625, 81.99694184598178, 0.0 ], [ -0.001373291015625, 81.99675064595796, 0.0 ], [ -0.00274658203125, 81.99675064595796, 0.0 ], [ -0.00274658203125, 81.99694184598178, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 630, "task_x": 131070, "task_y": 20128, "task_z": 18, "center_y": 81.9907255211061, "area_in_sqm": 456.64791738986997, "perimeter_in_m": 85.477287694429705, "length_x": 21.370466225144099, "length_y": 21.370973385347401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.990821193755181, 0.0 ], [ -0.001373291015625, 81.990821193755181, 0.0 ], [ -0.001373291015625, 81.990629848457019, 0.0 ], [ -0.00274658203125, 81.990629848457019, 0.0 ], [ -0.00274658203125, 81.990821193755181, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 631, "task_x": 131070, "task_y": 20160, "task_z": 18, "center_y": 81.984600145732102, "area_in_sqm": 457.34191381931299, "perimeter_in_m": 85.542215612563894, "length_x": 21.386701202927799, "length_y": 21.387208740678201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.984695891072434, 0.0 ], [ -0.001373291015625, 81.984695891072434, 0.0 ], [ -0.001373291015625, 81.984504400391714, 0.0 ], [ -0.00274658203125, 81.984504400391714, 0.0 ], [ -0.00274658203125, 81.984695891072434, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 632, "task_x": 131070, "task_y": 20192, "task_z": 18, "center_y": 81.978470116384401, "area_in_sqm": 458.036954045296, "perimeter_in_m": 85.607191837962205, "length_x": 21.402948266294899, "length_y": 21.4034561818554 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.978565934470183, 0.0 ], [ -0.001373291015625, 81.978565934470183, 0.0 ], [ -0.001373291015625, 81.978374298298647, 0.0 ], [ -0.00274658203125, 81.978374298298647, 0.0 ], [ -0.00274658203125, 81.978565934470183, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 633, "task_x": 131070, "task_y": 20224, "task_z": 18, "center_y": 81.972335429597294, "area_in_sqm": 458.73303973674803, "perimeter_in_m": 85.6722164076279, "length_x": 21.4192074236725, "length_y": 21.419715717306701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.972431320482656, 0.0 ], [ -0.001373291015625, 81.972431320482656, 0.0 ], [ -0.001373291015625, 81.97223953871196, 0.0 ], [ -0.00274658203125, 81.97223953871196, 0.0 ], [ -0.00274658203125, 81.972431320482656, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 634, "task_x": 131070, "task_y": 20256, "task_z": 18, "center_y": 81.966196081902496, "area_in_sqm": 459.43017184734299, "perimeter_in_m": 85.7372893667158, "length_x": 21.4354786834928, "length_y": 21.435987355464299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.96629204564168, 0.0 ], [ -0.001373291015625, 81.96629204564168, 0.0 ], [ -0.001373291015625, 81.966100118163396, 0.0 ], [ -0.00274658203125, 81.966100118163396, 0.0 ], [ -0.00274658203125, 81.96629204564168, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 635, "task_x": 131070, "task_y": 20288, "task_z": 18, "center_y": 81.960052069829501, "area_in_sqm": 460.12835359573398, "perimeter_in_m": 85.802410738438596, "length_x": 21.451762054192098, "length_y": 21.452271104764598 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.960148106476638, 0.0 ], [ -0.001373291015625, 81.960148106476638, 0.0 ], [ -0.001373291015625, 81.95995603318228, 0.0 ], [ -0.00274658203125, 81.95995603318228, 0.0 ], [ -0.00274658203125, 81.960148106476638, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 636, "task_x": 131070, "task_y": 20320, "task_z": 18, "center_y": 81.953903389904994, "area_in_sqm": 460.82758498191799, "perimeter_in_m": 85.867580555935703, "length_x": 21.4680575442116, "length_y": 21.468566973648901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.953999499514509, 0.0 ], [ -0.001373291015625, 81.953999499514509, 0.0 ], [ -0.001373291015625, 81.953807280295507, 0.0 ], [ -0.00274658203125, 81.953807280295507, 0.0 ], [ -0.00274658203125, 81.953999499514509, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 637, "task_x": 131070, "task_y": 20352, "task_z": 18, "center_y": 81.947750038653695, "area_in_sqm": 461.52786803245499, "perimeter_in_m": 85.932798859077295, "length_x": 21.484365161996799, "length_y": 21.484874970562799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.94784622127986, 0.0 ], [ -0.001373291015625, 81.94784622127986, 0.0 ], [ -0.001373291015625, 81.947653856027557, 0.0 ], [ -0.00274658203125, 81.947653856027557, 0.0 ], [ -0.00274658203125, 81.94784622127986, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 638, "task_x": 131070, "task_y": 20384, "task_z": 18, "center_y": 81.941592012597596, "area_in_sqm": 462.22920429706602, "perimeter_in_m": 85.998065680664297, "length_x": 21.500684915997802, "length_y": 21.501195103956899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.941688268294797, 0.0 ], [ -0.001373291015625, 81.941688268294797, 0.0 ], [ -0.001373291015625, 81.94149575690048, 0.0 ], [ -0.00274658203125, 81.94149575690048, 0.0 ], [ -0.00274658203125, 81.941688268294797, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 639, "task_x": 131070, "task_y": 20416, "task_z": 18, "center_y": 81.935429308256502, "area_in_sqm": 462.93159520626102, "perimeter_in_m": 86.063381044654307, "length_x": 21.5170168146694, "length_y": 21.5175273822856 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.935525637079024, 0.0 ], [ -0.001373291015625, 81.935525637079024, 0.0 ], [ -0.001373291015625, 81.935332979433895, 0.0 ], [ -0.00274658203125, 81.935332979433895, 0.0 ], [ -0.00274658203125, 81.935525637079024, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 640, "task_x": 131070, "task_y": 20448, "task_z": 18, "center_y": 81.929261922147404, "area_in_sqm": 463.63504254818002, "perimeter_in_m": 86.128744998737702, "length_x": 21.533360866470801, "length_y": 21.533871814008801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.929358324149803, 0.0 ], [ -0.001373291015625, 81.929358324149803, 0.0 ], [ -0.001373291015625, 81.929165520144977, 0.0 ], [ -0.00274658203125, 81.929165520144977, 0.0 ], [ -0.00274658203125, 81.929358324149803, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 641, "task_x": 131070, "task_y": 20480, "task_z": 18, "center_y": 81.923089850785203, "area_in_sqm": 464.33954799175302, "perimeter_in_m": 86.194157564055104, "length_x": 21.5497170798658, "length_y": 21.550228407589898 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.923186326021977, 0.0 ], [ -0.001373291015625, 81.923186326021977, 0.0 ], [ -0.001373291015625, 81.922993375548515, 0.0 ], [ -0.00274658203125, 81.922993375548515, 0.0 ], [ -0.00274658203125, 81.923186326021977, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 642, "task_x": 131070, "task_y": 20512, "task_z": 18, "center_y": 81.916913090682399, "area_in_sqm": 465.04511225223501, "perimeter_in_m": 86.259618784775199, "length_x": 21.5660854633227, "length_y": 21.566597171497801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.917009639207976, 0.0 ], [ -0.001373291015625, 81.917009639207976, 0.0 ], [ -0.001373291015625, 81.916816542156852, 0.0 ], [ -0.00274658203125, 81.916816542156852, 0.0 ], [ -0.00274658203125, 81.917009639207976, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 643, "task_x": 131070, "task_y": 20544, "task_z": 18, "center_y": 81.910731638348807, "area_in_sqm": 465.751738190651, "perimeter_in_m": 86.325128688785696, "length_x": 21.582466025314499, "length_y": 21.5829781142054 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.910828260217755, 0.0 ], [ -0.001373291015625, 81.910828260217755, 0.0 ], [ -0.001373291015625, 81.910635016479858, 0.0 ], [ -0.00274658203125, 81.910635016479858, 0.0 ], [ -0.00274658203125, 81.910828260217755, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 644, "task_x": 131070, "task_y": 20576, "task_z": 18, "center_y": 81.904545490291994, "area_in_sqm": 466.45942616462702, "perimeter_in_m": 86.390687309295203, "length_x": 21.5988587743186, "length_y": 21.599371244190198 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.904642185558885, 0.0 ], [ -0.001373291015625, 81.904642185558885, 0.0 ], [ -0.001373291015625, 81.904448795025047, 0.0 ], [ -0.00274658203125, 81.904448795025047, 0.0 ], [ -0.00274658203125, 81.904642185558885, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 645, "task_x": 131070, "task_y": 20608, "task_z": 18, "center_y": 81.898354643016901, "area_in_sqm": 467.16817843913998, "perimeter_in_m": 86.4562946887267, "length_x": 21.615263718816799, "length_y": 21.6157765699344 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.89845141173646, 0.0 ], [ -0.001373291015625, 81.89845141173646, 0.0 ], [ -0.001373291015625, 81.898257874297414, 0.0 ], [ -0.00274658203125, 81.898257874297414, 0.0 ], [ -0.00274658203125, 81.89845141173646, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 646, "task_x": 131070, "task_y": 20640, "task_z": 18, "center_y": 81.892159093026393, "area_in_sqm": 467.87799644470198, "perimeter_in_m": 86.521950851101707, "length_x": 21.631680867295799, "length_y": 21.6321940999246 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.892255935253161, 0.0 ], [ -0.001373291015625, 81.892255935253161, 0.0 ], [ -0.001373291015625, 81.892062250799597, 0.0 ], [ -0.00274658203125, 81.892062250799597, 0.0 ], [ -0.00274658203125, 81.892255935253161, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 647, "task_x": 131070, "task_y": 20672, "task_z": 18, "center_y": 81.885958836820507, "area_in_sqm": 468.58888185024301, "perimeter_in_m": 86.587655837090594, "length_x": 21.648110228246701, "length_y": 21.6486238426521 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.886055752609238, 0.0 ], [ -0.001373291015625, 81.886055752609238, 0.0 ], [ -0.001373291015625, 81.885861921031719, 0.0 ], [ -0.00274658203125, 81.885861921031719, 0.0 ], [ -0.00274658203125, 81.886055752609238, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 648, "task_x": 131070, "task_y": 20704, "task_z": 18, "center_y": 81.879753870897005, "area_in_sqm": 469.30083596706402, "perimeter_in_m": 86.653409678876102, "length_x": 21.664551810165101, "length_y": 21.665065806612599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.879850860302497, 0.0 ], [ -0.001373291015625, 81.879850860302497, 0.0 ], [ -0.001373291015625, 81.879656881491556, 0.0 ], [ -0.00274658203125, 81.879656881491556, 0.0 ], [ -0.00274658203125, 81.879850860302497, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 649, "task_x": 131070, "task_y": 20736, "task_z": 18, "center_y": 81.873544191751293, "area_in_sqm": 470.01386058330502, "perimeter_in_m": 86.719212404045606, "length_x": 21.681005621551101, "length_y": 21.681520000306499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.873641254828271, 0.0 ], [ -0.001373291015625, 81.873641254828271, 0.0 ], [ -0.001373291015625, 81.873447128674357, 0.0 ], [ -0.00274658203125, 81.873447128674357, 0.0 ], [ -0.00274658203125, 81.873641254828271, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 650, "task_x": 131070, "task_y": 20768, "task_z": 18, "center_y": 81.867329795876202, "area_in_sqm": 470.72795677185098, "perimeter_in_m": 86.785064056130494, "length_x": 21.697471670909302, "length_y": 21.697986432238501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.867426932679521, 0.0 ], [ -0.001373291015625, 81.867426932679521, 0.0 ], [ -0.001373291015625, 81.867232659072982, 0.0 ], [ -0.00274658203125, 81.867232659072982, 0.0 ], [ -0.00274658203125, 81.867426932679521, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 651, "task_x": 131070, "task_y": 20800, "task_z": 18, "center_y": 81.861110679762305, "area_in_sqm": 471.44312679767597, "perimeter_in_m": 86.850964656011499, "length_x": 21.713949966749102, "length_y": 21.714465110917999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.861207890346691, 0.0 ], [ -0.001373291015625, 81.861207890346691, 0.0 ], [ -0.001373291015625, 81.861013469177834, 0.0 ], [ -0.00274658203125, 81.861013469177834, 0.0 ], [ -0.00274658203125, 81.861207890346691, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 652, "task_x": 131070, "task_y": 20832, "task_z": 18, "center_y": 81.854886839897404, "area_in_sqm": 472.15937209129299, "perimeter_in_m": 86.916914253255101, "length_x": 21.730440517584199, "length_y": 21.7309560448589 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.854984124317852, 0.0 ], [ -0.001373291015625, 81.854984124317852, 0.0 ], [ -0.001373291015625, 81.854789555476884, 0.0 ], [ -0.00274658203125, 81.854789555476884, 0.0 ], [ -0.00274658203125, 81.854984124317852, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 653, "task_x": 131070, "task_y": 20864, "task_z": 18, "center_y": 81.848658272767096, "area_in_sqm": 472.87669336795801, "perimeter_in_m": 86.982912870528907, "length_x": 21.746943331933, "length_y": 21.747459242579701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.848755631078575, 0.0 ], [ -0.001373291015625, 81.848755631078575, 0.0 ], [ -0.001373291015625, 81.848560914455618, 0.0 ], [ -0.00274658203125, 81.848560914455618, 0.0 ], [ -0.00274658203125, 81.848755631078575, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 654, "task_x": 131070, "task_y": 20896, "task_z": 18, "center_y": 81.842424974854595, "area_in_sqm": 473.59509360790298, "perimeter_in_m": 87.048960552104901, "length_x": 21.763458418318098, "length_y": 21.763974712603499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.842522407112028, 0.0 ], [ -0.001373291015625, 81.842522407112028, 0.0 ], [ -0.001373291015625, 81.842327542597147, 0.0 ], [ -0.00274658203125, 81.842327542597147, 0.0 ], [ -0.00274658203125, 81.842522407112028, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 655, "task_x": 131070, "task_y": 20928, "task_z": 18, "center_y": 81.836186942640495, "area_in_sqm": 474.31457316875498, "perimeter_in_m": 87.115057324567303, "length_x": 21.779985785267201, "length_y": 21.780502463457601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.83628444889888, 0.0 ], [ -0.001373291015625, 81.83628444889888, 0.0 ], [ -0.001373291015625, 81.836089436382053, 0.0 ], [ -0.00274658203125, 81.836089436382053, 0.0 ], [ -0.00274658203125, 81.83628444889888, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 656, "task_x": 131070, "task_y": 20960, "task_z": 18, "center_y": 81.829944172603007, "area_in_sqm": 475.035134911537, "perimeter_in_m": 87.181203221232806, "length_x": 21.796525441312099, "length_y": 21.797042503674199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.830041752917396, 0.0 ], [ -0.001373291015625, 81.830041752917396, 0.0 ], [ -0.001373291015625, 81.829846592288533, 0.0 ], [ -0.00274658203125, 81.829846592288533, 0.0 ], [ -0.00274658203125, 81.830041752917396, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 657, "task_x": 131070, "task_y": 20992, "task_z": 18, "center_y": 81.823696661217895, "area_in_sqm": 475.75677967071499, "perimeter_in_m": 87.247398285336303, "length_x": 21.813077394989101, "length_y": 21.81359484179 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.823794315643383, 0.0 ], [ -0.001373291015625, 81.823794315643383, 0.0 ], [ -0.001373291015625, 81.823599006792307, 0.0 ], [ -0.00274658203125, 81.823599006792307, 0.0 ], [ -0.00274658203125, 81.823794315643383, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 658, "task_x": 131070, "task_y": 21024, "task_z": 18, "center_y": 81.817444404958394, "area_in_sqm": 476.47950839996298, "perimeter_in_m": 87.313642533223998, "length_x": 21.829641654839399, "length_y": 21.830159486345799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.817542133550177, 0.0 ], [ -0.001373291015625, 81.817542133550177, 0.0 ], [ -0.001373291015625, 81.817346676366668, 0.0 ], [ -0.00274658203125, 81.817346676366668, 0.0 ], [ -0.00274658203125, 81.817542133550177, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 659, "task_x": 131070, "task_y": 21056, "task_z": 18, "center_y": 81.811187400295594, "area_in_sqm": 477.20332384109503, "perimeter_in_m": 87.379936012749596, "length_x": 21.8462182294084, "length_y": 21.846736445887501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.811285203108696, 0.0 ], [ -0.001373291015625, 81.811285203108696, 0.0 ], [ -0.001373291015625, 81.811089597482393, 0.0 ], [ -0.00274658203125, 81.811089597482393, 0.0 ], [ -0.00274658203125, 81.811285203108696, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 660, "task_x": 131070, "task_y": 21088, "task_z": 18, "center_y": 81.804925643697601, "area_in_sqm": 477.928227186203, "perimeter_in_m": 87.4462787547902, "length_x": 21.862807127246299, "length_y": 21.8633257289653 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.805023520787344, 0.0 ], [ -0.001373291015625, 81.805023520787344, 0.0 ], [ -0.001373291015625, 81.804827766607886, 0.0 ], [ -0.00274658203125, 81.804827766607886, 0.0 ], [ -0.00274658203125, 81.805023520787344, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 661, "task_x": 131070, "task_y": 21120, "task_z": 18, "center_y": 81.7986591316306, "area_in_sqm": 478.65421962737997, "perimeter_in_m": 87.5126707980194, "length_x": 21.879408356907501, "length_y": 21.8799273441339 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.798757083052152, 0.0 ], [ -0.001373291015625, 81.798757083052152, 0.0 ], [ -0.001373291015625, 81.798561180209035, 0.0 ], [ -0.00274658203125, 81.798561180209035, 0.0 ], [ -0.00274658203125, 81.798757083052152, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 662, "task_x": 131070, "task_y": 21152, "task_z": 18, "center_y": 81.792387860557994, "area_in_sqm": 479.381303310394, "perimeter_in_m": 87.579112170141599, "length_x": 21.8960219269511, "length_y": 21.896541299952499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.792485886366634, 0.0 ], [ -0.001373291015625, 81.792485886366634, 0.0 ], [ -0.001373291015625, 81.792289834749297, 0.0 ], [ -0.00274658203125, 81.792289834749297, 0.0 ], [ -0.00274658203125, 81.792485886366634, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 663, "task_x": 131070, "task_y": 21184, "task_z": 18, "center_y": 81.786111826940797, "area_in_sqm": 480.10947978496603, "perimeter_in_m": 87.645602908430305, "length_x": 21.912647845940899, "length_y": 21.913167604984899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.786209927191862, 0.0 ], [ -0.001373291015625, 81.786209927191862, 0.0 ], [ -0.001373291015625, 81.786013726689688, 0.0 ], [ -0.00274658203125, 81.786013726689688, 0.0 ], [ -0.00274658203125, 81.786209927191862, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 664, "task_x": 131070, "task_y": 21216, "task_z": 18, "center_y": 81.779831027237606, "area_in_sqm": 480.83874988555903, "perimeter_in_m": 87.712143040963596, "length_x": 21.929286122444999, "length_y": 21.9298062677993 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.779929201986448, 0.0 ], [ -0.001373291015625, 81.779929201986448, 0.0 ], [ -0.001373291015625, 81.779732852488735, 0.0 ], [ -0.00274658203125, 81.779732852488735, 0.0 ], [ -0.00274658203125, 81.779929201986448, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 665, "task_x": 131070, "task_y": 21248, "task_z": 18, "center_y": 81.773545457904504, "area_in_sqm": 481.569116592407, "perimeter_in_m": 87.7787326160079, "length_x": 21.945936765035999, "length_y": 21.946457296968799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.77364370720656, 0.0 ], [ -0.001373291015625, 81.77364370720656, 0.0 ], [ -0.001373291015625, 81.773447208602505, 0.0 ], [ -0.00274658203125, 81.773447208602505, 0.0 ], [ -0.00274658203125, 81.77364370720656, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 666, "task_x": 131070, "task_y": 21280, "task_z": 18, "center_y": 81.767255115395301, "area_in_sqm": 482.30058026313799, "perimeter_in_m": 87.845371658475798, "length_x": 21.9625997822912, "length_y": 21.963120701070501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.767353439305879, 0.0 ], [ -0.001373291015625, 81.767353439305879, 0.0 ], [ -0.001373291015625, 81.767156791484624, 0.0 ], [ -0.00274658203125, 81.767156791484624, 0.0 ], [ -0.00274658203125, 81.767353439305879, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 667, "task_x": 131070, "task_y": 21312, "task_z": 18, "center_y": 81.760959996161006, "area_in_sqm": 483.03314316272701, "perimeter_in_m": 87.912060194698995, "length_x": 21.979275182792399, "length_y": 21.9797964886864 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.761058394735628, 0.0 ], [ -0.001373291015625, 81.761058394735628, 0.0 ], [ -0.001373291015625, 81.760861597586256, 0.0 ], [ -0.00274658203125, 81.760861597586256, 0.0 ], [ -0.00274658203125, 81.761058394735628, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 668, "task_x": 131070, "task_y": 21344, "task_z": 18, "center_y": 81.754660096650298, "area_in_sqm": 483.76680672168698, "perimeter_in_m": 87.978798272618903, "length_x": 21.9959629751257, "length_y": 21.9964846684029 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.754758569944585, 0.0 ], [ -0.001373291015625, 81.754758569944585, 0.0 ], [ -0.001373291015625, 81.754561623356054, 0.0 ], [ -0.00274658203125, 81.754561623356054, 0.0 ], [ -0.00274658203125, 81.754758569944585, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 669, "task_x": 131070, "task_y": 21376, "task_z": 18, "center_y": 81.748355413309696, "area_in_sqm": 484.50157284736599, "perimeter_in_m": 88.045585921067101, "length_x": 22.012663167882099, "length_y": 22.013185248810998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.748453961379042, 0.0 ], [ -0.001373291015625, 81.748453961379042, 0.0 ], [ -0.001373291015625, 81.748256865240279, 0.0 ], [ -0.00274658203125, 81.748256865240279, 0.0 ], [ -0.00274658203125, 81.748453961379042, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 670, "task_x": 131070, "task_y": 21408, "task_z": 18, "center_y": 81.742045942582806, "area_in_sqm": 485.237442493439, "perimeter_in_m": 88.112423173839304, "length_x": 22.0293757696566, "length_y": 22.029898238505901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.742144565482846, 0.0 ], [ -0.001373291015625, 81.742144565482846, 0.0 ], [ -0.001373291015625, 81.741947319682666, 0.0 ], [ -0.00274658203125, 81.741947319682666, 0.0 ], [ -0.00274658203125, 81.742144565482846, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 671, "task_x": 131070, "task_y": 21440, "task_z": 18, "center_y": 81.735731680910902, "area_in_sqm": 485.97441804408999, "perimeter_in_m": 88.179310068633299, "length_x": 22.046100789049301, "length_y": 22.046623646087799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.735830378697344, 0.0 ], [ -0.001373291015625, 81.735830378697344, 0.0 ], [ -0.001373291015625, 81.735632983124503, 0.0 ], [ -0.00274658203125, 81.735632983124503, 0.0 ], [ -0.00274658203125, 81.735830378697344, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 672, "task_x": 131070, "task_y": 21472, "task_z": 18, "center_y": 81.729412624733001, "area_in_sqm": 486.71250057220499, "perimeter_in_m": 88.246246634664104, "length_x": 22.062838234664401, "length_y": 22.063361480160999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.729511397461437, 0.0 ], [ -0.001373291015625, 81.729511397461437, 0.0 ], [ -0.001373291015625, 81.729313852004623, 0.0 ], [ -0.00274658203125, 81.729313852004623, 0.0 ], [ -0.00274658203125, 81.729511397461437, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 673, "task_x": 131070, "task_y": 21504, "task_z": 18, "center_y": 81.723088770485504, "area_in_sqm": 487.45169162750199, "perimeter_in_m": 88.313232903272393, "length_x": 22.079588115110901, "length_y": 22.080111749334598 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.723187618211554, 0.0 ], [ -0.001373291015625, 81.723187618211554, 0.0 ], [ -0.001373291015625, 81.722989922759353, 0.0 ], [ -0.00274658203125, 81.722989922759353, 0.0 ], [ -0.00274658203125, 81.723187618211554, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 674, "task_x": 131070, "task_y": 21536, "task_z": 18, "center_y": 81.716760114602096, "area_in_sqm": 488.19199359417001, "perimeter_in_m": 88.380268932018595, "length_x": 22.0963504390018, "length_y": 22.0968744622222 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.716859037381653, 0.0 ], [ -0.001373291015625, 81.716859037381653, 0.0 ], [ -0.001373291015625, 81.716661191822567, 0.0 ], [ -0.00274658203125, 81.716661191822567, 0.0 ], [ -0.00274658203125, 81.716859037381653, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 675, "task_x": 131070, "task_y": 21568, "task_z": 18, "center_y": 81.710426653514403, "area_in_sqm": 488.93340730667097, "perimeter_in_m": 88.4473547249967, "length_x": 22.113125214955499, "length_y": 22.113649627441699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.710525651403188, 0.0 ], [ -0.001373291015625, 81.710525651403188, 0.0 ], [ -0.001373291015625, 81.71032765562569, 0.0 ], [ -0.00274658203125, 81.71032765562569, 0.0 ], [ -0.00274658203125, 81.710525651403188, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 676, "task_x": 131070, "task_y": 21600, "task_z": 18, "center_y": 81.704088383651396, "area_in_sqm": 489.67593467235599, "perimeter_in_m": 88.514490324910895, "length_x": 22.129912451593999, "length_y": 22.1304372536156 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.704187456705185, 0.0 ], [ -0.001373291015625, 81.704187456705185, 0.0 ], [ -0.001373291015625, 81.703989310597649, 0.0 ], [ -0.00274658203125, 81.703989310597649, 0.0 ], [ -0.00274658203125, 81.704187456705185, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 677, "task_x": 131070, "task_y": 21632, "task_z": 18, "center_y": 81.697745301439497, "area_in_sqm": 490.41957771778101, "perimeter_in_m": 88.581675781906597, "length_x": 22.1467121575444, "length_y": 22.1472373493711 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.697844449714168, 0.0 ], [ -0.001373291015625, 81.697844449714168, 0.0 ], [ -0.001373291015625, 81.697646153164854, 0.0 ], [ -0.00274658203125, 81.697646153164854, 0.0 ], [ -0.00274658203125, 81.697844449714168, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 678, "task_x": 131070, "task_y": 21664, "task_z": 18, "center_y": 81.691397403302702, "area_in_sqm": 491.16433763504, "perimeter_in_m": 88.648911108964199, "length_x": 22.163524341438201, "length_y": 22.164049923339601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.691496626854175, 0.0 ], [ -0.001373291015625, 81.691496626854175, 0.0 ], [ -0.001373291015625, 81.691298179751328, 0.0 ], [ -0.00274658203125, 81.691298179751328, 0.0 ], [ -0.00274658203125, 81.691496626854175, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 679, "task_x": 131070, "task_y": 21696, "task_z": 18, "center_y": 81.685044685662703, "area_in_sqm": 491.91021573543497, "perimeter_in_m": 88.7161963590775, "length_x": 22.180349011911002, "length_y": 22.180874984157299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.685143984546798, 0.0 ], [ -0.001373291015625, 81.685143984546798, 0.0 ], [ -0.001373291015625, 81.684945386778523, 0.0 ], [ -0.00274658203125, 81.684945386778523, 0.0 ], [ -0.00274658203125, 81.685143984546798, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 680, "task_x": 131070, "task_y": 21728, "task_z": 18, "center_y": 81.678687144938294, "area_in_sqm": 492.65721476077999, "perimeter_in_m": 88.783531552676607, "length_x": 22.197186177603601, "length_y": 22.197712540464799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.678786519211116, 0.0 ], [ -0.001373291015625, 81.678786519211116, 0.0 ], [ -0.001373291015625, 81.678587770665487, 0.0 ], [ -0.00274658203125, 81.678587770665487, 0.0 ], [ -0.00274658203125, 81.678786519211116, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 681, "task_x": 131070, "task_y": 21760, "task_z": 18, "center_y": 81.672324777546194, "area_in_sqm": 493.40533530712099, "perimeter_in_m": 88.850916736052199, "length_x": 22.214035847160801, "length_y": 22.214562600907001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.672424227263747, 0.0 ], [ -0.001373291015625, 81.672424227263747, 0.0 ], [ -0.001373291015625, 81.672225327828727, 0.0 ], [ -0.00274658203125, 81.672225327828727, 0.0 ], [ -0.00274658203125, 81.672424227263747, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 682, "task_x": 131070, "task_y": 21792, "task_z": 18, "center_y": 81.665957579900606, "area_in_sqm": 494.15457940101601, "perimeter_in_m": 88.918351935672604, "length_x": 22.230898029231899, "length_y": 22.231425174133701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.666057105118824, 0.0 ], [ -0.001373291015625, 81.666057105118824, 0.0 ], [ -0.001373291015625, 81.665858054682317, 0.0 ], [ -0.00274658203125, 81.665858054682317, 0.0 ], [ -0.00274658203125, 81.666057105118824, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 683, "task_x": 131070, "task_y": 21824, "task_z": 18, "center_y": 81.659585548412906, "area_in_sqm": 494.90494823455799, "perimeter_in_m": 88.985837185447394, "length_x": 22.247772732471201, "length_y": 22.2483002687989 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.659685149187965, 0.0 ], [ -0.001373291015625, 81.659685149187965, 0.0 ], [ -0.001373291015625, 81.659485947637805, 0.0 ], [ -0.00274658203125, 81.659485947637805, 0.0 ], [ -0.00274658203125, 81.659685149187965, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 684, "task_x": 131070, "task_y": 21856, "task_z": 18, "center_y": 81.653208679492295, "area_in_sqm": 495.65644478797901, "perimeter_in_m": 89.053372520717502, "length_x": 22.264659965536801, "length_y": 22.265187893561201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.653308355880355, 0.0 ], [ -0.001373291015625, 81.653308355880355, 0.0 ], [ -0.001373291015625, 81.653109003104291, 0.0 ], [ -0.00274658203125, 81.653109003104291, 0.0 ], [ -0.00274658203125, 81.653308355880355, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 685, "task_x": 131070, "task_y": 21888, "task_z": 18, "center_y": 81.646826969545501, "area_in_sqm": 496.40906941890699, "perimeter_in_m": 89.120957984616595, "length_x": 22.2815597370919, "length_y": 22.282088057083801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.646926721602654, 0.0 ], [ -0.001373291015625, 81.646926721602654, 0.0 ], [ -0.001373291015625, 81.646727217488348, 0.0 ], [ -0.00274658203125, 81.646727217488348, 0.0 ], [ -0.00274658203125, 81.646926721602654, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 686, "task_x": 131070, "task_y": 21920, "task_z": 18, "center_y": 81.640440414976595, "area_in_sqm": 497.16282427310898, "perimeter_in_m": 89.188593604003003, "length_x": 22.298472055803899, "length_y": 22.299000768034201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.640540242759059, 0.0 ], [ -0.001373291015625, 81.640540242759059, 0.0 ], [ -0.001373291015625, 81.640340587194089, 0.0 ], [ -0.00274658203125, 81.640340587194089, 0.0 ], [ -0.00274658203125, 81.640540242759059, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 687, "task_x": 131070, "task_y": 21952, "task_z": 18, "center_y": 81.634049012187205, "area_in_sqm": 497.91771078109701, "perimeter_in_m": 89.256279408934503, "length_x": 22.3153969303448, "length_y": 22.315926035084399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.634148915751254, 0.0 ], [ -0.001373291015625, 81.634148915751254, 0.0 ], [ -0.001373291015625, 81.633949108623156, 0.0 ], [ -0.00274658203125, 81.633949108623156, 0.0 ], [ -0.00274658203125, 81.634148915751254, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 688, "task_x": 131070, "task_y": 21984, "task_z": 18, "center_y": 81.627652757576598, "area_in_sqm": 498.67373096942902, "perimeter_in_m": 89.3240154432754, "length_x": 22.332334369390999, "length_y": 22.3328638669113 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.627752736978451, 0.0 ], [ -0.001373291015625, 81.627752736978451, 0.0 ], [ -0.001373291015625, 81.627552778174646, 0.0 ], [ -0.00274658203125, 81.627552778174646, 0.0 ], [ -0.00274658203125, 81.627752736978451, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 689, "task_x": 131070, "task_y": 22016, "task_z": 18, "center_y": 81.6212516475413, "area_in_sqm": 499.43088614940598, "perimeter_in_m": 89.391801734625204, "length_x": 22.349284381623502, "length_y": 22.349814272195701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.621351702837359, 0.0 ], [ -0.001373291015625, 81.621351702837359, 0.0 ], [ -0.001373291015625, 81.621151592245212, 0.0 ], [ -0.00274658203125, 81.621151592245212, 0.0 ], [ -0.00274658203125, 81.621351702837359, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 690, "task_x": 131070, "task_y": 22048, "task_z": 18, "center_y": 81.614845678475604, "area_in_sqm": 500.18917822837801, "perimeter_in_m": 89.459638335717798, "length_x": 22.366246975727499, "length_y": 22.366777259623401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.614945809722215, 0.0 ], [ -0.001373291015625, 81.614945809722215, 0.0 ], [ -0.001373291015625, 81.614745547228978, 0.0 ], [ -0.00274658203125, 81.614745547228978, 0.0 ], [ -0.00274658203125, 81.614945809722215, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 691, "task_x": 131070, "task_y": 22080, "task_z": 18, "center_y": 81.608434846771203, "area_in_sqm": 500.94860839843801, "perimeter_in_m": 89.527525253987804, "length_x": 22.383222160393402, "length_y": 22.383752837884401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.608535054024713, 0.0 ], [ -0.001373291015625, 81.608535054024713, 0.0 ], [ -0.001373291015625, 81.608334639517622, 0.0 ], [ -0.00274658203125, 81.608334639517622, 0.0 ], [ -0.00274658203125, 81.608535054024713, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 692, "task_x": 131070, "task_y": 22112, "task_z": 18, "center_y": 81.602019148817206, "area_in_sqm": 501.70917880535097, "perimeter_in_m": 89.595462535465899, "length_x": 22.400209944315399, "length_y": 22.400741015673201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.602119432134117, 0.0 ], [ -0.001373291015625, 81.602119432134117, 0.0 ], [ -0.001373291015625, 81.601918865500281, 0.0 ], [ -0.00274658203125, 81.601918865500281, 0.0 ], [ -0.00274658203125, 81.602119432134117, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 693, "task_x": 131070, "task_y": 22144, "task_z": 18, "center_y": 81.595598581000402, "area_in_sqm": 502.47089147567698, "perimeter_in_m": 89.663450214861001, "length_x": 22.417210336192401, "length_y": 22.417741801689001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.595698940437146, 0.0 ], [ -0.001373291015625, 81.595698940437146, 0.0 ], [ -0.001373291015625, 81.595498221563616, 0.0 ], [ -0.00274658203125, 81.595498221563616, 0.0 ], [ -0.00274658203125, 81.595698940437146, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 694, "task_x": 131070, "task_y": 22176, "task_z": 18, "center_y": 81.589173139704897, "area_in_sqm": 503.23374712467199, "perimeter_in_m": 89.731488331139502, "length_x": 22.434223344727901, "length_y": 22.434755204635302 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.589273575318032, 0.0 ], [ -0.001373291015625, 81.589273575318032, 0.0 ], [ -0.001373291015625, 81.589072704091777, 0.0 ], [ -0.00274658203125, 81.589072704091777, 0.0 ], [ -0.00274658203125, 81.589273575318032, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 695, "task_x": 131070, "task_y": 22208, "task_z": 18, "center_y": 81.582742821312493, "area_in_sqm": 503.99774825573002, "perimeter_in_m": 89.799576915487805, "length_x": 22.4512489786297, "length_y": 22.451781233220199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.582843333158522, 0.0 ], [ -0.001373291015625, 81.582843333158522, 0.0 ], [ -0.001373291015625, 81.582642309466422, 0.0 ], [ -0.00274658203125, 81.582642309466422, 0.0 ], [ -0.00274658203125, 81.582843333158522, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 696, "task_x": 131070, "task_y": 22240, "task_z": 18, "center_y": 81.576307622202293, "area_in_sqm": 504.762896060944, "perimeter_in_m": 89.867716010789707, "length_x": 22.468287246610199, "length_y": 22.468819896156202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.576408210337846, 0.0 ], [ -0.001373291015625, 81.576408210337846, 0.0 ], [ -0.001373291015625, 81.576207034066712, 0.0 ], [ -0.00274658203125, 81.576207034066712, 0.0 ], [ -0.00274658203125, 81.576408210337846, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 697, "task_x": 131070, "task_y": 22272, "task_z": 18, "center_y": 81.569867538750998, "area_in_sqm": 505.52919268608099, "perimeter_in_m": 89.935905635502394, "length_x": 22.485338157386401, "length_y": 22.485871202160201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.569968203232747, 0.0 ], [ -0.001373291015625, 81.569968203232747, 0.0 ], [ -0.001373291015625, 81.56976687426932, 0.0 ], [ -0.00274658203125, 81.56976687426932, 0.0 ], [ -0.00274658203125, 81.569968203232747, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 698, "task_x": 131070, "task_y": 22304, "task_z": 18, "center_y": 81.563422567332907, "area_in_sqm": 506.29663920402498, "perimeter_in_m": 90.004145835707106, "length_x": 22.5024017196797, "length_y": 22.502935159953999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.563523308217441, 0.0 ], [ -0.001373291015625, 81.563523308217441, 0.0 ], [ -0.001373291015625, 81.563321826448373, 0.0 ], [ -0.00274658203125, 81.563321826448373, 0.0 ], [ -0.00274658203125, 81.563523308217441, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 699, "task_x": 131070, "task_y": 22336, "task_z": 18, "center_y": 81.556972704319605, "area_in_sqm": 507.06523716449698, "perimeter_in_m": 90.072436648295806, "length_x": 22.519477942215701, "length_y": 22.520011778263299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.557073521663668, 0.0 ], [ -0.001373291015625, 81.557073521663668, 0.0 ], [ -0.001373291015625, 81.556871886975529, 0.0 ], [ -0.00274658203125, 81.556871886975529, 0.0 ], [ -0.00274658203125, 81.557073521663668, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 700, "task_x": 131070, "task_y": 22368, "task_z": 18, "center_y": 81.550517946080305, "area_in_sqm": 507.83498942851998, "perimeter_in_m": 90.140778096709198, "length_x": 22.536566833725001, "length_y": 22.5371010658186 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.55061883994064, 0.0 ], [ -0.001373291015625, 81.55061883994064, 0.0 ], [ -0.001373291015625, 81.550417052219927, 0.0 ], [ -0.00274658203125, 81.550417052219927, 0.0 ], [ -0.00274658203125, 81.55061883994064, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 701, "task_x": 131070, "task_y": 22400, "task_z": 18, "center_y": 81.544058288981603, "area_in_sqm": 508.605896830559, "perimeter_in_m": 90.209170229179406, "length_x": 22.553668402942101, "length_y": 22.554203031355001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.544159259415068, 0.0 ], [ -0.001373291015625, 81.544159259415068, 0.0 ], [ -0.001373291015625, 81.543957318548195, 0.0 ], [ -0.00274658203125, 81.543957318548195, 0.0 ], [ -0.00274658203125, 81.544159259415068, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 702, "task_x": 131070, "task_y": 22432, "task_z": 18, "center_y": 81.537593729387794, "area_in_sqm": 509.37796103954298, "perimeter_in_m": 90.277613068463907, "length_x": 22.5707826586066, "length_y": 22.571317683611799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.537694776451147, 0.0 ], [ -0.001373291015625, 81.537694776451147, 0.0 ], [ -0.001373291015625, 81.537492682324483, 0.0 ], [ -0.00274658203125, 81.537492682324483, 0.0 ], [ -0.00274658203125, 81.537694776451147, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 703, "task_x": 131070, "task_y": 22464, "task_z": 18, "center_y": 81.531124263660502, "area_in_sqm": 510.15118408203102, "perimeter_in_m": 90.346106660687596, "length_x": 22.587909609462098, "length_y": 22.588445031332999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.531225387410601, 0.0 ], [ -0.001373291015625, 81.531225387410601, 0.0 ], [ -0.001373291015625, 81.531023139910374, 0.0 ], [ -0.00274658203125, 81.531023139910374, 0.0 ], [ -0.00274658203125, 81.531225387410601, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 704, "task_x": 131070, "task_y": 22496, "task_z": 18, "center_y": 81.524649888158805, "area_in_sqm": 510.92556726932497, "perimeter_in_m": 90.414651032516502, "length_x": 22.605049264256898, "length_y": 22.605585083266799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.524751088652593, 0.0 ], [ -0.001373291015625, 81.524751088652593, 0.0 ], [ -0.001373291015625, 81.524548687665003, 0.0 ], [ -0.00274658203125, 81.524548687665003, 0.0 ], [ -0.00274658203125, 81.524751088652593, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 705, "task_x": 131070, "task_y": 22528, "task_z": 18, "center_y": 81.518170599239397, "area_in_sqm": 511.70111274719198, "perimeter_in_m": 90.483246219474097, "length_x": 22.6222016317436, "length_y": 22.622737848166299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.518271876533788, 0.0 ], [ -0.001373291015625, 81.518271876533788, 0.0 ], [ -0.001373291015625, 81.518069321944949, 0.0 ], [ -0.00274658203125, 81.518069321944949, 0.0 ], [ -0.00274658203125, 81.518271876533788, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 706, "task_x": 131070, "task_y": 22560, "task_z": 18, "center_y": 81.511686393256298, "area_in_sqm": 512.47782206535305, "perimeter_in_m": 90.551892260280297, "length_x": 22.639366720679501, "length_y": 22.639903334788599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.511787747408363, 0.0 ], [ -0.001373291015625, 81.511787747408363, 0.0 ], [ -0.001373291015625, 81.51158503910429, 0.0 ], [ -0.00274658203125, 81.51158503910429, 0.0 ], [ -0.00274658203125, 81.511787747408363, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 707, "task_x": 131070, "task_y": 22592, "task_z": 18, "center_y": 81.505197266561296, "area_in_sqm": 513.25569629669201, "perimeter_in_m": 90.620589191187705, "length_x": 22.656544539826101, "length_y": 22.657081551895502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.50529869762795, 0.0 ], [ -0.001373291015625, 81.50529869762795, 0.0 ], [ -0.001373291015625, 81.505095835494586, 0.0 ], [ -0.00274658203125, 81.505095835494586, 0.0 ], [ -0.00274658203125, 81.50529869762795, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 708, "task_x": 131070, "task_y": 22624, "task_z": 18, "center_y": 81.498703215503298, "area_in_sqm": 514.03473782539402, "perimeter_in_m": 90.689337043142203, "length_x": 22.673735097949699, "length_y": 22.674272508253502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.498804723541653, 0.0 ], [ -0.001373291015625, 81.498804723541653, 0.0 ], [ -0.001373291015625, 81.498601707464886, 0.0 ], [ -0.00274658203125, 81.498601707464886, 0.0 ], [ -0.00274658203125, 81.498804723541653, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 709, "task_x": 131070, "task_y": 22656, "task_z": 18, "center_y": 81.492204236428904, "area_in_sqm": 514.81494879722595, "perimeter_in_m": 90.758135850995899, "length_x": 22.690938403820802, "length_y": 22.691476212633098 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.492305821496132, 0.0 ], [ -0.001373291015625, 81.492305821496132, 0.0 ], [ -0.001373291015625, 81.492102651361733, 0.0 ], [ -0.00274658203125, 81.492102651361733, 0.0 ], [ -0.00274658203125, 81.492305821496132, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 710, "task_x": 131070, "task_y": 22688, "task_z": 18, "center_y": 81.485700325682302, "area_in_sqm": 515.596329927444, "perimeter_in_m": 90.826985652445899, "length_x": 22.708154466214499, "length_y": 22.708692673809502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.485801987835416, 0.0 ], [ -0.001373291015625, 81.485801987835416, 0.0 ], [ -0.001373291015625, 81.485598663529117, 0.0 ], [ -0.00274658203125, 81.485598663529117, 0.0 ], [ -0.00274658203125, 81.485801987835416, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 711, "task_x": 131070, "task_y": 22720, "task_z": 18, "center_y": 81.479191479604793, "area_in_sqm": 516.37888336181595, "perimeter_in_m": 90.895886478107499, "length_x": 22.725383293910301, "length_y": 22.725921900562501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.47929321890112, 0.0 ], [ -0.001373291015625, 81.47929321890112, 0.0 ], [ -0.001373291015625, 81.479089740308538, 0.0 ], [ -0.00274658203125, 81.479089740308538, 0.0 ], [ -0.00274658203125, 81.47929321890112, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 712, "task_x": 131070, "task_y": 22752, "task_z": 18, "center_y": 81.472677694535605, "area_in_sqm": 517.16261088848103, "perimeter_in_m": 90.9648383713605, "length_x": 22.742624895692099, "length_y": 22.743163901676098 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.472779511032272, 0.0 ], [ -0.001373291015625, 81.472779511032272, 0.0 ], [ -0.001373291015625, 81.472575878038967, 0.0 ], [ -0.00274658203125, 81.472575878038967, 0.0 ], [ -0.00274658203125, 81.472779511032272, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 713, "task_x": 131070, "task_y": 22784, "task_z": 18, "center_y": 81.466158966811093, "area_in_sqm": 517.94751405715897, "perimeter_in_m": 91.033841354699504, "length_x": 22.7598792803484, "length_y": 22.760418685938902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.466260860565399, 0.0 ], [ -0.001373291015625, 81.466260860565399, 0.0 ], [ -0.001373291015625, 81.466057073056845, 0.0 ], [ -0.00274658203125, 81.466057073056845, 0.0 ], [ -0.00274658203125, 81.466260860565399, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 714, "task_x": 131070, "task_y": 22816, "task_z": 18, "center_y": 81.459635292765299, "area_in_sqm": 518.73359501361801, "perimeter_in_m": 91.102895478598299, "length_x": 22.777146456672099, "length_y": 22.777686262143899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.459737263834512, 0.0 ], [ -0.001373291015625, 81.459737263834512, 0.0 ], [ -0.001373291015625, 81.459533321696114, 0.0 ], [ -0.00274658203125, 81.459533321696114, 0.0 ], [ -0.00274658203125, 81.459737263834512, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 715, "task_x": 131070, "task_y": 22848, "task_z": 18, "center_y": 81.453106668729603, "area_in_sqm": 519.52085494995094, "perimeter_in_m": 91.172000763445396, "length_x": 22.7944264334606, "length_y": 22.794966639088699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.453208717171066, 0.0 ], [ -0.001373291015625, 81.453208717171066, 0.0 ], [ -0.001373291015625, 81.453004620288141, 0.0 ], [ -0.00274658203125, 81.453004620288141, 0.0 ], [ -0.00274658203125, 81.453208717171066, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 716, "task_x": 131070, "task_y": 22880, "task_z": 18, "center_y": 81.446573091032903, "area_in_sqm": 520.30929541587795, "perimeter_in_m": 91.241157255130304, "length_x": 22.811719219515599, "length_y": 22.8122598255753 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.44667521690404, 0.0 ], [ -0.001373291015625, 81.44667521690404, 0.0 ], [ -0.001373291015625, 81.446470965161808, 0.0 ], [ -0.00274658203125, 81.446470965161808, 0.0 ], [ -0.00274658203125, 81.44667521690404, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 717, "task_x": 131070, "task_y": 22912, "task_z": 18, "center_y": 81.440034556001606, "area_in_sqm": 521.09891915321396, "perimeter_in_m": 91.3103649804344, "length_x": 22.8290248236435, "length_y": 22.829565830409798 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.440136759359817, 0.0 ], [ -0.001373291015625, 81.440136759359817, 0.0 ], [ -0.001373291015625, 81.439932352643467, 0.0 ], [ -0.00274658203125, 81.439932352643467, 0.0 ], [ -0.00274658203125, 81.440136759359817, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 718, "task_x": 131070, "task_y": 22944, "task_z": 18, "center_y": 81.433491059959593, "area_in_sqm": 521.88972687721298, "perimeter_in_m": 91.379623980660796, "length_x": 22.846343254654901, "length_y": 22.846884662403401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.43359334086233, 0.0 ], [ -0.001373291015625, 81.43359334086233, 0.0 ], [ -0.001373291015625, 81.433388779056912, 0.0 ], [ -0.00274658203125, 81.433388779056912, 0.0 ], [ -0.00274658203125, 81.43359334086233, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 719, "task_x": 131070, "task_y": 22976, "task_z": 18, "center_y": 81.426942599228198, "area_in_sqm": 522.68172073364303, "perimeter_in_m": 91.448934291810403, "length_x": 22.863674521365098, "length_y": 22.8642163303712 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.427044957732903, 0.0 ], [ -0.001373291015625, 81.427044957732903, 0.0 ], [ -0.001373291015625, 81.42684024072345, 0.0 ], [ -0.00274658203125, 81.42684024072345, 0.0 ], [ -0.00274658203125, 81.427044957732903, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 720, "task_x": 131070, "task_y": 23008, "task_z": 18, "center_y": 81.4203891701261, "area_in_sqm": 523.47490262985195, "perimeter_in_m": 91.518295948833995, "length_x": 22.881018632593499, "length_y": 22.881560843133101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.420491606290398, 0.0 ], [ -0.001373291015625, 81.420491606290398, 0.0 ], [ -0.001373291015625, 81.420286733961817, 0.0 ], [ -0.00274658203125, 81.420286733961817, 0.0 ], [ -0.00274658203125, 81.420491606290398, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 721, "task_x": 131070, "task_y": 23040, "task_z": 18, "center_y": 81.413830768969703, "area_in_sqm": 524.26927423477196, "perimeter_in_m": 91.587708982795206, "length_x": 22.898375597164499, "length_y": 22.898918209513202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.41393328285109, 0.0 ], [ -0.001373291015625, 81.41393328285109, 0.0 ], [ -0.001373291015625, 81.413728255088216, 0.0 ], [ -0.00274658203125, 81.413728255088216, 0.0 ], [ -0.00274658203125, 81.41393328285109, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 722, "task_x": 131070, "task_y": 23072, "task_z": 18, "center_y": 81.407267392072598, "area_in_sqm": 525.06483697891201, "perimeter_in_m": 91.657173427597897, "length_x": 22.915745423906301, "length_y": 22.916288438340199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.407369983728756, 0.0 ], [ -0.001373291015625, 81.407369983728756, 0.0 ], [ -0.001373291015625, 81.407164800416354, 0.0 ], [ -0.00274658203125, 81.407164800416354, 0.0 ], [ -0.00274658203125, 81.407369983728756, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 723, "task_x": 131070, "task_y": 23104, "task_z": 18, "center_y": 81.400699035746001, "area_in_sqm": 525.86159288883198, "perimeter_in_m": 91.726689322110403, "length_x": 22.933128121652, "length_y": 22.933671538447101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.400801705234599, 0.0 ], [ -0.001373291015625, 81.400801705234599, 0.0 ], [ -0.001373291015625, 81.400596366257375, 0.0 ], [ -0.00274658203125, 81.400596366257375, 0.0 ], [ -0.00274658203125, 81.400801705234599, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 724, "task_x": 131070, "task_y": 23136, "task_z": 18, "center_y": 81.394125696298602, "area_in_sqm": 526.65954339504196, "perimeter_in_m": 91.796256697072195, "length_x": 22.950523699239, "length_y": 22.9510675186716 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.394228443677335, 0.0 ], [ -0.001373291015625, 81.394228443677335, 0.0 ], [ -0.001373291015625, 81.394022948919883, 0.0 ], [ -0.00274658203125, 81.394022948919883, 0.0 ], [ -0.00274658203125, 81.394228443677335, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 725, "task_x": 131070, "task_y": 23168, "task_z": 18, "center_y": 81.387547370036501, "area_in_sqm": 527.45869076251995, "perimeter_in_m": 91.865875598449094, "length_x": 22.967932165509101, "length_y": 22.968476387855599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.387650195363108, 0.0 ], [ -0.001373291015625, 81.387650195363108, 0.0 ], [ -0.001373291015625, 81.38744454470995, 0.0 ], [ -0.00274658203125, 81.38744454470995, 0.0 ], [ -0.00274658203125, 81.387650195363108, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 726, "task_x": 131070, "task_y": 23200, "task_z": 18, "center_y": 81.380964053263298, "area_in_sqm": 528.25903630256698, "perimeter_in_m": 91.935546043896395, "length_x": 22.9853535293087, "length_y": 22.985898154845401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.381066956595532, 0.0 ], [ -0.001373291015625, 81.381066956595532, 0.0 ], [ -0.001373291015625, 81.380861149931121, 0.0 ], [ -0.00274658203125, 81.380861149931121, 0.0 ], [ -0.00274658203125, 81.381066956595532, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 727, "task_x": 131070, "task_y": 23232, "task_z": 18, "center_y": 81.374375742279994, "area_in_sqm": 529.06058204173996, "perimeter_in_m": 92.005268094977097, "length_x": 23.0027877994882, "length_y": 23.003332828492098 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.374478723675665, 0.0 ], [ -0.001373291015625, 81.374478723675665, 0.0 ], [ -0.001373291015625, 81.374272760884367, 0.0 ], [ -0.00274658203125, 81.374272760884367, 0.0 ], [ -0.00274658203125, 81.374478723675665, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 728, "task_x": 131070, "task_y": 23264, "task_z": 18, "center_y": 81.367782433385102, "area_in_sqm": 529.863329052925, "perimeter_in_m": 92.075041761573502, "length_x": 23.020234984903102, "length_y": 23.020780417650698 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.367885492902047, 0.0 ], [ -0.001373291015625, 81.367885492902047, 0.0 ], [ -0.001373291015625, 81.367679373868157, 0.0 ], [ -0.00274658203125, 81.367679373868157, 0.0 ], [ -0.00274658203125, 81.367885492902047, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 729, "task_x": 131070, "task_y": 23296, "task_z": 18, "center_y": 81.361184122874505, "area_in_sqm": 530.66728007793404, "perimeter_in_m": 92.144867102080298, "length_x": 23.037695094412701, "length_y": 23.0382409311812 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.361287260570677, 0.0 ], [ -0.001373291015625, 81.361287260570677, 0.0 ], [ -0.001373291015625, 81.361080985178376, 0.0 ], [ -0.00274658203125, 81.361080985178376, 0.0 ], [ -0.00274658203125, 81.361287260570677, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 730, "task_x": 131070, "task_y": 23328, "task_z": 18, "center_y": 81.3545808070417, "area_in_sqm": 531.47243654727902, "perimeter_in_m": 92.214744126043698, "length_x": 23.055168136881299, "length_y": 23.055714377947599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.354684022974965, 0.0 ], [ -0.001373291015625, 81.354684022974965, 0.0 ], [ -0.001373291015625, 81.354477591108406, 0.0 ], [ -0.00274658203125, 81.354477591108406, 0.0 ], [ -0.00274658203125, 81.354684022974965, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 731, "task_x": 131070, "task_y": 23360, "task_z": 18, "center_y": 81.347972482177497, "area_in_sqm": 532.27879989147198, "perimeter_in_m": 92.284672878071305, "length_x": 23.072654121177099, "length_y": 23.073200766818399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.348075776405835, 0.0 ], [ -0.001373291015625, 81.348075776405835, 0.0 ], [ -0.001373291015625, 81.347869187949073, 0.0 ], [ -0.00274658203125, 81.347869187949073, 0.0 ], [ -0.00274658203125, 81.348075776405835, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 732, "task_x": 131070, "task_y": 23392, "task_z": 18, "center_y": 81.341359144570106, "area_in_sqm": 533.08637189865101, "perimeter_in_m": 92.354653409143907, "length_x": 23.090153056173001, "length_y": 23.090700106666802 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.341462517151626, 0.0 ], [ -0.001373291015625, 81.341462517151626, 0.0 ], [ -0.001373291015625, 81.341255771988614, 0.0 ], [ -0.00274658203125, 81.341255771988614, 0.0 ], [ -0.00274658203125, 81.341462517151626, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 733, "task_x": 131070, "task_y": 23424, "task_z": 18, "center_y": 81.334740790505506, "area_in_sqm": 533.89515531063103, "perimeter_in_m": 92.424685738045298, "length_x": 23.1076649507465, "length_y": 23.1082124063701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.334844241498132, 0.0 ], [ -0.001373291015625, 81.334844241498132, 0.0 ], [ -0.001373291015625, 81.334637339512767, 0.0 ], [ -0.00274658203125, 81.334637339512767, 0.0 ], [ -0.00274658203125, 81.334844241498132, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 734, "task_x": 131070, "task_y": 23456, "task_z": 18, "center_y": 81.328117416266707, "area_in_sqm": 534.705150723457, "perimeter_in_m": 92.4947699072776, "length_x": 23.125189813778999, "length_y": 23.1257376748101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.328220945728617, 0.0 ], [ -0.001373291015625, 81.328220945728617, 0.0 ], [ -0.001373291015625, 81.328013886804712, 0.0 ], [ -0.00274658203125, 81.328013886804712, 0.0 ], [ -0.00274658203125, 81.328220945728617, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 735, "task_x": 131070, "task_y": 23488, "task_z": 18, "center_y": 81.3214890181344, "area_in_sqm": 535.516360163689, "perimeter_in_m": 92.564905945197793, "length_x": 23.1427276541569, "length_y": 23.1432759208733 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.32159262612376, 0.0 ], [ -0.001373291015625, 81.32159262612376, 0.0 ], [ -0.001373291015625, 81.321385410145041, 0.0 ], [ -0.00274658203125, 81.321385410145041, 0.0 ], [ -0.00274658203125, 81.32159262612376, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 736, "task_x": 131070, "task_y": 23520, "task_z": 18, "center_y": 81.314855592386806, "area_in_sqm": 536.32878577709198, "perimeter_in_m": 92.635093899638505, "length_x": 23.1602784807706, "length_y": 23.160827153450199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.314959278961737, 0.0 ], [ -0.001373291015625, 81.314959278961737, 0.0 ], [ -0.001373291015625, 81.314751905811846, 0.0 ], [ -0.00274658203125, 81.314751905811846, 0.0 ], [ -0.00274658203125, 81.314959278961737, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 737, "task_x": 131070, "task_y": 23552, "task_z": 18, "center_y": 81.308217135299401, "area_in_sqm": 537.14242851734195, "perimeter_in_m": 92.705333796848805, "length_x": 23.177842302515199, "length_y": 23.1783913814361 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.308320900518112, 0.0 ], [ -0.001373291015625, 81.308320900518112, 0.0 ], [ -0.001373291015625, 81.308113370080633, 0.0 ], [ -0.00274658203125, 81.308113370080633, 0.0 ], [ -0.00274658203125, 81.308320900518112, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 738, "task_x": 131070, "task_y": 23584, "task_z": 18, "center_y": 81.301573643145105, "area_in_sqm": 537.95729160308804, "perimeter_in_m": 92.775625669103803, "length_x": 23.195419128290101, "length_y": 23.195968613730301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.30167748706593, 0.0 ], [ -0.001373291015625, 81.30167748706593, 0.0 ], [ -0.001373291015625, 81.30146979922435, 0.0 ], [ -0.00274658203125, 81.30146979922435, 0.0 ], [ -0.00274658203125, 81.30167748706593, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 739, "task_x": 131070, "task_y": 23616, "task_z": 18, "center_y": 81.294925112194505, "area_in_sqm": 538.77337574958801, "perimeter_in_m": 92.845969555412907, "length_x": 23.213008966998999, "length_y": 23.213558859236802 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.295029034875682, 0.0 ], [ -0.001373291015625, 81.295029034875682, 0.0 ], [ -0.001373291015625, 81.294821189513428, 0.0 ], [ -0.00274658203125, 81.294821189513428, 0.0 ], [ -0.00274658203125, 81.295029034875682, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 740, "task_x": 131070, "task_y": 23648, "task_z": 18, "center_y": 81.288271538715506, "area_in_sqm": 539.59068310260795, "perimeter_in_m": 92.916365498689302, "length_x": 23.230611827550099, "length_y": 23.231162126864099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.288375540215299, 0.0 ], [ -0.001373291015625, 81.288375540215299, 0.0 ], [ -0.001373291015625, 81.288167537215685, 0.0 ], [ -0.00274658203125, 81.288167537215685, 0.0 ], [ -0.00274658203125, 81.288375540215299, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 741, "task_x": 131070, "task_y": 23680, "task_z": 18, "center_y": 81.281612918973295, "area_in_sqm": 540.40921485423996, "perimeter_in_m": 92.9868135252147, "length_x": 23.2482277188561, "length_y": 23.2487784255249 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.281716999350124, 0.0 ], [ -0.001373291015625, 81.281716999350124, 0.0 ], [ -0.001373291015625, 81.281508838596409, 0.0 ], [ -0.00274658203125, 81.281508838596409, 0.0 ], [ -0.00274658203125, 81.281716999350124, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 742, "task_x": 131070, "task_y": 23712, "task_z": 18, "center_y": 81.274949249230701, "area_in_sqm": 541.22897326946304, "perimeter_in_m": 93.057313677568402, "length_x": 23.265856649834099, "length_y": 23.2664077641364 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.275053408543002, 0.0 ], [ -0.001373291015625, 81.275053408543002, 0.0 ], [ -0.001373291015625, 81.274845089918344, 0.0 ], [ -0.00274658203125, 81.274845089918344, 0.0 ], [ -0.00274658203125, 81.275053408543002, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 743, "task_x": 131070, "task_y": 23744, "task_z": 18, "center_y": 81.268280525747898, "area_in_sqm": 542.04996037483204, "perimeter_in_m": 93.127865987004697, "length_x": 23.2834986294054, "length_y": 23.2840501516201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.268384764054133, 0.0 ], [ -0.001373291015625, 81.268384764054133, 0.0 ], [ -0.001373291015625, 81.268176287441634, 0.0 ], [ -0.00274658203125, 81.268176287441634, 0.0 ], [ -0.00274658203125, 81.268384764054133, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 744, "task_x": 131070, "task_y": 23776, "task_z": 18, "center_y": 81.261606744782597, "area_in_sqm": 542.87217819690704, "perimeter_in_m": 93.198470490806699, "length_x": 23.301153666495999, "length_y": 23.301705596902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.261711062141231, 0.0 ], [ -0.001373291015625, 81.261711062141231, 0.0 ], [ -0.001373291015625, 81.261502427423906, 0.0 ], [ -0.00274658203125, 81.261502427423906, 0.0 ], [ -0.00274658203125, 81.261711062141231, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 745, "task_x": 131070, "task_y": 23808, "task_z": 18, "center_y": 81.254927902589799, "area_in_sqm": 543.69562757015206, "perimeter_in_m": 93.269127215648297, "length_x": 23.318821770036099, "length_y": 23.319374108912498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.255032299059394, 0.0 ], [ -0.001373291015625, 81.255032299059394, 0.0 ], [ -0.001373291015625, 81.254823506120175, 0.0 ], [ -0.00274658203125, 81.254823506120175, 0.0 ], [ -0.00274658203125, 81.255032299059394, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 746, "task_x": 131070, "task_y": 23840, "task_z": 18, "center_y": 81.248243995422101, "area_in_sqm": 544.52031064033497, "perimeter_in_m": 93.339836216175101, "length_x": 23.336502948960199, "length_y": 23.3370556965864 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.248348471061206, 0.0 ], [ -0.001373291015625, 81.248348471061206, 0.0 ], [ -0.001373291015625, 81.248139519782924, 0.0 ], [ -0.00274658203125, 81.248139519782924, 0.0 ], [ -0.00274658203125, 81.248348471061206, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 747, "task_x": 131070, "task_y": 23872, "task_z": 18, "center_y": 81.241555019529301, "area_in_sqm": 545.34622931480396, "perimeter_in_m": 93.410597515186097, "length_x": 23.354197212207499, "length_y": 23.354750368863002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.241659574396621, 0.0 ], [ -0.001373291015625, 81.241659574396621, 0.0 ], [ -0.001373291015625, 81.241450464662066, 0.0 ], [ -0.00274658203125, 81.241450464662066, 0.0 ], [ -0.00274658203125, 81.241659574396621, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 748, "task_x": 131070, "task_y": 23904, "task_z": 18, "center_y": 81.234860971158994, "area_in_sqm": 546.17338597774506, "perimeter_in_m": 93.481411142913601, "length_x": 23.371904568721501, "length_y": 23.372458134685701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.234965605313079, 0.0 ], [ -0.001373291015625, 81.234965605313079, 0.0 ], [ -0.001373291015625, 81.234756337004939, 0.0 ], [ -0.00274658203125, 81.234756337004939, 0.0 ], [ -0.00274658203125, 81.234965605313079, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 749, "task_x": 131070, "task_y": 23936, "task_z": 18, "center_y": 81.228161846555906, "area_in_sqm": 547.001781582832, "perimeter_in_m": 93.552277144122797, "length_x": 23.389625027449998, "length_y": 23.390179003002501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.228266560055417, 0.0 ], [ -0.001373291015625, 81.228266560055417, 0.0 ], [ -0.001373291015625, 81.228057133056311, 0.0 ], [ -0.00274658203125, 81.228057133056311, 0.0 ], [ -0.00274658203125, 81.228266560055417, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 750, "task_x": 131070, "task_y": 23968, "task_z": 18, "center_y": 81.221457641962104, "area_in_sqm": 547.83141839504196, "perimeter_in_m": 93.623195558273295, "length_x": 23.407358597344999, "length_y": 23.407912982765801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.22156243486593, 0.0 ], [ -0.001373291015625, 81.22156243486593, 0.0 ], [ -0.001373291015625, 81.221352849058377, 0.0 ], [ -0.00274658203125, 81.221352849058377, 0.0 ], [ -0.00274658203125, 81.22156243486593, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 751, "task_x": 131070, "task_y": 24000, "task_z": 18, "center_y": 81.214748353617594, "area_in_sqm": 548.66229796409596, "perimeter_in_m": 93.694166416337595, "length_x": 23.425105287363401, "length_y": 23.425660082932499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.214853225984328, 0.0 ], [ -0.001373291015625, 81.214853225984328, 0.0 ], [ -0.001373291015625, 81.214643481250775, 0.0 ], [ -0.00274658203125, 81.214643481250775, 0.0 ], [ -0.00274658203125, 81.214853225984328, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 752, "task_x": 131070, "task_y": 24032, "task_z": 18, "center_y": 81.208033977759101, "area_in_sqm": 549.49442219734203, "perimeter_in_m": 93.765189746817995, "length_x": 23.442865106466201, "length_y": 23.443420312463498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.208138929647731, 0.0 ], [ -0.001373291015625, 81.208138929647731, 0.0 ], [ -0.001373291015625, 81.207929025870556, 0.0 ], [ -0.00274658203125, 81.207929025870556, 0.0 ], [ -0.00274658203125, 81.208138929647731, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 753, "task_x": 131070, "task_y": 24064, "task_z": 18, "center_y": 81.201314510621501, "area_in_sqm": 550.32779300212906, "perimeter_in_m": 93.836265602651693, "length_x": 23.4606380636185, "length_y": 23.461193680324499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.201419542090733, 0.0 ], [ -0.001373291015625, 81.201419542090733, 0.0 ], [ -0.001373291015625, 81.201209479152197, 0.0 ], [ -0.00274658203125, 81.201209479152197, 0.0 ], [ -0.00274658203125, 81.201419542090733, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 754, "task_x": 131070, "task_y": 24096, "task_z": 18, "center_y": 81.194589948436402, "area_in_sqm": 551.162412166595, "perimeter_in_m": 93.907394001739704, "length_x": 23.4784241677905, "length_y": 23.478980195485398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.194695059545282, 0.0 ], [ -0.001373291015625, 81.194695059545282, 0.0 ], [ -0.001373291015625, 81.194484837327622, 0.0 ], [ -0.00274658203125, 81.194484837327622, 0.0 ], [ -0.00274658203125, 81.194695059545282, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 755, "task_x": 131070, "task_y": 24128, "task_z": 18, "center_y": 81.187860287433494, "area_in_sqm": 551.99828124046303, "perimeter_in_m": 93.978574989958901, "length_x": 23.496223427956, "length_y": 23.496779866920299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.187965478240812, 0.0 ], [ -0.001373291015625, 81.187965478240812, 0.0 ], [ -0.001373291015625, 81.187755096626162, 0.0 ], [ -0.00274658203125, 81.187755096626162, 0.0 ], [ -0.00274658203125, 81.187965478240812, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 756, "task_x": 131070, "task_y": 24160, "task_z": 18, "center_y": 81.181125523839398, "area_in_sqm": 552.83540236949898, "perimeter_in_m": 94.049808595844297, "length_x": 23.514035853093699, "length_y": 23.514592703608098 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.181230794404158, 0.0 ], [ -0.001373291015625, 81.181230794404158, 0.0 ], [ -0.001373291015625, 81.181020253274539, 0.0 ], [ -0.00274658203125, 81.181020253274539, 0.0 ], [ -0.00274658203125, 81.181230794404158, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 757, "task_x": 131070, "task_y": 24192, "task_z": 18, "center_y": 81.174385653878304, "area_in_sqm": 553.673777580261, "perimeter_in_m": 94.121094866706201, "length_x": 23.531861452186401, "length_y": 23.532418714531801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.174491004259579, 0.0 ], [ -0.001373291015625, 81.174491004259579, 0.0 ], [ -0.001373291015625, 81.174280303496971, 0.0 ], [ -0.00274658203125, 81.174280303496971, 0.0 ], [ -0.00274658203125, 81.174491004259579, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 758, "task_x": 131070, "task_y": 24224, "task_z": 18, "center_y": 81.167640673771899, "area_in_sqm": 554.51340818405197, "perimeter_in_m": 94.192433826143002, "length_x": 23.5497002342215, "length_y": 23.550257908678699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.167746104028723, 0.0 ], [ -0.001373291015625, 81.167746104028723, 0.0 ], [ -0.001373291015625, 81.167535243515005, 0.0 ], [ -0.00274658203125, 81.167535243515005, 0.0 ], [ -0.00274658203125, 81.167746104028723, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 759, "task_x": 131070, "task_y": 24256, "task_z": 18, "center_y": 81.160890579739203, "area_in_sqm": 555.35429668426502, "perimeter_in_m": 94.263825511213, "length_x": 23.567552208190701, "length_y": 23.568110295040601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.160996089930705, 0.0 ], [ -0.001373291015625, 81.160996089930705, 0.0 ], [ -0.001373291015625, 81.1607850695477, 0.0 ], [ -0.00274658203125, 81.1607850695477, 0.0 ], [ -0.00274658203125, 81.160996089930705, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 760, "task_x": 131070, "task_y": 24288, "task_z": 18, "center_y": 81.154135367996702, "area_in_sqm": 556.19644403457596, "perimeter_in_m": 94.335269973502406, "length_x": 23.585417383089801, "length_y": 23.585975882613901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.154240958182029, 0.0 ], [ -0.001373291015625, 81.154240958182029, 0.0 ], [ -0.001373291015625, 81.154029777811445, 0.0 ], [ -0.00274658203125, 81.154029777811445, 0.0 ], [ -0.00274658203125, 81.154240958182029, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 761, "task_x": 131070, "task_y": 24320, "task_z": 18, "center_y": 81.147375034758397, "area_in_sqm": 557.03985261917103, "perimeter_in_m": 94.406767229199502, "length_x": 23.603295767919398, "length_y": 23.6038546803989 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.147480704996624, 0.0 ], [ -0.001373291015625, 81.147480704996624, 0.0 ], [ -0.001373291015625, 81.147269364520099, 0.0 ], [ -0.00274658203125, 81.147269364520099, 0.0 ], [ -0.00274658203125, 81.147480704996624, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 762, "task_x": 131070, "task_y": 24352, "task_z": 18, "center_y": 81.140609576235406, "area_in_sqm": 557.88452434539795, "perimeter_in_m": 94.478317332030301, "length_x": 23.621187371684201, "length_y": 23.621746697400599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.140715326585834, 0.0 ], [ -0.001373291015625, 81.140715326585834, 0.0 ], [ -0.001373291015625, 81.140503825884934, 0.0 ], [ -0.00274658203125, 81.140503825884934, 0.0 ], [ -0.00274658203125, 81.140715326585834, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 763, "task_x": 131070, "task_y": 24384, "task_z": 18, "center_y": 81.133838988636498, "area_in_sqm": 558.73046052455902, "perimeter_in_m": 94.549920303509893, "length_x": 23.6390922033934, "length_y": 23.639651942628198 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.133944819158387, 0.0 ], [ -0.001373291015625, 81.133944819158387, 0.0 ], [ -0.001373291015625, 81.133733158114609, 0.0 ], [ -0.00274658203125, 81.133733158114609, 0.0 ], [ -0.00274658203125, 81.133944819158387, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 764, "task_x": 131070, "task_y": 24416, "task_z": 18, "center_y": 81.127063268167902, "area_in_sqm": 559.57766377925896, "perimeter_in_m": 94.621576181451005, "length_x": 23.657010272060301, "length_y": 23.657570425095301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.127169178920497, 0.0 ], [ -0.001373291015625, 81.127169178920497, 0.0 ], [ -0.001373291015625, 81.126957357415222, 0.0 ], [ -0.00274658203125, 81.126957357415222, 0.0 ], [ -0.00274658203125, 81.127169178920497, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 765, "task_x": 131070, "task_y": 24448, "task_z": 18, "center_y": 81.120282411033003, "area_in_sqm": 560.42613530158997, "perimeter_in_m": 94.693285007213305, "length_x": 23.674941586702801, "length_y": 23.675502153819998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.12038840207569, 0.0 ], [ -0.001373291015625, 81.12038840207569, 0.0 ], [ -0.001373291015625, 81.120176419990258, 0.0 ], [ -0.00274658203125, 81.120176419990258, 0.0 ], [ -0.00274658203125, 81.12038840207569, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 766, "task_x": 131070, "task_y": 24480, "task_z": 18, "center_y": 81.113496413432799, "area_in_sqm": 561.27587759494804, "perimeter_in_m": 94.765046812962197, "length_x": 23.692886156343299, "length_y": 23.693447137824499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.11360248482498, 0.0 ], [ -0.001373291015625, 81.11360248482498, 0.0 ], [ -0.001373291015625, 81.113390342040617, 0.0 ], [ -0.00274658203125, 81.113390342040617, 0.0 ], [ -0.00274658203125, 81.11360248482498, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 767, "task_x": 131070, "task_y": 24512, "task_z": 18, "center_y": 81.106705271565701, "area_in_sqm": 562.12689125537895, "perimeter_in_m": 94.836861633699002, "length_x": 23.710843990008101, "length_y": 23.711405386135599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.10681142336675, 0.0 ], [ -0.001373291015625, 81.10681142336675, 0.0 ], [ -0.001373291015625, 81.106599119764624, 0.0 ], [ -0.00274658203125, 81.106599119764624, 0.0 ], [ -0.00274658203125, 81.10681142336675, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 768, "task_x": 131070, "task_y": 24544, "task_z": 18, "center_y": 81.099908981627394, "area_in_sqm": 562.97918021678902, "perimeter_in_m": 94.908729514353197, "length_x": 23.728815096728301, "length_y": 23.7293769077843 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.10001521389681, 0.0 ], [ -0.001373291015625, 81.10001521389681, 0.0 ], [ -0.001373291015625, 81.099802749357991, 0.0 ], [ -0.00274658203125, 81.099802749357991, 0.0 ], [ -0.00274658203125, 81.10001521389681, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 769, "task_x": 131070, "task_y": 24576, "task_z": 18, "center_y": 81.093107539811101, "area_in_sqm": 563.83274424076103, "perimeter_in_m": 94.980650483926595, "length_x": 23.746799485538901, "length_y": 23.747361711805901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.093213852608372, 0.0 ], [ -0.001373291015625, 81.093213852608372, 0.0 ], [ -0.001373291015625, 81.093001227013858, 0.0 ], [ -0.00274658203125, 81.093001227013858, 0.0 ], [ -0.00274658203125, 81.093213852608372, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 770, "task_x": 131070, "task_y": 24608, "task_z": 18, "center_y": 81.086300942307403, "area_in_sqm": 564.68758642673504, "perimeter_in_m": 95.052624573909995, "length_x": 23.764797165479798, "length_y": 23.765359807240198 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.086407335692044, 0.0 ], [ -0.001373291015625, 81.086407335692044, 0.0 ], [ -0.001373291015625, 81.086194548922734, 0.0 ], [ -0.00274658203125, 81.086194548922734, 0.0 ], [ -0.00274658203125, 81.086407335692044, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 771, "task_x": 131070, "task_y": 24640, "task_z": 18, "center_y": 81.079489185304197, "area_in_sqm": 565.54370796680496, "perimeter_in_m": 95.124651831379296, "length_x": 23.7828081455947, "length_y": 23.783371203131399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.079595659335823, 0.0 ], [ -0.001373291015625, 81.079595659335823, 0.0 ], [ -0.001373291015625, 81.079382711272572, 0.0 ], [ -0.00274658203125, 81.079382711272572, 0.0 ], [ -0.00274658203125, 81.079595659335823, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 772, "task_x": 131070, "task_y": 24672, "task_z": 18, "center_y": 81.072672264986906, "area_in_sqm": 566.40111136436497, "perimeter_in_m": 95.196732289611205, "length_x": 23.800832434932001, "length_y": 23.801395908527802 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.072778819725158, 0.0 ], [ -0.001373291015625, 81.072778819725158, 0.0 ], [ -0.001373291015625, 81.072565710248711, 0.0 ], [ -0.00274658203125, 81.072565710248711, 0.0 ], [ -0.00274658203125, 81.072778819725158, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 773, "task_x": 131070, "task_y": 24704, "task_z": 18, "center_y": 81.065850177538394, "area_in_sqm": 567.25979781150795, "perimeter_in_m": 95.268865977645802, "length_x": 23.818870042544301, "length_y": 23.819433932482099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.065956813042845, 0.0 ], [ -0.001373291015625, 81.065956813042845, 0.0 ], [ -0.001373291015625, 81.065743542033871, 0.0 ], [ -0.00274658203125, 81.065743542033871, 0.0 ], [ -0.00274658203125, 81.065956813042845, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 774, "task_x": 131070, "task_y": 24736, "task_z": 18, "center_y": 81.059022919138599, "area_in_sqm": 568.11976945400204, "perimeter_in_m": 95.341052940461296, "length_x": 23.8369209774886, "length_y": 23.8374852840515 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.059129635469105, 0.0 ], [ -0.001373291015625, 81.059129635469105, 0.0 ], [ -0.001373291015625, 81.058916202808192, 0.0 ], [ -0.00274658203125, 81.058916202808192, 0.0 ], [ -0.00274658203125, 81.059129635469105, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 775, "task_x": 131070, "task_y": 24768, "task_z": 18, "center_y": 81.052190485965397, "area_in_sqm": 568.98102879524197, "perimeter_in_m": 95.413293197904807, "length_x": 23.8549852488262, "length_y": 23.8555499722974 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.052297283181559, 0.0 ], [ -0.001373291015625, 81.052297283181559, 0.0 ], [ -0.001373291015625, 81.052083688749235, 0.0 ], [ -0.00274658203125, 81.052083688749235, 0.0 ], [ -0.00274658203125, 81.052297283181559, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 776, "task_x": 131070, "task_y": 24800, "task_z": 18, "center_y": 81.045352874193597, "area_in_sqm": 569.84357678890206, "perimeter_in_m": 95.4855868041777, "length_x": 23.8730628656227, "length_y": 23.8736280062856 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.045459752355214, 0.0 ], [ -0.001373291015625, 81.045459752355214, 0.0 ], [ -0.001373291015625, 81.045245996031895, 0.0 ], [ -0.00274658203125, 81.045245996031895, 0.0 ], [ -0.00274658203125, 81.045459752355214, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 777, "task_x": 131070, "task_y": 24832, "task_z": 18, "center_y": 81.038510079995504, "area_in_sqm": 570.70741546153999, "perimeter_in_m": 95.557933792245507, "length_x": 23.891153836948, "length_y": 23.891719395086199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.038617039162489, 0.0 ], [ -0.001373291015625, 81.038617039162489, 0.0 ], [ -0.001373291015625, 81.038403120828505, 0.0 ], [ -0.00274658203125, 81.038403120828505, 0.0 ], [ -0.00274658203125, 81.038617039162489, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 778, "task_x": 131070, "task_y": 24864, "task_z": 18, "center_y": 81.031662099540995, "area_in_sqm": 571.57254719734203, "perimeter_in_m": 95.630334185524305, "length_x": 23.909258171876498, "length_y": 23.909824147773399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.031769139773175, 0.0 ], [ -0.001373291015625, 81.031769139773175, 0.0 ], [ -0.001373291015625, 81.031555059308815, 0.0 ], [ -0.00274658203125, 81.031555059308815, 0.0 ], [ -0.00274658203125, 81.031769139773175, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 779, "task_x": 131070, "task_y": 24896, "task_z": 18, "center_y": 81.024808928997203, "area_in_sqm": 572.43897366523697, "perimeter_in_m": 95.702788040721302, "length_x": 23.9273758794867, "length_y": 23.9279422734263 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.024916050354477, 0.0 ], [ -0.001373291015625, 81.024916050354477, 0.0 ], [ -0.001373291015625, 81.024701807639914, 0.0 ], [ -0.00274658203125, 81.024701807639914, 0.0 ], [ -0.00274658203125, 81.024916050354477, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 780, "task_x": 131070, "task_y": 24928, "task_z": 18, "center_y": 81.017950564528604, "area_in_sqm": 573.30669641494796, "perimeter_in_m": 95.775295382680298, "length_x": 23.945506968861601, "length_y": 23.946073781127801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.018057767070985, 0.0 ], [ -0.001373291015625, 81.018057767070985, 0.0 ], [ -0.001373291015625, 81.017843361986309, 0.0 ], [ -0.00274658203125, 81.017843361986309, 0.0 ], [ -0.00274658203125, 81.018057767070985, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 781, "task_x": 131070, "task_y": 24960, "task_z": 18, "center_y": 81.011087002297302, "area_in_sqm": 574.17571806907699, "perimeter_in_m": 95.8478562458222, "length_x": 23.963651449088399, "length_y": 23.964218679965299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.011194286084674, 0.0 ], [ -0.001373291015625, 81.011194286084674, 0.0 ], [ -0.001373291015625, 81.010979718509915, 0.0 ], [ -0.00274658203125, 81.010979718509915, 0.0 ], [ -0.00274658203125, 81.011194286084674, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 782, "task_x": 131070, "task_y": 24992, "task_z": 18, "center_y": 81.004218238462499, "area_in_sqm": 575.04603922367096, "perimeter_in_m": 95.920470668819405, "length_x": 23.981809329258802, "length_y": 23.982376979030398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 81.004325603554918, 0.0 ], [ -0.001373291015625, 81.004325603554918, 0.0 ], [ -0.001373291015625, 81.00411087337001, 0.0 ], [ -0.00274658203125, 81.00411087337001, 0.0 ], [ -0.00274658203125, 81.004325603554918, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 783, "task_x": 131070, "task_y": 25024, "task_z": 18, "center_y": 80.9973442691809, "area_in_sqm": 575.91766333579994, "perimeter_in_m": 95.993138688938501, "length_x": 23.999980618468499, "length_y": 24.000548687419201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.997451715638462, 0.0 ], [ -0.001373291015625, 80.997451715638462, 0.0 ], [ -0.001373291015625, 80.997236822723266, 0.0 ], [ -0.00274658203125, 80.997236822723266, 0.0 ], [ -0.00274658203125, 80.997451715638462, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 784, "task_x": 131070, "task_y": 25056, "task_z": 18, "center_y": 80.990465090606605, "area_in_sqm": 576.79059123992897, "perimeter_in_m": 96.065860342390195, "length_x": 24.0181653258179, "length_y": 24.0187338142321 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.990572618489466, 0.0 ], [ -0.001373291015625, 80.990572618489466, 0.0 ], [ -0.001373291015625, 80.990357562723744, 0.0 ], [ -0.00274658203125, 80.990357562723744, 0.0 ], [ -0.00274658203125, 80.990572618489466, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 785, "task_x": 131070, "task_y": 25088, "task_z": 18, "center_y": 80.983580698891203, "area_in_sqm": 577.66482532024395, "perimeter_in_m": 96.138635660089093, "length_x": 24.036363460411401, "length_y": 24.036932368573702 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.983688308259445, 0.0 ], [ -0.001373291015625, 80.983688308259445, 0.0 ], [ -0.001373291015625, 80.983473089522903, 0.0 ], [ -0.00274658203125, 80.983473089522903, 0.0 ], [ -0.00274658203125, 80.983688308259445, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 786, "task_x": 131070, "task_y": 25120, "task_z": 18, "center_y": 80.976691090183493, "area_in_sqm": 578.54036724567402, "perimeter_in_m": 96.211464688880497, "length_x": 24.0545750313577, "length_y": 24.055144359552902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.97679878109733, 0.0 ], [ -0.001373291015625, 80.97679878109733, 0.0 ], [ -0.001373291015625, 80.976583399269572, 0.0 ], [ -0.00274658203125, 80.976583399269572, 0.0 ], [ -0.00274658203125, 80.97679878109733, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 787, "task_x": 131070, "task_y": 25152, "task_z": 18, "center_y": 80.969796260629707, "area_in_sqm": 579.41721904277802, "perimeter_in_m": 96.284347458986005, "length_x": 24.072800047769999, "length_y": 24.073369796282901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.96990403314939, 0.0 ], [ -0.001373291015625, 80.96990403314939, 0.0 ], [ -0.001373291015625, 80.969688488109966, 0.0 ], [ -0.00274658203125, 80.969688488109966, 0.0 ], [ -0.00274658203125, 80.96990403314939, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 788, "task_x": 131070, "task_y": 25184, "task_z": 18, "center_y": 80.9628962063735, "area_in_sqm": 580.29538238048599, "perimeter_in_m": 96.357284007715407, "length_x": 24.091038518765799, "length_y": 24.0916086878815 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.963004060559342, 0.0 ], [ -0.001373291015625, 80.963004060559342, 0.0 ], [ -0.001373291015625, 80.962788352187673, 0.0 ], [ -0.00274658203125, 80.962788352187673, 0.0 ], [ -0.00274658203125, 80.963004060559342, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 789, "task_x": 131070, "task_y": 25216, "task_z": 18, "center_y": 80.955990923556001, "area_in_sqm": 581.17485928535496, "perimeter_in_m": 96.430274362118098, "length_x": 24.109290453466802, "length_y": 24.1098610434702 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.956098859468213, 0.0 ], [ -0.001373291015625, 80.956098859468213, 0.0 ], [ -0.001373291015625, 80.95588298764369, 0.0 ], [ -0.00274658203125, 80.95588298764369, 0.0 ], [ -0.00274658203125, 80.956098859468213, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 790, "task_x": 131070, "task_y": 25248, "task_z": 18, "center_y": 80.949080408315396, "area_in_sqm": 582.05565190315201, "perimeter_in_m": 96.503318576161703, "length_x": 24.1275558609989, "length_y": 24.1281268721755 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.949188426014473, 0.0 ], [ -0.001373291015625, 80.949188426014473, 0.0 ], [ -0.001373291015625, 80.948972390616348, 0.0 ], [ -0.00274658203125, 80.948972390616348, 0.0 ], [ -0.00274658203125, 80.949188426014473, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 791, "task_x": 131070, "task_y": 25280, "task_z": 18, "center_y": 80.942164656787696, "area_in_sqm": 582.93776202201798, "perimeter_in_m": 96.576416671596604, "length_x": 24.1458347504926, "length_y": 24.1464061831275 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.942272756333907, 0.0 ], [ -0.001373291015625, 80.942272756333907, 0.0 ], [ -0.001373291015625, 80.942056557241415, 0.0 ], [ -0.00274658203125, 80.942056557241415, 0.0 ], [ -0.00274658203125, 80.942272756333907, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 792, "task_x": 131070, "task_y": 25312, "task_z": 18, "center_y": 80.935243665105901, "area_in_sqm": 583.82119190692902, "perimeter_in_m": 96.649568696039196, "length_x": 24.1641271310822, "length_y": 24.1646989854612 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.93535184655974, 0.0 ], [ -0.001373291015625, 80.93535184655974, 0.0 ], [ -0.001373291015625, 80.93513548365199, 0.0 ], [ -0.00274658203125, 80.93513548365199, 0.0 ], [ -0.00274658203125, 80.93535184655974, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 793, "task_x": 131070, "task_y": 25344, "task_z": 18, "center_y": 80.928317429400494, "area_in_sqm": 584.70594203472103, "perimeter_in_m": 96.722774680110703, "length_x": 24.182433011907001, "length_y": 24.183005288315599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.928425692822529, 0.0 ], [ -0.001373291015625, 80.928425692822529, 0.0 ], [ -0.001373291015625, 80.928209165978544, 0.0 ], [ -0.00274658203125, 80.928209165978544, 0.0 ], [ -0.00274658203125, 80.928425692822529, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 794, "task_x": 131070, "task_y": 25376, "task_z": 18, "center_y": 80.921385945799599, "area_in_sqm": 585.592016220093, "perimeter_in_m": 96.796034657275399, "length_x": 24.2007524021097, "length_y": 24.201325100833799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.921494291250212, 0.0 ], [ -0.001373291015625, 80.921494291250212, 0.0 ], [ -0.001373291015625, 80.921277600348972, 0.0 ], [ -0.00274658203125, 80.921277600348972, 0.0 ], [ -0.00274658203125, 80.921494291250212, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 795, "task_x": 131070, "task_y": 25408, "task_z": 18, "center_y": 80.914449210428302, "area_in_sqm": 586.47941517829895, "perimeter_in_m": 96.869348668444204, "length_x": 24.2190853108381, "length_y": 24.219658432163602 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.91455763796813, 0.0 ], [ -0.001373291015625, 80.91455763796813, 0.0 ], [ -0.001373291015625, 80.914340782888488, 0.0 ], [ -0.00274658203125, 80.914340782888488, 0.0 ], [ -0.00274658203125, 80.91455763796813, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 796, "task_x": 131070, "task_y": 25440, "task_z": 18, "center_y": 80.907507219409297, "area_in_sqm": 587.36814141273499, "perimeter_in_m": 96.9427167421413, "length_x": 24.2374317472439, "length_y": 24.238005291456599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.90761572909895, 0.0 ], [ -0.001373291015625, 80.90761572909895, 0.0 ], [ -0.001373291015625, 80.907398709719715, 0.0 ], [ -0.00274658203125, 80.907398709719715, 0.0 ], [ -0.00274658203125, 80.90761572909895, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 797, "task_x": 131070, "task_y": 25472, "task_z": 18, "center_y": 80.900559968862694, "area_in_sqm": 588.25819647312198, "perimeter_in_m": 97.016138936286296, "length_x": 24.2557917204829, "length_y": 24.256365687869302 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.900668560762753, 0.0 ], [ -0.001373291015625, 80.900668560762753, 0.0 ], [ -0.001373291015625, 80.900451376962621, 0.0 ], [ -0.00274658203125, 80.900451376962621, 0.0 ], [ -0.00274658203125, 80.900668560762753, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 798, "task_x": 131070, "task_y": 25504, "task_z": 18, "center_y": 80.893607454905805, "area_in_sqm": 589.149582862854, "perimeter_in_m": 97.089615259948204, "length_x": 24.274165239715501, "length_y": 24.2747396305618 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.893716129076964, 0.0 ], [ -0.001373291015625, 80.893716129076964, 0.0 ], [ -0.001373291015625, 80.893498780734575, 0.0 ], [ -0.00274658203125, 80.893498780734575, 0.0 ], [ -0.00274658203125, 80.893716129076964, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 799, "task_x": 131070, "task_y": 25536, "task_z": 18, "center_y": 80.886649673653295, "area_in_sqm": 590.04230189323403, "perimeter_in_m": 97.163145774255597, "length_x": 24.292552314106398, "length_y": 24.293127128699201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.886758430156377, 0.0 ], [ -0.001373291015625, 80.886758430156377, 0.0 ], [ -0.001373291015625, 80.886540917150256, 0.0 ], [ -0.00274658203125, 80.886540917150256, 0.0 ], [ -0.00274658203125, 80.886758430156377, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 800, "task_x": 131070, "task_y": 25568, "task_z": 18, "center_y": 80.879686621217502, "area_in_sqm": 590.93635594844795, "perimeter_in_m": 97.236730500676401, "length_x": 24.310952952824199, "length_y": 24.311528191450002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.879795460113158, 0.0 ], [ -0.001373291015625, 80.879795460113158, 0.0 ], [ -0.001373291015625, 80.879577782321789, 0.0 ], [ -0.00274658203125, 80.879577782321789, 0.0 ], [ -0.00274658203125, 80.879795460113158, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 801, "task_x": 131070, "task_y": 25600, "task_z": 18, "center_y": 80.872718293707706, "area_in_sqm": 591.83174633979797, "perimeter_in_m": 97.310369478410493, "length_x": 24.3293671650421, "length_y": 24.329942827987601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.872827215056844, 0.0 ], [ -0.001373291015625, 80.872827215056844, 0.0 ], [ -0.001373291015625, 80.872609372358596, 0.0 ], [ -0.00274658203125, 80.872609372358596, 0.0 ], [ -0.00274658203125, 80.872827215056844, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 802, "task_x": 131070, "task_y": 25632, "task_z": 18, "center_y": 80.865744687230901, "area_in_sqm": 592.728475689888, "perimeter_in_m": 97.384062744521799, "length_x": 24.347794959937399, "length_y": 24.348371047489501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.865853691094344, 0.0 ], [ -0.001373291015625, 80.865853691094344, 0.0 ], [ -0.001373291015625, 80.865635683367515, 0.0 ], [ -0.00274658203125, 80.865635683367515, 0.0 ], [ -0.00274658203125, 80.865853691094344, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 803, "task_x": 131070, "task_y": 25664, "task_z": 18, "center_y": 80.858765797891294, "area_in_sqm": 593.62654519081104, "perimeter_in_m": 97.457810332910398, "length_x": 24.366236346691799, "length_y": 24.3668128591375 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.858874884329893, 0.0 ], [ -0.001373291015625, 80.858874884329893, 0.0 ], [ -0.001373291015625, 80.85865671145271, 0.0 ], [ -0.00274658203125, 80.85865671145271, 0.0 ], [ -0.00274658203125, 80.858874884329893, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 804, "task_x": 131070, "task_y": 25696, "task_z": 18, "center_y": 80.851781621790394, "area_in_sqm": 594.52595794200897, "perimeter_in_m": 97.531612290935001, "length_x": 24.384691334491201, "length_y": 24.3852682721176 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.851890790865127, 0.0 ], [ -0.001373291015625, 80.851890790865127, 0.0 ], [ -0.001373291015625, 80.851672452715718, 0.0 ], [ -0.00274658203125, 80.851672452715718, 0.0 ], [ -0.00274658203125, 80.851890790865127, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 805, "task_x": 131070, "task_y": 25728, "task_z": 18, "center_y": 80.844792155027207, "area_in_sqm": 595.42671477794602, "perimeter_in_m": 97.605468647192097, "length_x": 24.403159932525501, "length_y": 24.403737295619901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.844901406799039, 0.0 ], [ -0.001373291015625, 80.844901406799039, 0.0 ], [ -0.001373291015625, 80.844682903255446, 0.0 ], [ -0.00274658203125, 80.844682903255446, 0.0 ], [ -0.00274658203125, 80.844901406799039, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 806, "task_x": 131070, "task_y": 25760, "task_z": 18, "center_y": 80.837797393698096, "area_in_sqm": 596.32881832122803, "perimeter_in_m": 97.679379436313695, "length_x": 24.421642149989299, "length_y": 24.422219938839099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.837906728227964, 0.0 ], [ -0.001373291015625, 80.837906728227964, 0.0 ], [ -0.001373291015625, 80.837688059168158, 0.0 ], [ -0.00274658203125, 80.837688059168158, 0.0 ], [ -0.00274658203125, 80.837906728227964, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 807, "task_x": 131070, "task_y": 25792, "task_z": 18, "center_y": 80.830797333896598, "area_in_sqm": 597.23227059841201, "perimeter_in_m": 97.7533446986005, "length_x": 24.440137996081202, "length_y": 24.4407162109738 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.830906751245607, 0.0 ], [ -0.001373291015625, 80.830906751245607, 0.0 ], [ -0.001373291015625, 80.830687916547475, 0.0 ], [ -0.00274658203125, 80.830687916547475, 0.0 ], [ -0.00274658203125, 80.830906751245607, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 808, "task_x": 131070, "task_y": 25824, "task_z": 18, "center_y": 80.823791971713703, "area_in_sqm": 598.13707315921795, "perimeter_in_m": 97.827364473651699, "length_x": 24.458647480003901, "length_y": 24.4592261212272 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.823901471943017, 0.0 ], [ -0.001373291015625, 80.823901471943017, 0.0 ], [ -0.001373291015625, 80.823682471484361, 0.0 ], [ -0.00274658203125, 80.823682471484361, 0.0 ], [ -0.00274658203125, 80.823901471943017, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 809, "task_x": 131070, "task_y": 25856, "task_z": 18, "center_y": 80.816781303237903, "area_in_sqm": 599.04322791099503, "perimeter_in_m": 97.901438792233606, "length_x": 24.477170610964698, "length_y": 24.477749678806301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.816890886408615, 0.0 ], [ -0.001373291015625, 80.816890886408615, 0.0 ], [ -0.001373291015625, 80.816671720067163, 0.0 ], [ -0.00274658203125, 80.816671720067163, 0.0 ], [ -0.00274658203125, 80.816890886408615, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 810, "task_x": 131070, "task_y": 25888, "task_z": 18, "center_y": 80.809765324554903, "area_in_sqm": 599.95073652267502, "perimeter_in_m": 97.975567686168304, "length_x": 24.495707398175, "length_y": 24.4962868929228 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.809874990728161, 0.0 ], [ -0.001373291015625, 80.809874990728161, 0.0 ], [ -0.001373291015625, 80.809655658381558, 0.0 ], [ -0.00274658203125, 80.809655658381558, 0.0 ], [ -0.00274658203125, 80.809874990728161, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 811, "task_x": 131070, "task_y": 25920, "task_z": 18, "center_y": 80.802744031747693, "area_in_sqm": 600.85960245132401, "perimeter_in_m": 98.049751205352905, "length_x": 24.5142578508502, "length_y": 24.514837772792301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.802853780984805, 0.0 ], [ -0.001373291015625, 80.802853780984805, 0.0 ], [ -0.001373291015625, 80.802634282510581, 0.0 ], [ -0.00274658203125, 80.802634282510581, 0.0 ], [ -0.00274658203125, 80.802853780984805, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 812, "task_x": 131070, "task_y": 25952, "task_z": 18, "center_y": 80.795717420896807, "area_in_sqm": 601.76982665061996, "perimeter_in_m": 98.1239893865922, "length_x": 24.532821978210201, "length_y": 24.533402327634899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.795827253259006, 0.0 ], [ -0.001373291015625, 80.795827253259006, 0.0 ], [ -0.001373291015625, 80.795607588534637, 0.0 ], [ -0.00274658203125, 80.795607588534637, 0.0 ], [ -0.00274658203125, 80.795827253259006, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 813, "task_x": 131070, "task_y": 25984, "task_z": 18, "center_y": 80.788685488080006, "area_in_sqm": 602.68141019344296, "perimeter_in_m": 98.198282253949102, "length_x": 24.551399789479099, "length_y": 24.551980566674601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.788795403628583, 0.0 ], [ -0.001373291015625, 80.788795403628583, 0.0 ], [ -0.001373291015625, 80.788575572531471, 0.0 ], [ -0.00274658203125, 80.788575572531471, 0.0 ], [ -0.00274658203125, 80.788795403628583, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 814, "task_x": 131070, "task_y": 26016, "task_z": 18, "center_y": 80.781648229372493, "area_in_sqm": 603.59435641765594, "perimeter_in_m": 98.272629849910501, "length_x": 24.569991293885099, "length_y": 24.570572499139899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.781758228168727, 0.0 ], [ -0.001373291015625, 80.781758228168727, 0.0 ], [ -0.001373291015625, 80.781538230576189, 0.0 ], [ -0.00274658203125, 80.781538230576189, 0.0 ], [ -0.00274658203125, 80.781758228168727, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 815, "task_x": 131070, "task_y": 26048, "task_z": 18, "center_y": 80.774605640846602, "area_in_sqm": 604.50866711139702, "perimeter_in_m": 98.347032215550598, "length_x": 24.588596500660699, "length_y": 24.589178134263399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.774715722951967, 0.0 ], [ -0.001373291015625, 80.774715722951967, 0.0 ], [ -0.001373291015625, 80.774495558741194, 0.0 ], [ -0.00274658203125, 80.774495558741194, 0.0 ], [ -0.00274658203125, 80.774715722951967, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 816, "task_x": 131070, "task_y": 26080, "task_z": 18, "center_y": 80.767557718572206, "area_in_sqm": 605.42434382438705, "perimeter_in_m": 98.421489383813196, "length_x": 24.607215419042799, "length_y": 24.607797481281999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.767667884048151, 0.0 ], [ -0.001373291015625, 80.767667884048151, 0.0 ], [ -0.001373291015625, 80.767447553096304, 0.0 ], [ -0.00274658203125, 80.767447553096304, 0.0 ], [ -0.00274658203125, 80.767667884048151, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 817, "task_x": 131070, "task_y": 26112, "task_z": 18, "center_y": 80.760504458616595, "area_in_sqm": 606.34138870239303, "perimeter_in_m": 98.496001395790103, "length_x": 24.625848058272101, "length_y": 24.626430549436801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.760614707524525, 0.0 ], [ -0.001373291015625, 80.760614707524525, 0.0 ], [ -0.001373291015625, 80.76039420970865, 0.0 ], [ -0.00274658203125, 80.76039420970865, 0.0 ], [ -0.00274658203125, 80.760614707524525, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 818, "task_x": 131070, "task_y": 26144, "task_z": 18, "center_y": 80.753445857044198, "area_in_sqm": 607.25980389118195, "perimeter_in_m": 98.570568280900304, "length_x": 24.644494427594001, "length_y": 24.645077347973 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.753556189445632, 0.0 ], [ -0.001373291015625, 80.753556189445632, 0.0 ], [ -0.001373291015625, 80.753335524642722, 0.0 ], [ -0.00274658203125, 80.753335524642722, 0.0 ], [ -0.00274658203125, 80.753556189445632, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 819, "task_x": 131070, "task_y": 26176, "task_z": 18, "center_y": 80.746381909916906, "area_in_sqm": 608.17959082126595, "perimeter_in_m": 98.645190072822302, "length_x": 24.6631545362578, "length_y": 24.663737886140201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.74649232587339, 0.0 ], [ -0.001373291015625, 80.74649232587339, 0.0 ], [ -0.001373291015625, 80.746271493960336, 0.0 ], [ -0.00274658203125, 80.746271493960336, 0.0 ], [ -0.00274658203125, 80.74649232587339, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 820, "task_x": 131070, "task_y": 26208, "task_z": 18, "center_y": 80.739312613293905, "area_in_sqm": 609.10075211524997, "perimeter_in_m": 98.719866828243696, "length_x": 24.681828393516899, "length_y": 24.682412173192201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.739423112867044, 0.0 ], [ -0.001373291015625, 80.739423112867044, 0.0 ], [ -0.001373291015625, 80.739202113720651, 0.0 ], [ -0.00274658203125, 80.739202113720651, 0.0 ], [ -0.00274658203125, 80.739423112867044, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 821, "task_x": 131070, "task_y": 26240, "task_z": 18, "center_y": 80.732237963231697, "area_in_sqm": 610.02328920364403, "perimeter_in_m": 98.7945985674111, "length_x": 24.700516008629201, "length_y": 24.701100218386699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.732348546483195, 0.0 ], [ -0.001373291015625, 80.732348546483195, 0.0 ], [ -0.001373291015625, 80.732127379980184, 0.0 ], [ -0.00274658203125, 80.732127379980184, 0.0 ], [ -0.00274658203125, 80.732348546483195, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 822, "task_x": 131070, "task_y": 26272, "task_z": 18, "center_y": 80.725157955784297, "area_in_sqm": 610.94720470905304, "perimeter_in_m": 98.869385335348596, "length_x": 24.719217390856901, "length_y": 24.719802030985999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.725268622775772, 0.0 ], [ -0.001373291015625, 80.725268622775772, 0.0 ], [ -0.001373291015625, 80.72504728879278, 0.0 ], [ -0.00274658203125, 80.72504728879278, 0.0 ], [ -0.00274658203125, 80.725268622775772, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 823, "task_x": 131070, "task_y": 26304, "task_z": 18, "center_y": 80.718072587002794, "area_in_sqm": 611.87250077724502, "perimeter_in_m": 98.944227155497799, "length_x": 24.737932549465899, "length_y": 24.7385176202562 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.718183337796034, 0.0 ], [ -0.001373291015625, 80.718183337796034, 0.0 ], [ -0.001373291015625, 80.717961836209639, 0.0 ], [ -0.00274658203125, 80.717961836209639, 0.0 ], [ -0.00274658203125, 80.718183337796034, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 824, "task_x": 131070, "task_y": 26336, "task_z": 18, "center_y": 80.710981852935902, "area_in_sqm": 612.79917883872997, "perimeter_in_m": 99.019124083883696, "length_x": 24.7566614937267, "length_y": 24.757246995468201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.711092687592611, 0.0 ], [ -0.001373291015625, 80.711092687592611, 0.0 ], [ -0.001373291015625, 80.710871018279263, 0.0 ], [ -0.00274658203125, 80.710871018279263, 0.0 ], [ -0.00274658203125, 80.711092687592611, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 825, "task_x": 131070, "task_y": 26368, "task_z": 18, "center_y": 80.703885749629507, "area_in_sqm": 613.72724068164803, "perimeter_in_m": 99.094076148915207, "length_x": 24.775404232913999, "length_y": 24.775990165896399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.703996668211431, 0.0 ], [ -0.001373291015625, 80.703996668211431, 0.0 ], [ -0.001373291015625, 80.703774831047525, 0.0 ], [ -0.00274658203125, 80.703774831047525, 0.0 ], [ -0.00274658203125, 80.703996668211431, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 826, "task_x": 131070, "task_y": 26400, "task_z": 18, "center_y": 80.696784273126696, "area_in_sqm": 614.65668845176697, "perimeter_in_m": 99.169083374769997, "length_x": 24.794160776306398, "length_y": 24.794747140819702 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.696895275695766, 0.0 ], [ -0.001373291015625, 80.696895275695766, 0.0 ], [ -0.001373291015625, 80.696673270557639, 0.0 ], [ -0.00274658203125, 80.696673270557639, 0.0 ], [ -0.00274658203125, 80.696895275695766, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 827, "task_x": 131070, "task_y": 26432, "task_z": 18, "center_y": 80.689677419468197, "area_in_sqm": 615.58752512931801, "perimeter_in_m": 99.244145819261306, "length_x": 24.8129311331869, "length_y": 24.8135179295213 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.689788506086245, 0.0 ], [ -0.001373291015625, 80.689788506086245, 0.0 ], [ -0.001373291015625, 80.689566332850106, 0.0 ], [ -0.00274658203125, 80.689566332850106, 0.0 ], [ -0.00274658203125, 80.689788506086245, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 828, "task_x": 131070, "task_y": 26464, "task_z": 18, "center_y": 80.682565184691796, "area_in_sqm": 616.51975131034897, "perimeter_in_m": 99.319263511893993, "length_x": 24.831715312842601, "length_y": 24.832302541288399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.68267635542081, 0.0 ], [ -0.001373291015625, 80.68267635542081, 0.0 ], [ -0.001373291015625, 80.682454013962797, 0.0 ], [ -0.00274658203125, 80.682454013962797, 0.0 ], [ -0.00274658203125, 80.68267635542081, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 829, "task_x": 131070, "task_y": 26496, "task_z": 18, "center_y": 80.675447564832794, "area_in_sqm": 617.45337045192696, "perimeter_in_m": 99.394436485362604, "length_x": 24.850513324565, "length_y": 24.8511009854127 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.675558819734732, 0.0 ], [ -0.001373291015625, 80.675558819734732, 0.0 ], [ -0.001373291015625, 80.675336309930913, 0.0 ], [ -0.00274658203125, 80.675336309930913, 0.0 ], [ -0.00274658203125, 80.675558819734732, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 830, "task_x": 131070, "task_y": 26528, "task_z": 18, "center_y": 80.668324555923803, "area_in_sqm": 618.38838303089096, "perimeter_in_m": 99.469664786883101, "length_x": 24.869325177649301, "length_y": 24.8699132711895 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.668435895060639, 0.0 ], [ -0.001373291015625, 80.668435895060639, 0.0 ], [ -0.001373291015625, 80.668213216786981, 0.0 ], [ -0.00274658203125, 80.668213216786981, 0.0 ], [ -0.00274658203125, 80.668435895060639, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 831, "task_x": 131070, "task_y": 26560, "task_z": 18, "center_y": 80.661196153994695, "area_in_sqm": 619.32479214668297, "perimeter_in_m": 99.544948435011804, "length_x": 24.8881508813956, "length_y": 24.888739407918798 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.661307577428445, 0.0 ], [ -0.001373291015625, 80.661307577428445, 0.0 ], [ -0.001373291015625, 80.661084730560844, 0.0 ], [ -0.00274658203125, 80.661084730560844, 0.0 ], [ -0.00274658203125, 80.661307577428445, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 832, "task_x": 131070, "task_y": 26592, "task_z": 18, "center_y": 80.654062355072597, "area_in_sqm": 620.26260018348705, "perimeter_in_m": 99.620287479102601, "length_x": 24.9069904451074, "length_y": 24.9075794049044 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.65417386286542, 0.0 ], [ -0.001373291015625, 80.65417386286542, 0.0 ], [ -0.001373291015625, 80.653950847279702, 0.0 ], [ -0.00274658203125, 80.653950847279702, 0.0 ], [ -0.00274658203125, 80.65417386286542, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 833, "task_x": 131070, "task_y": 26624, "task_z": 18, "center_y": 80.646923155182094, "area_in_sqm": 621.201807498932, "perimeter_in_m": 99.695681961095303, "length_x": 24.925843878092699, "length_y": 24.926433271454599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.647034747396177, 0.0 ], [ -0.001373291015625, 80.647034747396177, 0.0 ], [ -0.001373291015625, 80.646811562968054, 0.0 ], [ -0.00274658203125, 80.646811562968054, 0.0 ], [ -0.00274658203125, 80.647034747396177, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 834, "task_x": 131070, "task_y": 26656, "task_z": 18, "center_y": 80.639778550345198, "area_in_sqm": 622.14241790771496, "perimeter_in_m": 99.771131920097801, "length_x": 24.944711189663899, "length_y": 24.9453010168817 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.639890227042613, 0.0 ], [ -0.001373291015625, 80.639890227042613, 0.0 ], [ -0.001373291015625, 80.639666873647712, 0.0 ], [ -0.00274658203125, 80.639666873647712, 0.0 ], [ -0.00274658203125, 80.639890227042613, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 835, "task_x": 131070, "task_y": 26688, "task_z": 18, "center_y": 80.632628536580896, "area_in_sqm": 623.08443212509201, "perimeter_in_m": 99.846637377523606, "length_x": 24.963592389137101, "length_y": 24.964182650502099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.632740297823972, 0.0 ], [ -0.001373291015625, 80.632740297823972, 0.0 ], [ -0.001373291015625, 80.632516775337876, 0.0 ], [ -0.00274658203125, 80.632516775337876, 0.0 ], [ -0.00274658203125, 80.632740297823972, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 836, "task_x": 131070, "task_y": 26720, "task_z": 18, "center_y": 80.625473109905897, "area_in_sqm": 624.02785301208496, "perimeter_in_m": 99.922198377457903, "length_x": 24.982487485833101, "length_y": 24.983078181636401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.625584955756821, 0.0 ], [ -0.001373291015625, 80.625584955756821, 0.0 ], [ -0.001373291015625, 80.625361264054987, 0.0 ], [ -0.00274658203125, 80.625361264054987, 0.0 ], [ -0.00274658203125, 80.625584955756821, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 837, "task_x": 131070, "task_y": 26752, "task_z": 18, "center_y": 80.618312266334001, "area_in_sqm": 624.97268259525299, "perimeter_in_m": 99.997814961157204, "length_x": 25.0013964890762, "length_y": 25.001987619609402 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.618424196855059, 0.0 ], [ -0.001373291015625, 80.618424196855059, 0.0 ], [ -0.001373291015625, 80.618200335812887, 0.0 ], [ -0.00274658203125, 80.618200335812887, 0.0 ], [ -0.00274658203125, 80.618424196855059, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 838, "task_x": 131070, "task_y": 26784, "task_z": 18, "center_y": 80.611146001876307, "area_in_sqm": 625.91892182826996, "perimeter_in_m": 100.073487155729, "length_x": 25.020319408195299, "length_y": 25.020910973749999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.61125801712987, 0.0 ], [ -0.001373291015625, 80.61125801712987, 0.0 ], [ -0.001373291015625, 80.611033986622672, 0.0 ], [ -0.00274658203125, 80.611033986622672, 0.0 ], [ -0.00274658203125, 80.61125801712987, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 839, "task_x": 131070, "task_y": 26816, "task_z": 18, "center_y": 80.603974312541297, "area_in_sqm": 626.86657416820503, "perimeter_in_m": 100.149215019439, "length_x": 25.039256252523501, "length_y": 25.039848253391401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.604086412589794, 0.0 ], [ -0.001373291015625, 80.604086412589794, 0.0 ], [ -0.001373291015625, 80.603862212492785, 0.0 ], [ -0.00274658203125, 80.603862212492785, 0.0 ], [ -0.00274658203125, 80.604086412589794, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 840, "task_x": 131070, "task_y": 26848, "task_z": 18, "center_y": 80.596797194334798, "area_in_sqm": 627.81564116478, "perimeter_in_m": 100.224998573395, "length_x": 25.0582070313977, "length_y": 25.058799467870699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.596909379240685, 0.0 ], [ -0.001373291015625, 80.596909379240685, 0.0 ], [ -0.001373291015625, 80.596685009428995, 0.0 ], [ -0.00274658203125, 80.596685009428995, 0.0 ], [ -0.00274658203125, 80.596909379240685, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 841, "task_x": 131070, "task_y": 26880, "task_z": 18, "center_y": 80.589614643260006, "area_in_sqm": 628.76612472534202, "perimeter_in_m": 100.30083784932199, "length_x": 25.077171754159199, "length_y": 25.077764626529198 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.589726913085698, 0.0 ], [ -0.001373291015625, 80.589726913085698, 0.0 ], [ -0.001373291015625, 80.589502373434399, 0.0 ], [ -0.00274658203125, 80.589502373434399, 0.0 ], [ -0.00274658203125, 80.589726913085698, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 842, "task_x": 131070, "task_y": 26912, "task_z": 18, "center_y": 80.582426655317306, "area_in_sqm": 629.71802639961197, "perimeter_in_m": 100.376732894898, "length_x": 25.096150430153401, "length_y": 25.096743738712501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.582539010125316, 0.0 ], [ -0.001373291015625, 80.582539010125316, 0.0 ], [ -0.001373291015625, 80.582314300509367, 0.0 ], [ -0.00274658203125, 80.582314300509367, 0.0 ], [ -0.00274658203125, 80.582539010125316, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 843, "task_x": 131070, "task_y": 26944, "task_z": 18, "center_y": 80.575233226504494, "area_in_sqm": 630.67134928703297, "perimeter_in_m": 100.452683749305, "length_x": 25.115143068729601, "length_y": 25.115736813770202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.575345666357308, 0.0 ], [ -0.001373291015625, 80.575345666357308, 0.0 ], [ -0.001373291015625, 80.57512078665161, 0.0 ], [ -0.00274658203125, 80.57512078665161, 0.0 ], [ -0.00274658203125, 80.575345666357308, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 844, "task_x": 131070, "task_y": 26976, "task_z": 18, "center_y": 80.568034352816497, "area_in_sqm": 631.62609481811501, "perimeter_in_m": 100.528690441466, "length_x": 25.134149679241698, "length_y": 25.134743861055899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.568146877776812, 0.0 ], [ -0.001373291015625, 80.568146877776812, 0.0 ], [ -0.001373291015625, 80.567921827856154, 0.0 ], [ -0.00274658203125, 80.567921827856154, 0.0 ], [ -0.00274658203125, 80.568146877776812, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 845, "task_x": 131070, "task_y": 27008, "task_z": 18, "center_y": 80.560830030245796, "area_in_sqm": 632.58226525783505, "perimeter_in_m": 100.60475301447499, "length_x": 25.153170271047198, "length_y": 25.1537648899278 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.560942640376226, 0.0 ], [ -0.001373291015625, 80.560942640376226, 0.0 ], [ -0.001373291015625, 80.560717420115338, 0.0 ], [ -0.00274658203125, 80.560717420115338, 0.0 ], [ -0.00274658203125, 80.560942640376226, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 846, "task_x": 131070, "task_y": 27040, "task_z": 18, "center_y": 80.553620254782103, "area_in_sqm": 633.53986275196098, "perimeter_in_m": 100.68087150966601, "length_x": 25.172204853508099, "length_y": 25.172799909747599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.553732950145303, 0.0 ], [ -0.001373291015625, 80.553732950145303, 0.0 ], [ -0.001373291015625, 80.553507559418819, 0.0 ], [ -0.00274658203125, 80.553507559418819, 0.0 ], [ -0.00274658203125, 80.553732950145303, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 847, "task_x": 131070, "task_y": 27072, "task_z": 18, "center_y": 80.546405022412301, "area_in_sqm": 634.49888920783997, "perimeter_in_m": 100.75704596058701, "length_x": 25.191253435990401, "length_y": 25.191848929881498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.546517803071055, 0.0 ], [ -0.001373291015625, 80.546517803071055, 0.0 ], [ -0.001373291015625, 80.54629224175352, 0.0 ], [ -0.00274658203125, 80.54629224175352, 0.0 ], [ -0.00274658203125, 80.546517803071055, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 848, "task_x": 131070, "task_y": 27104, "task_z": 18, "center_y": 80.5391843291208, "area_in_sqm": 635.45934665203094, "perimeter_in_m": 100.83327638239101, "length_x": 25.210316027864199, "length_y": 25.2109119596997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.539297195137834, 0.0 ], [ -0.001373291015625, 80.539297195137834, 0.0 ], [ -0.001373291015625, 80.539071463103738, 0.0 ], [ -0.00274658203125, 80.539071463103738, 0.0 ], [ -0.00274658203125, 80.539297195137834, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 849, "task_x": 131070, "task_y": 27136, "task_z": 18, "center_y": 80.531958170889197, "area_in_sqm": 636.42123723030102, "perimeter_in_m": 100.909562853251, "length_x": 25.229392638503601, "length_y": 25.229989008576698 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.532071122327324, 0.0 ], [ -0.001373291015625, 80.532071122327324, 0.0 ], [ -0.001373291015625, 80.531845219451029, 0.0 ], [ -0.00274658203125, 80.531845219451029, 0.0 ], [ -0.00274658203125, 80.532071122327324, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 850, "task_x": 131070, "task_y": 27168, "task_z": 18, "center_y": 80.524726543696403, "area_in_sqm": 637.38456261158001, "perimeter_in_m": 100.985905381254, "length_x": 25.248483277287001, "length_y": 25.2490800858908 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.524839580618462, 0.0 ], [ -0.001373291015625, 80.524839580618462, 0.0 ], [ -0.001373291015625, 80.524613506774273, 0.0 ], [ -0.00274658203125, 80.524613506774273, 0.0 ], [ -0.00274658203125, 80.524839580618462, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 851, "task_x": 131070, "task_y": 27200, "task_z": 18, "center_y": 80.517489443518599, "area_in_sqm": 638.34932541847195, "perimeter_in_m": 101.06230402087201, "length_x": 25.267587953596902, "length_y": 25.2681852010246 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.517602565987517, 0.0 ], [ -0.001373291015625, 80.517602565987517, 0.0 ], [ -0.001373291015625, 80.517376321049639, 0.0 ], [ -0.00274658203125, 80.517376321049639, 0.0 ], [ -0.00274658203125, 80.517602565987517, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 852, "task_x": 131070, "task_y": 27232, "task_z": 18, "center_y": 80.510246866329396, "area_in_sqm": 639.31552791595504, "perimeter_in_m": 101.138758788347, "length_x": 25.286706676819701, "length_y": 25.287304363364601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.510360074408069, 0.0 ], [ -0.001373291015625, 80.510360074408069, 0.0 ], [ -0.001373291015625, 80.510133658250652, 0.0 ], [ -0.00274658203125, 80.510133658250652, 0.0 ], [ -0.00274658203125, 80.510360074408069, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 853, "task_x": 131070, "task_y": 27264, "task_z": 18, "center_y": 80.502998808099505, "area_in_sqm": 640.28317141532898, "perimeter_in_m": 101.21526975056, "length_x": 25.305839456346099, "length_y": 25.306437582301999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.503112101850988, 0.0 ], [ -0.001373291015625, 80.503112101850988, 0.0 ], [ -0.001373291015625, 80.502885514348065, 0.0 ], [ -0.00274658203125, 80.502885514348065, 0.0 ], [ -0.00274658203125, 80.503112101850988, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 854, "task_x": 131070, "task_y": 27296, "task_z": 18, "center_y": 80.495745264797193, "area_in_sqm": 641.252258658409, "perimeter_in_m": 101.29183692341699, "length_x": 25.3249863015707, "length_y": 25.3255848672311 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.495858644284453, 0.0 ], [ -0.001373291015625, 80.495858644284453, 0.0 ], [ -0.001373291015625, 80.495631885309976, 0.0 ], [ -0.00274658203125, 80.495631885309976, 0.0 ], [ -0.00274658203125, 80.495858644284453, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 855, "task_x": 131070, "task_y": 27328, "task_z": 18, "center_y": 80.488486232387899, "area_in_sqm": 642.222791194916, "perimeter_in_m": 101.368460342657, "length_x": 25.344147221892499, "length_y": 25.344746227551099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.488599697673919, 0.0 ], [ -0.001373291015625, 80.488599697673919, 0.0 ], [ -0.001373291015625, 80.488372767101794, 0.0 ], [ -0.00274658203125, 80.488372767101794, 0.0 ], [ -0.00274658203125, 80.488599697673919, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 856, "task_x": 131070, "task_y": 27360, "task_z": 18, "center_y": 80.481221706834205, "area_in_sqm": 643.19477200508095, "perimeter_in_m": 101.44514005819001, "length_x": 25.3633222267142, "length_y": 25.363921672665001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.481335257982195, 0.0 ], [ -0.001373291015625, 80.481335257982195, 0.0 ], [ -0.001373291015625, 80.481108155686201, 0.0 ], [ -0.00274658203125, 80.481108155686201, 0.0 ], [ -0.00274658203125, 80.481335257982195, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 857, "task_x": 131070, "task_y": 27392, "task_z": 18, "center_y": 80.473951684096306, "area_in_sqm": 644.168202280998, "perimeter_in_m": 101.52187610294, "length_x": 25.382511325442898, "length_y": 25.383111211979902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.474065321169334, 0.0 ], [ -0.001373291015625, 80.474065321169334, 0.0 ], [ -0.001373291015625, 80.473838047023179, 0.0 ], [ -0.00274658203125, 80.473838047023179, 0.0 ], [ -0.00274658203125, 80.474065321169334, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 858, "task_x": 131070, "task_y": 27424, "task_z": 18, "center_y": 80.466676160131399, "area_in_sqm": 645.14308428764298, "perimeter_in_m": 101.598668514445, "length_x": 25.401714527489499, "length_y": 25.402314854907001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.466789883192718, 0.0 ], [ -0.001373291015625, 80.466789883192718, 0.0 ], [ -0.001373291015625, 80.46656243707001, 0.0 ], [ -0.00274658203125, 80.46656243707001, 0.0 ], [ -0.00274658203125, 80.466789883192718, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 859, "task_x": 131070, "task_y": 27456, "task_z": 18, "center_y": 80.459395130894094, "area_in_sqm": 646.11942112445797, "perimeter_in_m": 101.675517321391, "length_x": 25.420931842269301, "length_y": 25.421532610861401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.459508940006984, 0.0 ], [ -0.001373291015625, 80.459508940006984, 0.0 ], [ -0.001373291015625, 80.45928132178129, 0.0 ], [ -0.00274658203125, 80.45928132178129, 0.0 ], [ -0.00274658203125, 80.459508940006984, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 860, "task_x": 131070, "task_y": 27488, "task_z": 18, "center_y": 80.452108592336501, "area_in_sqm": 647.09721326828003, "perimeter_in_m": 101.752422577974, "length_x": 25.440163279201499, "length_y": 25.440764489262602 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.452222487564129, 0.0 ], [ -0.001373291015625, 80.452222487564129, 0.0 ], [ -0.001373291015625, 80.451994697108887, 0.0 ], [ -0.00274658203125, 80.451994697108887, 0.0 ], [ -0.00274658203125, 80.452222487564129, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 861, "task_x": 131070, "task_y": 27520, "task_z": 18, "center_y": 80.4448165404077, "area_in_sqm": 648.07646369934105, "perimeter_in_m": 101.829384313604, "length_x": 25.459408847709199, "length_y": 25.460010499533901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.444930521813376, 0.0 ], [ -0.001373291015625, 80.444930521813376, 0.0 ], [ -0.001373291015625, 80.444702559001968, 0.0 ], [ -0.00274658203125, 80.444702559001968, 0.0 ], [ -0.00274658203125, 80.444930521813376, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 862, "task_x": 131070, "task_y": 27552, "task_z": 18, "center_y": 80.437518971054104, "area_in_sqm": 649.05717444419895, "perimeter_in_m": 101.90640255877101, "length_x": 25.478668557219802, "length_y": 25.479270651102802 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.437633038701293, 0.0 ], [ -0.001373291015625, 80.437633038701293, 0.0 ], [ -0.001373291015625, 80.437404903407, 0.0 ], [ -0.00274658203125, 80.437404903407, 0.0 ], [ -0.00274658203125, 80.437633038701293, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 863, "task_x": 131070, "task_y": 27584, "task_z": 18, "center_y": 80.430215880219706, "area_in_sqm": 650.03934812545799, "perimeter_in_m": 101.983477361314, "length_x": 25.497942417164602, "length_y": 25.4985449534007 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.430330034171703, 0.0 ], [ -0.001373291015625, 80.430330034171703, 0.0 ], [ -0.001373291015625, 80.430101726267722, 0.0 ], [ -0.00274658203125, 80.430101726267722, 0.0 ], [ -0.00274658203125, 80.430330034171703, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 864, "task_x": 131070, "task_y": 27616, "task_z": 18, "center_y": 80.422907263845502, "area_in_sqm": 651.02298533916496, "perimeter_in_m": 102.06060876094401, "length_x": 25.517230436979201, "length_y": 25.517833415863301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.423021504165732, 0.0 ], [ -0.001373291015625, 80.423021504165732, 0.0 ], [ -0.001373291015625, 80.422793023525188, 0.0 ], [ -0.00274658203125, 80.422793023525188, 0.0 ], [ -0.00274658203125, 80.423021504165732, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 865, "task_x": 131070, "task_y": 27648, "task_z": 18, "center_y": 80.415593117869804, "area_in_sqm": 652.00809037685406, "perimeter_in_m": 102.13779678674901, "length_x": 25.536532626103, "length_y": 25.537136047930201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.415707444621802, 0.0 ], [ -0.001373291015625, 80.415707444621802, 0.0 ], [ -0.001373291015625, 80.415478791117721, 0.0 ], [ -0.00274658203125, 80.415478791117721, 0.0 ], [ -0.00274658203125, 80.415707444621802, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 866, "task_x": 131070, "task_y": 27680, "task_z": 18, "center_y": 80.408273438228306, "area_in_sqm": 652.99466323852505, "perimeter_in_m": 102.215041474919, "length_x": 25.555848993979499, "length_y": 25.556452859044899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.408387851475609, 0.0 ], [ -0.001373291015625, 80.408387851475609, 0.0 ], [ -0.001373291015625, 80.408159024980932, 0.0 ], [ -0.00274658203125, 80.408159024980932, 0.0 ], [ -0.00274658203125, 80.408387851475609, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 867, "task_x": 131070, "task_y": 27712, "task_z": 18, "center_y": 80.400948220853905, "area_in_sqm": 653.98270714283001, "perimeter_in_m": 102.292342874384, "length_x": 25.575179550056401, "length_y": 25.575783858655399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.401062720660136, 0.0 ], [ -0.001373291015625, 80.401062720660136, 0.0 ], [ -0.001373291015625, 80.400833721047732, 0.0 ], [ -0.00274658203125, 80.400833721047732, 0.0 ], [ -0.00274658203125, 80.401062720660136, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 868, "task_x": 131070, "task_y": 27744, "task_z": 18, "center_y": 80.393617461676996, "area_in_sqm": 654.97222435474396, "perimeter_in_m": 102.369701013907, "length_x": 25.594524303785199, "length_y": 25.595129056213199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.393732048105662, 0.0 ], [ -0.001373291015625, 80.393732048105662, 0.0 ], [ -0.001373291015625, 80.393502875248316, 0.0 ], [ -0.00274658203125, 80.393502875248316, 0.0 ], [ -0.00274658203125, 80.393732048105662, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 869, "task_x": 131070, "task_y": 27776, "task_z": 18, "center_y": 80.386281156624904, "area_in_sqm": 655.96321702003502, "perimeter_in_m": 102.44711593146999, "length_x": 25.613883264621599, "length_y": 25.614488461173998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.386395829739755, 0.0 ], [ -0.001373291015625, 80.386395829739755, 0.0 ], [ -0.001373291015625, 80.386166483510138, 0.0 ], [ -0.00274658203125, 80.386166483510138, 0.0 ], [ -0.00274658203125, 80.386395829739755, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 870, "task_x": 131070, "task_y": 27808, "task_z": 18, "center_y": 80.378939301622594, "area_in_sqm": 656.95568609237705, "perimeter_in_m": 102.524587664696, "length_x": 25.6332564420252, "length_y": 25.633862082997901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.379054061487224, 0.0 ], [ -0.001373291015625, 80.379054061487224, 0.0 ], [ -0.001373291015625, 80.378824541757979, 0.0 ], [ -0.00274658203125, 80.378824541757979, 0.0 ], [ -0.00274658203125, 80.379054061487224, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 871, "task_x": 131070, "task_y": 27840, "task_z": 18, "center_y": 80.371591892591994, "area_in_sqm": 657.94963538646698, "perimeter_in_m": 102.602116257955, "length_x": 25.652643845459899, "length_y": 25.653249931148501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.371706739270223, 0.0 ], [ -0.001373291015625, 80.371706739270223, 0.0 ], [ -0.001373291015625, 80.371477045913835, 0.0 ], [ -0.00274658203125, 80.371477045913835, 0.0 ], [ -0.00274658203125, 80.371706739270223, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 872, "task_x": 131070, "task_y": 27872, "task_z": 18, "center_y": 80.364238925452597, "area_in_sqm": 658.94506573677097, "perimeter_in_m": 102.679701741811, "length_x": 25.672045484393202, "length_y": 25.672652015093799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.364353859008133, 0.0 ], [ -0.001373291015625, 80.364353859008133, 0.0 ], [ -0.001373291015625, 80.36412399189706, 0.0 ], [ -0.00274658203125, 80.36412399189706, 0.0 ], [ -0.00274658203125, 80.364353859008133, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 873, "task_x": 131070, "task_y": 27904, "task_z": 18, "center_y": 80.3568803961209, "area_in_sqm": 659.94198036193802, "perimeter_in_m": 102.757344165958, "length_x": 25.691461368297102, "length_y": 25.692068344305699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.356995416617636, 0.0 ], [ -0.001373291015625, 80.356995416617636, 0.0 ], [ -0.001373291015625, 80.356765375624221, 0.0 ], [ -0.00274658203125, 80.356765375624221, 0.0 ], [ -0.00274658203125, 80.356995416617636, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 874, "task_x": 131070, "task_y": 27936, "task_z": 18, "center_y": 80.349516300510999, "area_in_sqm": 660.94038045406296, "perimeter_in_m": 102.835043550356, "length_x": 25.710891506647201, "length_y": 25.711498928259999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.349631408012698, 0.0 ], [ -0.001373291015625, 80.349631408012698, 0.0 ], [ -0.001373291015625, 80.349401193009214, 0.0 ], [ -0.00274658203125, 80.349401193009214, 0.0 ], [ -0.00274658203125, 80.349631408012698, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 875, "task_x": 131070, "task_y": 27968, "task_z": 18, "center_y": 80.342146634533904, "area_in_sqm": 661.94026875495899, "perimeter_in_m": 102.912799939042, "length_x": 25.730335908923301, "length_y": 25.7309437764366 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.342261829104558, 0.0 ], [ -0.001373291015625, 80.342261829104558, 0.0 ], [ -0.001373291015625, 80.342031439963179, 0.0 ], [ -0.00274658203125, 80.342031439963179, 0.0 ], [ -0.00274658203125, 80.342261829104558, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 876, "task_x": 131070, "task_y": 28000, "task_z": 18, "center_y": 80.334771394098098, "area_in_sqm": 662.94164681434597, "perimeter_in_m": 102.990613374305, "length_x": 25.749794584609301, "length_y": 25.7504028983194 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.334886675801712, 0.0 ], [ -0.001373291015625, 80.334886675801712, 0.0 ], [ -0.001373291015625, 80.334656112394541, 0.0 ], [ -0.00274658203125, 80.334656112394541, 0.0 ], [ -0.00274658203125, 80.334886675801712, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 877, "task_x": 131070, "task_y": 28032, "task_z": 18, "center_y": 80.327390575109504, "area_in_sqm": 663.94451713562, "perimeter_in_m": 103.068483890992, "length_x": 25.7692675431928, "length_y": 25.769876303396401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.327505944009943, 0.0 ], [ -0.001373291015625, 80.327505944009943, 0.0 ], [ -0.001373291015625, 80.327275206209009, 0.0 ], [ -0.00274658203125, 80.327275206209009, 0.0 ], [ -0.00274658203125, 80.327505944009943, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 878, "task_x": 131070, "task_y": 28064, "task_z": 18, "center_y": 80.320004173470906, "area_in_sqm": 664.948882341385, "perimeter_in_m": 103.146411530694, "length_x": 25.788754794165801, "length_y": 25.789364001159601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.32011962963233, 0.0 ], [ -0.001373291015625, 80.32011962963233, 0.0 ], [ -0.001373291015625, 80.319888717309539, 0.0 ], [ -0.00274658203125, 80.319888717309539, 0.0 ], [ -0.00274658203125, 80.32011962963233, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 879, "task_x": 131070, "task_y": 28096, "task_z": 18, "center_y": 80.312612185082799, "area_in_sqm": 665.95474374294304, "perimeter_in_m": 103.224396324738, "length_x": 25.808256347023999, "length_y": 25.8088660011047 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.312727728569186, 0.0 ], [ -0.001373291015625, 80.312727728569186, 0.0 ], [ -0.001373291015625, 80.312496641596383, 0.0 ], [ -0.00274658203125, 80.312496641596383, 0.0 ], [ -0.00274658203125, 80.312727728569186, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 880, "task_x": 131070, "task_y": 28128, "task_z": 18, "center_y": 80.305214605842593, "area_in_sqm": 666.96210396289803, "perimeter_in_m": 103.302438324642, "length_x": 25.827772211267, "length_y": 25.828382312731701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.305330236718135, 0.0 ], [ -0.001373291015625, 80.305330236718135, 0.0 ], [ -0.001373291015625, 80.305098974967066, 0.0 ], [ -0.00274658203125, 80.305098974967066, 0.0 ], [ -0.00274658203125, 80.305330236718135, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 881, "task_x": 131070, "task_y": 28160, "task_z": 18, "center_y": 80.297811431645201, "area_in_sqm": 667.97096550464596, "perimeter_in_m": 103.38053755573399, "length_x": 25.847302396398799, "length_y": 25.8479129455445 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.297927149974015, 0.0 ], [ -0.001373291015625, 80.297927149974015, 0.0 ], [ -0.001373291015625, 80.297695713316358, 0.0 ], [ -0.00274658203125, 80.297695713316358, 0.0 ], [ -0.00274658203125, 80.297927149974015, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 882, "task_x": 131070, "task_y": 28192, "task_z": 18, "center_y": 80.290402658382703, "area_in_sqm": 668.98132979869797, "perimeter_in_m": 103.458694045116, "length_x": 25.866846911927201, "length_y": 25.867457909050898 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.290518464228981, 0.0 ], [ -0.001373291015625, 80.290518464228981, 0.0 ], [ -0.001373291015625, 80.29028685253634, 0.0 ], [ -0.00274658203125, 80.29028685253634, 0.0 ], [ -0.00274658203125, 80.290518464228981, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 883, "task_x": 131070, "task_y": 28224, "task_z": 18, "center_y": 80.282988281944398, "area_in_sqm": 669.99319911003101, "perimeter_in_m": 103.536907857426, "length_x": 25.886405767363701, "length_y": 25.887017212762899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.283104175372443, 0.0 ], [ -0.001373291015625, 80.283104175372443, 0.0 ], [ -0.001373291015625, 80.282872388516296, 0.0 ], [ -0.00274658203125, 80.282872388516296, 0.0 ], [ -0.00274658203125, 80.283104175372443, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 884, "task_x": 131070, "task_y": 28256, "task_z": 18, "center_y": 80.275568298216996, "area_in_sqm": 671.00657629966702, "perimeter_in_m": 103.615179014478, "length_x": 25.905978972224101, "length_y": 25.906590866196101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.275684279291085, 0.0 ], [ -0.001373291015625, 80.275684279291085, 0.0 ], [ -0.001373291015625, 80.27545231714285, 0.0 ], [ -0.00274658203125, 80.27545231714285, 0.0 ], [ -0.00274658203125, 80.275684279291085, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 885, "task_x": 131070, "task_y": 28288, "task_z": 18, "center_y": 80.268142703084393, "area_in_sqm": 672.02146291732799, "perimeter_in_m": 103.69350756251301, "length_x": 25.925566536028001, "length_y": 25.926178878870498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.268258771868844, 0.0 ], [ -0.001373291015625, 80.268258771868844, 0.0 ], [ -0.001373291015625, 80.268026634299844, 0.0 ], [ -0.00274658203125, 80.268026634299844, 0.0 ], [ -0.00274658203125, 80.268258771868844, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 886, "task_x": 131070, "task_y": 28320, "task_z": 18, "center_y": 80.260711492427703, "area_in_sqm": 673.03786182403599, "perimeter_in_m": 103.771893524066, "length_x": 25.945168468299102, "length_y": 25.945781260309701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.260827648986904, 0.0 ], [ -0.001373291015625, 80.260827648986904, 0.0 ], [ -0.001373291015625, 80.260595335868402, 0.0 ], [ -0.00274658203125, 80.260595335868402, 0.0 ], [ -0.00274658203125, 80.260827648986904, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 887, "task_x": 131070, "task_y": 28352, "task_z": 18, "center_y": 80.253274662125307, "area_in_sqm": 674.05577409267403, "perimeter_in_m": 103.85033694964601, "length_x": 25.964784778565001, "length_y": 25.965398020041501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.253390906523734, 0.0 ], [ -0.001373291015625, 80.253390906523734, 0.0 ], [ -0.001373291015625, 80.25315841772688, 0.0 ], [ -0.00274658203125, 80.25315841772688, 0.0 ], [ -0.00274658203125, 80.253390906523734, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 888, "task_x": 131070, "task_y": 28384, "task_z": 18, "center_y": 80.245832208053002, "area_in_sqm": 675.07520282268501, "perimeter_in_m": 103.92883787702699, "length_x": 25.984415476357199, "length_y": 25.985029167597499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.245948540355087, 0.0 ], [ -0.001373291015625, 80.245948540355087, 0.0 ], [ -0.001373291015625, 80.245715875750946, 0.0 ], [ -0.00274658203125, 80.245715875750946, 0.0 ], [ -0.00274658203125, 80.245948540355087, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 889, "task_x": 131070, "task_y": 28416, "task_z": 18, "center_y": 80.238384126083702, "area_in_sqm": 676.09614932537102, "perimeter_in_m": 104.007396333719, "length_x": 26.004060571211301, "length_y": 26.0046747125133 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.238500546353919, 0.0 ], [ -0.001373291015625, 80.238500546353919, 0.0 ], [ -0.001373291015625, 80.238267705813499, 0.0 ], [ -0.00274658203125, 80.238267705813499, 0.0 ], [ -0.00274658203125, 80.238500546353919, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 890, "task_x": 131070, "task_y": 28448, "task_z": 18, "center_y": 80.230930412087602, "area_in_sqm": 677.11861681938205, "perimeter_in_m": 104.086012382647, "length_x": 26.023720072666599, "length_y": 26.024334664328801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.231046920390511, 0.0 ], [ -0.001373291015625, 80.231046920390511, 0.0 ], [ -0.001373291015625, 80.230813903784679, 0.0 ], [ -0.00274658203125, 80.230813903784679, 0.0 ], [ -0.00274658203125, 80.231046920390511, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 891, "task_x": 131070, "task_y": 28480, "task_z": 18, "center_y": 80.223471061932102, "area_in_sqm": 678.14260721206699, "perimeter_in_m": 104.164686036115, "length_x": 26.043393990266601, "length_y": 26.044009032587098 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.223587658332349, 0.0 ], [ -0.001373291015625, 80.223587658332349, 0.0 ], [ -0.001373291015625, 80.223354465531941, 0.0 ], [ -0.00274658203125, 80.223354465531941, 0.0 ], [ -0.00274658203125, 80.223587658332349, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 892, "task_x": 131070, "task_y": 28512, "task_z": 18, "center_y": 80.216006071482099, "area_in_sqm": 679.16812205314602, "perimeter_in_m": 104.2434173468, "length_x": 26.063082333558501, "length_y": 26.063697826835899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.2161227560442, 0.0 ], [ -0.001373291015625, 80.2161227560442, 0.0 ], [ -0.001373291015625, 80.21588938691994, 0.0 ], [ -0.00274658203125, 80.21588938691994, 0.0 ], [ -0.00274658203125, 80.2161227560442, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 893, "task_x": 131070, "task_y": 28544, "task_z": 18, "center_y": 80.208535436599306, "area_in_sqm": 680.19516468048096, "perimeter_in_m": 104.32220633657499, "length_x": 26.082785112093799, "length_y": 26.0834010566264 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.208652209388077, 0.0 ], [ -0.001373291015625, 80.208652209388077, 0.0 ], [ -0.001373291015625, 80.208418663810619, 0.0 ], [ -0.00274658203125, 80.208418663810619, 0.0 ], [ -0.00274658203125, 80.208652209388077, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 894, "task_x": 131070, "task_y": 28576, "task_z": 18, "center_y": 80.201059153143206, "area_in_sqm": 681.22373592853501, "perimeter_in_m": 104.40105305919499, "length_x": 26.102502335427499, "length_y": 26.103118731514101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.201176014223265, 0.0 ], [ -0.001373291015625, 80.201176014223265, 0.0 ], [ -0.001373291015625, 80.200942292063161, 0.0 ], [ -0.00274658203125, 80.200942292063161, 0.0 ], [ -0.00274658203125, 80.201176014223265, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 895, "task_x": 131070, "task_y": 28608, "task_z": 18, "center_y": 80.193577216970198, "area_in_sqm": 682.25383925437905, "perimeter_in_m": 104.479957550359, "length_x": 26.122234013118799, "length_y": 26.122850861058101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.193694166406289, 0.0 ], [ -0.001373291015625, 80.193694166406289, 0.0 ], [ -0.001373291015625, 80.193460267534007, 0.0 ], [ -0.00274658203125, 80.193460267534007, 0.0 ], [ -0.00274658203125, 80.193694166406289, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 896, "task_x": 131070, "task_y": 28640, "task_z": 18, "center_y": 80.186089623933896, "area_in_sqm": 683.28547561168705, "perimeter_in_m": 104.558919848964, "length_x": 26.1419801547307, "length_y": 26.142597454821701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.186206661790933, 0.0 ], [ -0.001373291015625, 80.186206661790933, 0.0 ], [ -0.001373291015625, 80.185972586076858, 0.0 ], [ -0.00274658203125, 80.185972586076858, 0.0 ], [ -0.00274658203125, 80.186206661790933, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 897, "task_x": 131070, "task_y": 28672, "task_z": 18, "center_y": 80.178596369885398, "area_in_sqm": 684.31864869594597, "perimeter_in_m": 104.637939987544, "length_x": 26.1617407698301, "length_y": 26.1623585223718 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.178713496228227, 0.0 ], [ -0.001373291015625, 80.178713496228227, 0.0 ], [ -0.001373291015625, 80.178479243542668, 0.0 ], [ -0.00274658203125, 80.178479243542668, 0.0 ], [ -0.00274658203125, 80.178713496228227, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 898, "task_x": 131070, "task_y": 28704, "task_z": 18, "center_y": 80.171097450673003, "area_in_sqm": 685.35335958003998, "perimeter_in_m": 104.717018001821, "length_x": 26.1815158679882, "length_y": 26.182134073279599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.171214665566453, 0.0 ], [ -0.001373291015625, 80.171214665566453, 0.0 ], [ -0.001373291015625, 80.170980235779609, 0.0 ], [ -0.00274658203125, 80.170980235779609, 0.0 ], [ -0.00274658203125, 80.171214665566453, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 899, "task_x": 131070, "task_y": 28736, "task_z": 18, "center_y": 80.163592862142096, "area_in_sqm": 686.38961064815499, "perimeter_in_m": 104.796153936026, "length_x": 26.201305458779402, "length_y": 26.201924117120001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.163710165651125, 0.0 ], [ -0.001373291015625, 80.163710165651125, 0.0 ], [ -0.001373291015625, 80.163475558633152, 0.0 ], [ -0.00274658203125, 80.163475558633152, 0.0 ], [ -0.00274658203125, 80.163710165651125, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 900, "task_x": 131070, "task_y": 28768, "task_z": 18, "center_y": 80.156082600135505, "area_in_sqm": 687.42740476131405, "perimeter_in_m": 104.875347834396, "length_x": 26.2211095517826, "length_y": 26.221728663471701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.156199992325043, 0.0 ], [ -0.001373291015625, 80.156199992325043, 0.0 ], [ -0.001373291015625, 80.155965207945968, 0.0 ], [ -0.00274658203125, 80.155965207945968, 0.0 ], [ -0.00274658203125, 80.156199992325043, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 901, "task_x": 131070, "task_y": 28800, "task_z": 18, "center_y": 80.148566660493103, "area_in_sqm": 688.46674323082004, "perimeter_in_m": 104.95459972347599, "length_x": 26.2409281565802, "length_y": 26.2415477219173 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.148684141428248, 0.0 ], [ -0.001373291015625, 80.148684141428248, 0.0 ], [ -0.001373291015625, 80.148449179558014, 0.0 ], [ -0.00274658203125, 80.148449179558014, 0.0 ], [ -0.00274658203125, 80.148684141428248, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 902, "task_x": 131070, "task_y": 28832, "task_z": 18, "center_y": 80.141045039052202, "area_in_sqm": 689.50762915611301, "perimeter_in_m": 105.03390964362301, "length_x": 26.2607612827588, "length_y": 26.261381302043599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.141162608797984, 0.0 ], [ -0.001373291015625, 80.141162608797984, 0.0 ], [ -0.001373291015625, 80.140927469306476, 0.0 ], [ -0.00274658203125, 80.140927469306476, 0.0 ], [ -0.00274658203125, 80.141162608797984, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 903, "task_x": 131070, "task_y": 28864, "task_z": 18, "center_y": 80.133517731647302, "area_in_sqm": 690.55006432533298, "perimeter_in_m": 105.113277633788, "length_x": 26.280608939908898, "length_y": 26.281229413441 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.133635390268765, 0.0 ], [ -0.001373291015625, 80.133635390268765, 0.0 ], [ -0.001373291015625, 80.133400073025783, 0.0 ], [ -0.00274658203125, 80.133400073025783, 0.0 ], [ -0.00274658203125, 80.133635390268765, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 904, "task_x": 131070, "task_y": 28896, "task_z": 18, "center_y": 80.125984734110006, "area_in_sqm": 691.59405088424705, "perimeter_in_m": 105.192703742839, "length_x": 26.300471137624498, "length_y": 26.301092065704001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.126102481672376, 0.0 ], [ -0.001373291015625, 80.126102481672376, 0.0 ], [ -0.001373291015625, 80.125866986547592, 0.0 ], [ -0.00274658203125, 80.125866986547592, 0.0 ], [ -0.00274658203125, 80.126102481672376, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 905, "task_x": 131070, "task_y": 28928, "task_z": 18, "center_y": 80.118446042269298, "area_in_sqm": 692.63959074020397, "perimeter_in_m": 105.272187994166, "length_x": 26.3203478855038, "length_y": 26.320969268430702 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.118563878837804, 0.0 ], [ -0.001373291015625, 80.118563878837804, 0.0 ], [ -0.001373291015625, 80.118328205700834, 0.0 ], [ -0.00274658203125, 80.118328205700834, 0.0 ], [ -0.00274658203125, 80.118563878837804, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 906, "task_x": 131070, "task_y": 28960, "task_z": 18, "center_y": 80.110901651951494, "area_in_sqm": 693.68668687343597, "perimeter_in_m": 105.35173043417799, "length_x": 26.3402391931489, "length_y": 26.340861031223199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.111019577591307, 0.0 ], [ -0.001373291015625, 80.111019577591307, 0.0 ], [ -0.001373291015625, 80.110783726311681, 0.0 ], [ -0.00274658203125, 80.110783726311681, 0.0 ], [ -0.00274658203125, 80.111019577591307, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 907, "task_x": 131070, "task_y": 28992, "task_z": 18, "center_y": 80.103351558979895, "area_in_sqm": 694.735341906548, "perimeter_in_m": 105.431331095833, "length_x": 26.3601450701657, "length_y": 26.3607673636877 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.103469573756342, 0.0 ], [ -0.001373291015625, 80.103469573756342, 0.0 ], [ -0.001373291015625, 80.103233544203505, 0.0 ], [ -0.00274658203125, 80.103233544203505, 0.0 ], [ -0.00274658203125, 80.103469573756342, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 908, "task_x": 131070, "task_y": 29024, "task_z": 18, "center_y": 80.095795759175303, "area_in_sqm": 695.78555631637596, "perimeter_in_m": 105.51099001741601, "length_x": 26.380065526163801, "length_y": 26.380688275433801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.095913863153669, 0.0 ], [ -0.001373291015625, 80.095913863153669, 0.0 ], [ -0.001373291015625, 80.095677655196965, 0.0 ], [ -0.00274658203125, 80.095677655196965, 0.0 ], [ -0.00274658203125, 80.095913863153669, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 909, "task_x": 131070, "task_y": 29056, "task_z": 18, "center_y": 80.088234248355604, "area_in_sqm": 696.83733403682697, "perimeter_in_m": 105.59070725172499, "length_x": 26.400000570756902, "length_y": 26.400623776075498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.088352441601216, 0.0 ], [ -0.001373291015625, 80.088352441601216, 0.0 ], [ -0.001373291015625, 80.088116055109907, 0.0 ], [ -0.00274658203125, 80.088116055109907, 0.0 ], [ -0.00274658203125, 80.088352441601216, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 910, "task_x": 131070, "task_y": 29088, "task_z": 18, "center_y": 80.080667022335803, "area_in_sqm": 697.89067673683201, "perimeter_in_m": 105.67048281794099, "length_x": 26.419950213562501, "length_y": 26.4205738752302 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.080785304914187, 0.0 ], [ -0.001373291015625, 80.080785304914187, 0.0 ], [ -0.001373291015625, 80.080548739757475, 0.0 ], [ -0.00274658203125, 80.080548739757475, 0.0 ], [ -0.00274658203125, 80.080785304914187, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 911, "task_x": 131070, "task_y": 29120, "task_z": 18, "center_y": 80.073094076928498, "area_in_sqm": 698.94558644294705, "perimeter_in_m": 105.750316767462, "length_x": 26.439914464201799, "length_y": 26.440538582519402 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.073212448905039, 0.0 ], [ -0.001373291015625, 80.073212448905039, 0.0 ], [ -0.001373291015625, 80.072975704951986, 0.0 ], [ -0.00274658203125, 80.072975704951986, 0.0 ], [ -0.00274658203125, 80.073212448905039, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 912, "task_x": 131070, "task_y": 29152, "task_z": 18, "center_y": 80.065515407943195, "area_in_sqm": 700.00206542015098, "perimeter_in_m": 105.830209128691, "length_x": 26.459893332300101, "length_y": 26.460517907568398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.065633869383404, 0.0 ], [ -0.001373291015625, 80.065633869383404, 0.0 ], [ -0.001373291015625, 80.065396946503057, 0.0 ], [ -0.00274658203125, 80.065396946503057, 0.0 ], [ -0.00274658203125, 80.065633869383404, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 913, "task_x": 131070, "task_y": 29184, "task_z": 18, "center_y": 80.057931011186795, "area_in_sqm": 701.06011688709305, "perimeter_in_m": 105.910159947023, "length_x": 26.4798868274863, "length_y": 26.480511860006299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.058049562156214, 0.0 ], [ -0.001373291015625, 80.058049562156214, 0.0 ], [ -0.001373291015625, 80.057812460217463, 0.0 ], [ -0.00274658203125, 80.057812460217463, 0.0 ], [ -0.00274658203125, 80.058049562156214, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 914, "task_x": 131070, "task_y": 29216, "task_z": 18, "center_y": 80.050340882463402, "area_in_sqm": 702.11974179744698, "perimeter_in_m": 105.990169259368, "length_x": 26.499894959393298, "length_y": 26.500520449466102 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.050459523027598, 0.0 ], [ -0.001373291015625, 80.050459523027598, 0.0 ], [ -0.001373291015625, 80.050222241899277, 0.0 ], [ -0.00274658203125, 80.050222241899277, 0.0 ], [ -0.00274658203125, 80.050459523027598, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 915, "task_x": 131070, "task_y": 29248, "task_z": 18, "center_y": 80.042745017574305, "area_in_sqm": 703.18094265461002, "perimeter_in_m": 106.070237101933, "length_x": 26.5199177376577, "length_y": 26.520543685584499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.04286374779889, 0.0 ], [ -0.001373291015625, 80.04286374779889, 0.0 ], [ -0.001373291015625, 80.042626287349776, 0.0 ], [ -0.00274658203125, 80.042626287349776, 0.0 ], [ -0.00274658203125, 80.04286374779889, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 916, "task_x": 131070, "task_y": 29280, "task_z": 18, "center_y": 80.035143412318106, "area_in_sqm": 704.24372231960297, "perimeter_in_m": 106.150363518727, "length_x": 26.539955171920202, "length_y": 26.5405815780023 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.035262232268721, 0.0 ], [ -0.001373291015625, 80.035262232268721, 0.0 ], [ -0.001373291015625, 80.035024592367449, 0.0 ], [ -0.00274658203125, 80.035024592367449, 0.0 ], [ -0.00274658203125, 80.035262232268721, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 917, "task_x": 131070, "task_y": 29312, "task_z": 18, "center_y": 80.027536062490498, "area_in_sqm": 705.30808317661297, "perimeter_in_m": 106.230548537121, "length_x": 26.560007271824901, "length_y": 26.560634136363699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.027654972232909, 0.0 ], [ -0.001373291015625, 80.027654972232909, 0.0 ], [ -0.001373291015625, 80.027417152748058, 0.0 ], [ -0.00274658203125, 80.027417152748058, 0.0 ], [ -0.00274658203125, 80.027654972232909, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 918, "task_x": 131070, "task_y": 29344, "task_z": 18, "center_y": 80.019922963884497, "area_in_sqm": 706.37402653694198, "perimeter_in_m": 106.31079221671099, "length_x": 26.580074047019899, "length_y": 26.5807013703172 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.020041963484488, 0.0 ], [ -0.001373291015625, 80.020041963484488, 0.0 ], [ -0.001373291015625, 80.019803964284549, 0.0 ], [ -0.00274658203125, 80.019803964284549, 0.0 ], [ -0.00274658203125, 80.020041963484488, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 919, "task_x": 131070, "task_y": 29376, "task_z": 18, "center_y": 80.012304112290394, "area_in_sqm": 707.44155514240299, "perimeter_in_m": 106.391094571435, "length_x": 26.600155507157499, "length_y": 26.600783289514901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.012423201813746, 0.0 ], [ -0.001373291015625, 80.012423201813746, 0.0 ], [ -0.001373291015625, 80.012185022767127, 0.0 ], [ -0.00274658203125, 80.012185022767127, 0.0 ], [ -0.00274658203125, 80.012423201813746, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 920, "task_x": 131070, "task_y": 29408, "task_z": 18, "center_y": 80.004679503495694, "area_in_sqm": 708.51067185401905, "perimeter_in_m": 106.47145564355699, "length_x": 26.620251661893299, "length_y": 26.620879903612298 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 80.00479868300819, 0.0 ], [ -0.001373291015625, 80.00479868300819, 0.0 ], [ -0.001373291015625, 80.004560323983199, 0.0 ], [ -0.00274658203125, 80.004560323983199, 0.0 ], [ -0.00274658203125, 80.00479868300819, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 921, "task_x": 131070, "task_y": 29440, "task_z": 18, "center_y": 79.997049133285003, "area_in_sqm": 709.58137822151195, "perimeter_in_m": 106.551875486676, "length_x": 26.640362520886701, "length_y": 26.640991222269498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.997168402852537, 0.0 ], [ -0.001373291015625, 79.997168402852537, 0.0 ], [ -0.001373291015625, 79.996929863717412, 0.0 ], [ -0.00274658203125, 79.996929863717412, 0.0 ], [ -0.00274658203125, 79.997168402852537, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 922, "task_x": 131070, "task_y": 29472, "task_z": 18, "center_y": 79.989412997440198, "area_in_sqm": 710.65367686748505, "perimeter_in_m": 106.632354134576, "length_x": 26.660488093801298, "length_y": 26.6611172551499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.989532357128752, 0.0 ], [ -0.001373291015625, 79.989532357128752, 0.0 ], [ -0.001373291015625, 79.989293637751615, 0.0 ], [ -0.00274658203125, 79.989293637751615, 0.0 ], [ -0.00274658203125, 79.989532357128752, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 923, "task_x": 131070, "task_y": 29504, "task_z": 18, "center_y": 79.981771091740498, "area_in_sqm": 711.72756993770599, "perimeter_in_m": 106.712891616448, "length_x": 26.6806283903042, "length_y": 26.681258011920701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.981890541615996, 0.0 ], [ -0.001373291015625, 79.981890541615996, 0.0 ], [ -0.001373291015625, 79.981651641864914, 0.0 ], [ -0.00274658203125, 79.981651641864914, 0.0 ], [ -0.00274658203125, 79.981890541615996, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 924, "task_x": 131070, "task_y": 29536, "task_z": 18, "center_y": 79.974123411962196, "area_in_sqm": 712.80305957794201, "perimeter_in_m": 106.793487975646, "length_x": 26.700783420066301, "length_y": 26.701413502253001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.974242952090663, 0.0 ], [ -0.001373291015625, 79.974242952090663, 0.0 ], [ -0.001373291015625, 79.974003871833617, 0.0 ], [ -0.00274658203125, 79.974003871833617, 0.0 ], [ -0.00274658203125, 79.974242952090663, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 925, "task_x": 131070, "task_y": 29568, "task_z": 18, "center_y": 79.9664699538788, "area_in_sqm": 713.88014841079701, "perimeter_in_m": 106.87414326403299, "length_x": 26.720953192762298, "length_y": 26.721583735821799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.966589584326385, 0.0 ], [ -0.001373291015625, 79.966589584326385, 0.0 ], [ -0.001373291015625, 79.966350323431229, 0.0 ], [ -0.00274658203125, 79.966350323431229, 0.0 ], [ -0.00274658203125, 79.966589584326385, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 926, "task_x": 131070, "task_y": 29600, "task_z": 18, "center_y": 79.9588107132613, "area_in_sqm": 714.95883917808499, "perimeter_in_m": 106.954857494885, "length_x": 26.741137718070799, "length_y": 26.741768722305402 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.958930434093986, 0.0 ], [ -0.001373291015625, 79.958930434093986, 0.0 ], [ -0.001373291015625, 79.958690992428529, 0.0 ], [ -0.00274658203125, 79.958690992428529, 0.0 ], [ -0.00274658203125, 79.958930434093986, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 927, "task_x": 131070, "task_y": 29632, "task_z": 18, "center_y": 79.951145685877506, "area_in_sqm": 716.03913259506203, "perimeter_in_m": 107.03563072079, "length_x": 26.7613370056742, "length_y": 26.7619684713864 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.951265497161515, 0.0 ], [ -0.001373291015625, 79.951265497161515, 0.0 ], [ -0.001373291015625, 79.951025874593455, 0.0 ], [ -0.00274658203125, 79.951025874593455, 0.0 ], [ -0.00274658203125, 79.951265497161515, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 928, "task_x": 131070, "task_y": 29664, "task_z": 18, "center_y": 79.943474867492696, "area_in_sqm": 717.12103259563401, "perimeter_in_m": 107.116462983361, "length_x": 26.781551065258299, "length_y": 26.7821829927511 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.943594769294236, 0.0 ], [ -0.001373291015625, 79.943594769294236, 0.0 ], [ -0.001373291015625, 79.943354965691199, 0.0 ], [ -0.00274658203125, 79.943354965691199, 0.0 ], [ -0.00274658203125, 79.943594769294236, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 929, "task_x": 131070, "task_y": 29696, "task_z": 18, "center_y": 79.935798253869393, "area_in_sqm": 718.20454072952305, "perimeter_in_m": 107.19735431324899, "length_x": 26.801779906513101, "length_y": 26.802412296089202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.935918246254644, 0.0 ], [ -0.001373291015625, 79.935918246254644, 0.0 ], [ -0.001373291015625, 79.935678261484156, 0.0 ], [ -0.00274658203125, 79.935678261484156, 0.0 ], [ -0.00274658203125, 79.935918246254644, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 930, "task_x": 131070, "task_y": 29728, "task_z": 18, "center_y": 79.928115840767205, "area_in_sqm": 719.28965950012196, "perimeter_in_m": 107.278304756686, "length_x": 26.822023539132001, "length_y": 26.822656391094601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.928235923802433, 0.0 ], [ -0.001373291015625, 79.928235923802433, 0.0 ], [ -0.001373291015625, 79.927995757731949, 0.0 ], [ -0.00274658203125, 79.927995757731949, 0.0 ], [ -0.00274658203125, 79.928235923802433, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 931, "task_x": 131070, "task_y": 29760, "task_z": 18, "center_y": 79.920427623942999, "area_in_sqm": 720.37639057636295, "perimeter_in_m": 107.35931434575301, "length_x": 26.8422819728126, "length_y": 26.842915287464599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.92054779769451, 0.0 ], [ -0.001373291015625, 79.92054779769451, 0.0 ], [ -0.001373291015625, 79.920307450191387, 0.0 ], [ -0.00274658203125, 79.920307450191387, 0.0 ], [ -0.00274658203125, 79.92054779769451, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 932, "task_x": 131070, "task_y": 29792, "task_z": 18, "center_y": 79.912733599150798, "area_in_sqm": 721.46473777294204, "perimeter_in_m": 107.440383128467, "length_x": 26.8625552172557, "length_y": 26.863188994900401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.912853863685001, 0.0 ], [ -0.001373291015625, 79.912853863685001, 0.0 ], [ -0.001373291015625, 79.912613334616509, 0.0 ], [ -0.00274658203125, 79.912613334616509, 0.0 ], [ -0.00274658203125, 79.912853863685001, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 933, "task_x": 131070, "task_y": 29824, "task_z": 18, "center_y": 79.905033762141898, "area_in_sqm": 722.55470204353298, "perimeter_in_m": 107.52151113834, "length_x": 26.882843282166199, "length_y": 26.883477523107 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.905154117525257, 0.0 ], [ -0.001373291015625, 79.905154117525257, 0.0 ], [ -0.001373291015625, 79.904913406758567, 0.0 ], [ -0.00274658203125, 79.904913406758567, 0.0 ], [ -0.00274658203125, 79.905154117525257, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 934, "task_x": 131070, "task_y": 29856, "task_z": 18, "center_y": 79.897328108664894, "area_in_sqm": 723.64628601074196, "perimeter_in_m": 107.60269840605901, "length_x": 26.9031461772529, "length_y": 26.9037808817931 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.897448554963802, 0.0 ], [ -0.001373291015625, 79.897448554963802, 0.0 ], [ -0.001373291015625, 79.897207662366029, 0.0 ], [ -0.00274658203125, 79.897207662366029, 0.0 ], [ -0.00274658203125, 79.897448554963802, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 935, "task_x": 131070, "task_y": 29888, "task_z": 18, "center_y": 79.889616634465497, "area_in_sqm": 724.73949253559101, "perimeter_in_m": 107.683944978952, "length_x": 26.9234639122277, "length_y": 26.924099080670999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.889737171746404, 0.0 ], [ -0.001373291015625, 79.889737171746404, 0.0 ], [ -0.001373291015625, 79.889496097184548, 0.0 ], [ -0.00274658203125, 79.889496097184548, 0.0 ], [ -0.00274658203125, 79.889737171746404, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 936, "task_x": 131070, "task_y": 29920, "task_z": 18, "center_y": 79.881899335286505, "area_in_sqm": 725.83432328700997, "perimeter_in_m": 107.765250896572, "length_x": 26.9437964968069, "length_y": 26.944432129456999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.882019963616017, 0.0 ], [ -0.001373291015625, 79.882019963616017, 0.0 ], [ -0.001373291015625, 79.881778706957007, 0.0 ], [ -0.00274658203125, 79.881778706957007, 0.0 ], [ -0.00274658203125, 79.882019963616017, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 937, "task_x": 131070, "task_y": 29952, "task_z": 18, "center_y": 79.8741762068681, "area_in_sqm": 726.930781126022, "perimeter_in_m": 107.84661618892, "length_x": 26.964143940710201, "length_y": 26.9647800378707 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.874296926312809, 0.0 ], [ -0.001373291015625, 79.874296926312809, 0.0 ], [ -0.001373291015625, 79.87405548742349, 0.0 ], [ -0.00274658203125, 79.87405548742349, 0.0 ], [ -0.00274658203125, 79.874296926312809, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 938, "task_x": 131070, "task_y": 29984, "task_z": 18, "center_y": 79.866447244947693, "area_in_sqm": 728.02886807918503, "perimeter_in_m": 107.928040904057, "length_x": 26.9845062536609, "length_y": 26.9851428156358 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.866568055574163, 0.0 ], [ -0.001373291015625, 79.866568055574163, 0.0 ], [ -0.001373291015625, 79.86632643432128, 0.0 ], [ -0.00274658203125, 79.86632643432128, 0.0 ], [ -0.00274658203125, 79.866568055574163, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 939, "task_x": 131070, "task_y": 30016, "task_z": 18, "center_y": 79.858712445259798, "area_in_sqm": 729.12858641147602, "perimeter_in_m": 108.009525081204, "length_x": 27.004883445386302, "length_y": 27.005520472479699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.858833347134677, 0.0 ], [ -0.001373291015625, 79.858833347134677, 0.0 ], [ -0.001373291015625, 79.858591543384861, 0.0 ], [ -0.00274658203125, 79.858591543384861, 0.0 ], [ -0.00274658203125, 79.858833347134677, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 940, "task_x": 131070, "task_y": 30048, "task_z": 18, "center_y": 79.850971803535998, "area_in_sqm": 730.22993850707996, "perimeter_in_m": 108.09106875958599, "length_x": 27.025275525617101, "length_y": 27.025913018133199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.851092796726107, 0.0 ], [ -0.001373291015625, 79.851092796726107, 0.0 ], [ -0.001373291015625, 79.850850810345946, 0.0 ], [ -0.00274658203125, 79.850850810345946, 0.0 ], [ -0.00274658203125, 79.851092796726107, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 941, "task_x": 131070, "task_y": 30080, "task_z": 18, "center_y": 79.843225315505507, "area_in_sqm": 731.33292663097404, "perimeter_in_m": 108.172671966043, "length_x": 27.045682504088099, "length_y": 27.046320462331099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.843346400077436, 0.0 ], [ -0.001373291015625, 79.843346400077436, 0.0 ], [ -0.001373291015625, 79.843104230933434, 0.0 ], [ -0.00274658203125, 79.843104230933434, 0.0 ], [ -0.00274658203125, 79.843346400077436, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 942, "task_x": 131070, "task_y": 30112, "task_z": 18, "center_y": 79.835472976894096, "area_in_sqm": 732.437554121017, "perimeter_in_m": 108.254334749732, "length_x": 27.066104390537301, "length_y": 27.066742814811601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.835594152914879, 0.0 ], [ -0.001373291015625, 79.835594152914879, 0.0 ], [ -0.001373291015625, 79.835351800873426, 0.0 ], [ -0.00274658203125, 79.835351800873426, 0.0 ], [ -0.00274658203125, 79.835594152914879, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 943, "task_x": 131070, "task_y": 30144, "task_z": 18, "center_y": 79.827714783425506, "area_in_sqm": 733.54382193088497, "perimeter_in_m": 108.33605714919, "length_x": 27.0865411947069, "length_y": 27.087180085317001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.827836050961807, 0.0 ], [ -0.001373291015625, 79.827836050961807, 0.0 ], [ -0.001373291015625, 79.827593515889191, 0.0 ], [ -0.00274658203125, 79.827593515889191, 0.0 ], [ -0.00274658203125, 79.827836050961807, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 944, "task_x": 131070, "task_y": 30176, "task_z": 18, "center_y": 79.819950730819997, "area_in_sqm": 734.6517329216, "perimeter_in_m": 108.41783919765901, "length_x": 27.1069929263425, "length_y": 27.107632283592899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.820072089938805, 0.0 ], [ -0.001373291015625, 79.820072089938805, 0.0 ], [ -0.001373291015625, 79.819829371701275, 0.0 ], [ -0.00274658203125, 79.819829371701275, 0.0 ], [ -0.00274658203125, 79.820072089938805, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 945, "task_x": 131070, "task_y": 30208, "task_z": 18, "center_y": 79.812180814795497, "area_in_sqm": 735.76128935813904, "perimeter_in_m": 108.499680935103, "length_x": 27.127459595193301, "length_y": 27.1280994193888 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.812302265563659, 0.0 ], [ -0.001373291015625, 79.812302265563659, 0.0 ], [ -0.001373291015625, 79.812059364027363, 0.0 ], [ -0.00274658203125, 79.812059364027363, 0.0 ], [ -0.00274658203125, 79.812302265563659, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 946, "task_x": 131070, "task_y": 30240, "task_z": 18, "center_y": 79.804405031066906, "area_in_sqm": 736.87249422073398, "perimeter_in_m": 108.58158241141599, "length_x": 27.147941211012299, "length_y": 27.148581502457699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.804526573551385, 0.0 ], [ -0.001373291015625, 79.804526573551385, 0.0 ], [ -0.001373291015625, 79.804283488582328, 0.0 ], [ -0.00274658203125, 79.804283488582328, 0.0 ], [ -0.00274658203125, 79.804526573551385, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 947, "task_x": 131070, "task_y": 30272, "task_z": 18, "center_y": 79.796623375346201, "area_in_sqm": 737.98534941673302, "perimeter_in_m": 108.663543657378, "length_x": 27.1684377835562, "length_y": 27.169078542556601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.796745009614114, 0.0 ], [ -0.001373291015625, 79.796745009614114, 0.0 ], [ -0.001373291015625, 79.796501741078288, 0.0 ], [ -0.00274658203125, 79.796501741078288, 0.0 ], [ -0.00274658203125, 79.796745009614114, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 948, "task_x": 131070, "task_y": 30304, "task_z": 18, "center_y": 79.788835843342895, "area_in_sqm": 739.09985697269406, "perimeter_in_m": 108.745564707669, "length_x": 27.188949322585302, "length_y": 27.1895905494457 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.788957569461246, 0.0 ], [ -0.001373291015625, 79.788957569461246, 0.0 ], [ -0.001373291015625, 79.788714117224515, 0.0 ], [ -0.00274658203125, 79.788714117224515, 0.0 ], [ -0.00274658203125, 79.788957569461246, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 949, "task_x": 131070, "task_y": 30336, "task_z": 18, "center_y": 79.781042430763407, "area_in_sqm": 740.216019392014, "perimeter_in_m": 108.82764560193399, "length_x": 27.2094758378636, "length_y": 27.2101175328891 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.781164248799342, 0.0 ], [ -0.001373291015625, 79.781164248799342, 0.0 ], [ -0.001373291015625, 79.780920612727499, 0.0 ], [ -0.00274658203125, 79.780920612727499, 0.0 ], [ -0.00274658203125, 79.781164248799342, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 950, "task_x": 131070, "task_y": 30368, "task_z": 18, "center_y": 79.773243133311595, "area_in_sqm": 741.33383989334095, "perimeter_in_m": 108.909786386912, "length_x": 27.2300173391586, "length_y": 27.2306595026546 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.773365043332177, 0.0 ], [ -0.001373291015625, 79.773365043332177, 0.0 ], [ -0.001373291015625, 79.773121223290914, 0.0 ], [ -0.00274658203125, 79.773121223290914, 0.0 ], [ -0.00274658203125, 79.773365043332177, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 951, "task_x": 131070, "task_y": 30400, "task_z": 18, "center_y": 79.765437946688195, "area_in_sqm": 742.453319549561, "perimeter_in_m": 108.991987095882, "length_x": 27.250573836241699, "length_y": 27.251216468513501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.765559948760696, 0.0 ], [ -0.001373291015625, 79.765559948760696, 0.0 ], [ -0.001373291015625, 79.765315944615622, 0.0 ], [ -0.00274658203125, 79.765315944615622, 0.0 ], [ -0.00274658203125, 79.765559948760696, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 952, "task_x": 131070, "task_y": 30432, "task_z": 18, "center_y": 79.757626866591394, "area_in_sqm": 743.57446193695102, "perimeter_in_m": 109.07424777099401, "length_x": 27.271145338887699, "length_y": 27.271788440240901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.757748960783033, 0.0 ], [ -0.001373291015625, 79.757748960783033, 0.0 ], [ -0.001373291015625, 79.75750477239967, 0.0 ], [ -0.00274658203125, 79.75750477239967, 0.0 ], [ -0.00274658203125, 79.757748960783033, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 953, "task_x": 131070, "task_y": 30464, "task_z": 18, "center_y": 79.749809888716399, "area_in_sqm": 744.69726848602295, "perimeter_in_m": 109.156568442714, "length_x": 27.291731856875298, "length_y": 27.2923754276155 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.749932075094549, 0.0 ], [ -0.001373291015625, 79.749932075094549, 0.0 ], [ -0.001373291015625, 79.749687702338321, 0.0 ], [ -0.00274658203125, 79.749687702338321, 0.0 ], [ -0.00274658203125, 79.749932075094549, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 954, "task_x": 131070, "task_y": 30496, "task_z": 18, "center_y": 79.741987008755899, "area_in_sqm": 745.82174229621899, "perimeter_in_m": 109.238949167718, "length_x": 27.3123333999864, "length_y": 27.312977440419498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.742109287387734, 0.0 ], [ -0.001373291015625, 79.742109287387734, 0.0 ], [ -0.001373291015625, 79.741864730123993, 0.0 ], [ -0.00274658203125, 79.741864730123993, 0.0 ], [ -0.00274658203125, 79.742109287387734, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 955, "task_x": 131070, "task_y": 30528, "task_z": 18, "center_y": 79.734158222399302, "area_in_sqm": 746.94788551330601, "perimeter_in_m": 109.32138996162, "length_x": 27.3329499780071, "length_y": 27.333594488438798 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.73428059335231, 0.0 ], [ -0.001373291015625, 79.73428059335231, 0.0 ], [ -0.001373291015625, 79.734035851446322, 0.0 ], [ -0.00274658203125, 79.734035851446322, 0.0 ], [ -0.00274658203125, 79.73428059335231, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 956, "task_x": 131070, "task_y": 30560, "task_z": 18, "center_y": 79.726323525333598, "area_in_sqm": 748.07570016384102, "perimeter_in_m": 109.403890881815, "length_x": 27.353581600726599, "length_y": 27.3542265814629 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.726445988675181, 0.0 ], [ -0.001373291015625, 79.726445988675181, 0.0 ], [ -0.001373291015625, 79.726201061992114, 0.0 ], [ -0.00274658203125, 79.726201061992114, 0.0 ], [ -0.00274658203125, 79.726445988675181, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 957, "task_x": 131070, "task_y": 30592, "task_z": 18, "center_y": 79.718482913242894, "area_in_sqm": 749.20518887042999, "perimeter_in_m": 109.486451958451, "length_x": 27.374228277938101, "length_y": 27.374873729285 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.718605469040426, 0.0 ], [ -0.001373291015625, 79.718605469040426, 0.0 ], [ -0.001373291015625, 79.718360357445363, 0.0 ], [ -0.00274658203125, 79.718360357445363, 0.0 ], [ -0.00274658203125, 79.718605469040426, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 958, "task_x": 131070, "task_y": 30624, "task_z": 18, "center_y": 79.7106363818083, "area_in_sqm": 750.33635437488601, "perimeter_in_m": 109.56907323406401, "length_x": 27.394890019437899, "length_y": 27.395535941701802 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.710759030129324, 0.0 ], [ -0.001373291015625, 79.710759030129324, 0.0 ], [ -0.001373291015625, 79.710513733487232, 0.0 ], [ -0.00274658203125, 79.710513733487232, 0.0 ], [ -0.00274658203125, 79.710759030129324, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 959, "task_x": 131070, "task_y": 30656, "task_z": 18, "center_y": 79.702783926708193, "area_in_sqm": 751.46919846534695, "perimeter_in_m": 109.651754752268, "length_x": 27.4155668350265, "length_y": 27.416213228513602 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.702906667620297, 0.0 ], [ -0.001373291015625, 79.702906667620297, 0.0 ], [ -0.001373291015625, 79.702661185796117, 0.0 ], [ -0.00274658203125, 79.702661185796117, 0.0 ], [ -0.00274658203125, 79.702906667620297, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 960, "task_x": 131070, "task_y": 30688, "task_z": 18, "center_y": 79.694925543618297, "area_in_sqm": 752.60372447967495, "perimeter_in_m": 109.734496540747, "length_x": 27.4362587345076, "length_y": 27.436905599524401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.695048377188996, 0.0 ], [ -0.001373291015625, 79.695048377188996, 0.0 ], [ -0.001373291015625, 79.694802710047526, 0.0 ], [ -0.00274658203125, 79.694802710047526, 0.0 ], [ -0.00274658203125, 79.695048377188996, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 961, "task_x": 131070, "task_y": 30720, "task_z": 18, "center_y": 79.687061228211206, "area_in_sqm": 753.73993396758999, "perimeter_in_m": 109.817298648085, "length_x": 27.456965727688701, "length_y": 27.4576130645417 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.68718415450823, 0.0 ], [ -0.001373291015625, 79.68718415450823, 0.0 ], [ -0.001373291015625, 79.686938301914211, 0.0 ], [ -0.00274658203125, 79.686938301914211, 0.0 ], [ -0.00274658203125, 79.68718415450823, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 962, "task_x": 131070, "task_y": 30752, "task_z": 18, "center_y": 79.679190976157003, "area_in_sqm": 754.87782907485996, "perimeter_in_m": 109.90016110587599, "length_x": 27.477687824380698, "length_y": 27.478335633376499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.679313995247995, 0.0 ], [ -0.001373291015625, 79.679313995247995, 0.0 ], [ -0.001373291015625, 79.679067957066067, 0.0 ], [ -0.00274658203125, 79.679067957066067, 0.0 ], [ -0.00274658203125, 79.679313995247995, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 963, "task_x": 131070, "task_y": 30784, "task_z": 18, "center_y": 79.671314783122796, "area_in_sqm": 756.01741349697102, "perimeter_in_m": 109.983083962004, "length_x": 27.4984250343981, "length_y": 27.4990733158435 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.671437895075456, 0.0 ], [ -0.001373291015625, 79.671437895075456, 0.0 ], [ -0.001373291015625, 79.671191671170192, 0.0 ], [ -0.00274658203125, 79.671191671170192, 0.0 ], [ -0.00274658203125, 79.671437895075456, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 964, "task_x": 131070, "task_y": 30816, "task_z": 18, "center_y": 79.663432644772897, "area_in_sqm": 757.15868890285503, "perimeter_in_m": 110.066067246667, "length_x": 27.519177367559202, "length_y": 27.519826121761 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.663555849654983, 0.0 ], [ -0.001373291015625, 79.663555849654983, 0.0 ], [ -0.001373291015625, 79.663309439890824, 0.0 ], [ -0.00274658203125, 79.663309439890824, 0.0 ], [ -0.00274658203125, 79.663555849654983, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 965, "task_x": 131070, "task_y": 30848, "task_z": 18, "center_y": 79.655544556768803, "area_in_sqm": 758.30165743827797, "perimeter_in_m": 110.149111008472, "length_x": 27.5399448336855, "length_y": 27.540594060950799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.655667854648101, 0.0 ], [ -0.001373291015625, 79.655667854648101, 0.0 ], [ -0.001373291015625, 79.655421258889419, 0.0 ], [ -0.00274658203125, 79.655421258889419, 0.0 ], [ -0.00274658203125, 79.655667854648101, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 966, "task_x": 131070, "task_y": 30880, "task_z": 18, "center_y": 79.647650514768998, "area_in_sqm": 759.44632148742699, "perimeter_in_m": 110.232215277978, "length_x": 27.560727442602399, "length_y": 27.5613771432383 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.647773905713493, 0.0 ], [ -0.001373291015625, 79.647773905713493, 0.0 ], [ -0.001373291015625, 79.647527123824588, 0.0 ], [ -0.00274658203125, 79.647527123824588, 0.0 ], [ -0.00274658203125, 79.647773905713493, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 967, "task_x": 131070, "task_y": 30912, "task_z": 18, "center_y": 79.639750514429593, "area_in_sqm": 760.59268403053295, "perimeter_in_m": 110.315380097437, "length_x": 27.5815252041386, "length_y": 27.582175378452298 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.639873998507056, 0.0 ], [ -0.001373291015625, 79.639873998507056, 0.0 ], [ -0.001373291015625, 79.639627030352131, 0.0 ], [ -0.00274658203125, 79.639627030352131, 0.0 ], [ -0.00274658203125, 79.639873998507056, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 968, "task_x": 131070, "task_y": 30944, "task_z": 18, "center_y": 79.631844551403404, "area_in_sqm": 761.74074649810802, "perimeter_in_m": 110.398605510878, "length_x": 27.6023381281266, "length_y": 27.602988776425398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.631968128681848, 0.0 ], [ -0.001373291015625, 79.631968128681848, 0.0 ], [ -0.001373291015625, 79.631720974125017, 0.0 ], [ -0.00274658203125, 79.631720974125017, 0.0 ], [ -0.00274658203125, 79.631968128681848, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 969, "task_x": 131070, "task_y": 30976, "task_z": 18, "center_y": 79.6239326213407, "area_in_sqm": 762.89051342010498, "perimeter_in_m": 110.48189154817, "length_x": 27.623166224402102, "length_y": 27.623817346993398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.624056291888095, 0.0 ], [ -0.001373291015625, 79.624056291888095, 0.0 ], [ -0.001373291015625, 79.623808950793361, 0.0 ], [ -0.00274658203125, 79.623808950793361, 0.0 ], [ -0.00274658203125, 79.624056291888095, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 970, "task_x": 131070, "task_y": 31008, "task_z": 18, "center_y": 79.616014719888796, "area_in_sqm": 764.04198527336098, "perimeter_in_m": 110.565238246635, "length_x": 27.6440095028047, "length_y": 27.644661099995901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.61613848377317, 0.0 ], [ -0.001373291015625, 79.61613848377317, 0.0 ], [ -0.001373291015625, 79.615890956004506, 0.0 ], [ -0.00274658203125, 79.615890956004506, 0.0 ], [ -0.00274658203125, 79.61613848377317, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 971, "task_x": 131070, "task_y": 31040, "task_z": 18, "center_y": 79.608090842692306, "area_in_sqm": 765.19516491889999, "perimeter_in_m": 110.648645671202, "length_x": 27.664867973177198, "length_y": 27.6655200452762 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.608214699981687, 0.0 ], [ -0.001373291015625, 79.608214699981687, 0.0 ], [ -0.001373291015625, 79.607966985402896, 0.0 ], [ -0.00274658203125, 79.607966985402896, 0.0 ], [ -0.00274658203125, 79.608214699981687, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 972, "task_x": 131070, "task_y": 31072, "task_z": 18, "center_y": 79.600160985392705, "area_in_sqm": 766.35005521774303, "perimeter_in_m": 110.73211382946801, "length_x": 27.6857416453662, "length_y": 27.686394192680702 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.600284936155333, 0.0 ], [ -0.001373291015625, 79.600284936155333, 0.0 ], [ -0.001373291015625, 79.600037034630205, 0.0 ], [ -0.00274658203125, 79.600037034630205, 0.0 ], [ -0.00274658203125, 79.600284936155333, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 973, "task_x": 131070, "task_y": 31104, "task_z": 18, "center_y": 79.592225143629193, "area_in_sqm": 767.50665819644905, "perimeter_in_m": 110.81564277469499, "length_x": 27.706630529221702, "length_y": 27.707283552059501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.592349187933067, 0.0 ], [ -0.001373291015625, 79.592349187933067, 0.0 ], [ -0.001373291015625, 79.592101099325262, 0.0 ], [ -0.00274658203125, 79.592101099325262, 0.0 ], [ -0.00274658203125, 79.592349187933067, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 974, "task_x": 131070, "task_y": 31136, "task_z": 18, "center_y": 79.584283313037503, "area_in_sqm": 768.66497683525097, "perimeter_in_m": 110.899232545643, "length_x": 27.727534634596999, "length_y": 27.728188133266201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.584407450950934, 0.0 ], [ -0.001373291015625, 79.584407450950934, 0.0 ], [ -0.001373291015625, 79.584159175124043, 0.0 ], [ -0.00274658203125, 79.584159175124043, 0.0 ], [ -0.00274658203125, 79.584407450950934, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 975, "task_x": 131070, "task_y": 31168, "task_z": 18, "center_y": 79.576335489250894, "area_in_sqm": 769.82501316070602, "perimeter_in_m": 110.98288318391, "length_x": 27.748453971349399, "length_y": 27.749107946157899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.576459720842195, 0.0 ], [ -0.001373291015625, 79.576459720842195, 0.0 ], [ -0.001373291015625, 79.576211257659693, 0.0 ], [ -0.00274658203125, 79.576211257659693, 0.0 ], [ -0.00274658203125, 79.576459720842195, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 976, "task_x": 131070, "task_y": 31200, "task_z": 18, "center_y": 79.568381667899899, "area_in_sqm": 770.98676955699898, "perimeter_in_m": 111.066594723314, "length_x": 27.769388549339102, "length_y": 27.770043000595301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.568505993237238, 0.0 ], [ -0.001373291015625, 79.568505993237238, 0.0 ], [ -0.001373291015625, 79.568257342562546, 0.0 ], [ -0.00274658203125, 79.568257342562546, 0.0 ], [ -0.00274658203125, 79.568505993237238, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 977, "task_x": 131070, "task_y": 31232, "task_z": 18, "center_y": 79.560421844611895, "area_in_sqm": 772.15024864673603, "perimeter_in_m": 111.15036720157001, "length_x": 27.790338378430398, "length_y": 27.790993306442399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.560546263763655, 0.0 ], [ -0.001373291015625, 79.560546263763655, 0.0 ], [ -0.001373291015625, 79.560297425460078, 0.0 ], [ -0.00274658203125, 79.560297425460078, 0.0 ], [ -0.00274658203125, 79.560546263763655, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 978, "task_x": 131070, "task_y": 31264, "task_z": 18, "center_y": 79.552456015011501, "area_in_sqm": 773.31545293331101, "perimeter_in_m": 111.23420067339499, "length_x": 27.8113034684905, "length_y": 27.811958873566901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.552580528046164, 0.0 ], [ -0.001373291015625, 79.552580528046164, 0.0 ], [ -0.001373291015625, 79.552331501976937, 0.0 ], [ -0.00274658203125, 79.552331501976937, 0.0 ], [ -0.00274658203125, 79.552580528046164, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 979, "task_x": 131070, "task_y": 31296, "task_z": 18, "center_y": 79.544484174720793, "area_in_sqm": 774.482384681702, "perimeter_in_m": 111.31809515740601, "length_x": 27.832283829390601, "length_y": 27.832939711839799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.5446087817067, 0.0 ], [ -0.001373291015625, 79.5446087817067, 0.0 ], [ -0.001373291015625, 79.544359567734958, 0.0 ], [ -0.00274658203125, 79.544359567734958, 0.0 ], [ -0.00274658203125, 79.5446087817067, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 980, "task_x": 131070, "task_y": 31328, "task_z": 18, "center_y": 79.536506319358693, "area_in_sqm": 775.65104675293003, "perimeter_in_m": 111.402050701958, "length_x": 27.853279471005099, "length_y": 27.853935831135701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.536631020364283, 0.0 ], [ -0.001373291015625, 79.536631020364283, 0.0 ], [ -0.001373291015625, 79.536381618353076, 0.0 ], [ -0.00274658203125, 79.536381618353076, 0.0 ], [ -0.00274658203125, 79.536631020364283, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 981, "task_x": 131070, "task_y": 31360, "task_z": 18, "center_y": 79.528522444541295, "area_in_sqm": 776.82144141197205, "perimeter_in_m": 111.48606734975201, "length_x": 27.874290403211699, "length_y": 27.874947241332499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.528647239635163, 0.0 ], [ -0.001373291015625, 79.528647239635163, 0.0 ], [ -0.001373291015625, 79.528397649447456, 0.0 ], [ -0.00274658203125, 79.528397649447456, 0.0 ], [ -0.00274658203125, 79.528647239635163, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 982, "task_x": 131070, "task_y": 31392, "task_z": 18, "center_y": 79.520532545882006, "area_in_sqm": 777.99357080459595, "perimeter_in_m": 111.57014514314299, "length_x": 27.895316635891799, "length_y": 27.895973952311799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.520657435132705, 0.0 ], [ -0.001373291015625, 79.520657435132705, 0.0 ], [ -0.001373291015625, 79.520407656631363, 0.0 ], [ -0.00274658203125, 79.520407656631363, 0.0 ], [ -0.00274658203125, 79.520657435132705, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 983, "task_x": 131070, "task_y": 31424, "task_z": 18, "center_y": 79.512536618991405, "area_in_sqm": 779.16743755340599, "perimeter_in_m": 111.65428410537299, "length_x": 27.916358178930501, "length_y": 27.917015973958499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.51266160246746, 0.0 ], [ -0.001373291015625, 79.51266160246746, 0.0 ], [ -0.001373291015625, 79.512411635515278, 0.0 ], [ -0.00274658203125, 79.512411635515278, 0.0 ], [ -0.00274658203125, 79.51266160246746, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 984, "task_x": 131070, "task_y": 31456, "task_z": 18, "center_y": 79.504534659477002, "area_in_sqm": 780.34304487705197, "perimeter_in_m": 111.738484290844, "length_x": 27.9374150422158, "length_y": 27.9380733161608 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.504659737247138, 0.0 ], [ -0.001373291015625, 79.504659737247138, 0.0 ], [ -0.001373291015625, 79.504409581706796, 0.0 ], [ -0.00274658203125, 79.504409581706796, 0.0 ], [ -0.00274658203125, 79.504659737247138, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 985, "task_x": 131070, "task_y": 31488, "task_z": 18, "center_y": 79.496526662943594, "area_in_sqm": 781.52039432525601, "perimeter_in_m": 111.822745729898, "length_x": 27.958487235639499, "length_y": 27.9591459888107 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.496651835076577, 0.0 ], [ -0.001373291015625, 79.496651835076577, 0.0 ], [ -0.001373291015625, 79.496401490810683, 0.0 ], [ -0.00274658203125, 79.496401490810683, 0.0 ], [ -0.00274658203125, 79.496651835076577, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 986, "task_x": 131070, "task_y": 31520, "task_z": 18, "center_y": 79.488512624993305, "area_in_sqm": 782.69948840141296, "perimeter_in_m": 111.907068481197, "length_x": 27.979574769096502, "length_y": 27.980234001803399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.488637891557786, 0.0 ], [ -0.001373291015625, 79.488637891557786, 0.0 ], [ -0.001373291015625, 79.488387358428866, 0.0 ], [ -0.00274658203125, 79.488387358428866, 0.0 ], [ -0.00274658203125, 79.488637891557786, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 987, "task_x": 131070, "task_y": 31552, "task_z": 18, "center_y": 79.480492541225203, "area_in_sqm": 783.88033032417297, "perimeter_in_m": 111.99145255172699, "length_x": 28.000677652485798, "length_y": 28.0013373650375 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.480617902289936, 0.0 ], [ -0.001373291015625, 79.480617902289936, 0.0 ], [ -0.001373291015625, 79.480367180160414, 0.0 ], [ -0.00274658203125, 79.480367180160414, 0.0 ], [ -0.00274658203125, 79.480617902289936, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 988, "task_x": 131070, "task_y": 31584, "task_z": 18, "center_y": 79.472466407235402, "area_in_sqm": 785.06292235851299, "perimeter_in_m": 112.07589800583099, "length_x": 28.021795895709001, "length_y": 28.022456088415101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.472591862869336, 0.0 ], [ -0.001373291015625, 79.472591862869336, 0.0 ], [ -0.001373291015625, 79.472340951601566, 0.0 ], [ -0.00274658203125, 79.472340951601566, 0.0 ], [ -0.00274658203125, 79.472591862869336, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 989, "task_x": 131070, "task_y": 31616, "task_z": 18, "center_y": 79.464434218617598, "area_in_sqm": 786.24726617336296, "perimeter_in_m": 112.160404879181, "length_x": 28.042929508671701, "length_y": 28.0435901818419 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.464559768889487, 0.0 ], [ -0.001373291015625, 79.464559768889487, 0.0 ], [ -0.001373291015625, 79.464308668345694, 0.0 ], [ -0.00274658203125, 79.464308668345694, 0.0 ], [ -0.00274658203125, 79.464559768889487, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 990, "task_x": 131070, "task_y": 31648, "task_z": 18, "center_y": 79.456395970962205, "area_in_sqm": 787.43336546421097, "perimeter_in_m": 112.244973204277, "length_x": 28.064078501282701, "length_y": 28.0647396552266 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.456521615940986, 0.0 ], [ -0.001373291015625, 79.456521615940986, 0.0 ], [ -0.001373291015625, 79.456270325983354, 0.0 ], [ -0.00274658203125, 79.456270325983354, 0.0 ], [ -0.00274658203125, 79.456521615940986, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 991, "task_x": 131070, "task_y": 31680, "task_z": 18, "center_y": 79.448351659856897, "area_in_sqm": 788.62122189998604, "perimeter_in_m": 112.32960301963401, "length_x": 28.0852428834542, "length_y": 28.085904518481598 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.448477399611619, 0.0 ], [ -0.001373291015625, 79.448477399611619, 0.0 ], [ -0.001373291015625, 79.448225920102203, 0.0 ], [ -0.00274658203125, 79.448225920102203, 0.0 ], [ -0.00274658203125, 79.448477399611619, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 992, "task_x": 131070, "task_y": 31712, "task_z": 18, "center_y": 79.4403012808867, "area_in_sqm": 789.81083869934105, "perimeter_in_m": 112.414294373339, "length_x": 28.1064226651018, "length_y": 28.107084781522602 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.440427115486287, 0.0 ], [ -0.001373291015625, 79.440427115486287, 0.0 ], [ -0.001373291015625, 79.440175446287071, 0.0 ], [ -0.00274658203125, 79.440175446287071, 0.0 ], [ -0.00274658203125, 79.440427115486287, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 993, "task_x": 131070, "task_y": 31744, "task_z": 18, "center_y": 79.432244829633504, "area_in_sqm": 791.002217531204, "perimeter_in_m": 112.49904730250699, "length_x": 28.1276178561445, "length_y": 28.128280454268701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.432370759147091, 0.0 ], [ -0.001373291015625, 79.432370759147091, 0.0 ], [ -0.001373291015625, 79.432118900119974, 0.0 ], [ -0.00274658203125, 79.432118900119974, 0.0 ], [ -0.00274658203125, 79.432370759147091, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 994, "task_x": 131070, "task_y": 31776, "task_z": 18, "center_y": 79.424182301676595, "area_in_sqm": 792.19536137580894, "perimeter_in_m": 112.583861840369, "length_x": 28.1488284665047, "length_y": 28.149491546642501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.424308326173232, 0.0 ], [ -0.001373291015625, 79.424308326173232, 0.0 ], [ -0.001373291015625, 79.424056277180028, 0.0 ], [ -0.00274658203125, 79.424056277180028, 0.0 ], [ -0.00274658203125, 79.424308326173232, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 995, "task_x": 131070, "task_y": 31808, "task_z": 18, "center_y": 79.416113692592305, "area_in_sqm": 793.39027297496796, "perimeter_in_m": 112.668738039278, "length_x": 28.170054506107999, "length_y": 28.170718068569698 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.4162398121411, 0.0 ], [ -0.001373291015625, 79.4162398121411, 0.0 ], [ -0.001373291015625, 79.415987573043495, 0.0 ], [ -0.00274658203125, 79.415987573043495, 0.0 ], [ -0.00274658203125, 79.4162398121411, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 996, "task_x": 131070, "task_y": 31840, "task_z": 18, "center_y": 79.408038997953994, "area_in_sqm": 794.58695435523998, "perimeter_in_m": 112.753675923271, "length_x": 28.191295984883801, "length_y": 28.191960029979601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.408165212624169, 0.0 ], [ -0.001373291015625, 79.408165212624169, 0.0 ], [ -0.001373291015625, 79.40791278328382, 0.0 ], [ -0.00274658203125, 79.40791278328382, 0.0 ], [ -0.00274658203125, 79.408165212624169, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 997, "task_x": 131070, "task_y": 31872, "task_z": 18, "center_y": 79.399958213332297, "area_in_sqm": 795.78540790081001, "perimeter_in_m": 112.838675541176, "length_x": 28.212552912764401, "length_y": 28.2132174408049 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.400084523193129, 0.0 ], [ -0.001373291015625, 79.400084523193129, 0.0 ], [ -0.001373291015625, 79.399831903471565, 0.0 ], [ -0.00274658203125, 79.399831903471565, 0.0 ], [ -0.00274658203125, 79.400084523193129, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 998, "task_x": 131070, "task_y": 31904, "task_z": 18, "center_y": 79.391871334295104, "area_in_sqm": 796.98563706874802, "perimeter_in_m": 112.923736933326, "length_x": 28.233825299685702, "length_y": 28.2344903109813 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.391997739415771, 0.0 ], [ -0.001373291015625, 79.391997739415771, 0.0 ], [ -0.001373291015625, 79.391744929174436, 0.0 ], [ -0.00274658203125, 79.391744929174436, 0.0 ], [ -0.00274658203125, 79.391997739415771, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 999, "task_x": 131070, "task_y": 31936, "task_z": 18, "center_y": 79.383778356407205, "area_in_sqm": 798.18764364719402, "perimeter_in_m": 113.008860136526, "length_x": 28.255113155587001, "length_y": 28.255778650448399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.383904856857029, 0.0 ], [ -0.001373291015625, 79.383904856857029, 0.0 ], [ -0.001373291015625, 79.383651855957282, 0.0 ], [ -0.00274658203125, 79.383651855957282, 0.0 ], [ -0.00274658203125, 79.383904856857029, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1000, "task_x": 131070, "task_y": 31968, "task_z": 18, "center_y": 79.375679275230596, "area_in_sqm": 799.39143061637901, "perimeter_in_m": 113.09404519112201, "length_x": 28.2764164904107, "length_y": 28.277082469148699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.37580587107901, 0.0 ], [ -0.001373291015625, 79.37580587107901, 0.0 ], [ -0.001373291015625, 79.37555267938211, 0.0 ], [ -0.00274658203125, 79.37555267938211, 0.0 ], [ -0.00274658203125, 79.37580587107901, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1001, "task_x": 131070, "task_y": 32000, "task_z": 18, "center_y": 79.367574086324495, "area_in_sqm": 800.59700000286102, "perimeter_in_m": 113.17929213818, "length_x": 28.297735314102699, "length_y": 28.298401777028101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.36770077764092, 0.0 ], [ -0.001373291015625, 79.36770077764092, 0.0 ], [ -0.001373291015625, 79.367447395008057, 0.0 ], [ -0.00274658203125, 79.367447395008057, 0.0 ], [ -0.00274658203125, 79.36770077764092, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1002, "task_x": 131070, "task_y": 32032, "task_z": 18, "center_y": 79.359462785245299, "area_in_sqm": 801.80435478687298, "perimeter_in_m": 113.26460101027401, "length_x": 28.319069636612301, "length_y": 28.3197365840361 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.359589572099125, 0.0 ], [ -0.001373291015625, 79.359589572099125, 0.0 ], [ -0.001373291015625, 79.359335998391387, 0.0 ], [ -0.00274658203125, 79.359335998391387, 0.0 ], [ -0.00274658203125, 79.359589572099125, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1003, "task_x": 131070, "task_y": 32064, "task_z": 18, "center_y": 79.351345367546301, "area_in_sqm": 803.01349687576305, "perimeter_in_m": 113.349971856271, "length_x": 28.340419467891799, "length_y": 28.341086900125202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.351472250007134, 0.0 ], [ -0.001373291015625, 79.351472250007134, 0.0 ], [ -0.001373291015625, 79.351218485085525, 0.0 ], [ -0.00274658203125, 79.351218485085525, 0.0 ], [ -0.00274658203125, 79.351472250007134, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1004, "task_x": 131070, "task_y": 32096, "task_z": 18, "center_y": 79.343221828778297, "area_in_sqm": 804.22442972660099, "perimeter_in_m": 113.435404706627, "length_x": 28.361784817897401, "length_y": 28.362452735251299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.343348806915586, 0.0 ], [ -0.001373291015625, 79.343348806915586, 0.0 ], [ -0.001373291015625, 79.343094850641023, 0.0 ], [ -0.00274658203125, 79.343094850641023, 0.0 ], [ -0.00274658203125, 79.343348806915586, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1005, "task_x": 131070, "task_y": 32128, "task_z": 18, "center_y": 79.335092164488898, "area_in_sqm": 805.43715476989701, "perimeter_in_m": 113.52089961057899, "length_x": 28.383165696587898, "length_y": 28.3838340993738 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.335219238372275, 0.0 ], [ -0.001373291015625, 79.335219238372275, 0.0 ], [ -0.001373291015625, 79.334965090605564, 0.0 ], [ -0.00274658203125, 79.334965090605564, 0.0 ], [ -0.00274658203125, 79.335219238372275, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1006, "task_x": 131070, "task_y": 32160, "task_z": 18, "center_y": 79.326956370223002, "area_in_sqm": 806.65167546272301, "perimeter_in_m": 113.606456606037, "length_x": 28.404562113926001, "length_y": 28.4052310024551 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.3270835399221, 0.0 ], [ -0.001373291015625, 79.3270835399221, 0.0 ], [ -0.001373291015625, 79.326829200523989, 0.0 ], [ -0.00274658203125, 79.326829200523989, 0.0 ], [ -0.00274658203125, 79.3270835399221, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1007, "task_x": 131070, "task_y": 32192, "task_z": 18, "center_y": 79.318814441522704, "area_in_sqm": 807.86799418926205, "perimeter_in_m": 113.69207572596, "length_x": 28.4259740798773, "length_y": 28.4266434544612 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.318941707107115, 0.0 ], [ -0.001373291015625, 79.318941707107115, 0.0 ], [ -0.001373291015625, 79.318687175938237, 0.0 ], [ -0.00274658203125, 79.318687175938237, 0.0 ], [ -0.00274658203125, 79.318941707107115, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1008, "task_x": 131070, "task_y": 32224, "task_z": 18, "center_y": 79.310666373927006, "area_in_sqm": 809.08611392974899, "perimeter_in_m": 113.77775701712, "length_x": 28.447401604410899, "length_y": 28.448071465361199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.310793735466504, 0.0 ], [ -0.001373291015625, 79.310793735466504, 0.0 ], [ -0.001373291015625, 79.310539012387423, 0.0 ], [ -0.00274658203125, 79.310539012387423, 0.0 ], [ -0.00274658203125, 79.310793735466504, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1009, "task_x": 131070, "task_y": 32256, "task_z": 18, "center_y": 79.302512162972207, "area_in_sqm": 810.306035876274, "perimeter_in_m": 113.86350051143, "length_x": 28.4688446974992, "length_y": 28.469515045127501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.302639620536581, 0.0 ], [ -0.001373291015625, 79.302639620536581, 0.0 ], [ -0.001373291015625, 79.302384705407761, 0.0 ], [ -0.00274658203125, 79.302384705407761, 0.0 ], [ -0.00274658203125, 79.302639620536581, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1010, "task_x": 131070, "task_y": 32288, "task_z": 18, "center_y": 79.294351804191706, "area_in_sqm": 811.52776360511803, "perimeter_in_m": 113.949306258863, "length_x": 28.490303369117601, "length_y": 28.490974203735799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.294479357850804, 0.0 ], [ -0.001373291015625, 79.294479357850804, 0.0 ], [ -0.001373291015625, 79.294224250532608, 0.0 ], [ -0.00274658203125, 79.294224250532608, 0.0 ], [ -0.00274658203125, 79.294479357850804, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1011, "task_x": 131070, "task_y": 32320, "task_z": 18, "center_y": 79.286185293116105, "area_in_sqm": 812.75129985809303, "perimeter_in_m": 114.035174295231, "length_x": 28.511777629245099, "length_y": 28.512448951164998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.286312942939759, 0.0 ], [ -0.001373291015625, 79.286312942939759, 0.0 ], [ -0.001373291015625, 79.286057643292466, 0.0 ], [ -0.00274658203125, 79.286057643292466, 0.0 ], [ -0.00274658203125, 79.286312942939759, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1012, "task_x": 131070, "task_y": 32352, "task_z": 18, "center_y": 79.278012625273007, "area_in_sqm": 813.976646900177, "perimeter_in_m": 114.121104654595, "length_x": 28.5332674878638, "length_y": 28.533939297397399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.278140371331133, 0.0 ], [ -0.001373291015625, 79.278140371331133, 0.0 ], [ -0.001373291015625, 79.277884879214952, 0.0 ], [ -0.00274658203125, 79.277884879214952, 0.0 ], [ -0.00274658203125, 79.278140371331133, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1013, "task_x": 131070, "task_y": 32384, "task_z": 18, "center_y": 79.269833796187299, "area_in_sqm": 815.203806877136, "perimeter_in_m": 114.207097384465, "length_x": 28.554772954958999, "length_y": 28.555445252418501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.269961638549788, 0.0 ], [ -0.001373291015625, 79.269961638549788, 0.0 ], [ -0.001373291015625, 79.269705953824811, 0.0 ], [ -0.00274658203125, 79.269705953824811, 0.0 ], [ -0.00274658203125, 79.269961638549788, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1014, "task_x": 131070, "task_y": 32416, "task_z": 18, "center_y": 79.261648801380801, "area_in_sqm": 816.43278348445904, "perimeter_in_m": 114.293152521385, "length_x": 28.5762940405194, "length_y": 28.576966826216999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.261776740117668, 0.0 ], [ -0.001373291015625, 79.261776740117668, 0.0 ], [ -0.001373291015625, 79.26152086264392, 0.0 ], [ -0.00274658203125, 79.26152086264392, 0.0 ], [ -0.00274658203125, 79.261776740117668, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1015, "task_x": 131070, "task_y": 32448, "task_z": 18, "center_y": 79.253457636372602, "area_in_sqm": 817.66357815265701, "perimeter_in_m": 114.379270101909, "length_x": 28.597830754536901, "length_y": 28.598504028784699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.253585671553893, 0.0 ], [ -0.001373291015625, 79.253585671553893, 0.0 ], [ -0.001373291015625, 79.253329601191297, 0.0 ], [ -0.00274658203125, 79.253329601191297, 0.0 ], [ -0.00274658203125, 79.253585671553893, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1016, "task_x": 131070, "task_y": 32480, "task_z": 18, "center_y": 79.245260296678893, "area_in_sqm": 818.89619362354301, "perimeter_in_m": 114.4654501764, "length_x": 28.619383107006499, "length_y": 28.6200568701171 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.245388428374667, 0.0 ], [ -0.001373291015625, 79.245388428374667, 0.0 ], [ -0.001373291015625, 79.245132164983048, 0.0 ], [ -0.00274658203125, 79.245132164983048, 0.0 ], [ -0.00274658203125, 79.245388428374667, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1017, "task_x": 131070, "task_y": 32512, "task_z": 18, "center_y": 79.237056777812896, "area_in_sqm": 820.13063335418701, "perimeter_in_m": 114.551692768674, "length_x": 28.640951107926501, "length_y": 28.641625360212299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.237185006093341, 0.0 ], [ -0.001373291015625, 79.237185006093341, 0.0 ], [ -0.001373291015625, 79.236928549532465, 0.0 ], [ -0.00274658203125, 79.236928549532465, 0.0 ], [ -0.00274658203125, 79.237185006093341, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1018, "task_x": 131070, "task_y": 32544, "task_z": 18, "center_y": 79.228847075285103, "area_in_sqm": 821.36689925193798, "perimeter_in_m": 114.637997931239, "length_x": 28.662534767298499, "length_y": 28.6632095090721 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.228975400220392, 0.0 ], [ -0.001373291015625, 79.228975400220392, 0.0 ], [ -0.001373291015625, 79.228718750349913, 0.0 ], [ -0.00274658203125, 79.228718750349913, 0.0 ], [ -0.00274658203125, 79.228975400220392, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1019, "task_x": 131070, "task_y": 32576, "task_z": 18, "center_y": 79.220631184603107, "area_in_sqm": 822.60499382018997, "perimeter_in_m": 114.724365698543, "length_x": 28.684134095127199, "length_y": 28.684809326701298 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.2207596062634, 0.0 ], [ -0.001373291015625, 79.2207596062634, 0.0 ], [ -0.001373291015625, 79.220502762942871, 0.0 ], [ -0.00274658203125, 79.220502762942871, 0.0 ], [ -0.00274658203125, 79.2207596062634, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1020, "task_x": 131070, "task_y": 32608, "task_z": 18, "center_y": 79.212409101271604, "area_in_sqm": 823.84491991996799, "perimeter_in_m": 114.810796110707, "length_x": 28.705749101420601, "length_y": 28.706424823107898 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.212537619727101, 0.0 ], [ -0.001373291015625, 79.212537619727101, 0.0 ], [ -0.001373291015625, 79.212280582816007, 0.0 ], [ -0.00274658203125, 79.212280582816007, 0.0 ], [ -0.00274658203125, 79.212537619727101, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1021, "task_x": 131070, "task_y": 32640, "task_z": 18, "center_y": 79.204180820792203, "area_in_sqm": 825.08668029308296, "perimeter_in_m": 114.897289222731, "length_x": 28.727379796189702, "length_y": 28.728056008303401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.204309436113334, 0.0 ], [ -0.001373291015625, 79.204309436113334, 0.0 ], [ -0.001373291015625, 79.204052205471044, 0.0 ], [ -0.00274658203125, 79.204052205471044, 0.0 ], [ -0.00274658203125, 79.204309436113334, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1022, "task_x": 131070, "task_y": 32672, "task_z": 18, "center_y": 79.195946338664001, "area_in_sqm": 826.33027696609497, "perimeter_in_m": 114.983845052449, "length_x": 28.749026189449001, "length_y": 28.749702892301801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.196075050921038, 0.0 ], [ -0.001373291015625, 79.196075050921038, 0.0 ], [ -0.001373291015625, 79.195817626406864, 0.0 ], [ -0.00274658203125, 79.195817626406864, 0.0 ], [ -0.00274658203125, 79.196075050921038, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1023, "task_x": 131070, "task_y": 32704, "task_z": 18, "center_y": 79.187705650382895, "area_in_sqm": 827.57571339607205, "perimeter_in_m": 115.070463639998, "length_x": 28.770688291215901, "length_y": 28.771365485120999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.187834459646311, 0.0 ], [ -0.001373291015625, 79.187834459646311, 0.0 ], [ -0.001373291015625, 79.187576841119466, 0.0 ], [ -0.00274658203125, 79.187576841119466, 0.0 ], [ -0.00274658203125, 79.187834459646311, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1024, "task_x": 131070, "task_y": 32736, "task_z": 18, "center_y": 79.179458751442098, "area_in_sqm": 828.82299160957302, "perimeter_in_m": 115.157145036858, "length_x": 28.7923661115111, "length_y": 28.793043796781699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.179587657782335, 0.0 ], [ -0.001373291015625, 79.179587657782335, 0.0 ], [ -0.001373291015625, 79.179329845101933, 0.0 ], [ -0.00274658203125, 79.179329845101933, 0.0 ], [ -0.00274658203125, 79.179587657782335, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1025, "task_x": 131070, "task_y": 32768, "task_z": 18, "center_y": 79.171205637331994, "area_in_sqm": 830.07211422920204, "perimeter_in_m": 115.243889285306, "length_x": 28.814059660358499, "length_y": 28.814737837307899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.171334640819438, 0.0 ], [ -0.001373291015625, 79.171334640819438, 0.0 ], [ -0.001373291015625, 79.171076633844493, 0.0 ], [ -0.00274658203125, 79.171076633844493, 0.0 ], [ -0.00274658203125, 79.171334640819438, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1026, "task_x": 131070, "task_y": 32800, "task_z": 18, "center_y": 79.162946303539798, "area_in_sqm": 831.323084235191, "perimeter_in_m": 115.33069641417499, "length_x": 28.835768947784999, "length_y": 28.836447616726598 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.163075404245063, 0.0 ], [ -0.001373291015625, 79.163075404245063, 0.0 ], [ -0.001373291015625, 79.162817202834503, 0.0 ], [ -0.00274658203125, 79.162817202834503, 0.0 ], [ -0.00274658203125, 79.163075404245063, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1027, "task_x": 131070, "task_y": 32832, "task_z": 18, "center_y": 79.154680745550095, "area_in_sqm": 832.57590401172604, "perimeter_in_m": 115.417566477078, "length_x": 28.857493983820898, "length_y": 28.858173145068299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.154809943543725, 0.0 ], [ -0.001373291015625, 79.154809943543725, 0.0 ], [ -0.001373291015625, 79.154551547556409, 0.0 ], [ -0.00274658203125, 79.154551547556409, 0.0 ], [ -0.00274658203125, 79.154809943543725, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1028, "task_x": 131070, "task_y": 32864, "task_z": 18, "center_y": 79.146408958844503, "area_in_sqm": 833.83057594299305, "perimeter_in_m": 115.50449950180401, "length_x": 28.879234778499399, "length_y": 28.879914432366 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.146538254197125, 0.0 ], [ -0.001373291015625, 79.146538254197125, 0.0 ], [ -0.001373291015625, 79.146279663491811, 0.0 ], [ -0.00274658203125, 79.146279663491811, 0.0 ], [ -0.00274658203125, 79.146538254197125, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1029, "task_x": 131070, "task_y": 32896, "task_z": 18, "center_y": 79.138130938901696, "area_in_sqm": 835.08710300922405, "perimeter_in_m": 115.591495526049, "length_x": 28.900991341857001, "length_y": 28.9016714886566 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.138260331684009, 0.0 ], [ -0.001373291015625, 79.138260331684009, 0.0 ], [ -0.001373291015625, 79.138001546119369, 0.0 ], [ -0.00274658203125, 79.138001546119369, 0.0 ], [ -0.00274658203125, 79.138260331684009, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1030, "task_x": 131070, "task_y": 32928, "task_z": 18, "center_y": 79.129846681197606, "area_in_sqm": 836.34548735618603, "perimeter_in_m": 115.678554601681, "length_x": 28.922763683933201, "length_y": 28.923444323979599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.129976171480294, 0.0 ], [ -0.001373291015625, 79.129976171480294, 0.0 ], [ -0.001373291015625, 79.129717190914889, 0.0 ], [ -0.00274658203125, 79.129717190914889, 0.0 ], [ -0.00274658203125, 79.129976171480294, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1031, "task_x": 131070, "task_y": 32960, "task_z": 18, "center_y": 79.121556181205094, "area_in_sqm": 837.60573279857601, "perimeter_in_m": 115.76567676322399, "length_x": 28.944551814770801, "length_y": 28.9452329483778 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.121685769058971, 0.0 ], [ -0.001373291015625, 79.121685769058971, 0.0 ], [ -0.001373291015625, 79.121426593351288, 0.0 ], [ -0.00274658203125, 79.121426593351288, 0.0 ], [ -0.00274658203125, 79.121685769058971, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1032, "task_x": 131070, "task_y": 32992, "task_z": 18, "center_y": 79.113259434394394, "area_in_sqm": 838.86784052848805, "perimeter_in_m": 115.85286204946701, "length_x": 28.966355744415502, "length_y": 28.967037371897099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.113389119890158, 0.0 ], [ -0.001373291015625, 79.113389119890158, 0.0 ], [ -0.001373291015625, 79.113129748898587, 0.0 ], [ -0.00274658203125, 79.113129748898587, 0.0 ], [ -0.00274658203125, 79.113389119890158, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1033, "task_x": 131070, "task_y": 33024, "task_z": 18, "center_y": 79.104956436232499, "area_in_sqm": 840.13181412220001, "perimeter_in_m": 115.940110500602, "length_x": 28.988175482916301, "length_y": 28.988857604586599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.105086219441077, 0.0 ], [ -0.001373291015625, 79.105086219441077, 0.0 ], [ -0.001373291015625, 79.104826653023935, 0.0 ], [ -0.00274658203125, 79.104826653023935, 0.0 ], [ -0.00274658203125, 79.105086219441077, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1034, "task_x": 131070, "task_y": 33056, "task_z": 18, "center_y": 79.096647182183801, "area_in_sqm": 841.39765608310699, "perimeter_in_m": 116.02742216003099, "length_x": 29.0100110403251, "length_y": 29.010693656498301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.096777063176077, 0.0 ], [ -0.001373291015625, 79.096777063176077, 0.0 ], [ -0.001373291015625, 79.096517301191568, 0.0 ], [ -0.00274658203125, 79.096517301191568, 0.0 ], [ -0.00274658203125, 79.096777063176077, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1035, "task_x": 131070, "task_y": 33088, "task_z": 18, "center_y": 79.088331667709696, "area_in_sqm": 842.66536879539501, "perimeter_in_m": 116.114797063716, "length_x": 29.031862426697099, "length_y": 29.032545537687501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.088461646556581, 0.0 ], [ -0.001373291015625, 79.088461646556581, 0.0 ], [ -0.001373291015625, 79.088201688862824, 0.0 ], [ -0.00274658203125, 79.088201688862824, 0.0 ], [ -0.00274658203125, 79.088461646556581, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1036, "task_x": 131070, "task_y": 33120, "task_z": 18, "center_y": 79.080009888268705, "area_in_sqm": 843.93495464324997, "perimeter_in_m": 116.202235258961, "length_x": 29.0537296520904, "length_y": 29.0544132582123 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.080139965041155, 0.0 ], [ -0.001373291015625, 79.080139965041155, 0.0 ], [ -0.001373291015625, 79.079879811496198, 0.0 ], [ -0.00274658203125, 79.079879811496198, 0.0 ], [ -0.00274658203125, 79.080139965041155, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1037, "task_x": 131070, "task_y": 33152, "task_z": 18, "center_y": 79.071681839316298, "area_in_sqm": 845.20641767978702, "perimeter_in_m": 116.289736771478, "length_x": 29.075612726566298, "length_y": 29.0762968281342 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.071812014085452, 0.0 ], [ -0.001373291015625, 79.071812014085452, 0.0 ], [ -0.001373291015625, 79.071551664547229, 0.0 ], [ -0.00274658203125, 79.071551664547229, 0.0 ], [ -0.00274658203125, 79.071812014085452, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1038, "task_x": 131070, "task_y": 33184, "task_z": 18, "center_y": 79.063347516305399, "area_in_sqm": 846.47975885868095, "perimeter_in_m": 116.377301652827, "length_x": 29.097511660189198, "length_y": 29.098196257517699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.063477789142226, 0.0 ], [ -0.001373291015625, 79.063477789142226, 0.0 ], [ -0.001373291015625, 79.0632172434686, 0.0 ], [ -0.00274658203125, 79.0632172434686, 0.0 ], [ -0.00274658203125, 79.063477789142226, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1039, "task_x": 131070, "task_y": 33216, "task_z": 18, "center_y": 79.055006914685706, "area_in_sqm": 847.75498151779198, "perimeter_in_m": 116.46492994608001, "length_x": 29.1194264630264, "length_y": 29.1201115564301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.055137285661374, 0.0 ], [ -0.001373291015625, 79.055137285661374, 0.0 ], [ -0.001373291015625, 79.054876543710094, 0.0 ], [ -0.00274658203125, 79.054876543710094, 0.0 ], [ -0.00274658203125, 79.055137285661374, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1040, "task_x": 131070, "task_y": 33248, "task_z": 18, "center_y": 79.046660029904203, "area_in_sqm": 849.03208875656105, "perimeter_in_m": 116.55262167767501, "length_x": 29.141357145148401, "length_y": 29.142042734941999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.046790499089852, 0.0 ], [ -0.001373291015625, 79.046790499089852, 0.0 ], [ -0.001373291015625, 79.046529560718596, 0.0 ], [ -0.00274658203125, 79.046529560718596, 0.0 ], [ -0.00274658203125, 79.046790499089852, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1041, "task_x": 131070, "task_y": 33280, "task_z": 18, "center_y": 79.038306857404905, "area_in_sqm": 850.31108272075699, "perimeter_in_m": 116.64037689989701, "length_x": 29.1633037166287, "length_y": 29.163989803126999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.038437424871745, 0.0 ], [ -0.001373291015625, 79.038437424871745, 0.0 ], [ -0.001373291015625, 79.038176289938079, 0.0 ], [ -0.00274658203125, 79.038176289938079, 0.0 ], [ -0.00274658203125, 79.038437424871745, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1042, "task_x": 131070, "task_y": 33312, "task_z": 18, "center_y": 79.029947392628898, "area_in_sqm": 851.591965675354, "perimeter_in_m": 116.728195648049, "length_x": 29.1852661875437, "length_y": 29.1859527710618 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.030078058448211, 0.0 ], [ -0.001373291015625, 79.030078058448211, 0.0 ], [ -0.001373291015625, 79.029816726809642, 0.0 ], [ -0.00274658203125, 79.029816726809642, 0.0 ], [ -0.00274658203125, 79.030078058448211, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1043, "task_x": 131070, "task_y": 33344, "task_z": 18, "center_y": 79.021581631014499, "area_in_sqm": 852.87474179267895, "perimeter_in_m": 116.81607796982701, "length_x": 29.207244567973, "length_y": 29.207931648826001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.021712395257566, 0.0 ], [ -0.001373291015625, 79.021712395257566, 0.0 ], [ -0.001373291015625, 79.021450866771474, 0.0 ], [ -0.00274658203125, 79.021450866771474, 0.0 ], [ -0.00274658203125, 79.021712395257566, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1044, "task_x": 131070, "task_y": 33376, "task_z": 18, "center_y": 79.013209567996995, "area_in_sqm": 854.15941226482403, "perimeter_in_m": 116.904023884257, "length_x": 29.2292388679993, "length_y": 29.229926446502098 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.013340430735155, 0.0 ], [ -0.001373291015625, 79.013340430735155, 0.0 ], [ -0.001373291015625, 79.013078705258877, 0.0 ], [ -0.00274658203125, 79.013078705258877, 0.0 ], [ -0.00274658203125, 79.013340430735155, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1045, "task_x": 131070, "task_y": 33408, "task_z": 18, "center_y": 79.004831199008905, "area_in_sqm": 855.44598042964901, "perimeter_in_m": 116.99203345745801, "length_x": 29.251249097708101, "length_y": 29.251937174176 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 79.004962160313482, 0.0 ], [ -0.001373291015625, 79.004962160313482, 0.0 ], [ -0.001373291015625, 79.004700237704228, 0.0 ], [ -0.00274658203125, 79.004700237704228, 0.0 ], [ -0.00274658203125, 79.004962160313482, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1046, "task_x": 131070, "task_y": 33440, "task_z": 18, "center_y": 78.996446519479605, "area_in_sqm": 856.73444902896904, "perimeter_in_m": 117.08010672368999, "length_x": 29.273275267187898, "length_y": 29.2739638419363 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.996577579422123, 0.0 ], [ -0.001373291015625, 78.996577579422123, 0.0 ], [ -0.001373291015625, 78.996315459537001, 0.0 ], [ -0.00274658203125, 78.996315459537001, 0.0 ], [ -0.00274658203125, 78.996577579422123, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1047, "task_x": 131070, "task_y": 33472, "task_z": 18, "center_y": 78.988055524835801, "area_in_sqm": 858.02482008933998, "perimeter_in_m": 117.16824370483199, "length_x": 29.295317386530598, "length_y": 29.2960064598748 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.988186683487754, 0.0 ], [ -0.001373291015625, 78.988186683487754, 0.0 ], [ -0.001373291015625, 78.987924366183819, 0.0 ], [ -0.00274658203125, 78.987924366183819, 0.0 ], [ -0.00274658203125, 78.988186683487754, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1048, "task_x": 131070, "task_y": 33504, "task_z": 18, "center_y": 78.979658210501199, "area_in_sqm": 859.31709718704201, "perimeter_in_m": 117.256444456043, "length_x": 29.317375465830398, "length_y": 29.318065038086001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.97978946793414, 0.0 ], [ -0.001373291015625, 78.97978946793414, 0.0 ], [ -0.001373291015625, 78.979526953068344, 0.0 ], [ -0.00274658203125, 78.979526953068344, 0.0 ], [ -0.00274658203125, 78.97978946793414, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1049, "task_x": 131070, "task_y": 33536, "task_z": 18, "center_y": 78.971254571896793, "area_in_sqm": 860.61128282546997, "perimeter_in_m": 117.34470902540799, "length_x": 29.339449515184999, "length_y": 29.3401395866676 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.971385928182173, 0.0 ], [ -0.001373291015625, 78.971385928182173, 0.0 ], [ -0.001373291015625, 78.971123215611357, 0.0 ], [ -0.00274658203125, 78.971123215611357, 0.0 ], [ -0.00274658203125, 78.971385928182173, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1050, "task_x": 131070, "task_y": 33568, "task_z": 18, "center_y": 78.962844604440306, "area_in_sqm": 861.90737950801804, "perimeter_in_m": 117.433037429865, "length_x": 29.361539544695098, "length_y": 29.362230115720301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.962976059649804, 0.0 ], [ -0.001373291015625, 78.962976059649804, 0.0 ], [ -0.001373291015625, 78.962713149230737, 0.0 ], [ -0.00274658203125, 78.962713149230737, 0.0 ], [ -0.00274658203125, 78.962976059649804, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1051, "task_x": 131070, "task_y": 33600, "task_z": 18, "center_y": 78.954428303546806, "area_in_sqm": 863.20538938045502, "perimeter_in_m": 117.52142972247201, "length_x": 29.383645564464, "length_y": 29.384336635347498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.954559857752102, 0.0 ], [ -0.001373291015625, 78.954559857752102, 0.0 ], [ -0.001373291015625, 78.954296749341466, 0.0 ], [ -0.00274658203125, 78.954296749341466, 0.0 ], [ -0.00274658203125, 78.954559857752102, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1052, "task_x": 131070, "task_y": 33632, "task_z": 18, "center_y": 78.946005664628402, "area_in_sqm": 864.50531661510502, "perimeter_in_m": 117.60988595699099, "length_x": 29.405767584598301, "length_y": 29.406459155656101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.946137317901218, 0.0 ], [ -0.001373291015625, 78.946137317901218, 0.0 ], [ -0.001373291015625, 78.945874011355585, 0.0 ], [ -0.00274658203125, 78.945874011355585, 0.0 ], [ -0.00274658203125, 78.946137317901218, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1053, "task_x": 131070, "task_y": 33664, "task_z": 18, "center_y": 78.937576683094306, "area_in_sqm": 865.80716240406002, "perimeter_in_m": 117.69840615144, "length_x": 29.427905615207202, "length_y": 29.4285976867553 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.937708435506394, 0.0 ], [ -0.001373291015625, 78.937708435506394, 0.0 ], [ -0.001373291015625, 78.937444930682261, 0.0 ], [ -0.00274658203125, 78.937444930682261, 0.0 ], [ -0.00274658203125, 78.937708435506394, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1054, "task_x": 131070, "task_y": 33696, "task_z": 18, "center_y": 78.929141354350904, "area_in_sqm": 867.11093020439102, "perimeter_in_m": 117.786990359955, "length_x": 29.450059666403298, "length_y": 29.450752238757801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.929273205973971, 0.0 ], [ -0.001373291015625, 78.929273205973971, 0.0 ], [ -0.001373291015625, 78.929009502727737, 0.0 ], [ -0.00274658203125, 78.929009502727737, 0.0 ], [ -0.00274658203125, 78.929273205973971, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1055, "task_x": 131070, "task_y": 33728, "task_z": 18, "center_y": 78.920699673801394, "area_in_sqm": 868.41662275791202, "perimeter_in_m": 117.875638620741, "length_x": 29.4722297483017, "length_y": 29.472922821778699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.92083162470739, 0.0 ], [ -0.001373291015625, 78.92083162470739, 0.0 ], [ -0.001373291015625, 78.920567722895356, 0.0 ], [ -0.00274658203125, 78.920567722895356, 0.0 ], [ -0.00274658203125, 78.92083162470739, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1056, "task_x": 131070, "task_y": 33760, "task_z": 18, "center_y": 78.912251636846406, "area_in_sqm": 869.72424256801605, "perimeter_in_m": 117.964350965995, "length_x": 29.494415871020799, "length_y": 29.4951094459364 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.912383687107166, 0.0 ], [ -0.001373291015625, 78.912383687107166, 0.0 ], [ -0.001373291015625, 78.912119586585561, 0.0 ], [ -0.00274658203125, 78.912119586585561, 0.0 ], [ -0.00274658203125, 78.912383687107166, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1057, "task_x": 131070, "task_y": 33792, "task_z": 18, "center_y": 78.903797238883399, "area_in_sqm": 871.03379249572799, "perimeter_in_m": 118.053127442074, "length_x": 29.516618044681501, "length_y": 29.517312121352202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.903929388570901, 0.0 ], [ -0.001373291015625, 78.903929388570901, 0.0 ], [ -0.001373291015625, 78.903665089195854, 0.0 ], [ -0.00274658203125, 78.903665089195854, 0.0 ], [ -0.00274658203125, 78.903929388570901, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1058, "task_x": 131070, "task_y": 33824, "task_z": 18, "center_y": 78.895336475307104, "area_in_sqm": 872.34527528286003, "perimeter_in_m": 118.14196808791699, "length_x": 29.538836279407999, "length_y": 29.539530858150101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.895468724493284, 0.0 ], [ -0.001373291015625, 78.895468724493284, 0.0 ], [ -0.001373291015625, 78.895204226120839, 0.0 ], [ -0.00274658203125, 78.895204226120839, 0.0 ], [ -0.00274658203125, 78.895468724493284, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1059, "task_x": 131070, "task_y": 33856, "task_z": 18, "center_y": 78.886869341509197, "area_in_sqm": 873.65869367122696, "perimeter_in_m": 118.23087295025, "length_x": 29.561070585327201, "length_y": 29.561765666457301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.887001690266132, 0.0 ], [ -0.001373291015625, 78.887001690266132, 0.0 ], [ -0.001373291015625, 78.886736992752219, 0.0 ], [ -0.00274658203125, 78.886736992752219, 0.0 ], [ -0.00274658203125, 78.887001690266132, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1060, "task_x": 131070, "task_y": 33888, "task_z": 18, "center_y": 78.878395832878496, "area_in_sqm": 874.97405028343201, "perimeter_in_m": 118.31984206234701, "length_x": 29.583320972568799, "length_y": 29.584016556403501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.878528281278278, 0.0 ], [ -0.001373291015625, 78.878528281278278, 0.0 ], [ -0.001373291015625, 78.878263384478771, 0.0 ], [ -0.00274658203125, 78.878263384478771, 0.0 ], [ -0.00274658203125, 78.878528281278278, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1061, "task_x": 131070, "task_y": 33920, "task_z": 18, "center_y": 78.869915944800994, "area_in_sqm": 876.29134798049904, "perimeter_in_m": 118.408875463518, "length_x": 29.605587451265698, "length_y": 29.606283538121701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.870048492915714, 0.0 ], [ -0.001373291015625, 78.870048492915714, 0.0 ], [ -0.001373291015625, 78.869783396686358, 0.0 ], [ -0.00274658203125, 78.869783396686358, 0.0 ], [ -0.00274658203125, 78.870048492915714, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1062, "task_x": 131070, "task_y": 33952, "task_z": 18, "center_y": 78.861429672659696, "area_in_sqm": 877.61058938503299, "perimeter_in_m": 118.497973202273, "length_x": 29.6278700315533, "length_y": 29.6285666217474 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.861562320561461, 0.0 ], [ -0.001373291015625, 78.861562320561461, 0.0 ], [ -0.001373291015625, 78.861297024757931, 0.0 ], [ -0.00274658203125, 78.861297024757931, 0.0 ], [ -0.00274658203125, 78.861562320561461, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1063, "task_x": 131070, "task_y": 33984, "task_z": 18, "center_y": 78.852937011834598, "area_in_sqm": 878.93177711963699, "perimeter_in_m": 118.58713530589201, "length_x": 29.6501687235702, "length_y": 29.650865817419199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.853069759595641, 0.0 ], [ -0.001373291015625, 78.853069759595641, 0.0 ], [ -0.001373291015625, 78.852804264073541, 0.0 ], [ -0.00274658203125, 78.852804264073541, 0.0 ], [ -0.00274658203125, 78.853069759595641, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1064, "task_x": 131070, "task_y": 34016, "task_z": 18, "center_y": 78.844437957702894, "area_in_sqm": 880.25491428375199, "perimeter_in_m": 118.676361826438, "length_x": 29.672483537457701, "length_y": 29.6731811352786 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.844570805395477, 0.0 ], [ -0.001373291015625, 78.844570805395477, 0.0 ], [ -0.001373291015625, 78.844305110010282, 0.0 ], [ -0.00274658203125, 78.844305110010282, 0.0 ], [ -0.00274658203125, 78.844570805395477, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1065, "task_x": 131070, "task_y": 34048, "task_z": 18, "center_y": 78.835932505638795, "area_in_sqm": 881.58000349998497, "perimeter_in_m": 118.765652800054, "length_x": 29.694814483359899, "length_y": 29.6955125854697 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.836065453335266, 0.0 ], [ -0.001373291015625, 78.836065453335266, 0.0 ], [ -0.001373291015625, 78.83579955794238, 0.0 ], [ -0.00274658203125, 78.83579955794238, 0.0 ], [ -0.00274658203125, 78.836065453335266, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1066, "task_x": 131070, "task_y": 34080, "task_z": 18, "center_y": 78.827420651013696, "area_in_sqm": 882.90704774856601, "perimeter_in_m": 118.85500826713201, "length_x": 29.717161571423699, "length_y": 29.717860178139599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.827553698786375, 0.0 ], [ -0.001373291015625, 78.827553698786375, 0.0 ], [ -0.001373291015625, 78.827287603241103, 0.0 ], [ -0.00274658203125, 78.827287603241103, 0.0 ], [ -0.00274658203125, 78.827553698786375, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1067, "task_x": 131070, "task_y": 34112, "task_z": 18, "center_y": 78.818902389195998, "area_in_sqm": 884.23604905605305, "perimeter_in_m": 118.944428273024, "length_x": 29.7395248117991, "length_y": 29.7402239234384 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.819035537117259, 0.0 ], [ -0.001373291015625, 78.819035537117259, 0.0 ], [ -0.001373291015625, 78.818769241274822, 0.0 ], [ -0.00274658203125, 78.818769241274822, 0.0 ], [ -0.00274658203125, 78.819035537117259, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1068, "task_x": 131070, "task_y": 34144, "task_z": 18, "center_y": 78.810377715551198, "area_in_sqm": 885.56701123714402, "perimeter_in_m": 119.033912847517, "length_x": 29.761904214638701, "length_y": 29.7626038315186 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.810510963693446, 0.0 ], [ -0.001373291015625, 78.810510963693446, 0.0 ], [ -0.001373291015625, 78.810244467408964, 0.0 ], [ -0.00274658203125, 78.810244467408964, 0.0 ], [ -0.00274658203125, 78.810510963693446, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1069, "task_x": 131070, "task_y": 34176, "task_z": 18, "center_y": 78.801846625441797, "area_in_sqm": 886.89993596076999, "perimeter_in_m": 119.123462037747, "length_x": 29.7842997900981, "length_y": 29.784999912535898 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.80197997387755, 0.0 ], [ -0.001373291015625, 78.80197997387755, 0.0 ], [ -0.001373291015625, 78.801713277006058, 0.0 ], [ -0.00274658203125, 78.801713277006058, 0.0 ], [ -0.00274658203125, 78.80197997387755, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1070, "task_x": 131070, "task_y": 34208, "task_z": 18, "center_y": 78.793309114227498, "area_in_sqm": 888.23482692241703, "perimeter_in_m": 119.213075886607, "length_x": 29.806711548335301, "length_y": 29.8074121766487 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.793442563029274, 0.0 ], [ -0.001373291015625, 78.793442563029274, 0.0 ], [ -0.001373291015625, 78.793175665425721, 0.0 ], [ -0.00274658203125, 78.793175665425721, 0.0 ], [ -0.00274658203125, 78.793442563029274, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1071, "task_x": 131070, "task_y": 34240, "task_z": 18, "center_y": 78.784765177265001, "area_in_sqm": 889.57168602943398, "perimeter_in_m": 119.30275443133399, "length_x": 29.829139499511498, "length_y": 29.829840634018002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.784898726505389, 0.0 ], [ -0.001373291015625, 78.784898726505389, 0.0 ], [ -0.001373291015625, 78.784631628024613, 0.0 ], [ -0.00274658203125, 78.784631628024613, 0.0 ], [ -0.00274658203125, 78.784898726505389, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1072, "task_x": 131070, "task_y": 34272, "task_z": 18, "center_y": 78.776214809908097, "area_in_sqm": 890.91051733493805, "perimeter_in_m": 119.392497712702, "length_x": 29.851583653790701, "length_y": 29.852285294807999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.776348459659715, 0.0 ], [ -0.001373291015625, 78.776348459659715, 0.0 ], [ -0.001373291015625, 78.776081160156494, 0.0 ], [ -0.00274658203125, 78.776081160156494, 0.0 ], [ -0.00274658203125, 78.776348459659715, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1073, "task_x": 131070, "task_y": 34304, "task_z": 18, "center_y": 78.767658007507706, "area_in_sqm": 892.25132226944004, "perimeter_in_m": 119.48230576761, "length_x": 29.874044021339401, "length_y": 29.874746169185201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.767791757843199, 0.0 ], [ -0.001373291015625, 78.767791757843199, 0.0 ], [ -0.001373291015625, 78.767524257172198, 0.0 ], [ -0.00274658203125, 78.767524257172198, 0.0 ], [ -0.00274658203125, 78.767791757843199, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1074, "task_x": 131070, "task_y": 34336, "task_z": 18, "center_y": 78.759094765411703, "area_in_sqm": 893.59410440921795, "perimeter_in_m": 119.57217864109199, "length_x": 29.896520612327102, "length_y": 29.897223267319202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.759228616403831, 0.0 ], [ -0.001373291015625, 78.759228616403831, 0.0 ], [ -0.001373291015625, 78.758960914419617, 0.0 ], [ -0.00274658203125, 78.758960914419617, 0.0 ], [ -0.00274658203125, 78.759228616403831, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1075, "task_x": 131070, "task_y": 34368, "task_z": 18, "center_y": 78.750525078965197, "area_in_sqm": 894.93886637687694, "perimeter_in_m": 119.662116378546, "length_x": 29.919013436925901, "length_y": 29.919716599382301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.750659030686677, 0.0 ], [ -0.001373291015625, 78.750659030686677, 0.0 ], [ -0.001373291015625, 78.750391127243745, 0.0 ], [ -0.00274658203125, 78.750391127243745, 0.0 ], [ -0.00274658203125, 78.750659030686677, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1076, "task_x": 131070, "task_y": 34400, "task_z": 18, "center_y": 78.741948943510295, "area_in_sqm": 896.28561055660202, "perimeter_in_m": 119.752119012634, "length_x": 29.941522505310701, "length_y": 29.9422261755495 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.742082996033886, 0.0 ], [ -0.001373291015625, 78.742082996033886, 0.0 ], [ -0.001373291015625, 78.741814890986632, 0.0 ], [ -0.00274658203125, 78.741814890986632, 0.0 ], [ -0.00274658203125, 78.742082996033886, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1077, "task_x": 131070, "task_y": 34432, "task_z": 18, "center_y": 78.733366354386007, "area_in_sqm": 897.634340286255, "perimeter_in_m": 119.842186585224, "length_x": 29.9640478276594, "length_y": 29.964752005998601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.733500507784669, 0.0 ], [ -0.001373291015625, 78.733500507784669, 0.0 ], [ -0.001373291015625, 78.733232200987388, 0.0 ], [ -0.00274658203125, 78.733232200987388, 0.0 ], [ -0.00274658203125, 78.733500507784669, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1078, "task_x": 131070, "task_y": 34464, "task_z": 18, "center_y": 78.7247773069288, "area_in_sqm": 898.98505830764805, "perimeter_in_m": 119.93231913464901, "length_x": 29.986589414152299, "length_y": 29.987294100909999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.72491156127532, 0.0 ], [ -0.001373291015625, 78.72491156127532, 0.0 ], [ -0.001373291015625, 78.724643052582238, 0.0 ], [ -0.00274658203125, 78.724643052582238, 0.0 ], [ -0.00274658203125, 78.72491156127532, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1079, "task_x": 131070, "task_y": 34496, "task_z": 18, "center_y": 78.716181796471801, "area_in_sqm": 900.33776724338497, "perimeter_in_m": 120.02251671022699, "length_x": 30.009147274972499, "length_y": 30.009852470467099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.716316151839195, 0.0 ], [ -0.001373291015625, 78.716316151839195, 0.0 ], [ -0.001373291015625, 78.716047441104422, 0.0 ], [ -0.00274658203125, 78.716047441104422, 0.0 ], [ -0.00274658203125, 78.716316151839195, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1080, "task_x": 131070, "task_y": 34528, "task_z": 18, "center_y": 78.707579818345494, "area_in_sqm": 901.69246971607197, "perimeter_in_m": 120.112779331534, "length_x": 30.031721420305999, "length_y": 30.032427124855701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.707714274806733, 0.0 ], [ -0.001373291015625, 78.707714274806733, 0.0 ], [ -0.001373291015625, 78.707445361884297, 0.0 ], [ -0.00274658203125, 78.707445361884297, 0.0 ], [ -0.00274658203125, 78.707714274806733, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1081, "task_x": 131070, "task_y": 34560, "task_z": 18, "center_y": 78.698971367877306, "area_in_sqm": 903.04916930198704, "perimeter_in_m": 120.203107070911, "length_x": 30.054311860341301, "length_y": 30.055018074264702 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.699105925505407, 0.0 ], [ -0.001373291015625, 78.699105925505407, 0.0 ], [ -0.001373291015625, 78.698836810249247, 0.0 ], [ -0.00274658203125, 78.698836810249247, 0.0 ], [ -0.00274658203125, 78.699105925505407, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1082, "task_x": 131070, "task_y": 34592, "task_z": 18, "center_y": 78.690356440391795, "area_in_sqm": 904.40786778926804, "perimeter_in_m": 120.29349994617399, "length_x": 30.0769186052697, "length_y": 30.077625328885201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.690491099259802, 0.0 ], [ -0.001373291015625, 78.690491099259802, 0.0 ], [ -0.001373291015625, 78.690221781523775, 0.0 ], [ -0.00274658203125, 78.690221781523775, 0.0 ], [ -0.00274658203125, 78.690491099259802, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1083, "task_x": 131070, "task_y": 34624, "task_z": 18, "center_y": 78.681735031210494, "area_in_sqm": 905.76856863498699, "perimeter_in_m": 120.383958009496, "length_x": 30.099541665284999, "length_y": 30.100248898911399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.681869791391563, 0.0 ], [ -0.001373291015625, 78.681869791391563, 0.0 ], [ -0.001373291015625, 78.681600271029396, 0.0 ], [ -0.00274658203125, 78.681600271029396, 0.0 ], [ -0.00274658203125, 78.681869791391563, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1084, "task_x": 131070, "task_y": 34656, "task_z": 18, "center_y": 78.673107135652103, "area_in_sqm": 907.13127481937397, "perimeter_in_m": 120.47448128932599, "length_x": 30.122181050584199, "length_y": 30.1228887945399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.673241997219364, 0.0 ], [ -0.001373291015625, 78.673241997219364, 0.0 ], [ -0.001373291015625, 78.672972274084742, 0.0 ], [ -0.00274658203125, 78.672972274084742, 0.0 ], [ -0.00274658203125, 78.673241997219364, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1085, "task_x": 131070, "task_y": 34688, "task_z": 18, "center_y": 78.6644727490322, "area_in_sqm": 908.49598848819699, "perimeter_in_m": 120.56506983607299, "length_x": 30.1448367713664, "length_y": 30.145545025970399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.664607712058995, 0.0 ], [ -0.001373291015625, 78.664607712058995, 0.0 ], [ -0.001373291015625, 78.66433778600549, 0.0 ], [ -0.00274658203125, 78.66433778600549, 0.0 ], [ -0.00274658203125, 78.664607712058995, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1086, "task_x": 131070, "task_y": 34720, "task_z": 18, "center_y": 78.655831866663803, "area_in_sqm": 909.86271321773495, "perimeter_in_m": 120.65572368775899, "length_x": 30.167508837833701, "length_y": 30.168217603404699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.655966931223276, 0.0 ], [ -0.001373291015625, 78.655966931223276, 0.0 ], [ -0.001373291015625, 78.655696802104359, 0.0 ], [ -0.00274658203125, 78.655696802104359, 0.0 ], [ -0.00274658203125, 78.655966931223276, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1087, "task_x": 131070, "task_y": 34752, "task_z": 18, "center_y": 78.647184483856606, "area_in_sqm": 911.23145151138306, "perimeter_in_m": 120.74644288418, "length_x": 30.1901972601907, "length_y": 30.190906537047699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.647319650022112, 0.0 ], [ -0.001373291015625, 78.647319650022112, 0.0 ], [ -0.001373291015625, 78.64704931769117, 0.0 ], [ -0.00274658203125, 78.64704931769117, 0.0 ], [ -0.00274658203125, 78.647319650022112, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1088, "task_x": 131070, "task_y": 34784, "task_z": 18, "center_y": 78.638530595917601, "area_in_sqm": 912.60220575332596, "perimeter_in_m": 120.837227468679, "length_x": 30.2129020486447, "length_y": 30.2136118371068 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.638665863762469, 0.0 ], [ -0.001373291015625, 78.638665863762469, 0.0 ], [ -0.001373291015625, 78.638395328072789, 0.0 ], [ -0.00274658203125, 78.638395328072789, 0.0 ], [ -0.00274658203125, 78.638665863762469, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1089, "task_x": 131070, "task_y": 34816, "task_z": 18, "center_y": 78.629870198150797, "area_in_sqm": 913.97497951984406, "perimeter_in_m": 120.928077477523, "length_x": 30.235623213405599, "length_y": 30.236333513791902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.630005567748356, 0.0 ], [ -0.001373291015625, 78.630005567748356, 0.0 ], [ -0.001373291015625, 78.629734828553154, 0.0 ], [ -0.00274658203125, 78.629734828553154, 0.0 ], [ -0.00274658203125, 78.630005567748356, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1090, "task_x": 131070, "task_y": 34848, "task_z": 18, "center_y": 78.621203285857106, "area_in_sqm": 915.34977507591202, "perimeter_in_m": 121.01899295052699, "length_x": 30.258360764686199, "length_y": 30.259071577315702 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.621338757280867, 0.0 ], [ -0.001373291015625, 78.621338757280867, 0.0 ], [ -0.001373291015625, 78.621067814433246, 0.0 ], [ -0.00274658203125, 78.621067814433246, 0.0 ], [ -0.00274658203125, 78.621338757280867, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1091, "task_x": 131070, "task_y": 34880, "task_z": 18, "center_y": 78.612529854334596, "area_in_sqm": 916.72659587860096, "perimeter_in_m": 121.10997393529, "length_x": 30.281114712701399, "length_y": 30.281826037893602 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.612665427658143, 0.0 ], [ -0.001373291015625, 78.612665427658143, 0.0 ], [ -0.001373291015625, 78.612394281011134, 0.0 ], [ -0.00274658203125, 78.612394281011134, 0.0 ], [ -0.00274658203125, 78.612665427658143, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1092, "task_x": 131070, "task_y": 34912, "task_z": 18, "center_y": 78.603849898878707, "area_in_sqm": 918.10544419288601, "perimeter_in_m": 121.20102046562, "length_x": 30.303885067669199, "length_y": 30.304596905743299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.603985574175397, 0.0 ], [ -0.001373291015625, 78.603985574175397, 0.0 ], [ -0.001373291015625, 78.603714223581918, 0.0 ], [ -0.00274658203125, 78.603714223581918, 0.0 ], [ -0.00274658203125, 78.603985574175397, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1093, "task_x": 131070, "task_y": 34944, "task_z": 18, "center_y": 78.595163414781396, "area_in_sqm": 919.486322999001, "perimeter_in_m": 121.292132591616, "length_x": 30.326671839809901, "length_y": 30.3273841910854 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.595299192124912, 0.0 ], [ -0.001373291015625, 78.595299192124912, 0.0 ], [ -0.001373291015625, 78.595027637437795, 0.0 ], [ -0.00274658203125, 78.595027637437795, 0.0 ], [ -0.00274658203125, 78.595299192124912, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1094, "task_x": 131070, "task_y": 34976, "task_z": 18, "center_y": 78.586470397331993, "area_in_sqm": 920.869235634804, "perimeter_in_m": 121.38331034283701, "length_x": 30.349475039346601, "length_y": 30.350187904142899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.58660627679599, 0.0 ], [ -0.001373291015625, 78.58660627679599, 0.0 ], [ -0.001373291015625, 78.586334517867996, 0.0 ], [ -0.00274658203125, 78.586334517867996, 0.0 ], [ -0.00274658203125, 78.58660627679599, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1095, "task_x": 131070, "task_y": 35008, "task_z": 18, "center_y": 78.5777708418169, "area_in_sqm": 922.25418460369099, "perimeter_in_m": 121.47455376832499, "length_x": 30.372294676504701, "length_y": 30.3730080551416 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.577906823475033, 0.0 ], [ -0.001373291015625, 78.577906823475033, 0.0 ], [ -0.001373291015625, 78.577634860158796, 0.0 ], [ -0.00274658203125, 78.577634860158796, 0.0 ], [ -0.00274658203125, 78.577906823475033, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1096, "task_x": 131070, "task_y": 35040, "task_z": 18, "center_y": 78.569064743519505, "area_in_sqm": 923.641172885895, "perimeter_in_m": 121.56586289943201, "length_x": 30.395130761512601, "length_y": 30.395844654309499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.569200827445471, 0.0 ], [ -0.001373291015625, 78.569200827445471, 0.0 ], [ -0.001373291015625, 78.568928659593567, 0.0 ], [ -0.00274658203125, 78.568928659593567, 0.0 ], [ -0.00274658203125, 78.569200827445471, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1097, "task_x": 131070, "task_y": 35072, "task_z": 18, "center_y": 78.560352097720298, "area_in_sqm": 925.03020286560104, "perimeter_in_m": 121.657237786973, "length_x": 30.417983304600799, "length_y": 30.418697711877599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.560488283987823, 0.0 ], [ -0.001373291015625, 78.560488283987823, 0.0 ], [ -0.001373291015625, 78.560215911452701, 0.0 ], [ -0.00274658203125, 78.560215911452701, 0.0 ], [ -0.00274658203125, 78.560488283987823, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1098, "task_x": 131070, "task_y": 35104, "task_z": 18, "center_y": 78.5516328996966, "area_in_sqm": 926.42127811908699, "perimeter_in_m": 121.748678469387, "length_x": 30.440852316002601, "length_y": 30.441567238079202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.551769188379623, 0.0 ], [ -0.001373291015625, 78.551769188379623, 0.0 ], [ -0.001373291015625, 78.551496611013675, 0.0 ], [ -0.00274658203125, 78.551496611013675, 0.0 ], [ -0.00274658203125, 78.551769188379623, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1099, "task_x": 131070, "task_y": 35136, "task_z": 18, "center_y": 78.542907144723202, "area_in_sqm": 927.81440091133095, "perimeter_in_m": 121.84018498440901, "length_x": 30.463737805953901, "length_y": 30.4644532431501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.543043535895492, 0.0 ], [ -0.001373291015625, 78.543043535895492, 0.0 ], [ -0.001373291015625, 78.542770753550997, 0.0 ], [ -0.00274658203125, 78.542770753550997, 0.0 ], [ -0.00274658203125, 78.543043535895492, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1100, "task_x": 131070, "task_y": 35168, "task_z": 18, "center_y": 78.534174828071698, "area_in_sqm": 929.20957446098305, "perimeter_in_m": 121.931757371901, "length_x": 30.4866397846931, "length_y": 30.487355737328901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.534311321807095, 0.0 ], [ -0.001373291015625, 78.534311321807095, 0.0 ], [ -0.001373291015625, 78.534038334336245, 0.0 ], [ -0.00274658203125, 78.534038334336245, 0.0 ], [ -0.00274658203125, 78.534311321807095, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1101, "task_x": 131070, "task_y": 35200, "task_z": 18, "center_y": 78.525435945010599, "area_in_sqm": 930.60680174827598, "perimeter_in_m": 122.02339567455699, "length_x": 30.509558262460999, "length_y": 30.510274730856398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.525572541383141, 0.0 ], [ -0.001373291015625, 78.525572541383141, 0.0 ], [ -0.001373291015625, 78.525299348638043, 0.0 ], [ -0.00274658203125, 78.525299348638043, 0.0 ], [ -0.00274658203125, 78.525572541383141, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1102, "task_x": 131070, "task_y": 35232, "task_z": 18, "center_y": 78.516690490805701, "area_in_sqm": 932.00608527660404, "perimeter_in_m": 122.115099939689, "length_x": 30.532493249500799, "length_y": 30.533210233976199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.516827189889426, 0.0 ], [ -0.001373291015625, 78.516827189889426, 0.0 ], [ -0.001373291015625, 78.516553791722075, 0.0 ], [ -0.00274658203125, 78.516553791722075, 0.0 ], [ -0.00274658203125, 78.516827189889426, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1103, "task_x": 131070, "task_y": 35264, "task_z": 18, "center_y": 78.507938460719899, "area_in_sqm": 933.40742838382698, "perimeter_in_m": 122.20687019371699, "length_x": 30.555444756058701, "length_y": 30.556162256934101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.508075262588761, 0.0 ], [ -0.001373291015625, 78.508075262588761, 0.0 ], [ -0.001373291015625, 78.507801658851079, 0.0 ], [ -0.00274658203125, 78.507801658851079, 0.0 ], [ -0.00274658203125, 78.508075262588761, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1104, "task_x": 131070, "task_y": 35296, "task_z": 18, "center_y": 78.499179850012894, "area_in_sqm": 934.81083333492302, "perimeter_in_m": 122.298706484669, "length_x": 30.578412792383102, "length_y": 30.5791308099788 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.499316754741002, 0.0 ], [ -0.001373291015625, 78.499316754741002, 0.0 ], [ -0.001373291015625, 78.499042945284828, 0.0 ], [ -0.00274658203125, 78.499042945284828, 0.0 ], [ -0.00274658203125, 78.499316754741002, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1105, "task_x": 131070, "task_y": 35328, "task_z": 18, "center_y": 78.490414653941599, "area_in_sqm": 936.21630430221603, "perimeter_in_m": 122.390608857028, "length_x": 30.601397368724601, "length_y": 30.602115903361099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.490551661603121, 0.0 ], [ -0.001373291015625, 78.490551661603121, 0.0 ], [ -0.001373291015625, 78.490277646280148, 0.0 ], [ -0.00274658203125, 78.490277646280148, 0.0 ], [ -0.00274658203125, 78.490551661603121, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1106, "task_x": 131070, "task_y": 35360, "task_z": 18, "center_y": 78.481642867760002, "area_in_sqm": 937.62384283542599, "perimeter_in_m": 122.482577353167, "length_x": 30.624398495336798, "length_y": 30.625117547334501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.481779978429046, 0.0 ], [ -0.001373291015625, 78.481779978429046, 0.0 ], [ -0.001373291015625, 78.481505757090957, 0.0 ], [ -0.00274658203125, 78.481505757090957, 0.0 ], [ -0.00274658203125, 78.481779978429046, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1107, "task_x": 131070, "task_y": 35392, "task_z": 18, "center_y": 78.472864486719004, "area_in_sqm": 939.03345215320599, "perimeter_in_m": 122.574612004488, "length_x": 30.647416182475499, "length_y": 30.6481357521549 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.473001700469837, 0.0 ], [ -0.001373291015625, 78.473001700469837, 0.0 ], [ -0.001373291015625, 78.472727272968157, 0.0 ], [ -0.00274658203125, 78.472727272968157, 0.0 ], [ -0.00274658203125, 78.473001700469837, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1108, "task_x": 131070, "task_y": 35424, "task_z": 18, "center_y": 78.464079506066696, "area_in_sqm": 940.44513559341397, "perimeter_in_m": 122.66671285655001, "length_x": 30.670450440399001, "length_y": 30.671170528080701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.464216822973555, 0.0 ], [ -0.001373291015625, 78.464216822973555, 0.0 ], [ -0.001373291015625, 78.463942189159738, 0.0 ], [ -0.00274658203125, 78.463942189159738, 0.0 ], [ -0.00274658203125, 78.464216822973555, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1109, "task_x": 131070, "task_y": 35456, "task_z": 18, "center_y": 78.455287921047997, "area_in_sqm": 941.85889565944694, "perimeter_in_m": 122.758879958111, "length_x": 30.693501279367901, "length_y": 30.694221885372698 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.455425341185332, 0.0 ], [ -0.001373291015625, 78.455425341185332, 0.0 ], [ -0.001373291015625, 78.455150500910733, 0.0 ], [ -0.00274658203125, 78.455150500910733, 0.0 ], [ -0.00274658203125, 78.455425341185332, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1110, "task_x": 131070, "task_y": 35488, "task_z": 18, "center_y": 78.446489726905298, "area_in_sqm": 943.27473580837295, "perimeter_in_m": 122.851113338461, "length_x": 30.7165687096455, "length_y": 30.7172898342941 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.446627250347319, 0.0 ], [ -0.001373291015625, 78.446627250347319, 0.0 ], [ -0.001373291015625, 78.446352203463221, 0.0 ], [ -0.00274658203125, 78.446352203463221, 0.0 ], [ -0.00274658203125, 78.446627250347319, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1111, "task_x": 131070, "task_y": 35520, "task_z": 18, "center_y": 78.437684918877494, "area_in_sqm": 944.69265854358696, "perimeter_in_m": 122.943413037513, "length_x": 30.739652741497402, "length_y": 30.740374385110499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.437822545698751, 0.0 ], [ -0.001373291015625, 78.437822545698751, 0.0 ], [ -0.001373291015625, 78.437547292056323, 0.0 ], [ -0.00274658203125, 78.437547292056323, 0.0 ], [ -0.00274658203125, 78.437822545698751, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1112, "task_x": 131070, "task_y": 35552, "task_z": 18, "center_y": 78.428873492201006, "area_in_sqm": 946.11266648769401, "perimeter_in_m": 123.035779115721, "length_x": 30.762753385191498, "length_y": 30.763475548090401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.429011222475879, 0.0 ], [ -0.001373291015625, 78.429011222475879, 0.0 ], [ -0.001373291015625, 78.42873576192622, 0.0 ], [ -0.00274658203125, 78.42873576192622, 0.0 ], [ -0.00274658203125, 78.429011222475879, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1113, "task_x": 131070, "task_y": 35584, "task_z": 18, "center_y": 78.420055442109003, "area_in_sqm": 947.53476274013497, "perimeter_in_m": 123.128211577961, "length_x": 30.7858706509986, "length_y": 30.786593333503902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.420193275911998, 0.0 ], [ -0.001373291015625, 78.420193275911998, 0.0 ], [ -0.001373291015625, 78.419917608306093, 0.0 ], [ -0.00274658203125, 78.419917608306093, 0.0 ], [ -0.00274658203125, 78.420193275911998, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1114, "task_x": 131070, "task_y": 35616, "task_z": 18, "center_y": 78.411230763831895, "area_in_sqm": 948.95895099639904, "perimeter_in_m": 123.22071050203699, "length_x": 30.809004549191101, "length_y": 30.809727751623999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.411368701237492, 0.0 ], [ -0.001373291015625, 78.411368701237492, 0.0 ], [ -0.001373291015625, 78.411092826426241, 0.0 ], [ -0.00274658203125, 78.411092826426241, 0.0 ], [ -0.00274658203125, 78.411368701237492, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1115, "task_x": 131070, "task_y": 35648, "task_z": 18, "center_y": 78.402399452596796, "area_in_sqm": 950.38523340225197, "perimeter_in_m": 123.313275911959, "length_x": 30.832155090044498, "length_y": 30.8328788127262 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.402537493679731, 0.0 ], [ -0.001373291015625, 78.402537493679731, 0.0 ], [ -0.001373291015625, 78.402261411513933, 0.0 ], [ -0.00274658203125, 78.402261411513933, 0.0 ], [ -0.00274658203125, 78.402537493679731, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1116, "task_x": 131070, "task_y": 35680, "task_z": 18, "center_y": 78.393561503628305, "area_in_sqm": 951.81361281871796, "perimeter_in_m": 123.405907846597, "length_x": 30.855322283836301, "length_y": 30.856046527087901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.393699648463155, 0.0 ], [ -0.001373291015625, 78.393699648463155, 0.0 ], [ -0.001373291015625, 78.393423358793541, 0.0 ], [ -0.00274658203125, 78.393423358793541, 0.0 ], [ -0.00274658203125, 78.393699648463155, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1117, "task_x": 131070, "task_y": 35712, "task_z": 18, "center_y": 78.384716912147795, "area_in_sqm": 953.24409270286606, "perimeter_in_m": 123.498606348374, "length_x": 30.8785061408465, "length_y": 30.879230904989299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.384855160809238, 0.0 ], [ -0.001373291015625, 78.384855160809238, 0.0 ], [ -0.001373291015625, 78.384578663486437, 0.0 ], [ -0.00274658203125, 78.384578663486437, 0.0 ], [ -0.00274658203125, 78.384855160809238, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1118, "task_x": 131070, "task_y": 35744, "task_z": 18, "center_y": 78.375865673373795, "area_in_sqm": 954.67667579650902, "perimeter_in_m": 123.591371457234, "length_x": 30.901706671357399, "length_y": 30.9024319567128 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.37600402593651, 0.0 ], [ -0.001373291015625, 78.37600402593651, 0.0 ], [ -0.001373291015625, 78.375727320811052, 0.0 ], [ -0.00274658203125, 78.375727320811052, 0.0 ], [ -0.00274658203125, 78.37600402593651, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1119, "task_x": 131070, "task_y": 35776, "task_z": 18, "center_y": 78.367007782521696, "area_in_sqm": 956.11136507987999, "perimeter_in_m": 123.684203230477, "length_x": 30.924923885653701, "length_y": 30.9256496925432 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.367146239060546, 0.0 ], [ -0.001373291015625, 78.367146239060546, 0.0 ], [ -0.001373291015625, 78.366869325982847, 0.0 ], [ -0.00274658203125, 78.366869325982847, 0.0 ], [ -0.00274658203125, 78.367146239060546, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1120, "task_x": 131070, "task_y": 35808, "task_z": 18, "center_y": 78.358143234804103, "area_in_sqm": 957.548163175583, "perimeter_in_m": 123.77710169036, "length_x": 30.948157794022499, "length_y": 30.948884122767499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.358281795393907, 0.0 ], [ -0.001373291015625, 78.358281795393907, 0.0 ], [ -0.001373291015625, 78.358004674214328, 0.0 ], [ -0.00274658203125, 78.358004674214328, 0.0 ], [ -0.00274658203125, 78.358281795393907, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1121, "task_x": 131070, "task_y": 35840, "task_z": 18, "center_y": 78.349272025430693, "area_in_sqm": 958.98707365989696, "perimeter_in_m": 123.870066880024, "length_x": 30.971408406753099, "length_y": 30.972135257675198 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.349410690146271, 0.0 ], [ -0.001373291015625, 78.349410690146271, 0.0 ], [ -0.001373291015625, 78.349133360715072, 0.0 ], [ -0.00274658203125, 78.349133360715072, 0.0 ], [ -0.00274658203125, 78.349410690146271, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1122, "task_x": 131070, "task_y": 35872, "task_z": 18, "center_y": 78.340394149608002, "area_in_sqm": 960.42809891700699, "perimeter_in_m": 123.96309884545499, "length_x": 30.994675734137001, "length_y": 30.995403107557902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.340532918524318, 0.0 ], [ -0.001373291015625, 78.340532918524318, 0.0 ], [ -0.001373291015625, 78.340255380691644, 0.0 ], [ -0.00274658203125, 78.340255380691644, 0.0 ], [ -0.00274658203125, 78.340532918524318, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1123, "task_x": 131070, "task_y": 35904, "task_z": 18, "center_y": 78.331509602539697, "area_in_sqm": 961.87124228477501, "perimeter_in_m": 124.05619762768499, "length_x": 31.017959786468499, "length_y": 31.018687682709999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.331648475731726, 0.0 ], [ -0.001373291015625, 78.331648475731726, 0.0 ], [ -0.001373291015625, 78.331370729347668, 0.0 ], [ -0.00274658203125, 78.331370729347668, 0.0 ], [ -0.00274658203125, 78.331648475731726, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1124, "task_x": 131070, "task_y": 35936, "task_z": 18, "center_y": 78.322618379426501, "area_in_sqm": 963.31650650501297, "perimeter_in_m": 124.149363266685, "length_x": 31.041260574043701, "length_y": 31.041988993427498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.322757356969291, 0.0 ], [ -0.001373291015625, 78.322757356969291, 0.0 ], [ -0.001373291015625, 78.322479401883797, 0.0 ], [ -0.00274658203125, 78.322479401883797, 0.0 ], [ -0.00274658203125, 78.322757356969291, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1125, "task_x": 131070, "task_y": 35968, "task_z": 18, "center_y": 78.313720475466297, "area_in_sqm": 964.76389443874405, "perimeter_in_m": 124.242595799605, "length_x": 31.0645781071611, "length_y": 31.0653070500091 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.313859557434782, 0.0 ], [ -0.001373291015625, 78.313859557434782, 0.0 ], [ -0.001373291015625, 78.313581393497756, 0.0 ], [ -0.00274658203125, 78.313581393497756, 0.0 ], [ -0.00274658203125, 78.313859557434782, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1126, "task_x": 131070, "task_y": 36000, "task_z": 18, "center_y": 78.3048158858536, "area_in_sqm": 966.21340978145599, "perimeter_in_m": 124.335895272795, "length_x": 31.087912396121801, "length_y": 31.0886418627558 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.304955072323025, 0.0 ], [ -0.001373291015625, 78.304955072323025, 0.0 ], [ -0.001373291015625, 78.304676699384245, 0.0 ], [ -0.00274658203125, 78.304676699384245, 0.0 ], [ -0.00274658203125, 78.304955072323025, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1127, "task_x": 131070, "task_y": 36032, "task_z": 18, "center_y": 78.295904605780507, "area_in_sqm": 967.66505479812599, "perimeter_in_m": 124.429261721643, "length_x": 31.111263451228702, "length_y": 31.1119934419708 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.296043896825893, 0.0 ], [ -0.001373291015625, 78.296043896825893, 0.0 ], [ -0.001373291015625, 78.295765314735064, 0.0 ], [ -0.00274658203125, 78.295765314735064, 0.0 ], [ -0.00274658203125, 78.296043896825893, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1128, "task_x": 131070, "task_y": 36064, "task_z": 18, "center_y": 78.286986630435607, "area_in_sqm": 969.11883246898697, "perimeter_in_m": 124.522695193923, "length_x": 31.134631282787101, "length_y": 31.135361797959501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.287126026132285, 0.0 ], [ -0.001373291015625, 78.287126026132285, 0.0 ], [ -0.001373291015625, 78.286847234739014, 0.0 ], [ -0.00274658203125, 78.286847234739014, 0.0 ], [ -0.00274658203125, 78.287126026132285, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1129, "task_x": 131070, "task_y": 36096, "task_z": 18, "center_y": 78.278061955005001, "area_in_sqm": 970.57474601268802, "perimeter_in_m": 124.61619572361801, "length_x": 31.1580159011048, "length_y": 31.158746941029499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.278201455428118, 0.0 ], [ -0.001373291015625, 78.278201455428118, 0.0 ], [ -0.001373291015625, 78.277922454581912, 0.0 ], [ -0.00274658203125, 78.277922454581912, 0.0 ], [ -0.00274658203125, 78.278201455428118, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1130, "task_x": 131070, "task_y": 36128, "task_z": 18, "center_y": 78.269130574671493, "area_in_sqm": 972.03279840946198, "perimeter_in_m": 124.709763362404, "length_x": 31.1814173164917, "length_y": 31.1821488814909 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.269270179896353, 0.0 ], [ -0.001373291015625, 78.269270179896353, 0.0 ], [ -0.001373291015625, 78.268990969446634, 0.0 ], [ -0.00274658203125, 78.268990969446634, 0.0 ], [ -0.00274658203125, 78.269270179896353, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1131, "task_x": 131070, "task_y": 36160, "task_z": 18, "center_y": 78.260192484615004, "area_in_sqm": 973.49299263954197, "perimeter_in_m": 124.803398140024, "length_x": 31.204835539259701, "length_y": 31.2055676296557 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.260332194716995, 0.0 ], [ -0.001373291015625, 78.260332194716995, 0.0 ], [ -0.001373291015625, 78.260052774513099, 0.0 ], [ -0.00274658203125, 78.260052774513099, 0.0 ], [ -0.00274658203125, 78.260332194716995, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1132, "task_x": 131070, "task_y": 36192, "task_z": 18, "center_y": 78.251247680012696, "area_in_sqm": 974.95533168315899, "perimeter_in_m": 124.897100103916, "length_x": 31.228270579723102, "length_y": 31.229003195838398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.251387495067078, 0.0 ], [ -0.001373291015625, 78.251387495067078, 0.0 ], [ -0.001373291015625, 78.251107864958229, 0.0 ], [ -0.00274658203125, 78.251107864958229, 0.0 ], [ -0.00274658203125, 78.251387495067078, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1133, "task_x": 131070, "task_y": 36224, "task_z": 18, "center_y": 78.242296156038293, "area_in_sqm": 976.41981863975502, "perimeter_in_m": 124.990869291264, "length_x": 31.251722448198599, "length_y": 31.252455590355499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.242436076120654, 0.0 ], [ -0.001373291015625, 78.242436076120654, 0.0 ], [ -0.001373291015625, 78.242156235955989, 0.0 ], [ -0.00274658203125, 78.242156235955989, 0.0 ], [ -0.00274658203125, 78.242436076120654, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1134, "task_x": 131070, "task_y": 36256, "task_z": 18, "center_y": 78.233337907863103, "area_in_sqm": 977.88645625114395, "perimeter_in_m": 125.08470574880801, "length_x": 31.275191155004698, "length_y": 31.275924823525699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.233477933048817, 0.0 ], [ -0.001373291015625, 78.233477933048817, 0.0 ], [ -0.001373291015625, 78.233197882677388, 0.0 ], [ -0.00274658203125, 78.233197882677388, 0.0 ], [ -0.00274658203125, 78.233477933048817, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1135, "task_x": 131070, "task_y": 36288, "task_z": 18, "center_y": 78.224372930655093, "area_in_sqm": 979.35524797439598, "perimeter_in_m": 125.17860951409, "length_x": 31.298676710462299, "length_y": 31.299410905670101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.224513061019678, 0.0 ], [ -0.001373291015625, 78.224513061019678, 0.0 ], [ -0.001373291015625, 78.224232800290437, 0.0 ], [ -0.00274658203125, 78.224232800290437, 0.0 ], [ -0.00274658203125, 78.224513061019678, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1136, "task_x": 131070, "task_y": 36320, "task_z": 18, "center_y": 78.215401219579306, "area_in_sqm": 980.826196670532, "perimeter_in_m": 125.272580620055, "length_x": 31.3221791248946, "length_y": 31.3229138471116 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.215541455198377, 0.0 ], [ -0.001373291015625, 78.215541455198377, 0.0 ], [ -0.001373291015625, 78.215260983960206, 0.0 ], [ -0.00274658203125, 78.215260983960206, 0.0 ], [ -0.00274658203125, 78.215541455198377, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1137, "task_x": 131070, "task_y": 36352, "task_z": 18, "center_y": 78.206422769797896, "area_in_sqm": 982.29930460452999, "perimeter_in_m": 125.366619120894, "length_x": 31.3456984086266, "length_y": 31.346433658175702 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.206563110747112, 0.0 ], [ -0.001373291015625, 78.206563110747112, 0.0 ], [ -0.001373291015625, 78.206282428848766, 0.0 ], [ -0.00274658203125, 78.206282428848766, 0.0 ], [ -0.00274658203125, 78.206563110747112, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1138, "task_x": 131070, "task_y": 36384, "task_z": 18, "center_y": 78.197437576470193, "area_in_sqm": 983.77457606792495, "perimeter_in_m": 125.460725054867, "length_x": 31.3692345719858, "length_y": 31.3699703491897 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.19757802282507, 0.0 ], [ -0.001373291015625, 78.19757802282507, 0.0 ], [ -0.001373291015625, 78.197297130115231, 0.0 ], [ -0.00274658203125, 78.197297130115231, 0.0 ], [ -0.00274658203125, 78.19757802282507, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1139, "task_x": 131070, "task_y": 36416, "task_z": 18, "center_y": 78.1884456347521, "area_in_sqm": 985.25201296806301, "perimeter_in_m": 125.55489845599701, "length_x": 31.3927876253018, "length_y": 31.393523930483202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.188586186588509, 0.0 ], [ -0.001373291015625, 78.188586186588509, 0.0 ], [ -0.001373291015625, 78.188305082915747, 0.0 ], [ -0.00274658203125, 78.188305082915747, 0.0 ], [ -0.00274658203125, 78.188586186588509, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1140, "task_x": 131070, "task_y": 36448, "task_z": 18, "center_y": 78.179446939797103, "area_in_sqm": 986.73161959648098, "perimeter_in_m": 125.649139376001, "length_x": 31.416357578905998, "length_y": 31.4170944123879 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.179587597190661, 0.0 ], [ -0.001373291015625, 78.179587597190661, 0.0 ], [ -0.001373291015625, 78.179306282403488, 0.0 ], [ -0.00274658203125, 78.179306282403488, 0.0 ], [ -0.00274658203125, 78.179587597190661, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1141, "task_x": 131070, "task_y": 36480, "task_z": 18, "center_y": 78.170441486755195, "area_in_sqm": 988.21339738368999, "perimeter_in_m": 125.74344785032901, "length_x": 31.439944443132301, "length_y": 31.440681805237801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.170582249781816, 0.0 ], [ -0.001373291015625, 78.170582249781816, 0.0 ], [ -0.001373291015625, 78.170300723728616, 0.0 ], [ -0.00274658203125, 78.170300723728616, 0.0 ], [ -0.00274658203125, 78.170582249781816, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1142, "task_x": 131070, "task_y": 36512, "task_z": 18, "center_y": 78.161429270773795, "area_in_sqm": 989.69735038280498, "perimeter_in_m": 125.837823915841, "length_x": 31.463548228316601, "length_y": 31.464286119368499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.16157013950928, 0.0 ], [ -0.001373291015625, 78.16157013950928, 0.0 ], [ -0.001373291015625, 78.16128840203838, 0.0 ], [ -0.00274658203125, 78.16128840203838, 0.0 ], [ -0.00274658203125, 78.16157013950928, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1143, "task_x": 131070, "task_y": 36544, "task_z": 18, "center_y": 78.152410286997195, "area_in_sqm": 991.183481812477, "perimeter_in_m": 125.932267620378, "length_x": 31.4871689447968, "length_y": 31.4879073651183 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.152551261517416, 0.0 ], [ -0.001373291015625, 78.152551261517416, 0.0 ], [ -0.001373291015625, 78.152269312477003, 0.0 ], [ -0.00274658203125, 78.152269312477003, 0.0 ], [ -0.00274658203125, 78.152551261517416, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1144, "task_x": 131070, "task_y": 36576, "task_z": 18, "center_y": 78.143384530566706, "area_in_sqm": 992.67179369926498, "perimeter_in_m": 126.026779002582, "length_x": 31.510806602912901, "length_y": 31.511545552827201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.143525610947563, 0.0 ], [ -0.001373291015625, 78.143525610947563, 0.0 ], [ -0.001373291015625, 78.143243450185764, 0.0 ], [ -0.00274658203125, 78.143243450185764, 0.0 ], [ -0.00274658203125, 78.143525610947563, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1145, "task_x": 131070, "task_y": 36608, "task_z": 18, "center_y": 78.134351996620495, "area_in_sqm": 994.16229021549202, "perimeter_in_m": 126.121358110301, "length_x": 31.534461213007098, "length_y": 31.5352006928374 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.134493182938101, 0.0 ], [ -0.001373291015625, 78.134493182938101, 0.0 ], [ -0.001373291015625, 78.134210810302946, 0.0 ], [ -0.00274658203125, 78.134210810302946, 0.0 ], [ -0.00274658203125, 78.134493182938101, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1146, "task_x": 131070, "task_y": 36640, "task_z": 18, "center_y": 78.125312680294101, "area_in_sqm": 995.65497386455502, "perimeter_in_m": 126.216004968025, "length_x": 31.558132785423599, "length_y": 31.558872795493201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.125453972624442, 0.0 ], [ -0.001373291015625, 78.125453972624442, 0.0 ], [ -0.001373291015625, 78.12517138796386, 0.0 ], [ -0.00274658203125, 78.12517138796386, 0.0 ], [ -0.00274658203125, 78.125453972624442, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1147, "task_x": 131070, "task_y": 36672, "task_z": 18, "center_y": 78.116266576719894, "area_in_sqm": 997.14984798431396, "perimeter_in_m": 126.310719629627, "length_x": 31.5818213305086, "length_y": 31.5825618711408 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.116407975138998, 0.0 ], [ -0.001373291015625, 78.116407975138998, 0.0 ], [ -0.001373291015625, 78.116125178300834, 0.0 ], [ -0.00274658203125, 78.116125178300834, 0.0 ], [ -0.00274658203125, 78.116407975138998, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1148, "task_x": 131070, "task_y": 36704, "task_z": 18, "center_y": 78.107213681027204, "area_in_sqm": 998.64691519737198, "perimeter_in_m": 126.40550213235301, "length_x": 31.605526858610499, "length_y": 31.606267930128698 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.10735518561124, 0.0 ], [ -0.001373291015625, 78.10735518561124, 0.0 ], [ -0.001373291015625, 78.107072176443239, 0.0 ], [ -0.00274658203125, 78.107072176443239, 0.0 ], [ -0.00274658203125, 78.10735518561124, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1149, "task_x": 131070, "task_y": 36736, "task_z": 18, "center_y": 78.098153988342503, "area_in_sqm": 1000.14617860317, "perimeter_in_m": 126.500352523, "length_x": 31.629249380079401, "length_y": 31.6299909828072 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.098295599167628, 0.0 ], [ -0.001373291015625, 78.098295599167628, 0.0 ], [ -0.001373291015625, 78.098012377517449, 0.0 ], [ -0.00274658203125, 78.098012377517449, 0.0 ], [ -0.00274658203125, 78.098295599167628, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1150, "task_x": 131070, "task_y": 36768, "task_z": 18, "center_y": 78.089087493789194, "area_in_sqm": 1001.6476418971999, "perimeter_in_m": 126.595270837049, "length_x": 31.6529889052679, "length_y": 31.653731039528701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.089229210931649, 0.0 ], [ -0.001373291015625, 78.089229210931649, 0.0 ], [ -0.001373291015625, 78.088945776646852, 0.0 ], [ -0.00274658203125, 78.088945776646852, 0.0 ], [ -0.00274658203125, 78.089229210931649, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1151, "task_x": 131070, "task_y": 36800, "task_z": 18, "center_y": 78.080014192487795, "area_in_sqm": 1003.15130722523, "perimeter_in_m": 126.690257120247, "length_x": 31.676745444530098, "length_y": 31.677488110647602 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.080156016023821, 0.0 ], [ -0.001373291015625, 78.080156016023821, 0.0 ], [ -0.001373291015625, 78.079872368951868, 0.0 ], [ -0.00274658203125, 78.079872368951868, 0.0 ], [ -0.00274658203125, 78.080156016023821, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1152, "task_x": 131070, "task_y": 36832, "task_z": 18, "center_y": 78.070934079555798, "area_in_sqm": 1004.65717816353, "perimeter_in_m": 126.78531140525, "length_x": 31.7005190082225, "length_y": 31.701262206520301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.071076009561665, 0.0 ], [ -0.001373291015625, 78.071076009561665, 0.0 ], [ -0.001373291015625, 78.070792149549945, 0.0 ], [ -0.00274658203125, 78.070792149549945, 0.0 ], [ -0.00274658203125, 78.071076009561665, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1153, "task_x": 131070, "task_y": 36864, "task_z": 18, "center_y": 78.061847150107596, "area_in_sqm": 1006.16525828838, "perimeter_in_m": 126.880433742772, "length_x": 31.7243096067035, "length_y": 31.7250533375054 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.061989186659744, 0.0 ], [ -0.001373291015625, 78.061989186659744, 0.0 ], [ -0.001373291015625, 78.061705113555519, 0.0 ], [ -0.00274658203125, 78.061705113555519, 0.0 ], [ -0.00274658203125, 78.061989186659744, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1154, "task_x": 131070, "task_y": 36896, "task_z": 18, "center_y": 78.052753399254797, "area_in_sqm": 1007.67554974556, "perimeter_in_m": 126.975624172905, "length_x": 31.748117250333301, "length_y": 31.748861513963099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.05289554242961, 0.0 ], [ -0.001373291015625, 78.05289554242961, 0.0 ], [ -0.001373291015625, 78.05261125608007, 0.0 ], [ -0.00274658203125, 78.05261125608007, 0.0 ], [ -0.00274658203125, 78.05289554242961, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1155, "task_x": 131070, "task_y": 36928, "task_z": 18, "center_y": 78.043652822105997, "area_in_sqm": 1009.18805623055, "perimeter_in_m": 127.07088273150001, "length_x": 31.771941949474201, "length_y": 31.772686746255701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.043795071979858, 0.0 ], [ -0.001373291015625, 78.043795071979858, 0.0 ], [ -0.001373291015625, 78.043510572232108, 0.0 ], [ -0.00274658203125, 78.043510572232108, 0.0 ], [ -0.00274658203125, 78.043795071979858, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1156, "task_x": 131070, "task_y": 36960, "task_z": 18, "center_y": 78.034545413766594, "area_in_sqm": 1010.70278036594, "perimeter_in_m": 127.16620945512101, "length_x": 31.795783714490401, "length_y": 31.796529044747398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.03468777041607, 0.0 ], [ -0.001373291015625, 78.03468777041607, 0.0 ], [ -0.001373291015625, 78.034403057117117, 0.0 ], [ -0.00274658203125, 78.034403057117117, 0.0 ], [ -0.00274658203125, 78.03468777041607, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1157, "task_x": 131070, "task_y": 36992, "task_z": 18, "center_y": 78.0254311693392, "area_in_sqm": 1012.2197258472401, "perimeter_in_m": 127.26160440405501, "length_x": 31.8196425557481, "length_y": 31.8203884198048 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.025573632840874, 0.0 ], [ -0.001373291015625, 78.025573632840874, 0.0 ], [ -0.001373291015625, 78.025288705837625, 0.0 ], [ -0.00274658203125, 78.025288705837625, 0.0 ], [ -0.00274658203125, 78.025573632840874, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1158, "task_x": 131070, "task_y": 37024, "task_z": 18, "center_y": 78.0163100839235, "area_in_sqm": 1013.73889517784, "perimeter_in_m": 127.35706759894001, "length_x": 31.843518483615501, "length_y": 31.844264881795802 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.016452654353913, 0.0 ], [ -0.001373291015625, 78.016452654353913, 0.0 ], [ -0.001373291015625, 78.016167513493173, 0.0 ], [ -0.00274658203125, 78.016167513493173, 0.0 ], [ -0.00274658203125, 78.016452654353913, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1159, "task_x": 131070, "task_y": 37056, "task_z": 18, "center_y": 78.007182152616096, "area_in_sqm": 1015.26029157639, "perimeter_in_m": 127.452599102902, "length_x": 31.8674115084624, "length_y": 31.8681584410905 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 78.007324830051815, 0.0 ], [ -0.001373291015625, 78.007324830051815, 0.0 ], [ -0.001373291015625, 78.007039475180306, 0.0 ], [ -0.00274658203125, 78.007039475180306, 0.0 ], [ -0.00274658203125, 78.007324830051815, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1160, "task_x": 131070, "task_y": 37088, "task_z": 18, "center_y": 77.998047370510406, "area_in_sqm": 1016.78391885757, "perimeter_in_m": 127.548198934109, "length_x": 31.891321640660902, "length_y": 31.892069108060898 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.998190155028254, 0.0 ], [ -0.001373291015625, 77.998190155028254, 0.0 ], [ -0.001373291015625, 77.997904585992615, 0.0 ], [ -0.00274658203125, 77.997904585992615, 0.0 ], [ -0.00274658203125, 77.998190155028254, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1161, "task_x": 131070, "task_y": 37120, "task_z": 18, "center_y": 77.988905732697305, "area_in_sqm": 1018.30977940559, "perimeter_in_m": 127.643867141885, "length_x": 31.915248890584799, "length_y": 31.915996893080798 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.989048624373908, 0.0 ], [ -0.001373291015625, 77.989048624373908, 0.0 ], [ -0.001373291015625, 77.988762841020659, 0.0 ], [ -0.00274658203125, 77.988762841020659, 0.0 ], [ -0.00274658203125, 77.989048624373908, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1162, "task_x": 131070, "task_y": 37152, "task_z": 18, "center_y": 77.979757234264198, "area_in_sqm": 1019.8378766775101, "perimeter_in_m": 127.73960378476799, "length_x": 31.939193268609799, "length_y": 31.939941806526299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.979900233176451, 0.0 ], [ -0.001373291015625, 77.979900233176451, 0.0 ], [ -0.001373291015625, 77.979614235352045, 0.0 ], [ -0.00274658203125, 77.979614235352045, 0.0 ], [ -0.00274658203125, 77.979900233176451, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1163, "task_x": 131070, "task_y": 37184, "task_z": 18, "center_y": 77.970601870295994, "area_in_sqm": 1021.36821329594, "perimeter_in_m": 127.835408872793, "length_x": 31.963154785113598, "length_y": 31.9639038587746 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.970744976520592, 0.0 ], [ -0.001373291015625, 77.970744976520592, 0.0 ], [ -0.001373291015625, 77.970458764071381, 0.0 ], [ -0.00274658203125, 77.970458764071381, 0.0 ], [ -0.00274658203125, 77.970744976520592, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1164, "task_x": 131070, "task_y": 37216, "task_z": 18, "center_y": 77.9614396358742, "area_in_sqm": 1022.90079283714, "perimeter_in_m": 127.931282470516, "length_x": 31.987133450475401, "length_y": 31.987883060205601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.961582849488053, 0.0 ], [ -0.001373291015625, 77.961582849488053, 0.0 ], [ -0.001373291015625, 77.96129642226029, 0.0 ], [ -0.00274658203125, 77.96129642226029, 0.0 ], [ -0.00274658203125, 77.961582849488053, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1165, "task_x": 131070, "task_y": 37248, "task_z": 18, "center_y": 77.952270526077498, "area_in_sqm": 1024.4356181621599, "perimeter_in_m": 128.02722460958199, "length_x": 32.011129275076598, "length_y": 32.011879421200298 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.952413847157544, 0.0 ], [ -0.001373291015625, 77.952413847157544, 0.0 ], [ -0.001373291015625, 77.952127204997396, 0.0 ], [ -0.00274658203125, 77.952127204997396, 0.0 ], [ -0.00274658203125, 77.952413847157544, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1166, "task_x": 131070, "task_y": 37280, "task_z": 18, "center_y": 77.943094535981601, "area_in_sqm": 1025.97269237041, "perimeter_in_m": 128.123235338266, "length_x": 32.035142269300401, "length_y": 32.035892952142198 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.943237964604833, 0.0 ], [ -0.001373291015625, 77.943237964604833, 0.0 ], [ -0.001373291015625, 77.942951107358354, 0.0 ], [ -0.00274658203125, 77.942951107358354, 0.0 ], [ -0.00274658203125, 77.943237964604833, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1167, "task_x": 131070, "task_y": 37312, "task_z": 18, "center_y": 77.933911660659206, "area_in_sqm": 1027.51201879978, "perimeter_in_m": 128.21931469281799, "length_x": 32.0591724435318, "length_y": 32.0599236634161 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.934055196902619, 0.0 ], [ -0.001373291015625, 77.934055196902619, 0.0 ], [ -0.001373291015625, 77.933768124415806, 0.0 ], [ -0.00274658203125, 77.933768124415806, 0.0 ], [ -0.00274658203125, 77.934055196902619, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1168, "task_x": 131070, "task_y": 37344, "task_z": 18, "center_y": 77.924721895180099, "area_in_sqm": 1029.0536006689099, "perimeter_in_m": 128.31546271374, "length_x": 32.083219808157402, "length_y": 32.083971565408902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.924865539120702, 0.0 ], [ -0.001373291015625, 77.924865539120702, 0.0 ], [ -0.001373291015625, 77.92457825123941, 0.0 ], [ -0.00274658203125, 77.92457825123941, 0.0 ], [ -0.00274658203125, 77.924865539120702, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1169, "task_x": 131070, "task_y": 37376, "task_z": 18, "center_y": 77.915525234610897, "area_in_sqm": 1030.5974408388099, "perimeter_in_m": 128.41167944613699, "length_x": 32.107284373566003, "length_y": 32.108036668509399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.915668986325826, 0.0 ], [ -0.001373291015625, 77.915668986325826, 0.0 ], [ -0.001373291015625, 77.915381482895853, 0.0 ], [ -0.00274658203125, 77.915381482895853, 0.0 ], [ -0.00274658203125, 77.915668986325826, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1170, "task_x": 131070, "task_y": 37408, "task_z": 18, "center_y": 77.906321674015302, "area_in_sqm": 1032.1435431242001, "perimeter_in_m": 128.50796492768001, "length_x": 32.131366150147798, "length_y": 32.132118983107802 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.90646553358178, 0.0 ], [ -0.001373291015625, 77.90646553358178, 0.0 ], [ -0.001373291015625, 77.906177814448824, 0.0 ], [ -0.00274658203125, 77.906177814448824, 0.0 ], [ -0.00274658203125, 77.90646553358178, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1171, "task_x": 131070, "task_y": 37440, "task_z": 18, "center_y": 77.897111208454206, "area_in_sqm": 1033.69190955162, "perimeter_in_m": 128.60431920100601, "length_x": 32.155465148295001, "length_y": 32.156218519596401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.89725517594934, 0.0 ], [ -0.001373291015625, 77.89725517594934, 0.0 ], [ -0.001373291015625, 77.896967240958986, 0.0 ], [ -0.00274658203125, 77.896967240958986, 0.0 ], [ -0.00274658203125, 77.89725517594934, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1172, "task_x": 131070, "task_y": 37472, "task_z": 18, "center_y": 77.887893832985199, "area_in_sqm": 1035.2425442934, "perimeter_in_m": 128.70074230875301, "length_x": 32.1795813784016, "length_y": 32.1803352883692 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.888037908486282, 0.0 ], [ -0.001373291015625, 77.888037908486282, 0.0 ], [ -0.001373291015625, 77.887749757484073, 0.0 ], [ -0.00274658203125, 77.887749757484073, 0.0 ], [ -0.00274658203125, 77.888037908486282, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1173, "task_x": 131070, "task_y": 37504, "task_z": 18, "center_y": 77.878669542663104, "area_in_sqm": 1036.79544985294, "perimeter_in_m": 128.797234292848, "length_x": 32.203714850863101, "length_y": 32.204469299821902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.878813726247429, 0.0 ], [ -0.001373291015625, 77.878813726247429, 0.0 ], [ -0.001373291015625, 77.878525359078765, 0.0 ], [ -0.00274658203125, 77.878525359078765, 0.0 ], [ -0.00274658203125, 77.878813726247429, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1174, "task_x": 131070, "task_y": 37536, "task_z": 18, "center_y": 77.869438332539701, "area_in_sqm": 1038.35062944889, "perimeter_in_m": 128.89379519169501, "length_x": 32.227865576077001, "length_y": 32.2286205643518 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.86958262428459, 0.0 ], [ -0.001373291015625, 77.86958262428459, 0.0 ], [ -0.001373291015625, 77.869294040794784, 0.0 ], [ -0.00274658203125, 77.869294040794784, 0.0 ], [ -0.00274658203125, 77.86958262428459, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1175, "task_x": 131070, "task_y": 37568, "task_z": 18, "center_y": 77.860200197663701, "area_in_sqm": 1039.9080864191101, "perimeter_in_m": 128.990425047581, "length_x": 32.252033564442499, "length_y": 32.252789092358498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.860344597646545, 0.0 ], [ -0.001373291015625, 77.860344597646545, 0.0 ], [ -0.001373291015625, 77.860055797680829, 0.0 ], [ -0.00274658203125, 77.860055797680829, 0.0 ], [ -0.00274658203125, 77.860344597646545, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1176, "task_x": 131070, "task_y": 37600, "task_z": 18, "center_y": 77.850955133080902, "area_in_sqm": 1041.4678239822399, "perimeter_in_m": 129.087123905281, "length_x": 32.276218826360498, "length_y": 32.2769748942425 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.85109964137915, 0.0 ], [ -0.001373291015625, 77.85109964137915, 0.0 ], [ -0.001373291015625, 77.850810624782653, 0.0 ], [ -0.00274658203125, 77.850810624782653, 0.0 ], [ -0.00274658203125, 77.85109964137915, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1177, "task_x": 131070, "task_y": 37632, "task_z": 18, "center_y": 77.841703133834102, "area_in_sqm": 1043.0298454761501, "perimeter_in_m": 129.18389180001699, "length_x": 32.300421372233501, "length_y": 32.301177980406699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.841847750525204, 0.0 ], [ -0.001373291015625, 77.841847750525204, 0.0 ], [ -0.001373291015625, 77.841558517142971, 0.0 ], [ -0.00274658203125, 77.841558517142971, 0.0 ], [ -0.00274658203125, 77.841847750525204, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1178, "task_x": 131070, "task_y": 37664, "task_z": 18, "center_y": 77.832444194963003, "area_in_sqm": 1044.5941534042399, "perimeter_in_m": 129.28072878400101, "length_x": 32.3246412124657, "length_y": 32.325398361255402 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.832588920124536, 0.0 ], [ -0.001373291015625, 77.832588920124536, 0.0 ], [ -0.001373291015625, 77.832299469801512, 0.0 ], [ -0.00274658203125, 77.832299469801512, 0.0 ], [ -0.00274658203125, 77.832588920124536, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1179, "task_x": 131070, "task_y": 37696, "task_z": 18, "center_y": 77.823178311504506, "area_in_sqm": 1046.1607521772401, "perimeter_in_m": 129.37763488502799, "length_x": 32.348878357463299, "length_y": 32.349636047194601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.82332314521399, 0.0 ], [ -0.001373291015625, 77.82332314521399, 0.0 ], [ -0.001373291015625, 77.823033477795022, 0.0 ], [ -0.00274658203125, 77.823033477795022, 0.0 ], [ -0.00274658203125, 77.82332314521399, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1180, "task_x": 131070, "task_y": 37728, "task_z": 18, "center_y": 77.813905478492302, "area_in_sqm": 1047.7296433448801, "perimeter_in_m": 129.474610153192, "length_x": 32.373132817633703, "length_y": 32.373891048631897 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.814050420827385, 0.0 ], [ -0.001373291015625, 77.814050420827385, 0.0 ], [ -0.001373291015625, 77.813760536157233, 0.0 ], [ -0.00274658203125, 77.813760536157233, 0.0 ], [ -0.00274658203125, 77.814050420827385, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1181, "task_x": 131070, "task_y": 37760, "task_z": 18, "center_y": 77.804625690957195, "area_in_sqm": 1049.30083143711, "perimeter_in_m": 129.57165461947599, "length_x": 32.397404603386299, "length_y": 32.398163375976601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.804770741995569, 0.0 ], [ -0.001373291015625, 77.804770741995569, 0.0 ], [ -0.001373291015625, 77.804480639918893, 0.0 ], [ -0.00274658203125, 77.804480639918893, 0.0 ], [ -0.00274658203125, 77.804770741995569, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1182, "task_x": 131070, "task_y": 37792, "task_z": 18, "center_y": 77.795338943927106, "area_in_sqm": 1050.87431871891, "perimeter_in_m": 129.66876834496099, "length_x": 32.421693725131902, "length_y": 32.422453039639798 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.795484103746375, 0.0 ], [ -0.001373291015625, 77.795484103746375, 0.0 ], [ -0.001373291015625, 77.795193784107767, 0.0 ], [ -0.00274658203125, 77.795193784107767, 0.0 ], [ -0.00274658203125, 77.795484103746375, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1183, "task_x": 131070, "task_y": 37824, "task_z": 18, "center_y": 77.786045232426602, "area_in_sqm": 1052.45010924339, "perimeter_in_m": 129.76595135320201, "length_x": 32.446000193283297, "length_y": 32.446760050034101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.786190501104656, 0.0 ], [ -0.001373291015625, 77.786190501104656, 0.0 ], [ -0.001373291015625, 77.785899963748591, 0.0 ], [ -0.00274658203125, 77.785899963748591, 0.0 ], [ -0.00274658203125, 77.786190501104656, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1184, "task_x": 131070, "task_y": 37856, "task_z": 18, "center_y": 77.776744551477705, "area_in_sqm": 1054.0282053947401, "perimeter_in_m": 129.86320369465901, "length_x": 32.470324018254502, "length_y": 32.471084417573799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.776889929092249, 0.0 ], [ -0.001373291015625, 77.776889929092249, 0.0 ], [ -0.001373291015625, 77.77659917386309, 0.0 ], [ -0.00274658203125, 77.77659917386309, 0.0 ], [ -0.00274658203125, 77.776889929092249, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1185, "task_x": 131070, "task_y": 37888, "task_z": 18, "center_y": 77.767436896098999, "area_in_sqm": 1055.6086106300399, "perimeter_in_m": 129.960525410244, "length_x": 32.494665210461399, "length_y": 32.495426152674703 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.767582382728008, 0.0 ], [ -0.001373291015625, 77.767582382728008, 0.0 ], [ -0.001373291015625, 77.767291409470062, 0.0 ], [ -0.00274658203125, 77.767291409470062, 0.0 ], [ -0.00274658203125, 77.767582382728008, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1186, "task_x": 131070, "task_y": 37920, "task_z": 18, "center_y": 77.758122261306497, "area_in_sqm": 1057.1913290023799, "perimeter_in_m": 130.05791653166401, "length_x": 32.519023780321298, "length_y": 32.519785265754102 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.758267857027761, 0.0 ], [ -0.001373291015625, 77.758267857027761, 0.0 ], [ -0.001373291015625, 77.757976665585232, 0.0 ], [ -0.00274658203125, 77.757976665585232, 0.0 ], [ -0.00274658203125, 77.758267857027761, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1187, "task_x": 131070, "task_y": 37952, "task_z": 18, "center_y": 77.748800642112897, "area_in_sqm": 1058.77636253834, "perimeter_in_m": 130.15537711824001, "length_x": 32.543399738253299, "length_y": 32.544161767231301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.748946347004377, 0.0 ], [ -0.001373291015625, 77.748946347004377, 0.0 ], [ -0.001373291015625, 77.748654937221346, 0.0 ], [ -0.00274658203125, 77.748654937221346, 0.0 ], [ -0.00274658203125, 77.748946347004377, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1188, "task_x": 131070, "task_y": 37984, "task_z": 18, "center_y": 77.739472033527903, "area_in_sqm": 1060.3637149333999, "perimeter_in_m": 130.252907197084, "length_x": 32.567793094677903, "length_y": 32.568555667526702 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.739617847667702, 0.0 ], [ -0.001373291015625, 77.739617847667702, 0.0 ], [ -0.001373291015625, 77.73932621938819, 0.0 ], [ -0.00274658203125, 77.73932621938819, 0.0 ], [ -0.00274658203125, 77.739617847667702, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1189, "task_x": 131070, "task_y": 38016, "task_z": 18, "center_y": 77.730136430558503, "area_in_sqm": 1061.9533892869899, "perimeter_in_m": 130.35050680946699, "length_x": 32.5922038600172, "length_y": 32.592966977062602 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.730282354024553, 0.0 ], [ -0.001373291015625, 77.730282354024553, 0.0 ], [ -0.001373291015625, 77.729990507092481, 0.0 ], [ -0.00274658203125, 77.729990507092481, 0.0 ], [ -0.00274658203125, 77.730282354024553, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1190, "task_x": 131070, "task_y": 38048, "task_z": 18, "center_y": 77.7207938282084, "area_in_sqm": 1063.5453890562101, "perimeter_in_m": 130.44817600374799, "length_x": 32.616632044695002, "length_y": 32.617395706262599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.72093986107879, 0.0 ], [ -0.001373291015625, 77.72093986107879, 0.0 ], [ -0.001373291015625, 77.720647795337982, 0.0 ], [ -0.00274658203125, 77.720647795337982, 0.0 ], [ -0.00274658203125, 77.72093986107879, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1191, "task_x": 131070, "task_y": 38080, "task_z": 18, "center_y": 77.711444221478402, "area_in_sqm": 1065.13971734047, "perimeter_in_m": 130.54591481518901, "length_x": 32.6410776591363, "length_y": 32.641841865552003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.711590363831277, 0.0 ], [ -0.001373291015625, 77.711590363831277, 0.0 ], [ -0.001373291015625, 77.711298079125442, 0.0 ], [ -0.00274658203125, 77.711298079125442, 0.0 ], [ -0.00274658203125, 77.711590363831277, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1192, "task_x": 131070, "task_y": 38112, "task_z": 18, "center_y": 77.702087605366202, "area_in_sqm": 1066.73637747765, "perimeter_in_m": 130.64372329746399, "length_x": 32.665540713767903, "length_y": 32.666305465357603 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.702233857279808, 0.0 ], [ -0.001373291015625, 77.702233857279808, 0.0 ], [ -0.001373291015625, 77.701941353452597, 0.0 ], [ -0.00274658203125, 77.701941353452597, 0.0 ], [ -0.00274658203125, 77.702233857279808, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1193, "task_x": 131070, "task_y": 38144, "task_z": 18, "center_y": 77.692723974866695, "area_in_sqm": 1068.33537268639, "perimeter_in_m": 130.74160148583999, "length_x": 32.690021219018099, "length_y": 32.690786516107799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.692870336419276, 0.0 ], [ -0.001373291015625, 77.692870336419276, 0.0 ], [ -0.001373291015625, 77.692577613314199, 0.0 ], [ -0.00274658203125, 77.692577613314199, 0.0 ], [ -0.00274658203125, 77.692870336419276, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1194, "task_x": 131070, "task_y": 38176, "task_z": 18, "center_y": 77.683353324971705, "area_in_sqm": 1069.9367053508799, "perimeter_in_m": 130.83954940850199, "length_x": 32.714519185316597, "length_y": 32.715285028232003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.683499796241463, 0.0 ], [ -0.001373291015625, 77.683499796241463, 0.0 ], [ -0.001373291015625, 77.683206853702004, 0.0 ], [ -0.00274658203125, 77.683206853702004, 0.0 ], [ -0.00274658203125, 77.683499796241463, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1195, "task_x": 131070, "task_y": 38208, "task_z": 18, "center_y": 77.673975650670002, "area_in_sqm": 1071.5403800010699, "perimeter_in_m": 130.93756711949001, "length_x": 32.739034623094597, "length_y": 32.739801012161799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.674122231735225, 0.0 ], [ -0.001373291015625, 77.674122231735225, 0.0 ], [ -0.001373291015625, 77.673829069604722, 0.0 ], [ -0.00274658203125, 77.673829069604722, 0.0 ], [ -0.00274658203125, 77.674122231735225, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1196, "task_x": 131070, "task_y": 38240, "task_z": 18, "center_y": 77.6645909469472, "area_in_sqm": 1073.14639925957, "perimeter_in_m": 131.03565466647001, "length_x": 32.763567542784699, "length_y": 32.7643344783299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.66473763788639, 0.0 ], [ -0.001373291015625, 77.66473763788639, 0.0 ], [ -0.001373291015625, 77.66444425600811, 0.0 ], [ -0.00274658203125, 77.66444425600811, 0.0 ], [ -0.00274658203125, 77.66473763788639, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1197, "task_x": 131070, "task_y": 38272, "task_z": 18, "center_y": 77.6551992087863, "area_in_sqm": 1074.75476646423, "perimeter_in_m": 131.133812082947, "length_x": 32.788117954821203, "length_y": 32.7888854371703 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.655346009677771, 0.0 ], [ -0.001373291015625, 77.655346009677771, 0.0 ], [ -0.001373291015625, 77.655052407894871, 0.0 ], [ -0.00274658203125, 77.655052407894871, 0.0 ], [ -0.00274658203125, 77.655346009677771, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1198, "task_x": 131070, "task_y": 38304, "task_z": 18, "center_y": 77.645800431167004, "area_in_sqm": 1076.3654847145101, "perimeter_in_m": 131.23203940420399, "length_x": 32.812685869639701, "length_y": 32.813453899118898 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.645947342089187, 0.0 ], [ -0.001373291015625, 77.645947342089187, 0.0 ], [ -0.001373291015625, 77.645653520244736, 0.0 ], [ -0.00274658203125, 77.645653520244736, 0.0 ], [ -0.00274658203125, 77.645947342089187, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1199, "task_x": 131070, "task_y": 38336, "task_z": 18, "center_y": 77.636394609066002, "area_in_sqm": 1077.97855746746, "perimeter_in_m": 131.33033668039599, "length_x": 32.837271297676999, "length_y": 32.838039874612498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.636541630097454, 0.0 ], [ -0.001373291015625, 77.636541630097454, 0.0 ], [ -0.001373291015625, 77.636247588034436, 0.0 ], [ -0.00274658203125, 77.636247588034436, 0.0 ], [ -0.00274658203125, 77.636541630097454, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1200, "task_x": 131070, "task_y": 38368, "task_z": 18, "center_y": 77.626981737457001, "area_in_sqm": 1079.5939879417399, "perimeter_in_m": 131.428703948925, "length_x": 32.861874249371802, "length_y": 32.862643374089799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.627128868676365, 0.0 ], [ -0.001373291015625, 77.627128868676365, 0.0 ], [ -0.001373291015625, 77.626834606237665, 0.0 ], [ -0.00274658203125, 77.626834606237665, 0.0 ], [ -0.00274658203125, 77.627128868676365, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1201, "task_x": 131070, "task_y": 38400, "task_z": 18, "center_y": 77.617561811310907, "area_in_sqm": 1081.21177959442, "perimeter_in_m": 131.527141257831, "length_x": 32.886494735163801, "length_y": 32.8872644079905 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.617709052796741, 0.0 ], [ -0.001373291015625, 77.617709052796741, 0.0 ], [ -0.001373291015625, 77.617414569825129, 0.0 ], [ -0.00274658203125, 77.617414569825129, 0.0 ], [ -0.00274658203125, 77.617709052796741, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1202, "task_x": 131070, "task_y": 38432, "task_z": 18, "center_y": 77.608134825595499, "area_in_sqm": 1082.83193552494, "perimeter_in_m": 131.62564863992401, "length_x": 32.911132765494301, "length_y": 32.911902986756097 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.608282177426361, 0.0 ], [ -0.001373291015625, 77.608282177426361, 0.0 ], [ -0.001373291015625, 77.607987473764553, 0.0 ], [ -0.00274658203125, 77.607987473764553, 0.0 ], [ -0.00274658203125, 77.608282177426361, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1203, "task_x": 131070, "task_y": 38464, "task_z": 18, "center_y": 77.598700775275304, "area_in_sqm": 1084.45445847511, "perimeter_in_m": 131.72422614819899, "length_x": 32.935788350806, "length_y": 32.936559120829301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.598848237529992, 0.0 ], [ -0.001373291015625, 77.598848237529992, 0.0 ], [ -0.001373291015625, 77.598553313020588, 0.0 ], [ -0.00274658203125, 77.598553313020588, 0.0 ], [ -0.00274658203125, 77.598848237529992, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1204, "task_x": 131070, "task_y": 38496, "task_z": 18, "center_y": 77.589259655312205, "area_in_sqm": 1086.0793526172599, "perimeter_in_m": 131.82287382007601, "length_x": 32.960461501542703, "length_y": 32.961232820653898 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.589407228069462, 0.0 ], [ -0.001373291015625, 77.589407228069462, 0.0 ], [ -0.001373291015625, 77.589112082554934, 0.0 ], [ -0.00274658203125, 77.589112082554934, 0.0 ], [ -0.00274658203125, 77.589407228069462, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1205, "task_x": 131070, "task_y": 38528, "task_z": 18, "center_y": 77.579811460664899, "area_in_sqm": 1087.7066203355801, "perimeter_in_m": 131.92159168165199, "length_x": 32.98515222815, "length_y": 32.985924096675397 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.579959144003482, 0.0 ], [ -0.001373291015625, 77.579959144003482, 0.0 ], [ -0.001373291015625, 77.579663777326289, 0.0 ], [ -0.00274658203125, 77.579663777326289, 0.0 ], [ -0.00274658203125, 77.579959144003482, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1206, "task_x": 131070, "task_y": 38560, "task_z": 18, "center_y": 77.570356186289104, "area_in_sqm": 1089.33626592159, "perimeter_in_m": 132.02037979583699, "length_x": 33.009860541074403, "length_y": 33.010632959340597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.570503980287853, 0.0 ], [ -0.001373291015625, 77.570503980287853, 0.0 ], [ -0.001373291015625, 77.570208392290297, 0.0 ], [ -0.00274658203125, 77.570208392290297, 0.0 ], [ -0.00274658203125, 77.570503980287853, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1207, "task_x": 131070, "task_y": 38592, "task_z": 18, "center_y": 77.560893827137505, "area_in_sqm": 1090.96829211712, "perimeter_in_m": 132.11923818731799, "length_x": 33.034586450764102, "length_y": 33.035359419097503 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.561041731875306, 0.0 ], [ -0.001373291015625, 77.561041731875306, 0.0 ], [ -0.001373291015625, 77.560745922399619, 0.0 ], [ -0.00274658203125, 77.560745922399619, 0.0 ], [ -0.00274658203125, 77.561041731875306, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1208, "task_x": 131070, "task_y": 38624, "task_z": 18, "center_y": 77.551424378159794, "area_in_sqm": 1092.60270190239, "perimeter_in_m": 132.218166914763, "length_x": 33.059329967668297, "length_y": 33.060103486395498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.551572393715603, 0.0 ], [ -0.001373291015625, 77.551572393715603, 0.0 ], [ -0.001373291015625, 77.5512763626039, 0.0 ], [ -0.00274658203125, 77.5512763626039, 0.0 ], [ -0.00274658203125, 77.551572393715603, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1209, "task_x": 131070, "task_y": 38656, "task_z": 18, "center_y": 77.541947834302604, "area_in_sqm": 1094.2394993305199, "perimeter_in_m": 132.31716600463201, "length_x": 33.084091102237601, "length_y": 33.084865171685301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.542095960755461, 0.0 ], [ -0.001373291015625, 77.542095960755461, 0.0 ], [ -0.001373291015625, 77.54179970784979, 0.0 ], [ -0.00274658203125, 77.54179970784979, 0.0 ], [ -0.00274658203125, 77.542095960755461, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1210, "task_x": 131070, "task_y": 38688, "task_z": 18, "center_y": 77.532464190509799, "area_in_sqm": 1095.8786873817401, "perimeter_in_m": 132.41623551134899, "length_x": 33.108869864924102, "length_y": 33.109644485418897 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.532612427938616, 0.0 ], [ -0.001373291015625, 77.532612427938616, 0.0 ], [ -0.001373291015625, 77.532315953080911, 0.0 ], [ -0.00274658203125, 77.532315953080911, 0.0 ], [ -0.00274658203125, 77.532612427938616, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1211, "task_x": 131070, "task_y": 38720, "task_z": 18, "center_y": 77.522973441721803, "area_in_sqm": 1097.5202690362901, "perimeter_in_m": 132.515375472003, "length_x": 33.133666266180903, "length_y": 33.1344414380495 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.523121790205778, 0.0 ], [ -0.001373291015625, 77.523121790205778, 0.0 ], [ -0.001373291015625, 77.522825093237884, 0.0 ], [ -0.00274658203125, 77.522825093237884, 0.0 ], [ -0.00274658203125, 77.523121790205778, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1212, "task_x": 131070, "task_y": 38752, "task_z": 18, "center_y": 77.513475582876495, "area_in_sqm": 1099.1642477512401, "perimeter_in_m": 132.614585910578, "length_x": 33.158480316462601, "length_y": 33.1592560400316 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.513624042494627, 0.0 ], [ -0.001373291015625, 77.513624042494627, 0.0 ], [ -0.001373291015625, 77.513327123258321, 0.0 ], [ -0.00274658203125, 77.513327123258321, 0.0 ], [ -0.00274658203125, 77.513624042494627, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1213, "task_x": 131070, "task_y": 38784, "task_z": 18, "center_y": 77.503970608908304, "area_in_sqm": 1100.8106266260099, "perimeter_in_m": 132.71386689566799, "length_x": 33.183312026224698, "length_y": 33.184088301820999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.504119179739888, 0.0 ], [ -0.001373291015625, 77.504119179739888, 0.0 ], [ -0.001373291015625, 77.503822038076819, 0.0 ], [ -0.00274658203125, 77.503822038076819, 0.0 ], [ -0.00274658203125, 77.504119179739888, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1214, "task_x": 131070, "task_y": 38816, "task_z": 18, "center_y": 77.494458514749098, "area_in_sqm": 1102.4594097137499, "perimeter_in_m": 132.813218455867, "length_x": 33.208161405924301, "length_y": 33.208938233874697 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.494607196873218, 0.0 ], [ -0.001373291015625, 77.494607196873218, 0.0 ], [ -0.001373291015625, 77.49430983262495, 0.0 ], [ -0.00274658203125, 77.49430983262495, 0.0 ], [ -0.00274658203125, 77.494607196873218, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1215, "task_x": 131070, "task_y": 38848, "task_z": 18, "center_y": 77.484939295327294, "area_in_sqm": 1104.11059939861, "perimeter_in_m": 132.912640632517, "length_x": 33.233028466019498, "length_y": 33.233805846650803 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.485088088823289, 0.0 ], [ -0.001373291015625, 77.485088088823289, 0.0 ], [ -0.001373291015625, 77.484790501831299, 0.0 ], [ -0.00274658203125, 77.484790501831299, 0.0 ], [ -0.00274658203125, 77.485088088823289, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1216, "task_x": 131070, "task_y": 38880, "task_z": 18, "center_y": 77.475412945568607, "area_in_sqm": 1105.7642003297799, "perimeter_in_m": 133.01213346908301, "length_x": 33.257913216969797, "length_y": 33.258691150608797 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.47556185051576, 0.0 ], [ -0.001373291015625, 77.47556185051576, 0.0 ], [ -0.001373291015625, 77.475264040621425, 0.0 ], [ -0.00274658203125, 77.475264040621425, 0.0 ], [ -0.00274658203125, 77.47556185051576, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1217, "task_x": 131070, "task_y": 38912, "task_z": 18, "center_y": 77.465879460395598, "area_in_sqm": 1107.4202145338099, "perimeter_in_m": 133.111697009034, "length_x": 33.282815669235703, "length_y": 33.283594156209404 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.466028476873277, 0.0 ], [ -0.001373291015625, 77.466028476873277, 0.0 ], [ -0.001373291015625, 77.465730443917877, 0.0 ], [ -0.00274658203125, 77.465730443917877, 0.0 ], [ -0.00274658203125, 77.466028476873277, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1218, "task_x": 131070, "task_y": 38944, "task_z": 18, "center_y": 77.456338834727802, "area_in_sqm": 1109.0786459446001, "perimeter_in_m": 133.21133129159401, "length_x": 33.307735833278997, "length_y": 33.308514873914397 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.456487962815459, 0.0 ], [ -0.001373291015625, 77.456487962815459, 0.0 ], [ -0.001373291015625, 77.456189706640174, 0.0 ], [ -0.00274658203125, 77.456189706640174, 0.0 ], [ -0.00274658203125, 77.456487962815459, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1219, "task_x": 131070, "task_y": 38976, "task_z": 18, "center_y": 77.446791063481896, "area_in_sqm": 1110.7394977808001, "perimeter_in_m": 133.31103635527899, "length_x": 33.3326737195626, "length_y": 33.333453314186499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.446940303258913, 0.0 ], [ -0.001373291015625, 77.446940303258913, 0.0 ], [ -0.001373291015625, 77.446641823704866, 0.0 ], [ -0.00274658203125, 77.446641823704866, 0.0 ], [ -0.00274658203125, 77.446940303258913, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1220, "task_x": 131070, "task_y": 39008, "task_z": 18, "center_y": 77.437236141571304, "area_in_sqm": 1112.40277338028, "perimeter_in_m": 133.410812254185, "length_x": 33.357629338550602, "length_y": 33.358409487490299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.437385493117262, 0.0 ], [ -0.001373291015625, 77.437385493117262, 0.0 ], [ -0.001373291015625, 77.437086790025432, 0.0 ], [ -0.00274658203125, 77.437086790025432, 0.0 ], [ -0.00274658203125, 77.437385493117262, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1221, "task_x": 131070, "task_y": 39040, "task_z": 18, "center_y": 77.427674063906807, "area_in_sqm": 1114.0684762000999, "perimeter_in_m": 133.510659010192, "length_x": 33.382602700708198, "length_y": 33.383383404290498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.427823527301086, 0.0 ], [ -0.001373291015625, 77.427823527301086, 0.0 ], [ -0.001373291015625, 77.427524600512385, 0.0 ], [ -0.00274658203125, 77.427524600512385, 0.0 ], [ -0.00274658203125, 77.427823527301086, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1222, "task_x": 131070, "task_y": 39072, "task_z": 18, "center_y": 77.418104825395602, "area_in_sqm": 1115.7366091013, "perimeter_in_m": 133.61057668200399, "length_x": 33.407593816501802, "length_y": 33.408375075053897 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.418254400717956, 0.0 ], [ -0.001373291015625, 77.418254400717956, 0.0 ], [ -0.001373291015625, 77.417955250073192, 0.0 ], [ -0.00274658203125, 77.417955250073192, 0.0 ], [ -0.00274658203125, 77.418254400717956, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1223, "task_x": 131070, "task_y": 39104, "task_z": 18, "center_y": 77.408528420942403, "area_in_sqm": 1117.4071760177601, "perimeter_in_m": 133.71056530000499, "length_x": 33.432602696398902, "length_y": 33.433384510247798 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.408678108272412, 0.0 ], [ -0.001373291015625, 77.408678108272412, 0.0 ], [ -0.001373291015625, 77.408378733612324, 0.0 ], [ -0.00274658203125, 77.408378733612324, 0.0 ], [ -0.00274658203125, 77.408678108272412, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1224, "task_x": 131070, "task_y": 39136, "task_z": 18, "center_y": 77.398944845448597, "area_in_sqm": 1119.08018016815, "perimeter_in_m": 133.81062491900099, "length_x": 33.457629350867897, "length_y": 33.458411720340997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.399094644866025, 0.0 ], [ -0.001373291015625, 77.399094644866025, 0.0 ], [ -0.001373291015625, 77.398795046031211, 0.0 ], [ -0.00274658203125, 77.398795046031211, 0.0 ], [ -0.00274658203125, 77.399094644866025, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1225, "task_x": 131070, "task_y": 39168, "task_z": 18, "center_y": 77.389354093812798, "area_in_sqm": 1120.7556250095399, "perimeter_in_m": 133.910755566554, "length_x": 33.482673790378698, "length_y": 33.483456715803001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.389504005397299, 0.0 ], [ -0.001373291015625, 77.389504005397299, 0.0 ], [ -0.001373291015625, 77.389204182228312, 0.0 ], [ -0.00274658203125, 77.389204182228312, 0.0 ], [ -0.00274658203125, 77.389504005397299, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1226, "task_x": 131070, "task_y": 39200, "task_z": 18, "center_y": 77.379756160930398, "area_in_sqm": 1122.4335129261001, "perimeter_in_m": 134.010957299246, "length_x": 33.507736025401698, "length_y": 33.508519507104602 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.379906184761765, 0.0 ], [ -0.001373291015625, 77.379906184761765, 0.0 ], [ -0.001373291015625, 77.379606137099017, 0.0 ], [ -0.00274658203125, 77.379606137099017, 0.0 ], [ -0.00274658203125, 77.379906184761765, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1227, "task_x": 131070, "task_y": 39232, "task_z": 18, "center_y": 77.370151041693802, "area_in_sqm": 1124.11384892464, "perimeter_in_m": 134.111230136138, "length_x": 33.532816066408998, "length_y": 33.5336001047176 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.3703011778519, 0.0 ], [ -0.001373291015625, 77.3703011778519, 0.0 ], [ -0.001373291015625, 77.370000905535761, 0.0 ], [ -0.00274658203125, 77.370000905535761, 0.0 ], [ -0.00274658203125, 77.3703011778519, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1228, "task_x": 131070, "task_y": 39264, "task_z": 18, "center_y": 77.360538730992502, "area_in_sqm": 1125.7966350316999, "perimeter_in_m": 134.211574133113, "length_x": 33.557913923873301, "length_y": 33.558698519114799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.360688979557182, 0.0 ], [ -0.001373291015625, 77.360688979557182, 0.0 ], [ -0.001373291015625, 77.360388482427894, 0.0 ], [ -0.00274658203125, 77.360388482427894, 0.0 ], [ -0.00274658203125, 77.360688979557182, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1229, "task_x": 131070, "task_y": 39296, "task_z": 18, "center_y": 77.350919223712907, "area_in_sqm": 1127.4818756580401, "perimeter_in_m": 134.31198934144999, "length_x": 33.583029608268397, "length_y": 33.583814760770302 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.351069584764076, 0.0 ], [ -0.001373291015625, 77.351069584764076, 0.0 ], [ -0.001373291015625, 77.350768862661781, 0.0 ], [ -0.00274658203125, 77.350768862661781, 0.0 ], [ -0.00274658203125, 77.351069584764076, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1230, "task_x": 131070, "task_y": 39328, "task_z": 18, "center_y": 77.341292514738399, "area_in_sqm": 1129.16957354546, "perimeter_in_m": 134.41247578411401, "length_x": 33.608163130069101, "length_y": 33.608948840158803 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.341442988356036, 0.0 ], [ -0.001373291015625, 77.341442988356036, 0.0 ], [ -0.001373291015625, 77.341142041120804, 0.0 ], [ -0.00274658203125, 77.341142041120804, 0.0 ], [ -0.00274658203125, 77.341442988356036, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1231, "task_x": 131070, "task_y": 39360, "task_z": 18, "center_y": 77.331658598949403, "area_in_sqm": 1130.8597321510299, "perimeter_in_m": 134.513033516631, "length_x": 33.633314499751499, "length_y": 33.634100767756301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.331809185213473, 0.0 ], [ -0.001373291015625, 77.331809185213473, 0.0 ], [ -0.001373291015625, 77.331508012685248, 0.0 ], [ -0.00274658203125, 77.331508012685248, 0.0 ], [ -0.00274658203125, 77.331809185213473, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1232, "task_x": 131070, "task_y": 39392, "task_z": 18, "center_y": 77.322017471223106, "area_in_sqm": 1132.5523545742001, "perimeter_in_m": 134.613662579318, "length_x": 33.658483727792202, "length_y": 33.659270554039502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.322168170213814, 0.0 ], [ -0.001373291015625, 77.322168170213814, 0.0 ], [ -0.001373291015625, 77.321866772232482, 0.0 ], [ -0.00274658203125, 77.321866772232482, 0.0 ], [ -0.00274658203125, 77.322168170213814, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1233, "task_x": 131070, "task_y": 39424, "task_z": 18, "center_y": 77.312369126434106, "area_in_sqm": 1134.2474449873, "perimeter_in_m": 134.71436299903601, "length_x": 33.6836708246692, "length_y": 33.6844582094865 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.312519938231418, 0.0 ], [ -0.001373291015625, 77.312519938231418, 0.0 ], [ -0.001373291015625, 77.312218314636752, 0.0 ], [ -0.00274658203125, 77.312218314636752, 0.0 ], [ -0.00274658203125, 77.312519938231418, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1234, "task_x": 131070, "task_y": 39456, "task_z": 18, "center_y": 77.302713559453494, "area_in_sqm": 1135.9450061321299, "perimeter_in_m": 134.81513483804801, "length_x": 33.7088758008612, "length_y": 33.709663744575998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.302864484137672, 0.0 ], [ -0.001373291015625, 77.302864484137672, 0.0 ], [ -0.001373291015625, 77.302562634769345, 0.0 ], [ -0.00274658203125, 77.302562634769345, 0.0 ], [ -0.00274658203125, 77.302864484137672, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1235, "task_x": 131070, "task_y": 39488, "task_z": 18, "center_y": 77.293050765149701, "area_in_sqm": 1137.64504146576, "perimeter_in_m": 134.91597811755301, "length_x": 33.734098666848098, "length_y": 33.734887169787797 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.293201802800922, 0.0 ], [ -0.001373291015625, 77.293201802800922, 0.0 ], [ -0.001373291015625, 77.292899727498536, 0.0 ], [ -0.00274658203125, 77.292899727498536, 0.0 ], [ -0.00274658203125, 77.293201802800922, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1236, "task_x": 131070, "task_y": 39520, "task_z": 18, "center_y": 77.283380738388004, "area_in_sqm": 1139.34755516052, "perimeter_in_m": 135.016892901234, "length_x": 33.759339433110299, "length_y": 33.760128495602601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.283531889086504, 0.0 ], [ -0.001373291015625, 77.283531889086504, 0.0 ], [ -0.001373291015625, 77.283229587689547, 0.0 ], [ -0.00274658203125, 77.283229587689547, 0.0 ], [ -0.00274658203125, 77.283531889086504, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1237, "task_x": 131070, "task_y": 39552, "task_z": 18, "center_y": 77.273703474030697, "area_in_sqm": 1141.0525493621799, "perimeter_in_m": 135.11787921029901, "length_x": 33.7845981101296, "length_y": 33.785387732501803 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.273854737856738, 0.0 ], [ -0.001373291015625, 77.273854737856738, 0.0 ], [ -0.001373291015625, 77.273552210204613, 0.0 ], [ -0.00274658203125, 77.273552210204613, 0.0 ], [ -0.00274658203125, 77.273854737856738, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1238, "task_x": 131070, "task_y": 39584, "task_z": 18, "center_y": 77.264018966936902, "area_in_sqm": 1142.7600287199, "perimeter_in_m": 135.218937101705, "length_x": 33.8098747083882, "length_y": 33.810664890968198 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.264170343970918, 0.0 ], [ -0.001373291015625, 77.264170343970918, 0.0 ], [ -0.001373291015625, 77.263867589902915, 0.0 ], [ -0.00274658203125, 77.263867589902915, 0.0 ], [ -0.00274658203125, 77.264170343970918, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1239, "task_x": 131070, "task_y": 39616, "task_z": 18, "center_y": 77.254327211963002, "area_in_sqm": 1144.4699959754901, "perimeter_in_m": 135.320066609755, "length_x": 33.835169238369801, "length_y": 33.835959981484997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.254478702285297, 0.0 ], [ -0.001373291015625, 77.254478702285297, 0.0 ], [ -0.001373291015625, 77.254175721640649, 0.0 ], [ -0.00274658203125, 77.254175721640649, 0.0 ], [ -0.00274658203125, 77.254478702285297, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1240, "task_x": 131070, "task_y": 39648, "task_z": 18, "center_y": 77.244628203962094, "area_in_sqm": 1146.18245446682, "perimeter_in_m": 135.421267774775, "length_x": 33.860481710558503, "length_y": 33.8612730145366 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.244779807653146, 0.0 ], [ -0.001373291015625, 77.244779807653146, 0.0 ], [ -0.001373291015625, 77.244476600270957, 0.0 ], [ -0.00274658203125, 77.244476600270957, 0.0 ], [ -0.00274658203125, 77.244779807653146, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1241, "task_x": 131070, "task_y": 39680, "task_z": 18, "center_y": 77.234921937784307, "area_in_sqm": 1147.89740800858, "perimeter_in_m": 135.52254064523601, "length_x": 33.885812135439302, "length_y": 33.886604000608003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.23507365492469, 0.0 ], [ -0.001373291015625, 77.23507365492469, 0.0 ], [ -0.001373291015625, 77.234770220643981, 0.0 ], [ -0.00274658203125, 77.234770220643981, 0.0 ], [ -0.00274658203125, 77.23507365492469, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1242, "task_x": 131070, "task_y": 39712, "task_z": 18, "center_y": 77.225208408276998, "area_in_sqm": 1149.6148597002, "perimeter_in_m": 135.62388526110601, "length_x": 33.911160523498197, "length_y": 33.911952950185203 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.225360238947147, 0.0 ], [ -0.001373291015625, 77.225360238947147, 0.0 ], [ -0.001373291015625, 77.225056577606836, 0.0 ], [ -0.00274658203125, 77.225056577606836, 0.0 ], [ -0.00274658203125, 77.225360238947147, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1243, "task_x": 131070, "task_y": 39744, "task_z": 18, "center_y": 77.2154876102842, "area_in_sqm": 1151.3348133564, "perimeter_in_m": 135.72530165670301, "length_x": 33.936526885222001, "length_y": 33.937319873755001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.215639554564717, 0.0 ], [ -0.001373291015625, 77.215639554564717, 0.0 ], [ -0.001373291015625, 77.215335666003625, 0.0 ], [ -0.00274658203125, 77.215335666003625, 0.0 ], [ -0.00274658203125, 77.215639554564717, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1244, "task_x": 131070, "task_y": 39776, "task_z": 18, "center_y": 77.205759538647001, "area_in_sqm": 1153.0572714805601, "perimeter_in_m": 135.826789879785, "length_x": 33.961911231098298, "length_y": 33.962704781805002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.205911596618535, 0.0 ], [ -0.001373291015625, 77.205911596618535, 0.0 ], [ -0.001373291015625, 77.205607480675425, 0.0 ], [ -0.00274658203125, 77.205607480675425, 0.0 ], [ -0.00274658203125, 77.205911596618535, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1245, "task_x": 131070, "task_y": 39808, "task_z": 18, "center_y": 77.196024188203495, "area_in_sqm": 1154.78223896027, "perimeter_in_m": 135.928349971042, "length_x": 33.987313571615402, "length_y": 33.988107684823703 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.196176359946762, 0.0 ], [ -0.001373291015625, 77.196176359946762, 0.0 ], [ -0.001373291015625, 77.195872016460271, 0.0 ], [ -0.00274658203125, 77.195872016460271, 0.0 ], [ -0.00274658203125, 77.196176359946762, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1246, "task_x": 131070, "task_y": 39840, "task_z": 18, "center_y": 77.186281553788902, "area_in_sqm": 1156.5097179412801, "perimeter_in_m": 136.02998196974201, "length_x": 34.012733917262402, "length_y": 34.013528593300002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.186433839384534, 0.0 ], [ -0.001373291015625, 77.186433839384534, 0.0 ], [ -0.001373291015625, 77.186129268193213, 0.0 ], [ -0.00274658203125, 77.186129268193213, 0.0 ], [ -0.00274658203125, 77.186433839384534, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1247, "task_x": 131070, "task_y": 39872, "task_z": 18, "center_y": 77.176531630235104, "area_in_sqm": 1158.2397124767299, "perimeter_in_m": 136.13168592719899, "length_x": 34.038172278529402, "length_y": 34.038967517724203 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.176684029763948, 0.0 ], [ -0.001373291015625, 77.176684029763948, 0.0 ], [ -0.001373291015625, 77.176379230706246, 0.0 ], [ -0.00274658203125, 77.176379230706246, 0.0 ], [ -0.00274658203125, 77.176684029763948, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1248, "task_x": 131070, "task_y": 39904, "task_z": 18, "center_y": 77.166774412371197, "area_in_sqm": 1159.9722261428799, "perimeter_in_m": 136.23346187453799, "length_x": 34.063628665906997, "length_y": 34.0644244685868 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.166926925914083, 0.0 ], [ -0.001373291015625, 77.166926925914083, 0.0 ], [ -0.001373291015625, 77.166621898828367, 0.0 ], [ -0.00274658203125, 77.166621898828367, 0.0 ], [ -0.00274658203125, 77.166926925914083, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1249, "task_x": 131070, "task_y": 39936, "task_z": 18, "center_y": 77.157009895023293, "area_in_sqm": 1161.7072622776, "perimeter_in_m": 136.33530985316099, "length_x": 34.089103089886699, "length_y": 34.089899456379399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.157162522660997, 0.0 ], [ -0.001373291015625, 77.157162522660997, 0.0 ], [ -0.001373291015625, 77.156857267385533, 0.0 ], [ -0.00274658203125, 77.156857267385533, 0.0 ], [ -0.00274658203125, 77.157162522660997, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1250, "task_x": 131070, "task_y": 39968, "task_z": 18, "center_y": 77.147238073014194, "area_in_sqm": 1163.44482433796, "perimeter_in_m": 136.43722990977801, "length_x": 34.114595560960602, "length_y": 34.115392491594001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.147390814827716, 0.0 ], [ -0.001373291015625, 77.147390814827716, 0.0 ], [ -0.001373291015625, 77.147085331200671, 0.0 ], [ -0.00274658203125, 77.147085331200671, 0.0 ], [ -0.00274658203125, 77.147390814827716, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1251, "task_x": 131070, "task_y": 40000, "task_z": 18, "center_y": 77.137458941163999, "area_in_sqm": 1165.18491566181, "perimeter_in_m": 136.539222090393, "length_x": 34.140106089621497, "length_y": 34.140903584723603 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.137611797234257, 0.0 ], [ -0.001373291015625, 77.137611797234257, 0.0 ], [ -0.001373291015625, 77.137306085093698, 0.0 ], [ -0.00274658203125, 77.137306085093698, 0.0 ], [ -0.00274658203125, 77.137611797234257, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1252, "task_x": 131070, "task_y": 40032, "task_z": 18, "center_y": 77.127672494289598, "area_in_sqm": 1166.92753958702, "perimeter_in_m": 136.64128642436901, "length_x": 34.165634686362999, "length_y": 34.166432746261698 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.127825464697608, 0.0 ], [ -0.001373291015625, 77.127825464697608, 0.0 ], [ -0.001373291015625, 77.127519523881531, 0.0 ], [ -0.00274658203125, 77.127519523881531, 0.0 ], [ -0.00274658203125, 77.127825464697608, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1253, "task_x": 131070, "task_y": 40064, "task_z": 18, "center_y": 77.117878727204896, "area_in_sqm": 1168.6726996898699, "perimeter_in_m": 136.743422965506, "length_x": 34.191181361679398, "length_y": 34.191979986702698 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.118031812031745, 0.0 ], [ -0.001373291015625, 77.118031812031745, 0.0 ], [ -0.001373291015625, 77.117725642378019, 0.0 ], [ -0.00274658203125, 77.117725642378019, 0.0 ], [ -0.00274658203125, 77.118031812031745, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1254, "task_x": 131070, "task_y": 40096, "task_z": 18, "center_y": 77.1080776347208, "area_in_sqm": 1170.4204002618801, "perimeter_in_m": 136.84563175307801, "length_x": 34.216746126065502, "length_y": 34.217545316541297 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.108230834047589, 0.0 ], [ -0.001373291015625, 77.108230834047589, 0.0 ], [ -0.001373291015625, 77.107924435394025, 0.0 ], [ -0.00274658203125, 77.107924435394025, 0.0 ], [ -0.00274658203125, 77.108230834047589, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1255, "task_x": 131070, "task_y": 40128, "task_z": 18, "center_y": 77.098269211645203, "area_in_sqm": 1172.17064368725, "perimeter_in_m": 136.947912822831, "length_x": 34.242328990016901, "length_y": 34.2431287462733 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.098422525553062, 0.0 ], [ -0.001373291015625, 77.098422525553062, 0.0 ], [ -0.001373291015625, 77.098115897737358, 0.0 ], [ -0.00274658203125, 77.098115897737358, 0.0 ], [ -0.00274658203125, 77.098422525553062, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1256, "task_x": 131070, "task_y": 40160, "task_z": 18, "center_y": 77.0884534527829, "area_in_sqm": 1173.9234331846201, "perimeter_in_m": 137.05026621440101, "length_x": 34.267929964029904, "length_y": 34.268730286394799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.088606881353044, 0.0 ], [ -0.001373291015625, 77.088606881353044, 0.0 ], [ -0.001373291015625, 77.088300024212813, 0.0 ], [ -0.00274658203125, 77.088300024212813, 0.0 ], [ -0.00274658203125, 77.088606881353044, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1257, "task_x": 131070, "task_y": 40192, "task_z": 18, "center_y": 77.078630352935804, "area_in_sqm": 1175.6787737607999, "perimeter_in_m": 137.15269198299899, "length_x": 34.293549058601101, "length_y": 34.294349947402601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.078783896249433, 0.0 ], [ -0.001373291015625, 77.078783896249433, 0.0 ], [ -0.001373291015625, 77.07847680962216, 0.0 ], [ -0.00274658203125, 77.07847680962216, 0.0 ], [ -0.00274658203125, 77.078783896249433, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1258, "task_x": 131070, "task_y": 40224, "task_z": 18, "center_y": 77.068799906902598, "area_in_sqm": 1177.4366679191601, "perimeter_in_m": 137.25519015587699, "length_x": 34.319186284228003, "length_y": 34.319987739794101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.068953565041028, 0.0 ], [ -0.001373291015625, 77.068953565041028, 0.0 ], [ -0.001373291015625, 77.068646248764153, 0.0 ], [ -0.00274658203125, 77.068646248764153, 0.0 ], [ -0.00274658203125, 77.068953565041028, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1259, "task_x": 131070, "task_y": 40256, "task_z": 18, "center_y": 77.058962109479097, "area_in_sqm": 1179.1971192359899, "perimeter_in_m": 137.357760783647, "length_x": 34.344841651408601, "length_y": 34.345643674067503 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.059115882523685, 0.0 ], [ -0.001373291015625, 77.059115882523685, 0.0 ], [ -0.001373291015625, 77.05880833643451, 0.0 ], [ -0.00274658203125, 77.05880833643451, 0.0 ], [ -0.00274658203125, 77.059115882523685, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1260, "task_x": 131070, "task_y": 40288, "task_z": 18, "center_y": 77.049116955458004, "area_in_sqm": 1180.96013140678, "perimeter_in_m": 137.460403915863, "length_x": 34.370515170641497, "length_y": 34.371317760721297 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.049270843490177, 0.0 ], [ -0.001373291015625, 77.049270843490177, 0.0 ], [ -0.001373291015625, 77.04896306742593, 0.0 ], [ -0.00274658203125, 77.04896306742593, 0.0 ], [ -0.00274658203125, 77.049270843490177, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1261, "task_x": 131070, "task_y": 40320, "task_z": 18, "center_y": 77.039264439629207, "area_in_sqm": 1182.7257077693901, "perimeter_in_m": 137.56311956455301, "length_x": 34.396206852425898, "length_y": 34.397010010254398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.039418442730266, 0.0 ], [ -0.001373291015625, 77.039418442730266, 0.0 ], [ -0.001373291015625, 77.039110436528091, 0.0 ], [ -0.00274658203125, 77.039110436528091, 0.0 ], [ -0.00274658203125, 77.039418442730266, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1262, "task_x": 131070, "task_y": 40352, "task_z": 18, "center_y": 77.029404556779198, "area_in_sqm": 1184.4938516616801, "perimeter_in_m": 137.66590780440799, "length_x": 34.421916707261403, "length_y": 34.422720433167001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.0295586750307, 0.0 ], [ -0.001373291015625, 77.0295586750307, 0.0 ], [ -0.001373291015625, 77.029250438527626, 0.0 ], [ -0.00274658203125, 77.029250438527626, 0.0 ], [ -0.00274658203125, 77.0295586750307, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1263, "task_x": 131070, "task_y": 40384, "task_z": 18, "center_y": 77.019537301691699, "area_in_sqm": 1186.2645666599301, "perimeter_in_m": 137.768768663738, "length_x": 34.447644745648098, "length_y": 34.448449039958902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.019691535175198, 0.0 ], [ -0.001373291015625, 77.019691535175198, 0.0 ], [ -0.001373291015625, 77.019383068208157, 0.0 ], [ -0.00274658203125, 77.019383068208157, 0.0 ], [ -0.00274658203125, 77.019691535175198, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1264, "task_x": 131070, "task_y": 40416, "task_z": 18, "center_y": 77.009662669147403, "area_in_sqm": 1188.03785693645, "perimeter_in_m": 137.87170218112701, "length_x": 34.473390978086798, "length_y": 34.474195841130999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 77.009817017944442, 0.0 ], [ -0.001373291015625, 77.009817017944442, 0.0 ], [ -0.001373291015625, 77.009508320350292, 0.0 ], [ -0.00274658203125, 77.009508320350292, 0.0 ], [ -0.00274658203125, 77.009817017944442, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1265, "task_x": 131070, "task_y": 40448, "task_z": 18, "center_y": 76.999780653923807, "area_in_sqm": 1189.81372535229, "perimeter_in_m": 137.97470840011701, "length_x": 34.499155415078803, "length_y": 34.499960847184397 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.999935118116099, 0.0 ], [ -0.001373291015625, 76.999935118116099, 0.0 ], [ -0.001373291015625, 76.9996261897316, 0.0 ], [ -0.00274658203125, 76.9996261897316, 0.0 ], [ -0.00274658203125, 76.999935118116099, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1266, "task_x": 131070, "task_y": 40480, "task_z": 18, "center_y": 76.989891250795694, "area_in_sqm": 1191.5921754837, "perimeter_in_m": 138.077787366721, "length_x": 34.524938067125703, "length_y": 34.525744068621002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.990045830464794, 0.0 ], [ -0.001373291015625, 76.990045830464794, 0.0 ], [ -0.001373291015625, 76.989736671126593, 0.0 ], [ -0.00274658203125, 76.989736671126593, 0.0 ], [ -0.00274658203125, 76.990045830464794, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1267, "task_x": 131070, "task_y": 40512, "task_z": 18, "center_y": 76.979994454534506, "area_in_sqm": 1193.3732111454001, "perimeter_in_m": 138.180939122708, "length_x": 34.550738944729602, "length_y": 34.551545515942799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.980149149762156, 0.0 ], [ -0.001373291015625, 76.980149149762156, 0.0 ], [ -0.001373291015625, 76.979839759306813, 0.0 ], [ -0.00274658203125, 76.979839759306813, 0.0 ], [ -0.00274658203125, 76.980149149762156, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1268, "task_x": 131070, "task_y": 40544, "task_z": 18, "center_y": 76.970090259908702, "area_in_sqm": 1195.15683567524, "perimeter_in_m": 138.28416370454701, "length_x": 34.576558058393303, "length_y": 34.577365199652597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.970245070776741, 0.0 ], [ -0.001373291015625, 76.970245070776741, 0.0 ], [ -0.001373291015625, 76.969935449040733, 0.0 ], [ -0.00274658203125, 76.969935449040733, 0.0 ], [ -0.00274658203125, 76.970245070776741, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1269, "task_x": 131070, "task_y": 40576, "task_z": 18, "center_y": 76.960178661683997, "area_in_sqm": 1196.9430522918699, "perimeter_in_m": 138.38746115187701, "length_x": 34.602395418619601, "length_y": 34.603203130253299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.960333588274125, 0.0 ], [ -0.001373291015625, 76.960333588274125, 0.0 ], [ -0.001373291015625, 76.960023735093841, 0.0 ], [ -0.00274658203125, 76.960023735093841, 0.0 ], [ -0.00274658203125, 76.960333588274125, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1270, "task_x": 131070, "task_y": 40608, "task_z": 18, "center_y": 76.950259654622698, "area_in_sqm": 1198.73186552525, "perimeter_in_m": 138.490831507179, "length_x": 34.6282510359122, "length_y": 34.629059318248302 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.950414697016839, 0.0 ], [ -0.001373291015625, 76.950414697016839, 0.0 ], [ -0.001373291015625, 76.950104612228543, 0.0 ], [ -0.00274658203125, 76.950104612228543, 0.0 ], [ -0.00274658203125, 76.950414697016839, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1271, "task_x": 131070, "task_y": 40640, "task_z": 18, "center_y": 76.940333233484296, "area_in_sqm": 1200.5232779979699, "perimeter_in_m": 138.59427483700699, "length_x": 34.654124920774699, "length_y": 34.654933774141703 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.94048839176439, 0.0 ], [ -0.001373291015625, 76.94048839176439, 0.0 ], [ -0.001373291015625, 76.940178075204258, 0.0 ], [ -0.00274658203125, 76.940178075204258, 0.0 ], [ -0.00274658203125, 76.94048839176439, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1272, "task_x": 131070, "task_y": 40672, "task_z": 18, "center_y": 76.930399393025297, "area_in_sqm": 1202.3172935247401, "perimeter_in_m": 138.697791145254, "length_x": 34.680017083711498, "length_y": 34.680826508437697 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.930554667273228, 0.0 ], [ -0.001373291015625, 76.930554667273228, 0.0 ], [ -0.001373291015625, 76.930244118777367, 0.0 ], [ -0.00274658203125, 76.930244118777367, 0.0 ], [ -0.00274658203125, 76.930554667273228, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1273, "task_x": 131070, "task_y": 40704, "task_z": 18, "center_y": 76.920458127998998, "area_in_sqm": 1204.1139156818399, "perimeter_in_m": 138.801380494939, "length_x": 34.705927535227303, "length_y": 34.706737531640798 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.920613518296818, 0.0 ], [ -0.001373291015625, 76.920613518296818, 0.0 ], [ -0.001373291015625, 76.920302737701221, 0.0 ], [ -0.00274658203125, 76.920302737701221, 0.0 ], [ -0.00274658203125, 76.920613518296818, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1274, "task_x": 131070, "task_y": 40736, "task_z": 18, "center_y": 76.910509433155894, "area_in_sqm": 1205.91314840317, "perimeter_in_m": 138.905042923933, "length_x": 34.7318562858269, "length_y": 34.732666854256102 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.910664939585573, 0.0 ], [ -0.001373291015625, 76.910664939585573, 0.0 ], [ -0.001373291015625, 76.910353926726131, 0.0 ], [ -0.00274658203125, 76.910353926726131, 0.0 ], [ -0.00274658203125, 76.910664939585573, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1275, "task_x": 131070, "task_y": 40768, "task_z": 18, "center_y": 76.9005533032432, "area_in_sqm": 1207.7149945497499, "perimeter_in_m": 139.00877847331, "length_x": 34.757803346015699, "length_y": 34.758614486788801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.900708925886889, 0.0 ], [ -0.001373291015625, 76.900708925886889, 0.0 ], [ -0.001373291015625, 76.900397680599426, 0.0 ], [ -0.00274658203125, 76.900397680599426, 0.0 ], [ -0.00274658203125, 76.900708925886889, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1276, "task_x": 131070, "task_y": 40800, "task_z": 18, "center_y": 76.8905897330052, "area_in_sqm": 1209.5194580555001, "perimeter_in_m": 139.11258718023899, "length_x": 34.7837687262994, "length_y": 34.784580439744701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.890745471945124, 0.0 ], [ -0.001373291015625, 76.890745471945124, 0.0 ], [ -0.001373291015625, 76.890433994065361, 0.0 ], [ -0.00274658203125, 76.890433994065361, 0.0 ], [ -0.00274658203125, 76.890745471945124, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1277, "task_x": 131070, "task_y": 40832, "task_z": 18, "center_y": 76.880618717183395, "area_in_sqm": 1211.3265427351, "perimeter_in_m": 139.216469101011, "length_x": 34.809752437183803, "length_y": 34.810564723629703 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.880774572501636, 0.0 ], [ -0.001373291015625, 76.880774572501636, 0.0 ], [ -0.001373291015625, 76.880462861865155, 0.0 ], [ -0.00274658203125, 76.880462861865155, 0.0 ], [ -0.00274658203125, 76.880774572501636, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1278, "task_x": 131070, "task_y": 40864, "task_z": 18, "center_y": 76.870640250515905, "area_in_sqm": 1213.1362518072101, "perimeter_in_m": 139.32042426146799, "length_x": 34.835754489175201, "length_y": 34.836567348949998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.8707962222947, 0.0 ], [ -0.001373291015625, 76.8707962222947, 0.0 ], [ -0.001373291015625, 76.870484278737052, 0.0 ], [ -0.00274658203125, 76.870484278737052, 0.0 ], [ -0.00274658203125, 76.8707962222947, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1279, "task_x": 131070, "task_y": 40896, "task_z": 18, "center_y": 76.860654327737905, "area_in_sqm": 1214.9485888481099, "perimeter_in_m": 139.424452709761, "length_x": 34.861774892780097, "length_y": 34.862588326212098 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.860810416059621, 0.0 ], [ -0.001373291015625, 76.860810416059621, 0.0 ], [ -0.001373291015625, 76.860498239416231, 0.0 ], [ -0.00274658203125, 76.860498239416231, 0.0 ], [ -0.00274658203125, 76.860810416059621, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1280, "task_x": 131070, "task_y": 40928, "task_z": 18, "center_y": 76.850660943581701, "area_in_sqm": 1216.7635580301301, "perimeter_in_m": 139.52855449297499, "length_x": 34.887813658505202, "length_y": 34.888627665922797 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.850817148528648, 0.0 ], [ -0.001373291015625, 76.850817148528648, 0.0 ], [ -0.001373291015625, 76.850504738634839, 0.0 ], [ -0.00274658203125, 76.850504738634839, 0.0 ], [ -0.00274658203125, 76.850817148528648, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1281, "task_x": 131070, "task_y": 40960, "task_z": 18, "center_y": 76.840660092776503, "area_in_sqm": 1218.5811619758599, "perimeter_in_m": 139.63272963836999, "length_x": 34.913870796857701, "length_y": 34.914685378589098 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.840816414430975, 0.0 ], [ -0.001373291015625, 76.840816414430975, 0.0 ], [ -0.001373291015625, 76.840503771122016, 0.0 ], [ -0.00274658203125, 76.840503771122016, 0.0 ], [ -0.00274658203125, 76.840816414430975, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1282, "task_x": 131070, "task_y": 40992, "task_z": 18, "center_y": 76.830651770048306, "area_in_sqm": 1220.40140521526, "perimeter_in_m": 139.736978201178, "length_x": 34.939946318344603, "length_y": 34.9407614747183 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.83080820849284, 0.0 ], [ -0.001373291015625, 76.83080820849284, 0.0 ], [ -0.001373291015625, 76.830495331603856, 0.0 ], [ -0.00274658203125, 76.830495331603856, 0.0 ], [ -0.00274658203125, 76.83080820849284, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1283, "task_x": 131070, "task_y": 41024, "task_z": 18, "center_y": 76.820635970120406, "area_in_sqm": 1222.2242902517301, "perimeter_in_m": 139.84130022317501, "length_x": 34.9660402334734, "length_y": 34.966855964817803 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.820792525437398, 0.0 ], [ -0.001373291015625, 76.820792525437398, 0.0 ], [ -0.001373291015625, 76.820479414803415, 0.0 ], [ -0.00274658203125, 76.820479414803415, 0.0 ], [ -0.00274658203125, 76.820792525437398, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1284, "task_x": 131070, "task_y": 41056, "task_z": 18, "center_y": 76.810612687712805, "area_in_sqm": 1224.04982256889, "perimeter_in_m": 139.94569573693099, "length_x": 34.992152552751797, "length_y": 34.992968859395198 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.810769359984761, 0.0 ], [ -0.001373291015625, 76.810769359984761, 0.0 ], [ -0.001373291015625, 76.810456015440764, 0.0 ], [ -0.00274658203125, 76.810456015440764, 0.0 ], [ -0.00274658203125, 76.810769359984761, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1285, "task_x": 131070, "task_y": 41088, "task_z": 18, "center_y": 76.800581917542502, "area_in_sqm": 1225.87800335884, "perimeter_in_m": 140.05016479413399, "length_x": 35.018283286687598, "length_y": 35.019100168958403 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.800738706852059, 0.0 ], [ -0.001373291015625, 76.800738706852059, 0.0 ], [ -0.001373291015625, 76.800425128232902, 0.0 ], [ -0.00274658203125, 76.800425128232902, 0.0 ], [ -0.00274658203125, 76.800738706852059, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1286, "task_x": 131070, "task_y": 41120, "task_z": 18, "center_y": 76.790543654323599, "area_in_sqm": 1227.70883762836, "perimeter_in_m": 140.154707422759, "length_x": 35.0444324457888, "length_y": 35.045249904015201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.790700560753365, 0.0 ], [ -0.001373291015625, 76.790700560753365, 0.0 ], [ -0.001373291015625, 76.79038674789382, 0.0 ], [ -0.00274658203125, 76.79038674789382, 0.0 ], [ -0.00274658203125, 76.790700560753365, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1287, "task_x": 131070, "task_y": 41152, "task_z": 18, "center_y": 76.780497892767102, "area_in_sqm": 1229.5423295497901, "perimeter_in_m": 140.259323684404, "length_x": 35.070600040563399, "length_y": 35.071418075074 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.780654916399726, 0.0 ], [ -0.001373291015625, 76.780654916399726, 0.0 ], [ -0.001373291015625, 76.780340869134463, 0.0 ], [ -0.00274658203125, 76.780340869134463, 0.0 ], [ -0.00274658203125, 76.780654916399726, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1288, "task_x": 131070, "task_y": 41184, "task_z": 18, "center_y": 76.770444627581, "area_in_sqm": 1231.37848138809, "perimeter_in_m": 140.36401359925401, "length_x": 35.096786081519703, "length_y": 35.097604692642797 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.770601768499176, 0.0 ], [ -0.001373291015625, 76.770601768499176, 0.0 ], [ -0.001373291015625, 76.770287486662767, 0.0 ], [ -0.00274658203125, 76.770287486662767, 0.0 ], [ -0.00274658203125, 76.770601768499176, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1289, "task_x": 131070, "task_y": 41216, "task_z": 18, "center_y": 76.760383853470202, "area_in_sqm": 1233.21729743481, "perimeter_in_m": 140.46877722182799, "length_x": 35.1229905791661, "length_y": 35.12380976723 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.760541111756694, 0.0 ], [ -0.001373291015625, 76.760541111756694, 0.0 ], [ -0.001373291015625, 76.760226595183624, 0.0 ], [ -0.00274658203125, 76.760226595183624, 0.0 ], [ -0.00274658203125, 76.760541111756694, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1290, "task_x": 131070, "task_y": 41248, "task_z": 18, "center_y": 76.750315565136603, "area_in_sqm": 1235.058781147, "perimeter_in_m": 140.573614599564, "length_x": 35.149213544010898, "length_y": 35.150033309344202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.750472940874261, 0.0 ], [ -0.001373291015625, 76.750472940874261, 0.0 ], [ -0.001373291015625, 76.750158189398903, 0.0 ], [ -0.00274658203125, 76.750158189398903, 0.0 ], [ -0.00274658203125, 76.750472940874261, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1291, "task_x": 131070, "task_y": 41280, "task_z": 18, "center_y": 76.740239757279099, "area_in_sqm": 1236.9029364585899, "perimeter_in_m": 140.67852576220801, "length_x": 35.175454986562798, "length_y": 35.176275329493699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.740397250550785, 0.0 ], [ -0.001373291015625, 76.740397250550785, 0.0 ], [ -0.001373291015625, 76.740082264007441, 0.0 ], [ -0.00274658203125, 76.740082264007441, 0.0 ], [ -0.00274658203125, 76.740397250550785, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1292, "task_x": 131070, "task_y": 41312, "task_z": 18, "center_y": 76.730156424593602, "area_in_sqm": 1238.74976718426, "perimeter_in_m": 140.78351074941, "length_x": 35.2017149173303, "length_y": 35.202535838187202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.730314035482181, 0.0 ], [ -0.001373291015625, 76.730314035482181, 0.0 ], [ -0.001373291015625, 76.729998813705066, 0.0 ], [ -0.00274658203125, 76.729998813705066, 0.0 ], [ -0.00274658203125, 76.730314035482181, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1293, "task_x": 131070, "task_y": 41344, "task_z": 18, "center_y": 76.720065561772898, "area_in_sqm": 1240.5992760658301, "perimeter_in_m": 140.88856961498399, "length_x": 35.227993346821897, "length_y": 35.2288148459333 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.720223290361332, 0.0 ], [ -0.001373291015625, 76.720223290361332, 0.0 ], [ -0.001373291015625, 76.719907833184536, 0.0 ], [ -0.00274658203125, 76.719907833184536, 0.0 ], [ -0.00274658203125, 76.720223290361332, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1294, "task_x": 131070, "task_y": 41376, "task_z": 18, "center_y": 76.709967163506803, "area_in_sqm": 1242.4514677524601, "perimeter_in_m": 140.99370239963901, "length_x": 35.254290285546404, "length_y": 35.255112363240698 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.710125009878084, 0.0 ], [ -0.001373291015625, 76.710125009878084, 0.0 ], [ -0.001373291015625, 76.709809317135608, 0.0 ], [ -0.00274658203125, 76.709809317135608, 0.0 ], [ -0.00274658203125, 76.710125009878084, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1295, "task_x": 131070, "task_y": 41408, "task_z": 18, "center_y": 76.699861224482106, "area_in_sqm": 1244.30634522438, "perimeter_in_m": 141.09890913028701, "length_x": 35.280605744012597, "length_y": 35.281428400617997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.700019188719239, 0.0 ], [ -0.001373291015625, 76.700019188719239, 0.0 ], [ -0.001373291015625, 76.699703260245016, 0.0 ], [ -0.00274658203125, 76.699703260245016, 0.0 ], [ -0.00274658203125, 76.700019188719239, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1296, "task_x": 131070, "task_y": 41440, "task_z": 18, "center_y": 76.689747739382497, "area_in_sqm": 1246.1639125347101, "perimeter_in_m": 141.20418986675801, "length_x": 35.3069397327288, "length_y": 35.307762968573897 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.689905821568601, 0.0 ], [ -0.001373291015625, 76.689905821568601, 0.0 ], [ -0.001373291015625, 76.689589657196436, 0.0 ], [ -0.00274658203125, 76.689589657196436, 0.0 ], [ -0.00274658203125, 76.689905821568601, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1297, "task_x": 131070, "task_y": 41472, "task_z": 18, "center_y": 76.679626702888697, "area_in_sqm": 1248.0241731405299, "perimeter_in_m": 141.30954463808101, "length_x": 35.333292262203798, "length_y": 35.334116077616997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.679784903106921, 0.0 ], [ -0.001373291015625, 76.679784903106921, 0.0 ], [ -0.001373291015625, 76.679468502670531, 0.0 ], [ -0.00274658203125, 76.679468502670531, 0.0 ], [ -0.00274658203125, 76.679784903106921, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1298, "task_x": 131070, "task_y": 41504, "task_z": 18, "center_y": 76.669498109678401, "area_in_sqm": 1249.88713037968, "perimeter_in_m": 141.41497349842601, "length_x": 35.359663342946199, "length_y": 35.360487738255898 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.669656428011919, 0.0 ], [ -0.001373291015625, 76.669656428011919, 0.0 ], [ -0.001373291015625, 76.669339791344953, 0.0 ], [ -0.00274658203125, 76.669339791344953, 0.0 ], [ -0.00274658203125, 76.669656428011919, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1299, "task_x": 131070, "task_y": 41536, "task_z": 18, "center_y": 76.659361954426302, "area_in_sqm": 1251.7527884244901, "perimeter_in_m": 141.52047646761099, "length_x": 35.386052985464602, "length_y": 35.386877960999001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.659520390958306, 0.0 ], [ -0.001373291015625, 76.659520390958306, 0.0 ], [ -0.001373291015625, 76.659203517894284, 0.0 ], [ -0.00274658203125, 76.659203517894284, 0.0 ], [ -0.00274658203125, 76.659520390958306, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1300, "task_x": 131070, "task_y": 41568, "task_z": 18, "center_y": 76.6492182318039, "area_in_sqm": 1253.6211509704599, "perimeter_in_m": 141.62605361750599, "length_x": 35.412461200267302, "length_y": 35.413286756354999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.649376786617736, 0.0 ], [ -0.001373291015625, 76.649376786617736, 0.0 ], [ -0.001373291015625, 76.649059676990106, 0.0 ], [ -0.00274658203125, 76.649059676990106, 0.0 ], [ -0.00274658203125, 76.649376786617736, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1301, "task_x": 131070, "task_y": 41600, "task_z": 18, "center_y": 76.639066936479907, "area_in_sqm": 1255.4922209978099, "perimeter_in_m": 141.73170496262799, "length_x": 35.4388879978628, "length_y": 35.439714134832002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.639225609658851, 0.0 ], [ -0.001373291015625, 76.639225609658851, 0.0 ], [ -0.001373291015625, 76.638908263300976, 0.0 ], [ -0.00274658203125, 76.638908263300976, 0.0 ], [ -0.00274658203125, 76.639225609658851, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1302, "task_x": 131070, "task_y": 41632, "task_z": 18, "center_y": 76.628908063119795, "area_in_sqm": 1257.3660033941301, "perimeter_in_m": 141.83743056492099, "length_x": 35.465333388759198, "length_y": 35.466160106938403 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.629066854747279, 0.0 ], [ -0.001373291015625, 76.629066854747279, 0.0 ], [ -0.001373291015625, 76.628749271492381, 0.0 ], [ -0.00274658203125, 76.628749271492381, 0.0 ], [ -0.00274658203125, 76.629066854747279, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1303, "task_x": 131070, "task_y": 41664, "task_z": 18, "center_y": 76.618741606386195, "area_in_sqm": 1259.2425010204299, "perimeter_in_m": 141.943230457315, "length_x": 35.4917973834647, "length_y": 35.492624683182399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.61890051654558, 0.0 ], [ -0.001373291015625, 76.61890051654558, 0.0 ], [ -0.001373291015625, 76.618582696226824, 0.0 ], [ -0.00274658203125, 76.618582696226824, 0.0 ], [ -0.00274658203125, 76.61890051654558, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1304, "task_x": 131070, "task_y": 41696, "task_z": 18, "center_y": 76.608567560938496, "area_in_sqm": 1261.1217170953801, "perimeter_in_m": 142.049104679099, "length_x": 35.518279992487301, "length_y": 35.5191078740717 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.608726589713299, 0.0 ], [ -0.001373291015625, 76.608726589713299, 0.0 ], [ -0.001373291015625, 76.608408532163764, 0.0 ], [ -0.00274658203125, 76.608408532163764, 0.0 ], [ -0.00274658203125, 76.608726589713299, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1305, "task_x": 131070, "task_y": 41728, "task_z": 18, "center_y": 76.598385921433305, "area_in_sqm": 1263.0036567449599, "perimeter_in_m": 142.155053268508, "length_x": 35.544781226334898, "length_y": 35.545609690114297 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.598545068906972, 0.0 ], [ -0.001373291015625, 76.598545068906972, 0.0 ], [ -0.001373291015625, 76.598226773959624, 0.0 ], [ -0.00274658203125, 76.598226773959624, 0.0 ], [ -0.00274658203125, 76.598545068906972, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1306, "task_x": 131070, "task_y": 41760, "task_z": 18, "center_y": 76.5881966825239, "area_in_sqm": 1264.88832259178, "perimeter_in_m": 142.261076282533, "length_x": 35.571301095514997, "length_y": 35.572130141817901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.588355948780091, 0.0 ], [ -0.001373291015625, 76.588355948780091, 0.0 ], [ -0.001373291015625, 76.588037416267781, 0.0 ], [ -0.00274658203125, 76.588037416267781, 0.0 ], [ -0.00274658203125, 76.588355948780091, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1307, "task_x": 131070, "task_y": 41792, "task_z": 18, "center_y": 76.577999838860904, "area_in_sqm": 1266.7757184505499, "perimeter_in_m": 142.367173748787, "length_x": 35.597839610535097, "length_y": 35.598669239689698 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.578159223983107, 0.0 ], [ -0.001373291015625, 76.578159223983107, 0.0 ], [ -0.001373291015625, 76.577840453738631, 0.0 ], [ -0.00274658203125, 76.577840453738631, 0.0 ], [ -0.00274658203125, 76.578159223983107, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1308, "task_x": 131070, "task_y": 41824, "task_z": 18, "center_y": 76.5677953850915, "area_in_sqm": 1268.6658478975301, "perimeter_in_m": 142.47334571788599, "length_x": 35.624396781902298, "length_y": 35.625226994237202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.56795488916346, 0.0 ], [ -0.001373291015625, 76.56795488916346, 0.0 ], [ -0.001373291015625, 76.567635881019484, 0.0 ], [ -0.00274658203125, 76.567635881019484, 0.0 ], [ -0.00274658203125, 76.56795488916346, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1309, "task_x": 131070, "task_y": 41856, "task_z": 18, "center_y": 76.5575833158601, "area_in_sqm": 1270.5587152242699, "perimeter_in_m": 142.579592228769, "length_x": 35.650972620123802, "length_y": 35.651803415967201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.557742938965546, 0.0 ], [ -0.001373291015625, 76.557742938965546, 0.0 ], [ -0.001373291015625, 76.557423692754668, 0.0 ], [ -0.00274658203125, 76.557423692754668, 0.0 ], [ -0.00274658203125, 76.557742938965546, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1310, "task_x": 131070, "task_y": 41888, "task_z": 18, "center_y": 76.547363625808103, "area_in_sqm": 1272.45432388783, "perimeter_in_m": 142.68591331753899, "length_x": 35.677567135706298, "length_y": 35.678398515386398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.547523368030738, 0.0 ], [ -0.001373291015625, 76.547523368030738, 0.0 ], [ -0.001373291015625, 76.547203883585453, 0.0 ], [ -0.00274658203125, 76.547203883585453, 0.0 ], [ -0.00274658203125, 76.547523368030738, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1311, "task_x": 131070, "task_y": 41920, "task_z": 18, "center_y": 76.537136309573697, "area_in_sqm": 1274.35267722607, "perimeter_in_m": 142.79230902631701, "length_x": 35.704180339156203, "length_y": 35.705012303001403 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.537296170997365, 0.0 ], [ -0.001373291015625, 76.537296170997365, 0.0 ], [ -0.001373291015625, 76.536976448150085, 0.0 ], [ -0.00274658203125, 76.536976448150085, 0.0 ], [ -0.00274658203125, 76.537296170997365, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1312, "task_x": 131070, "task_y": 41952, "task_z": 18, "center_y": 76.526901361792298, "area_in_sqm": 1276.25377953053, "perimeter_in_m": 142.898779414214, "length_x": 35.730812240979702, "length_y": 35.731644789318501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.527061342500772, 0.0 ], [ -0.001373291015625, 76.527061342500772, 0.0 ], [ -0.001373291015625, 76.526741381083781, 0.0 ], [ -0.00274658203125, 76.526741381083781, 0.0 ], [ -0.00274658203125, 76.527061342500772, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1313, "task_x": 131070, "task_y": 41984, "task_z": 18, "center_y": 76.516658777095998, "area_in_sqm": 1278.1576341390601, "perimeter_in_m": 143.005324504947, "length_x": 35.757462851682703, "length_y": 35.758295984843301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.516818877173222, 0.0 ], [ -0.001373291015625, 76.516818877173222, 0.0 ], [ -0.001373291015625, 76.516498677018745, 0.0 ], [ -0.00274658203125, 76.516498677018745, 0.0 ], [ -0.00274658203125, 76.516818877173222, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1314, "task_x": 131070, "task_y": 42016, "task_z": 18, "center_y": 76.506408550114102, "area_in_sqm": 1280.0642453432099, "perimeter_in_m": 143.111944342046, "length_x": 35.784132181770801, "length_y": 35.784965900081403 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.506568769643977, 0.0 ], [ -0.001373291015625, 76.506568769643977, 0.0 ], [ -0.001373291015625, 76.506248330584128, 0.0 ], [ -0.00274658203125, 76.506248330584128, 0.0 ], [ -0.00274658203125, 76.506568769643977, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1315, "task_x": 131070, "task_y": 42048, "task_z": 18, "center_y": 76.496150675472606, "area_in_sqm": 1281.97361576557, "perimeter_in_m": 143.21863897506199, "length_x": 35.810820241749298, "length_y": 35.811654545538303 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.496311014539259, 0.0 ], [ -0.001373291015625, 76.496311014539259, 0.0 ], [ -0.001373291015625, 76.495990336406052, 0.0 ], [ -0.00274658203125, 76.495990336406052, 0.0 ], [ -0.00274658203125, 76.496311014539259, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1316, "task_x": 131070, "task_y": 42080, "task_z": 18, "center_y": 76.485885147794903, "area_in_sqm": 1283.88575053215, "perimeter_in_m": 143.32540844009799, "length_x": 35.837527042123, "length_y": 35.838361931718602 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.486045606482264, 0.0 ], [ -0.001373291015625, 76.486045606482264, 0.0 ], [ -0.001373291015625, 76.485724689107627, 0.0 ], [ -0.00274658203125, 76.485724689107627, 0.0 ], [ -0.00274658203125, 76.486045606482264, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1317, "task_x": 131070, "task_y": 42112, "task_z": 18, "center_y": 76.475611961701006, "area_in_sqm": 1285.8006520271299, "perimeter_in_m": 143.432252773599, "length_x": 35.8642525933965, "length_y": 35.865088069126898 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.475772540093161, 0.0 ], [ -0.001373291015625, 76.475772540093161, 0.0 ], [ -0.001373291015625, 76.475451383308922, 0.0 ], [ -0.00274658203125, 76.475451383308922, 0.0 ], [ -0.00274658203125, 76.475772540093161, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1318, "task_x": 131070, "task_y": 42144, "task_z": 18, "center_y": 76.465331111808098, "area_in_sqm": 1287.7183253765099, "perimeter_in_m": 143.53917203326401, "length_x": 35.890996906073703, "length_y": 35.891832968267302 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.465491809989089, 0.0 ], [ -0.001373291015625, 76.465491809989089, 0.0 ], [ -0.001373291015625, 76.465170413626993, 0.0 ], [ -0.00274658203125, 76.465170413626993, 0.0 ], [ -0.00274658203125, 76.465491809989089, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1319, "task_x": 131070, "task_y": 42176, "task_z": 18, "center_y": 76.455042592729995, "area_in_sqm": 1289.63877332211, "perimeter_in_m": 143.64616624420901, "length_x": 35.917759990658602, "length_y": 35.918596639643397 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.455203410784151, 0.0 ], [ -0.001373291015625, 76.455203410784151, 0.0 ], [ -0.001373291015625, 76.45488177467584, 0.0 ], [ -0.00274658203125, 76.45488177467584, 0.0 ], [ -0.00274658203125, 76.455203410784151, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1320, "task_x": 131070, "task_y": 42208, "task_z": 18, "center_y": 76.444746399077999, "area_in_sqm": 1291.5620000362401, "perimeter_in_m": 143.75323546023, "length_x": 35.944541857654102, "length_y": 35.945379093758604 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.444907337089447, 0.0 ], [ -0.001373291015625, 76.444907337089447, 0.0 ], [ -0.001373291015625, 76.444585461066453, 0.0 ], [ -0.00274658203125, 76.444585461066453, 0.0 ], [ -0.00274658203125, 76.444907337089447, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1321, "task_x": 131070, "task_y": 42240, "task_z": 18, "center_y": 76.4344425254599, "area_in_sqm": 1293.4880082607301, "perimeter_in_m": 143.860379712461, "length_x": 35.9713425175635, "length_y": 35.972180341115703 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.434603583512995, 0.0 ], [ -0.001373291015625, 76.434603583512995, 0.0 ], [ -0.001373291015625, 76.434281467406791, 0.0 ], [ -0.00274658203125, 76.434281467406791, 0.0 ], [ -0.00274658203125, 76.434603583512995, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1322, "task_x": 131070, "task_y": 42272, "task_z": 18, "center_y": 76.424130966480803, "area_in_sqm": 1295.4168035984001, "perimeter_in_m": 143.96759905540799, "length_x": 35.998161980888803, "length_y": 35.999000392216999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.424292144659844, 0.0 ], [ -0.001373291015625, 76.424292144659844, 0.0 ], [ -0.001373291015625, 76.423969788301775, 0.0 ], [ -0.00274658203125, 76.423969788301775, 0.0 ], [ -0.00274658203125, 76.424292144659844, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1323, "task_x": 131070, "task_y": 42304, "task_z": 18, "center_y": 76.4138117167427, "area_in_sqm": 1297.3483890294999, "perimeter_in_m": 144.074893519493, "length_x": 36.025000258132003, "length_y": 36.0258392575644 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.413973015131987, 0.0 ], [ -0.001373291015625, 76.413973015131987, 0.0 ], [ -0.001373291015625, 76.413650418353313, 0.0 ], [ -0.00274658203125, 76.413650418353313, 0.0 ], [ -0.00274658203125, 76.413973015131987, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1324, "task_x": 131070, "task_y": 42336, "task_z": 18, "center_y": 76.403484770844301, "area_in_sqm": 1299.28276765347, "perimeter_in_m": 144.182263150366, "length_x": 36.051857359794603, "length_y": 36.0526969476593 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.403646189528359, 0.0 ], [ -0.001373291015625, 76.403646189528359, 0.0 ], [ -0.001373291015625, 76.403323352160271, 0.0 ], [ -0.00274658203125, 76.403323352160271, 0.0 ], [ -0.00274658203125, 76.403646189528359, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1325, "task_x": 131070, "task_y": 42368, "task_z": 18, "center_y": 76.393150123381702, "area_in_sqm": 1301.21994400024, "perimeter_in_m": 144.28970799508801, "length_x": 36.078733296377301, "length_y": 36.079573473002498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.393311662444944, 0.0 ], [ -0.001373291015625, 76.393311662444944, 0.0 ], [ -0.001373291015625, 76.392988584318488, 0.0 ], [ -0.00274658203125, 76.392988584318488, 0.0 ], [ -0.00274658203125, 76.393311662444944, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1326, "task_x": 131070, "task_y": 42400, "task_z": 18, "center_y": 76.3828077689477, "area_in_sqm": 1303.1599218845399, "perimeter_in_m": 144.39722808372699, "length_x": 36.105628078380498, "length_y": 36.106468844094302 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.38296942847461, 0.0 ], [ -0.001373291015625, 76.38296942847461, 0.0 ], [ -0.001373291015625, 76.38264610942079, 0.0 ], [ -0.00274658203125, 76.38264610942079, 0.0 ], [ -0.00274658203125, 76.38296942847461, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1327, "task_x": 131070, "task_y": 42432, "task_z": 18, "center_y": 76.372457702132095, "area_in_sqm": 1305.1027046442, "perimeter_in_m": 144.50482346688599, "length_x": 36.132541716303997, "length_y": 36.133383071434402 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.37261948220727, 0.0 ], [ -0.001373291015625, 76.37261948220727, 0.0 ], [ -0.001373291015625, 76.372295922056949, 0.0 ], [ -0.00274658203125, 76.372295922056949, 0.0 ], [ -0.00274658203125, 76.37261948220727, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1328, "task_x": 131070, "task_y": 42464, "task_z": 18, "center_y": 76.362099917521704, "area_in_sqm": 1307.0482959747301, "perimeter_in_m": 144.61249418382999, "length_x": 36.159474220647098, "length_y": 36.160316165522197 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.36226181822974, 0.0 ], [ -0.001373291015625, 76.36226181822974, 0.0 ], [ -0.001373291015625, 76.361938016813724, 0.0 ], [ -0.00274658203125, 76.361938016813724, 0.0 ], [ -0.00274658203125, 76.36226181822974, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1329, "task_x": 131070, "task_y": 42496, "task_z": 18, "center_y": 76.351734409700398, "area_in_sqm": 1308.99670040607, "perimeter_in_m": 144.72024027666299, "length_x": 36.186425601908098, "length_y": 36.187268136856098 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.35189643112588, 0.0 ], [ -0.001373291015625, 76.35189643112588, 0.0 ], [ -0.001373291015625, 76.35157238827486, 0.0 ], [ -0.00274658203125, 76.35157238827486, 0.0 ], [ -0.00274658203125, 76.35189643112588, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1330, "task_x": 131070, "task_y": 42528, "task_z": 18, "center_y": 76.3413611732487, "area_in_sqm": 1310.9479211568801, "perimeter_in_m": 144.82806178713199, "length_x": 36.213395870585302, "length_y": 36.214238995934203 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.341523315476451, 0.0 ], [ -0.001373291015625, 76.341523315476451, 0.0 ], [ -0.001373291015625, 76.341199031021034, 0.0 ], [ -0.00274658203125, 76.341199031021034, 0.0 ], [ -0.00274658203125, 76.341523315476451, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1331, "task_x": 131070, "task_y": 42560, "task_z": 18, "center_y": 76.330980202744598, "area_in_sqm": 1312.9019626378999, "perimeter_in_m": 144.935958760159, "length_x": 36.240385037175898, "length_y": 36.2412287532538 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.331142465859259, 0.0 ], [ -0.001373291015625, 76.331142465859259, 0.0 ], [ -0.001373291015625, 76.330817939629938, 0.0 ], [ -0.00274658203125, 76.330817939629938, 0.0 ], [ -0.00274658203125, 76.331142465859259, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1332, "task_x": 131070, "task_y": 42592, "task_z": 18, "center_y": 76.320591492762603, "area_in_sqm": 1314.8588274717299, "perimeter_in_m": 145.04393122687199, "length_x": 36.267393112176798, "length_y": 36.268237419311497 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.320753876849011, 0.0 ], [ -0.001373291015625, 76.320753876849011, 0.0 ], [ -0.001373291015625, 76.320429108676223, 0.0 ], [ -0.00274658203125, 76.320429108676223, 0.0 ], [ -0.00274658203125, 76.320753876849011, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1333, "task_x": 131070, "task_y": 42624, "task_z": 18, "center_y": 76.310195037874493, "area_in_sqm": 1316.81852018833, "perimeter_in_m": 145.151979241758, "length_x": 36.294420106083798, "length_y": 36.2952650046036 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.310357543017446, 0.0 ], [ -0.001373291015625, 76.310357543017446, 0.0 ], [ -0.001373291015625, 76.310032532731483, 0.0 ], [ -0.00274658203125, 76.310032532731483, 0.0 ], [ -0.00274658203125, 76.310357543017446, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1334, "task_x": 131070, "task_y": 42656, "task_z": 18, "center_y": 76.299790832648796, "area_in_sqm": 1318.7810449600199, "perimeter_in_m": 145.260102840532, "length_x": 36.321466029392496, "length_y": 36.322311519625202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.299953458933246, 0.0 ], [ -0.001373291015625, 76.299953458933246, 0.0 ], [ -0.001373291015625, 76.299628206364332, 0.0 ], [ -0.00274658203125, 76.299628206364332, 0.0 ], [ -0.00274658203125, 76.299953458933246, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1335, "task_x": 131070, "task_y": 42688, "task_z": 18, "center_y": 76.289378871651195, "area_in_sqm": 1320.7464054822899, "perimeter_in_m": 145.36830206174599, "length_x": 36.348530892597502, "length_y": 36.349376974870999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.289541619162051, 0.0 ], [ -0.001373291015625, 76.289541619162051, 0.0 ], [ -0.001373291015625, 76.289216124140324, 0.0 ], [ -0.00274658203125, 76.289216124140324, 0.0 ], [ -0.00274658203125, 76.289541619162051, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1336, "task_x": 131070, "task_y": 42720, "task_z": 18, "center_y": 76.278959149444304, "area_in_sqm": 1322.71460521221, "perimeter_in_m": 145.47657695846499, "length_x": 36.3756147061926, "length_y": 36.376461380835003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.279122018266506, 0.0 ], [ -0.001373291015625, 76.279122018266506, 0.0 ], [ -0.001373291015625, 76.278796280621989, 0.0 ], [ -0.00274658203125, 76.278796280621989, 0.0 ], [ -0.00274658203125, 76.279122018266506, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1337, "task_x": 131070, "task_y": 42752, "task_z": 18, "center_y": 76.268531660587499, "area_in_sqm": 1324.6856478452701, "perimeter_in_m": 145.58492755401201, "length_x": 36.402717480671299, "length_y": 36.403564748010297 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.268694650806225, 0.0 ], [ -0.001373291015625, 76.268694650806225, 0.0 ], [ -0.001373291015625, 76.268368670368872, 0.0 ], [ -0.00274658203125, 76.268368670368872, 0.0 ], [ -0.00274658203125, 76.268694650806225, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1338, "task_x": 131070, "task_y": 42784, "task_z": 18, "center_y": 76.258096399637594, "area_in_sqm": 1326.6595377922099, "perimeter_in_m": 145.69335391171501, "length_x": 36.429839226525701, "length_y": 36.4306870868893 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.258259511337783, 0.0 ], [ -0.001373291015625, 76.258259511337783, 0.0 ], [ -0.001373291015625, 76.257933287937419, 0.0 ], [ -0.00274658203125, 76.257933287937419, 0.0 ], [ -0.00274658203125, 76.258259511337783, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1339, "task_x": 131070, "task_y": 42816, "task_z": 18, "center_y": 76.247653361147897, "area_in_sqm": 1328.6362780332599, "perimeter_in_m": 145.80185604746299, "length_x": 36.456979954247799, "length_y": 36.457828407963703 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.247816594414715, 0.0 ], [ -0.001373291015625, 76.247816594414715, 0.0 ], [ -0.001373291015625, 76.247490127881122, 0.0 ], [ -0.00274658203125, 76.247490127881122, 0.0 ], [ -0.00274658203125, 76.247816594414715, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1340, "task_x": 131070, "task_y": 42848, "task_z": 18, "center_y": 76.237202539668999, "area_in_sqm": 1330.6158736944201, "perimeter_in_m": 145.91043402988501, "length_x": 36.484139674328198, "length_y": 36.484988721724399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.237365894587569, 0.0 ], [ -0.001373291015625, 76.237365894587569, 0.0 ], [ -0.001373291015625, 76.237039184750373, 0.0 ], [ -0.00274658203125, 76.237039184750373, 0.0 ], [ -0.00274658203125, 76.237365894587569, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1341, "task_x": 131070, "task_y": 42880, "task_z": 18, "center_y": 76.226743929748196, "area_in_sqm": 1332.5983277559301, "perimeter_in_m": 146.01908788159199, "length_x": 36.511318397257, "length_y": 36.512168038661201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.226907406403839, 0.0 ], [ -0.001373291015625, 76.226907406403839, 0.0 ], [ -0.001373291015625, 76.226580453092609, 0.0 ], [ -0.00274658203125, 76.226580453092609, 0.0 ], [ -0.00274658203125, 76.226907406403839, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1342, "task_x": 131070, "task_y": 42912, "task_z": 18, "center_y": 76.216277525930096, "area_in_sqm": 1334.5836443901101, "perimeter_in_m": 146.12781765067999, "length_x": 36.538516133523402, "length_y": 36.539366369263398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.216441124407993, 0.0 ], [ -0.001373291015625, 76.216441124407993, 0.0 ], [ -0.001373291015625, 76.216113927452199, 0.0 ], [ -0.00274658203125, 76.216113927452199, 0.0 ], [ -0.00274658203125, 76.216441124407993, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1343, "task_x": 131070, "task_y": 42944, "task_z": 18, "center_y": 76.205803322755997, "area_in_sqm": 1336.57182729244, "perimeter_in_m": 146.23662338312101, "length_x": 36.565732893615902, "length_y": 36.566583724019502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.205967043141484, 0.0 ], [ -0.001373291015625, 76.205967043141484, 0.0 ], [ -0.001373291015625, 76.205639602370496, 0.0 ], [ -0.00274658203125, 76.205639602370496, 0.0 ], [ -0.00274658203125, 76.205967043141484, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1344, "task_x": 131070, "task_y": 42976, "task_z": 18, "center_y": 76.1953213147643, "area_in_sqm": 1338.5628798007999, "perimeter_in_m": 146.34550511284499, "length_x": 36.592968688021799, "length_y": 36.593820113416598 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.195485157142741, 0.0 ], [ -0.001373291015625, 76.195485157142741, 0.0 ], [ -0.001373291015625, 76.19515747238583, 0.0 ], [ -0.00274658203125, 76.19515747238583, 0.0 ], [ -0.00274658203125, 76.195485157142741, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1345, "task_x": 131070, "task_y": 43008, "task_z": 18, "center_y": 76.184831496490304, "area_in_sqm": 1340.5568068027501, "perimeter_in_m": 146.45446288688001, "length_x": 36.6202235272278, "length_y": 36.621075547941601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.18499546094715, 0.0 ], [ -0.001373291015625, 76.18499546094715, 0.0 ], [ -0.001373291015625, 76.184667532033501, 0.0 ], [ -0.00274658203125, 76.184667532033501, 0.0 ], [ -0.00274658203125, 76.18499546094715, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1346, "task_x": 131070, "task_y": 43040, "task_z": 18, "center_y": 76.174333862466398, "area_in_sqm": 1342.55361151695, "perimeter_in_m": 146.563496749422, "length_x": 36.6474974217194, "length_y": 36.648350038079798 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.174497949087097, 0.0 ], [ -0.001373291015625, 76.174497949087097, 0.0 ], [ -0.001373291015625, 76.174169775845797, 0.0 ], [ -0.00274658203125, 76.174169775845797, 0.0 ], [ -0.00274658203125, 76.174497949087097, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1347, "task_x": 131070, "task_y": 43072, "task_z": 18, "center_y": 76.163828407221899, "area_in_sqm": 1344.5532978773099, "perimeter_in_m": 146.67260673616499, "length_x": 36.674790381981502, "length_y": 36.675643594316199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.163992616091917, 0.0 ], [ -0.001373291015625, 76.163992616091917, 0.0 ], [ -0.001373291015625, 76.163664198351952, 0.0 ], [ -0.00274658203125, 76.163664198351952, 0.0 ], [ -0.00274658203125, 76.163992616091917, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1348, "task_x": 131070, "task_y": 43104, "task_z": 18, "center_y": 76.1533151252831, "area_in_sqm": 1346.55587053299, "perimeter_in_m": 146.78179289165101, "length_x": 36.702102418497802, "length_y": 36.702956227134401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.153479456487943, 0.0 ], [ -0.001373291015625, 76.153479456487943, 0.0 ], [ -0.001373291015625, 76.153150794078229, 0.0 ], [ -0.00274658203125, 76.153150794078229, 0.0 ], [ -0.00274658203125, 76.153479456487943, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1349, "task_x": 131070, "task_y": 43136, "task_z": 18, "center_y": 76.142794011173194, "area_in_sqm": 1348.5613317489599, "perimeter_in_m": 146.891055251219, "length_x": 36.729433541751099, "length_y": 36.730287947017104 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.142958464798483, 0.0 ], [ -0.001373291015625, 76.142958464798483, 0.0 ], [ -0.001373291015625, 76.142629557547806, 0.0 ], [ -0.00274658203125, 76.142629557547806, 0.0 ], [ -0.00274658203125, 76.142958464798483, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1350, "task_x": 131070, "task_y": 43168, "task_z": 18, "center_y": 76.132265059412305, "area_in_sqm": 1350.5696865320199, "perimeter_in_m": 147.00039385693199, "length_x": 36.7567837622233, "length_y": 36.757638764446199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.132429635543787, 0.0 ], [ -0.001373291015625, 76.132429635543787, 0.0 ], [ -0.001373291015625, 76.13210048328088, 0.0 ], [ -0.00274658203125, 76.13210048328088, 0.0 ], [ -0.00274658203125, 76.132429635543787, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1351, "task_x": 131070, "task_y": 43200, "task_z": 18, "center_y": 76.121728264517898, "area_in_sqm": 1352.5809388160701, "perimeter_in_m": 147.10980876252901, "length_x": 36.784153090395201, "length_y": 36.785008689902497 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.121892963241123, 0.0 ], [ -0.001373291015625, 76.121892963241123, 0.0 ], [ -0.001373291015625, 76.121563565794588, 0.0 ], [ -0.00274658203125, 76.121563565794588, 0.0 ], [ -0.00274658203125, 76.121892963241123, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1352, "task_x": 131070, "task_y": 43232, "task_z": 18, "center_y": 76.111183621003903, "area_in_sqm": 1354.5950922965999, "perimeter_in_m": 147.219300009357, "length_x": 36.811541536746397, "length_y": 36.812397733865801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.111348442404719, 0.0 ], [ -0.001373291015625, 76.111348442404719, 0.0 ], [ -0.001373291015625, 76.111018799603073, 0.0 ], [ -0.00274658203125, 76.111018799603073, 0.0 ], [ -0.00274658203125, 76.111348442404719, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1353, "task_x": 131070, "task_y": 43264, "task_z": 18, "center_y": 76.100631123381604, "area_in_sqm": 1356.6121506690999, "perimeter_in_m": 147.32886762141999, "length_x": 36.838949111755703, "length_y": 36.839805906814597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.100796067545772, 0.0 ], [ -0.001373291015625, 76.100796067545772, 0.0 ], [ -0.001373291015625, 76.100466179217449, 0.0 ], [ -0.00274658203125, 76.100466179217449, 0.0 ], [ -0.00274658203125, 76.100796067545772, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1354, "task_x": 131070, "task_y": 43296, "task_z": 18, "center_y": 76.090070766159101, "area_in_sqm": 1358.63211810589, "perimeter_in_m": 147.43851165350901, "length_x": 36.866375825900903, "length_y": 36.867233219226499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.090235833172471, 0.0 ], [ -0.001373291015625, 76.090235833172471, 0.0 ], [ -0.001373291015625, 76.089905699145802, 0.0 ], [ -0.00274658203125, 76.089905699145802, 0.0 ], [ -0.00274658203125, 76.090235833172471, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1355, "task_x": 131070, "task_y": 43328, "task_z": 18, "center_y": 76.079502543841599, "area_in_sqm": 1360.65499889851, "perimeter_in_m": 147.54823214519601, "length_x": 36.893821689658402, "length_y": 36.894679681578197 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.079667733789975, 0.0 ], [ -0.001373291015625, 76.079667733789975, 0.0 ], [ -0.001373291015625, 76.079337353893195, 0.0 ], [ -0.00274658203125, 76.079337353893195, 0.0 ], [ -0.00274658203125, 76.079667733789975, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1356, "task_x": 131070, "task_y": 43360, "task_z": 18, "center_y": 76.068926450931002, "area_in_sqm": 1362.6807959079699, "perimeter_in_m": 147.65802913498899, "length_x": 36.921286713503697, "length_y": 36.922145304345001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.069091763900417, 0.0 ], [ -0.001373291015625, 76.069091763900417, 0.0 ], [ -0.001373291015625, 76.068761137961673, 0.0 ], [ -0.00274658203125, 76.068761137961673, 0.0 ], [ -0.00274658203125, 76.069091763900417, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1357, "task_x": 131070, "task_y": 43392, "task_z": 18, "center_y": 76.058342481926601, "area_in_sqm": 1364.7095139026601, "perimeter_in_m": 147.767902673783, "length_x": 36.948770907910998, "length_y": 36.949630098001201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.058507918002917, 0.0 ], [ -0.001373291015625, 76.058507918002917, 0.0 ], [ -0.001373291015625, 76.058177045850243, 0.0 ], [ -0.00274658203125, 76.058177045850243, 0.0 ], [ -0.00274658203125, 76.058507918002917, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1358, "task_x": 131070, "task_y": 43424, "task_z": 18, "center_y": 76.047750631324206, "area_in_sqm": 1366.7411563396499, "perimeter_in_m": 147.87785278627101, "length_x": 36.976274283353703, "length_y": 36.977134073019897 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.047916190593554, 0.0 ], [ -0.001373291015625, 76.047916190593554, 0.0 ], [ -0.001373291015625, 76.047585072054929, 0.0 ], [ -0.00274658203125, 76.047585072054929, 0.0 ], [ -0.00274658203125, 76.047916190593554, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1359, "task_x": 131070, "task_y": 43456, "task_z": 18, "center_y": 76.037150893616996, "area_in_sqm": 1368.77572751045, "perimeter_in_m": 147.98787953183501, "length_x": 37.003796850303601, "length_y": 37.004657239873097 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.037316576165423, 0.0 ], [ -0.001373291015625, 76.037316576165423, 0.0 ], [ -0.001373291015625, 76.036985211068682, 0.0 ], [ -0.00274658203125, 76.036985211068682, 0.0 ], [ -0.00274658203125, 76.037316576165423, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1360, "task_x": 131070, "task_y": 43488, "task_z": 18, "center_y": 76.026543263294997, "area_in_sqm": 1370.8132317066199, "perimeter_in_m": 148.097982938006, "length_x": 37.031338619231697, "length_y": 37.0321996090317 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.026709069208536, 0.0 ], [ -0.001373291015625, 76.026709069208536, 0.0 ], [ -0.001373291015625, 76.026377457381457, 0.0 ], [ -0.00274658203125, 76.026377457381457, 0.0 ], [ -0.00274658203125, 76.026709069208536, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1361, "task_x": 131070, "task_y": 43520, "task_z": 18, "center_y": 76.015927734845107, "area_in_sqm": 1372.8536715507501, "perimeter_in_m": 148.208163065218, "length_x": 37.058899600607297, "length_y": 37.059761190965098 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.016093664209947, 0.0 ], [ -0.001373291015625, 76.016093664209947, 0.0 ], [ -0.001373291015625, 76.015761805480196, 0.0 ], [ -0.00274658203125, 76.015761805480196, 0.0 ], [ -0.00274658203125, 76.016093664209947, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1362, "task_x": 131070, "task_y": 43552, "task_z": 18, "center_y": 76.005304302751298, "area_in_sqm": 1374.89705228806, "perimeter_in_m": 148.318419926123, "length_x": 37.086479804899, "length_y": 37.087341996141497 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 76.005470355653657, 0.0 ], [ -0.001373291015625, 76.005470355653657, 0.0 ], [ -0.001373291015625, 76.005138249848827, 0.0 ], [ -0.00274658203125, 76.005138249848827, 0.0 ], [ -0.00274658203125, 76.005470355653657, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1363, "task_x": 131070, "task_y": 43584, "task_z": 18, "center_y": 75.994672961494402, "area_in_sqm": 1376.9433773756, "perimeter_in_m": 148.428753592128, "length_x": 37.114079242573901, "length_y": 37.114942035028299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.994839138020652, 0.0 ], [ -0.001373291015625, 75.994839138020652, 0.0 ], [ -0.001373291015625, 75.994506784968209, 0.0 ], [ -0.00274658203125, 75.994506784968209, 0.0 ], [ -0.00274658203125, 75.994839138020652, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1364, "task_x": 131070, "task_y": 43616, "task_z": 18, "center_y": 75.984033705552605, "area_in_sqm": 1378.9926505088799, "perimeter_in_m": 148.53916408331199, "length_x": 37.141697924097798, "length_y": 37.142561318091197 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.984200005788907, 0.0 ], [ -0.001373291015625, 75.984200005788907, 0.0 ], [ -0.001373291015625, 75.983867405316232, 0.0 ], [ -0.00274658203125, 75.983867405316232, 0.0 ], [ -0.00274658203125, 75.984200005788907, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1365, "task_x": 131070, "task_y": 43648, "task_z": 18, "center_y": 75.973386529400599, "area_in_sqm": 1381.0448757409999, "perimeter_in_m": 148.64965145302699, "length_x": 37.169335859935202, "length_y": 37.1701998557945 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.973552953433355, 0.0 ], [ -0.001373291015625, 75.973552953433355, 0.0 ], [ -0.001373291015625, 75.973220105367758, 0.0 ], [ -0.00274658203125, 75.973220105367758, 0.0 ], [ -0.00274658203125, 75.973552953433355, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1366, "task_x": 131070, "task_y": 43680, "task_z": 18, "center_y": 75.962731427510306, "area_in_sqm": 1383.1000572442999, "perimeter_in_m": 148.76021573620901, "length_x": 37.196993060549502, "length_y": 37.197857658601599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.962897975425932, 0.0 ], [ -0.001373291015625, 75.962897975425932, 0.0 ], [ -0.001373291015625, 75.962564879594609, 0.0 ], [ -0.00274658203125, 75.962564879594609, 0.0 ], [ -0.00274658203125, 75.962897975425932, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1367, "task_x": 131070, "task_y": 43712, "task_z": 18, "center_y": 75.952068394350604, "area_in_sqm": 1385.1581988334699, "perimeter_in_m": 148.870856981602, "length_x": 37.224669536402402, "length_y": 37.225534736974303 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.952235066235545, 0.0 ], [ -0.001373291015625, 75.952235066235545, 0.0 ], [ -0.001373291015625, 75.951901722465593, 0.0 ], [ -0.00274658203125, 75.951901722465593, 0.0 ], [ -0.00274658203125, 75.952235066235545, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1368, "task_x": 131070, "task_y": 43744, "task_z": 18, "center_y": 75.941397424387304, "area_in_sqm": 1387.21930468082, "perimeter_in_m": 148.98157522307599, "length_x": 37.252365297954597, "length_y": 37.253231101373103 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.94156422032809, 0.0 ], [ -0.001373291015625, 75.94156422032809, 0.0 ], [ -0.001373291015625, 75.941230628446519, 0.0 ], [ -0.00274658203125, 75.941230628446519, 0.0 ], [ -0.00274658203125, 75.94156422032809, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1369, "task_x": 131070, "task_y": 43776, "task_z": 18, "center_y": 75.930718512083303, "area_in_sqm": 1389.2833788394901, "perimeter_in_m": 149.09237050936801, "length_x": 37.280080355665199, "length_y": 37.280946762257301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.930885432166406, 0.0 ], [ -0.001373291015625, 75.930885432166406, 0.0 ], [ -0.001373291015625, 75.930551592000157, 0.0 ], [ -0.00274658203125, 75.930551592000157, 0.0 ], [ -0.00274658203125, 75.930885432166406, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1370, "task_x": 131070, "task_y": 43808, "task_z": 18, "center_y": 75.920031651898299, "area_in_sqm": 1391.3504247665401, "perimeter_in_m": 149.20324287398799, "length_x": 37.307814719992102, "length_y": 37.308681730084302 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.920198696210406, 0.0 ], [ -0.001373291015625, 75.920198696210406, 0.0 ], [ -0.001373291015625, 75.919864607586263, 0.0 ], [ -0.00274658203125, 75.919864607586263, 0.0 ], [ -0.00274658203125, 75.920198696210406, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1371, "task_x": 131070, "task_y": 43840, "task_z": 18, "center_y": 75.909336838289207, "area_in_sqm": 1393.42044687271, "perimeter_in_m": 149.31419236248399, "length_x": 37.335568401391598, "length_y": 37.336436015310902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.909504006916862, 0.0 ], [ -0.001373291015625, 75.909504006916862, 0.0 ], [ -0.001373291015625, 75.909169669661566, 0.0 ], [ -0.00274658203125, 75.909169669661566, 0.0 ], [ -0.00274658203125, 75.909504006916862, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1372, "task_x": 131070, "task_y": 43872, "task_z": 18, "center_y": 75.8986340657097, "area_in_sqm": 1395.4934489727, "perimeter_in_m": 149.42521901791301, "length_x": 37.363341410318696, "length_y": 37.364209628391599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.898801358739632, 0.0 ], [ -0.001373291015625, 75.898801358739632, 0.0 ], [ -0.001373291015625, 75.898466772679825, 0.0 ], [ -0.00274658203125, 75.898466772679825, 0.0 ], [ -0.00274658203125, 75.898801358739632, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1373, "task_x": 131070, "task_y": 43904, "task_z": 18, "center_y": 75.887923328610597, "area_in_sqm": 1397.56943523884, "perimeter_in_m": 149.536322884047, "length_x": 37.391133757226697, "length_y": 37.392002579779998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.888090746129492, 0.0 ], [ -0.001373291015625, 75.888090746129492, 0.0 ], [ -0.001373291015625, 75.887755911091716, 0.0 ], [ -0.00274658203125, 75.887755911091716, 0.0 ], [ -0.00274658203125, 75.888090746129492, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1374, "task_x": 131070, "task_y": 43936, "task_z": 18, "center_y": 75.877204621439603, "area_in_sqm": 1399.6484094858199, "perimeter_in_m": 149.64750399332101, "length_x": 37.418945452567797, "length_y": 37.419814879927998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.877372163534247, 0.0 ], [ -0.001373291015625, 75.877372163534247, 0.0 ], [ -0.001373291015625, 75.87703707934493, 0.0 ], [ -0.00274658203125, 75.87703707934493, 0.0 ], [ -0.00274658203125, 75.877372163534247, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1375, "task_x": 131070, "task_y": 43968, "task_z": 18, "center_y": 75.866477938641395, "area_in_sqm": 1401.7303754091299, "perimeter_in_m": 149.75876239197299, "length_x": 37.446776506792503, "length_y": 37.447646539286097 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.866645605398659, 0.0 ], [ -0.001373291015625, 75.866645605398659, 0.0 ], [ -0.001373291015625, 75.86631027188416, 0.0 ], [ -0.00274658203125, 75.86631027188416, 0.0 ], [ -0.00274658203125, 75.866645605398659, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1376, "task_x": 131070, "task_y": 44000, "task_z": 18, "center_y": 75.855743274657797, "area_in_sqm": 1403.8153375387201, "perimeter_in_m": 149.87009812234601, "length_x": 37.474626930349601, "length_y": 37.475497568303197 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.855911066164467, 0.0 ], [ -0.001373291015625, 75.855911066164467, 0.0 ], [ -0.001373291015625, 75.855575483151057, 0.0 ], [ -0.00274658203125, 75.855575483151057, 0.0 ], [ -0.00274658203125, 75.855911066164467, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1377, "task_x": 131070, "task_y": 44032, "task_z": 18, "center_y": 75.845000623927305, "area_in_sqm": 1405.90329945087, "perimeter_in_m": 149.98151123137899, "length_x": 37.502496733686797, "length_y": 37.503367977426898 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.845168540270436, 0.0 ], [ -0.001373291015625, 75.845168540270436, 0.0 ], [ -0.001373291015625, 75.844832707584246, 0.0 ], [ -0.00274658203125, 75.844832707584246, 0.0 ], [ -0.00274658203125, 75.845168540270436, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1378, "task_x": 131070, "task_y": 44064, "task_z": 18, "center_y": 75.834249980885801, "area_in_sqm": 1407.9942659139599, "perimeter_in_m": 150.09300175008201, "length_x": 37.530385927249803, "length_y": 37.531257777102802 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.834418022152249, 0.0 ], [ -0.001373291015625, 75.834418022152249, 0.0 ], [ -0.001373291015625, 75.834081939619367, 0.0 ], [ -0.00274658203125, 75.834081939619367, 0.0 ], [ -0.00274658203125, 75.834418022152249, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1379, "task_x": 131070, "task_y": 44096, "task_z": 18, "center_y": 75.823491339965898, "area_in_sqm": 1410.0882401466399, "perimeter_in_m": 150.20456972538599, "length_x": 37.558294521482999, "length_y": 37.559166977775199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.823659506242649, 0.0 ], [ -0.001373291015625, 75.823659506242649, 0.0 ], [ -0.001373291015625, 75.823323173689047, 0.0 ], [ -0.00274658203125, 75.823323173689047, 0.0 ], [ -0.00274658203125, 75.823659506242649, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1380, "task_x": 131070, "task_y": 44128, "task_z": 18, "center_y": 75.812724695597097, "area_in_sqm": 1412.1852266788501, "perimeter_in_m": 150.31621519961899, "length_x": 37.586222526829097, "length_y": 37.5870955898869 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.812892986971306, 0.0 ], [ -0.001373291015625, 75.812892986971306, 0.0 ], [ -0.001373291015625, 75.81255640422286, 0.0 ], [ -0.00274658203125, 75.81255640422286, 0.0 ], [ -0.00274658203125, 75.812892986971306, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1381, "task_x": 131070, "task_y": 44160, "task_z": 18, "center_y": 75.801950042206101, "area_in_sqm": 1414.2852288484601, "perimeter_in_m": 150.42793821156701, "length_x": 37.614169953729203, "length_y": 37.615043623878698 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.802118458764909, 0.0 ], [ -0.001373291015625, 75.802118458764909, 0.0 ], [ -0.001373291015625, 75.801781625647408, 0.0 ], [ -0.00274658203125, 75.801781625647408, 0.0 ], [ -0.00274658203125, 75.802118458764909, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1382, "task_x": 131070, "task_y": 44192, "task_z": 18, "center_y": 75.791167374216698, "area_in_sqm": 1416.38825154305, "perimeter_in_m": 150.53973880248401, "length_x": 37.642136812622802, "length_y": 37.6430110901902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.791335916047117, 0.0 ], [ -0.001373291015625, 75.791335916047117, 0.0 ], [ -0.001373291015625, 75.790998832386251, 0.0 ], [ -0.00274658203125, 75.790998832386251, 0.0 ], [ -0.00274658203125, 75.791335916047117, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1383, "task_x": 131070, "task_y": 44224, "task_z": 18, "center_y": 75.780376686049294, "area_in_sqm": 1418.4942981004699, "perimeter_in_m": 150.65161701681899, "length_x": 37.670123113947497, "length_y": 37.6709979992591 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.780545353238594, 0.0 ], [ -0.001373291015625, 75.780545353238594, 0.0 ], [ -0.001373291015625, 75.780208018859952, 0.0 ], [ -0.00274658203125, 75.780208018859952, 0.0 ], [ -0.00274658203125, 75.780545353238594, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1384, "task_x": 131070, "task_y": 44256, "task_z": 18, "center_y": 75.769577972121496, "area_in_sqm": 1420.6033731698999, "perimeter_in_m": 150.763572897232, "length_x": 37.698128868139399, "length_y": 37.699004361521297 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.76974676475696, 0.0 ], [ -0.001373291015625, 75.76974676475696, 0.0 ], [ -0.001373291015625, 75.769409179486061, 0.0 ], [ -0.00274658203125, 75.769409179486061, 0.0 ], [ -0.00274658203125, 75.76974676475696, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1385, "task_x": 131070, "task_y": 44288, "task_z": 18, "center_y": 75.758771226847998, "area_in_sqm": 1422.7154799699799, "perimeter_in_m": 150.87560648073, "length_x": 37.726154085632899, "length_y": 37.727030187411103 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.758940145016865, 0.0 ], [ -0.001373291015625, 75.758940145016865, 0.0 ], [ -0.001373291015625, 75.758602308679102, 0.0 ], [ -0.00274658203125, 75.758602308679102, 0.0 ], [ -0.00274658203125, 75.758940145016865, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1386, "task_x": 131070, "task_y": 44320, "task_z": 18, "center_y": 75.747956444640295, "area_in_sqm": 1424.8306237459201, "perimeter_in_m": 150.98771780642599, "length_x": 37.754198776860903, "length_y": 37.755075487361303 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.74812548842992, 0.0 ], [ -0.001373291015625, 75.74812548842992, 0.0 ], [ -0.001373291015625, 75.747787400850612, 0.0 ], [ -0.00274658203125, 75.747787400850612, 0.0 ], [ -0.00274658203125, 75.74812548842992, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1387, "task_x": 131070, "task_y": 44352, "task_z": 18, "center_y": 75.737133619906899, "area_in_sqm": 1426.9488073587399, "perimeter_in_m": 151.09990692087399, "length_x": 37.782262952253902, "length_y": 37.783140271802601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.737302789404723, 0.0 ], [ -0.001373291015625, 75.737302789404723, 0.0 ], [ -0.001373291015625, 75.73696445040909, 0.0 ], [ -0.00274658203125, 75.73696445040909, 0.0 ], [ -0.00274658203125, 75.737302789404723, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1388, "task_x": 131070, "task_y": 44384, "task_z": 18, "center_y": 75.726302747053495, "area_in_sqm": 1429.0700355768199, "perimeter_in_m": 151.21217386920301, "length_x": 37.810346622241298, "length_y": 37.811224551164003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.72647204234687, 0.0 ], [ -0.001373291015625, 75.72647204234687, 0.0 ], [ -0.001373291015625, 75.726133451760035, 0.0 ], [ -0.00274658203125, 75.726133451760035, 0.0 ], [ -0.00274658203125, 75.72647204234687, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1389, "task_x": 131070, "task_y": 44416, "task_z": 18, "center_y": 75.715463820482498, "area_in_sqm": 1431.1943117380099, "perimeter_in_m": 151.32451868096601, "length_x": 37.838449797250298, "length_y": 37.839328335872899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.715633241658949, 0.0 ], [ -0.001373291015625, 75.715633241658949, 0.0 ], [ -0.001373291015625, 75.715294399305947, 0.0 ], [ -0.00274658203125, 75.715294399305947, 0.0 ], [ -0.00274658203125, 75.715633241658949, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1390, "task_x": 131070, "task_y": 44448, "task_z": 18, "center_y": 75.704616834593395, "area_in_sqm": 1433.3216408491101, "perimeter_in_m": 151.43694140269699, "length_x": 37.866572487706399, "length_y": 37.867451636354701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.704786381740519, 0.0 ], [ -0.001373291015625, 75.704786381740519, 0.0 ], [ -0.001373291015625, 75.7044472874463, 0.0 ], [ -0.00274658203125, 75.7044472874463, 0.0 ], [ -0.00274658203125, 75.704786381740519, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1391, "task_x": 131070, "task_y": 44480, "task_z": 18, "center_y": 75.693761783782904, "area_in_sqm": 1435.4520266056099, "perimeter_in_m": 151.54944207951999, "length_x": 37.894714704033298, "length_y": 37.895594463032999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.693931456988167, 0.0 ], [ -0.001373291015625, 75.693931456988167, 0.0 ], [ -0.001373291015625, 75.693592110577569, 0.0 ], [ -0.00274658203125, 75.693592110577569, 0.0 ], [ -0.00274658203125, 75.693931456988167, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1392, "task_x": 131070, "task_y": 44512, "task_z": 18, "center_y": 75.682898662444302, "area_in_sqm": 1437.5854725837701, "perimeter_in_m": 151.66202075619299, "length_x": 37.922876456652801, "length_y": 37.923756826329601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.683068461795457, 0.0 ], [ -0.001373291015625, 75.683068461795457, 0.0 ], [ -0.001373291015625, 75.682728863093217, 0.0 ], [ -0.00274658203125, 75.682728863093217, 0.0 ], [ -0.00274658203125, 75.683068461795457, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1393, "task_x": 131070, "task_y": 44544, "task_z": 18, "center_y": 75.672027464968295, "area_in_sqm": 1439.72198355198, "perimeter_in_m": 151.77467747038801, "length_x": 37.951057755984799, "length_y": 37.951938736664303 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.67219739055291, 0.0 ], [ -0.001373291015625, 75.67219739055291, 0.0 ], [ -0.001373291015625, 75.671857539383694, 0.0 ], [ -0.00274658203125, 75.671857539383694, 0.0 ], [ -0.00274658203125, 75.67219739055291, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1394, "task_x": 131070, "task_y": 44576, "task_z": 18, "center_y": 75.661148185742306, "area_in_sqm": 1441.8615633249301, "perimeter_in_m": 151.88741225624599, "length_x": 37.979258612447403, "length_y": 37.980140204454997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.661318237648075, 0.0 ], [ -0.001373291015625, 75.661318237648075, 0.0 ], [ -0.001373291015625, 75.660978133836437, 0.0 ], [ -0.00274658203125, 75.660978133836437, 0.0 ], [ -0.00274658203125, 75.661318237648075, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1395, "task_x": 131070, "task_y": 44608, "task_z": 18, "center_y": 75.650260819150702, "area_in_sqm": 1444.0042159557299, "perimeter_in_m": 152.000225154612, "length_x": 38.007479036456601, "length_y": 38.0083612401178 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.650430997465492, 0.0 ], [ -0.001373291015625, 75.650430997465492, 0.0 ], [ -0.001373291015625, 75.650090640835913, 0.0 ], [ -0.00274658203125, 75.650090640835913, 0.0 ], [ -0.00274658203125, 75.650430997465492, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1396, "task_x": 131070, "task_y": 44640, "task_z": 18, "center_y": 75.639365359575095, "area_in_sqm": 1446.1499454975101, "perimeter_in_m": 152.11311622722801, "length_x": 38.035719038426599, "length_y": 38.036601854067001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.639535664386671, 0.0 ], [ -0.001373291015625, 75.639535664386671, 0.0 ], [ -0.001373291015625, 75.639195054763533, 0.0 ], [ -0.00274658203125, 75.639195054763533, 0.0 ], [ -0.00274658203125, 75.639535664386671, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1397, "task_x": 131070, "task_y": 44672, "task_z": 18, "center_y": 75.628461801393897, "area_in_sqm": 1448.2987567186401, "perimeter_in_m": 152.226085497593, "length_x": 38.063978628769597, "length_y": 38.064862056714396 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.628632232790167, 0.0 ], [ -0.001373291015625, 75.628632232790167, 0.0 ], [ -0.001373291015625, 75.628291369997712, 0.0 ], [ -0.00274658203125, 75.628291369997712, 0.0 ], [ -0.00274658203125, 75.628632232790167, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1398, "task_x": 131070, "task_y": 44704, "task_z": 18, "center_y": 75.617550138982693, "area_in_sqm": 1450.45065224171, "perimeter_in_m": 152.33913299911401, "length_x": 38.0922578178957, "length_y": 38.093141858470098 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.617720697051453, 0.0 ], [ -0.001373291015625, 75.617720697051453, 0.0 ], [ -0.001373291015625, 75.617379580913905, 0.0 ], [ -0.00274658203125, 75.617379580913905, 0.0 ], [ -0.00274658203125, 75.617720697051453, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1399, "task_x": 131070, "task_y": 44736, "task_z": 18, "center_y": 75.606630366713802, "area_in_sqm": 1452.6056375503499, "perimeter_in_m": 152.452258797761, "length_x": 38.120556616213101, "length_y": 38.121441269742597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.606801051543059, 0.0 ], [ -0.001373291015625, 75.606801051543059, 0.0 ], [ -0.001373291015625, 75.606459681884488, 0.0 ], [ -0.00274658203125, 75.606459681884488, 0.0 ], [ -0.00274658203125, 75.606801051543059, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1400, "task_x": 131070, "task_y": 44768, "task_z": 18, "center_y": 75.595702478956696, "area_in_sqm": 1454.7637159824401, "perimeter_in_m": 152.565462912063, "length_x": 38.148875034128103, "length_y": 38.149760300937601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.595873290634472, 0.0 ], [ -0.001373291015625, 75.595873290634472, 0.0 ], [ -0.001373291015625, 75.595531667278905, 0.0 ], [ -0.00274658203125, 75.595531667278905, 0.0 ], [ -0.00274658203125, 75.595873290634472, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1401, "task_x": 131070, "task_y": 44800, "task_z": 18, "center_y": 75.584766470077895, "area_in_sqm": 1456.9248924255401, "perimeter_in_m": 152.678745391349, "length_x": 38.177213082044503, "length_y": 38.178098962459202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.584937408692227, 0.0 ], [ -0.001373291015625, 75.584937408692227, 0.0 ], [ -0.001373291015625, 75.584595531463549, 0.0 ], [ -0.00274658203125, 75.584595531463549, 0.0 ], [ -0.00274658203125, 75.584937408692227, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1402, "task_x": 131070, "task_y": 44832, "task_z": 18, "center_y": 75.573822334440806, "area_in_sqm": 1459.08916985989, "perimeter_in_m": 152.792106279271, "length_x": 38.205570770364602, "length_y": 38.2064572647093 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.573993400079786, 0.0 ], [ -0.001373291015625, 75.573993400079786, 0.0 ], [ -0.001373291015625, 75.573651268801811, 0.0 ], [ -0.00274658203125, 75.573651268801811, 0.0 ], [ -0.00274658203125, 75.573993400079786, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1403, "task_x": 131070, "task_y": 44864, "task_z": 18, "center_y": 75.562870066405907, "area_in_sqm": 1461.25655376911, "perimeter_in_m": 152.90554562054501, "length_x": 38.233948109487898, "length_y": 38.234835218087902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.563041259157671, 0.0 ], [ -0.001373291015625, 75.563041259157671, 0.0 ], [ -0.001373291015625, 75.562698873654114, 0.0 ], [ -0.00274658203125, 75.562698873654114, 0.0 ], [ -0.00274658203125, 75.563041259157671, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1404, "task_x": 131070, "task_y": 44896, "task_z": 18, "center_y": 75.551909660330594, "area_in_sqm": 1463.4270467758199, "perimeter_in_m": 153.019063457398, "length_x": 38.2623451098125, "length_y": 38.2632328329926 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.55208098028335, 0.0 ], [ -0.001373291015625, 75.55208098028335, 0.0 ], [ -0.001373291015625, 75.551738340377824, 0.0 ], [ -0.00274658203125, 75.551738340377824, 0.0 ], [ -0.00274658203125, 75.55208098028335, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1405, "task_x": 131070, "task_y": 44928, "task_z": 18, "center_y": 75.540941110569307, "area_in_sqm": 1465.600654006, "perimeter_in_m": 153.13265981258999, "length_x": 38.290761781733899, "length_y": 38.291650119818797 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.541112557811317, 0.0 ], [ -0.001373291015625, 75.541112557811317, 0.0 ], [ -0.001373291015625, 75.540769663327367, 0.0 ], [ -0.00274658203125, 75.540769663327367, 0.0 ], [ -0.00274658203125, 75.541112557811317, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1406, "task_x": 131070, "task_y": 44960, "task_z": 18, "center_y": 75.5299644114736, "area_in_sqm": 1467.77737951279, "perimeter_in_m": 153.24633474426901, "length_x": 38.3191981356456, "length_y": 38.320087088960101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.530135986093057, 0.0 ], [ -0.001373291015625, 75.530135986093057, 0.0 ], [ -0.001373291015625, 75.529792836854114, 0.0 ], [ -0.00274658203125, 75.529792836854114, 0.0 ], [ -0.00274658203125, 75.530135986093057, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1407, "task_x": 131070, "task_y": 44992, "task_z": 18, "center_y": 75.518979557391802, "area_in_sqm": 1469.95722723007, "perimeter_in_m": 153.36008829465399, "length_x": 38.347654181938701, "length_y": 38.3485437508076 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.51915125947707, 0.0 ], [ -0.001373291015625, 75.51915125947707, 0.0 ], [ -0.001373291015625, 75.518807855306477, 0.0 ], [ -0.00274658203125, 75.518807855306477, 0.0 ], [ -0.00274658203125, 75.51915125947707, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1408, "task_x": 131070, "task_y": 45024, "task_z": 18, "center_y": 75.5079865426693, "area_in_sqm": 1472.1402013301799, "perimeter_in_m": 153.47392049887301, "length_x": 38.376129931002403, "length_y": 38.377020115750298 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.508158372308841, 0.0 ], [ -0.001373291015625, 75.508158372308841, 0.0 ], [ -0.001373291015625, 75.507814713029831, 0.0 ], [ -0.00274658203125, 75.507814713029831, 0.0 ], [ -0.00274658203125, 75.508158372308841, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1409, "task_x": 131070, "task_y": 45056, "task_z": 18, "center_y": 75.496985361648697, "area_in_sqm": 1474.32630634308, "perimeter_in_m": 153.587831398432, "length_x": 38.404625393223398, "length_y": 38.405516194174801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.497157318930846, 0.0 ], [ -0.001373291015625, 75.497157318930846, 0.0 ], [ -0.001373291015625, 75.496813404366591, 0.0 ], [ -0.00274658203125, 75.496813404366591, 0.0 ], [ -0.00274658203125, 75.497157318930846, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1410, "task_x": 131070, "task_y": 45088, "task_z": 18, "center_y": 75.485976008669397, "area_in_sqm": 1476.51554560661, "perimeter_in_m": 153.701821033052, "length_x": 38.433140578986297, "length_y": 38.434031996465599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.486148093682573, 0.0 ], [ -0.001373291015625, 75.486148093682573, 0.0 ], [ -0.001373291015625, 75.485803923656135, 0.0 ], [ -0.00274658203125, 75.485803923656135, 0.0 ], [ -0.00274658203125, 75.486148093682573, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1411, "task_x": 131070, "task_y": 45120, "task_z": 18, "center_y": 75.474958478067705, "area_in_sqm": 1478.7079238891599, "perimeter_in_m": 153.815889444927, "length_x": 38.461675498673301, "length_y": 38.462567533005 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.475130690900514, 0.0 ], [ -0.001373291015625, 75.475130690900514, 0.0 ], [ -0.001373291015625, 75.474786265234854, 0.0 ], [ -0.00274658203125, 75.474786265234854, 0.0 ], [ -0.00274658203125, 75.475130690900514, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1412, "task_x": 131070, "task_y": 45152, "task_z": 18, "center_y": 75.463932764177201, "area_in_sqm": 1480.90344512463, "perimeter_in_m": 153.93003668191699, "length_x": 38.490230162664297, "length_y": 38.491122814172797 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.464105104918161, 0.0 ], [ -0.001373291015625, 75.464105104918161, 0.0 ], [ -0.001373291015625, 75.46376042343617, 0.0 ], [ -0.00274658203125, 75.46376042343617, 0.0 ], [ -0.00274658203125, 75.464105104918161, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1413, "task_x": 131070, "task_y": 45184, "task_z": 18, "center_y": 75.452898861328293, "area_in_sqm": 1483.1021138429601, "perimeter_in_m": 154.044262778422, "length_x": 38.518804581337001, "length_y": 38.519697850346503 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.453071330066024, 0.0 ], [ -0.001373291015625, 75.453071330066024, 0.0 ], [ -0.001373291015625, 75.452726392590463, 0.0 ], [ -0.00274658203125, 75.452726392590463, 0.0 ], [ -0.00274658203125, 75.453071330066024, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1414, "task_x": 131070, "task_y": 45216, "task_z": 18, "center_y": 75.441856763848406, "area_in_sqm": 1485.3039339780801, "perimeter_in_m": 154.158567780163, "length_x": 38.547398765066603, "length_y": 38.548292651901299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.442029360671597, 0.0 ], [ -0.001373291015625, 75.442029360671597, 0.0 ], [ -0.001373291015625, 75.441684167025144, 0.0 ], [ -0.00274658203125, 75.441684167025144, 0.0 ], [ -0.00274658203125, 75.442029360671597, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1415, "task_x": 131070, "task_y": 45248, "task_z": 18, "center_y": 75.430806466061995, "area_in_sqm": 1487.50890922546, "perimeter_in_m": 154.27295172330099, "length_x": 38.576012724226104, "length_y": 38.576907229210001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.430979191059365, 0.0 ], [ -0.001373291015625, 75.430979191059365, 0.0 ], [ -0.001373291015625, 75.430633741064611, 0.0 ], [ -0.00274658203125, 75.430633741064611, 0.0 ], [ -0.00274658203125, 75.430979191059365, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1416, "task_x": 131070, "task_y": 45280, "task_z": 18, "center_y": 75.4197479622906, "area_in_sqm": 1489.7170443534901, "perimeter_in_m": 154.387414648944, "length_x": 38.604646469185802, "length_y": 38.6055415926431 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.419920815550839, 0.0 ], [ -0.001373291015625, 75.419920815550839, 0.0 ], [ -0.001373291015625, 75.419575109030305, 0.0 ], [ -0.00274658203125, 75.419575109030305, 0.0 ], [ -0.00274658203125, 75.419920815550839, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1417, "task_x": 131070, "task_y": 45312, "task_z": 18, "center_y": 75.408681246852595, "area_in_sqm": 1491.92834365368, "perimeter_in_m": 154.501956602446, "length_x": 38.633300010313903, "length_y": 38.634195752568502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.408854228464534, 0.0 ], [ -0.001373291015625, 75.408854228464534, 0.0 ], [ -0.001373291015625, 75.408508265240613, 0.0 ], [ -0.00274658203125, 75.408508265240613, 0.0 ], [ -0.00274658203125, 75.408854228464534, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1418, "task_x": 131070, "task_y": 45344, "task_z": 18, "center_y": 75.397606314063495, "area_in_sqm": 1494.14281094074, "perimeter_in_m": 154.616577618533, "length_x": 38.661973357975903, "length_y": 38.662869719351697 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.397779424115981, 0.0 ], [ -0.001373291015625, 75.397779424115981, 0.0 ], [ -0.001373291015625, 75.397433204010994, 0.0 ], [ -0.00274658203125, 75.397433204010994, 0.0 ], [ -0.00274658203125, 75.397779424115981, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1419, "task_x": 131070, "task_y": 45376, "task_z": 18, "center_y": 75.386523158235804, "area_in_sqm": 1496.36045086384, "perimeter_in_m": 154.73127775423299, "length_x": 38.690666522535103, "length_y": 38.691563503355901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.386696396817698, 0.0 ], [ -0.001373291015625, 75.386696396817698, 0.0 ], [ -0.001373291015625, 75.386349919653838, 0.0 ], [ -0.00274658203125, 75.386349919653838, 0.0 ], [ -0.00274658203125, 75.386696396817698, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1420, "task_x": 131070, "task_y": 45408, "task_z": 18, "center_y": 75.375431773678898, "area_in_sqm": 1498.58126676083, "perimeter_in_m": 154.84605702514699, "length_x": 38.719379514351999, "length_y": 38.720277114941403 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.375605140879216, 0.0 ], [ -0.001373291015625, 75.375605140879216, 0.0 ], [ -0.001373291015625, 75.375258406478636, 0.0 ], [ -0.00274658203125, 75.375258406478636, 0.0 ], [ -0.00274658203125, 75.375605140879216, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1421, "task_x": 131070, "task_y": 45440, "task_z": 18, "center_y": 75.364332154699397, "area_in_sqm": 1500.8052636385, "perimeter_in_m": 154.96091549324299, "length_x": 38.748112343784697, "length_y": 38.749010564466602 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.364505650607072, 0.0 ], [ -0.001373291015625, 75.364505650607072, 0.0 ], [ -0.001373291015625, 75.36415865879178, 0.0 ], [ -0.00274658203125, 75.36415865879178, 0.0 ], [ -0.00274658203125, 75.364505650607072, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1422, "task_x": 131070, "task_y": 45472, "task_z": 18, "center_y": 75.353224295600796, "area_in_sqm": 1503.03244531155, "perimeter_in_m": 155.07585318615, "length_x": 38.776865021189003, "length_y": 38.777763862286797 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.353397920304815, 0.0 ], [ -0.001373291015625, 75.353397920304815, 0.0 ], [ -0.001373291015625, 75.353050670896778, 0.0 ], [ -0.00274658203125, 75.353050670896778, 0.0 ], [ -0.00274658203125, 75.353397920304815, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1423, "task_x": 131070, "task_y": 45504, "task_z": 18, "center_y": 75.342108190683504, "area_in_sqm": 1505.2628160715101, "perimeter_in_m": 155.190870159805, "length_x": 38.805637556917802, "length_y": 38.806537018755002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.342281944273012, 0.0 ], [ -0.001373291015625, 75.342281944273012, 0.0 ], [ -0.001373291015625, 75.341934437094054, 0.0 ], [ -0.00274658203125, 75.341934437094054, 0.0 ], [ -0.00274658203125, 75.342281944273012, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1424, "task_x": 131070, "task_y": 45536, "task_z": 18, "center_y": 75.330983834245203, "area_in_sqm": 1507.4963806867599, "perimeter_in_m": 155.30596644749201, "length_x": 38.834429961321497, "length_y": 38.8353300442216 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.331157716809216, 0.0 ], [ -0.001373291015625, 75.331157716809216, 0.0 ], [ -0.001373291015625, 75.33080995168109, 0.0 ], [ -0.00274658203125, 75.33080995168109, 0.0 ], [ -0.00274658203125, 75.331157716809216, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1425, "task_x": 131070, "task_y": 45568, "task_z": 18, "center_y": 75.319851220580205, "area_in_sqm": 1509.7331423759499, "perimeter_in_m": 155.421142084607, "length_x": 38.863242244748001, "length_y": 38.864142949034303 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.320025232208039, 0.0 ], [ -0.001373291015625, 75.320025232208039, 0.0 ], [ -0.001373291015625, 75.319677208952399, 0.0 ], [ -0.00274658203125, 75.319677208952399, 0.0 ], [ -0.00274658203125, 75.320025232208039, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1426, "task_x": 131070, "task_y": 45600, "task_z": 18, "center_y": 75.308710343980195, "area_in_sqm": 1511.97310578823, "perimeter_in_m": 155.536397113269, "length_x": 38.892074417542602, "length_y": 38.892975743538202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.308884484761023, 0.0 ], [ -0.001373291015625, 75.308884484761023, 0.0 ], [ -0.001373291015625, 75.308536203199452, 0.0 ], [ -0.00274658203125, 75.308536203199452, 0.0 ], [ -0.00274658203125, 75.308884484761023, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1427, "task_x": 131070, "task_y": 45632, "task_z": 18, "center_y": 75.297561198733803, "area_in_sqm": 1514.2162752151501, "perimeter_in_m": 155.65173158762701, "length_x": 38.920926490047499, "length_y": 38.921828438075799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.297735468756827, 0.0 ], [ -0.001373291015625, 75.297735468756827, 0.0 ], [ -0.001373291015625, 75.297386928710765, 0.0 ], [ -0.00274658203125, 75.297386928710765, 0.0 ], [ -0.00274658203125, 75.297735468756827, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1428, "task_x": 131070, "task_y": 45664, "task_z": 18, "center_y": 75.286403779126402, "area_in_sqm": 1516.46265494823, "perimeter_in_m": 155.76714553916599, "length_x": 38.9497984726029, "length_y": 38.9507010429869 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.286578178481022, 0.0 ], [ -0.001373291015625, 75.286578178481022, 0.0 ], [ -0.001373291015625, 75.286229379771868, 0.0 ], [ -0.00274658203125, 75.286229379771868, 0.0 ], [ -0.00274658203125, 75.286578178481022, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1429, "task_x": 131070, "task_y": 45696, "task_z": 18, "center_y": 75.275238079440797, "area_in_sqm": 1518.7122493982299, "perimeter_in_m": 155.88263900184799, "length_x": 38.978690375545902, "length_y": 38.9795935686085 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.275412608216257, 0.0 ], [ -0.001373291015625, 75.275412608216257, 0.0 ], [ -0.001373291015625, 75.275063550665294, 0.0 ], [ -0.00274658203125, 75.275063550665294, 0.0 ], [ -0.00274658203125, 75.275412608216257, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1430, "task_x": 131070, "task_y": 45728, "task_z": 18, "center_y": 75.264064093956407, "area_in_sqm": 1520.96506237984, "perimeter_in_m": 155.998212026971, "length_x": 39.007602209210802, "length_y": 39.008506025274897 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.264238752242179, 0.0 ], [ -0.001373291015625, 75.264238752242179, 0.0 ], [ -0.001373291015625, 75.263889435670592, 0.0 ], [ -0.00274658203125, 75.263889435670592, 0.0 ], [ -0.00274658203125, 75.264238752242179, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1431, "task_x": 131070, "task_y": 45760, "task_z": 18, "center_y": 75.252881816949895, "area_in_sqm": 1523.2210979461699, "perimeter_in_m": 156.113864645652, "length_x": 39.036533983929402, "length_y": 39.037438423317802 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.25305660483545, 0.0 ], [ -0.001373291015625, 75.25305660483545, 0.0 ], [ -0.001373291015625, 75.252707029064339, 0.0 ], [ -0.00274658203125, 75.252707029064339, 0.0 ], [ -0.00274658203125, 75.25305660483545, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1432, "task_x": 131070, "task_y": 45792, "task_z": 18, "center_y": 75.241691242694898, "area_in_sqm": 1525.4803614616401, "perimeter_in_m": 156.22959691554999, "length_x": 39.065485710030401, "length_y": 39.066390773065898 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.241866160269723, 0.0 ], [ -0.001373291015625, 75.241866160269723, 0.0 ], [ -0.001373291015625, 75.241516325120102, 0.0 ], [ -0.00274658203125, 75.241516325120102, 0.0 ], [ -0.00274658203125, 75.241866160269723, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1433, "task_x": 131070, "task_y": 45824, "task_z": 18, "center_y": 75.230492365462098, "area_in_sqm": 1527.7428562641101, "perimeter_in_m": 156.345408869892, "length_x": 39.094457397840102, "length_y": 39.095363084845403 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.23066741281572, 0.0 ], [ -0.001373291015625, 75.23066741281572, 0.0 ], [ -0.001373291015625, 75.230317318108476, 0.0 ], [ -0.00274658203125, 75.230317318108476, 0.0 ], [ -0.00274658203125, 75.23066741281572, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1434, "task_x": 131070, "task_y": 45856, "task_z": 18, "center_y": 75.219285179519105, "area_in_sqm": 1530.00858652592, "perimeter_in_m": 156.46130054084099, "length_x": 39.123449057681697, "length_y": 39.124355368979302 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.219460356741124, 0.0 ], [ -0.001373291015625, 75.219460356741124, 0.0 ], [ -0.001373291015625, 75.2191100022971, 0.0 ], [ -0.00274658203125, 75.2191100022971, 0.0 ], [ -0.00274658203125, 75.219460356741124, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1435, "task_x": 131070, "task_y": 45888, "task_z": 18, "center_y": 75.208069679130602, "area_in_sqm": 1532.27755773067, "perimeter_in_m": 156.57727198709699, "length_x": 39.152460699875498, "length_y": 39.153367635787902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.208244986310689, 0.0 ], [ -0.001373291015625, 75.208244986310689, 0.0 ], [ -0.001373291015625, 75.207894371950573, 0.0 ], [ -0.00274658203125, 75.207894371950573, 0.0 ], [ -0.00274658203125, 75.208244986310689, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1436, "task_x": 131070, "task_y": 45920, "task_z": 18, "center_y": 75.196845858558405, "area_in_sqm": 1534.5497722625701, "perimeter_in_m": 156.693323229838, "length_x": 39.181492334739197, "length_y": 39.182399895588702 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.197021295786129, 0.0 ], [ -0.001373291015625, 75.197021295786129, 0.0 ], [ -0.001373291015625, 75.196670421330595, 0.0 ], [ -0.00274658203125, 75.196670421330595, 0.0 ], [ -0.00274658203125, 75.197021295786129, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1437, "task_x": 131070, "task_y": 45952, "task_z": 18, "center_y": 75.185613712060999, "area_in_sqm": 1536.8252354860299, "perimeter_in_m": 156.80945431536699, "length_x": 39.210543972587303, "length_y": 39.211452158696297 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.185789279426231, 0.0 ], [ -0.001373291015625, 75.185789279426231, 0.0 ], [ -0.001373291015625, 75.185438144695809, 0.0 ], [ -0.00274658203125, 75.185438144695809, 0.0 ], [ -0.00274658203125, 75.185789279426231, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1438, "task_x": 131070, "task_y": 45984, "task_z": 18, "center_y": 75.1743732338943, "area_in_sqm": 1539.1039515733701, "perimeter_in_m": 156.92566529704999, "length_x": 39.239615623731602, "length_y": 39.240524435422302 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.174548931486783, 0.0 ], [ -0.001373291015625, 75.174548931486783, 0.0 ], [ -0.001373291015625, 75.174197536301904, 0.0 ], [ -0.00274658203125, 75.174197536301904, 0.0 ], [ -0.00274658203125, 75.174548931486783, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1439, "task_x": 131070, "task_y": 46016, "task_z": 18, "center_y": 75.163124418311099, "area_in_sqm": 1541.3859254121801, "perimeter_in_m": 157.041956196049, "length_x": 39.268707298480898, "length_y": 39.2696167360752 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.163300246220587, 0.0 ], [ -0.001373291015625, 75.163300246220587, 0.0 ], [ -0.001373291015625, 75.162948590401598, 0.0 ], [ -0.00274658203125, 75.162948590401598, 0.0 ], [ -0.00274658203125, 75.163300246220587, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1440, "task_x": 131070, "task_y": 46048, "task_z": 18, "center_y": 75.151867259561001, "area_in_sqm": 1543.6711601018901, "perimeter_in_m": 157.158327081659, "length_x": 39.297819007140902, "length_y": 39.298729070961102 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.152043217877463, 0.0 ], [ -0.001373291015625, 75.152043217877463, 0.0 ], [ -0.001373291015625, 75.151691301244639, 0.0 ], [ -0.00274658203125, 75.151691301244639, 0.0 ], [ -0.00274658203125, 75.152043217877463, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1441, "task_x": 131070, "task_y": 46080, "task_z": 18, "center_y": 75.140601751890998, "area_in_sqm": 1545.9596606493001, "perimeter_in_m": 157.274777961213, "length_x": 39.326950760014498, "length_y": 39.327861450382301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.140777840704288, 0.0 ], [ -0.001373291015625, 75.140777840704288, 0.0 ], [ -0.001373291015625, 75.140425663077778, 0.0 ], [ -0.00274658203125, 75.140425663077778, 0.0 ], [ -0.00274658203125, 75.140777840704288, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1442, "task_x": 131070, "task_y": 46112, "task_z": 18, "center_y": 75.129327889544896, "area_in_sqm": 1548.2514309883099, "perimeter_in_m": 157.39130889832899, "length_x": 39.3561025674014, "length_y": 39.357013884638597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.129504108944914, 0.0 ], [ -0.001373291015625, 75.129504108944914, 0.0 ], [ -0.001373291015625, 75.129151670144807, 0.0 ], [ -0.00274658203125, 75.129151670144807, 0.0 ], [ -0.00274658203125, 75.129504108944914, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1443, "task_x": 131070, "task_y": 46144, "task_z": 18, "center_y": 75.118045666763393, "area_in_sqm": 1550.54647564888, "perimeter_in_m": 157.50791991803101, "length_x": 39.385274439598398, "length_y": 39.3861863840268 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.118222016840249, 0.0 ], [ -0.001373291015625, 75.118222016840249, 0.0 ], [ -0.001373291015625, 75.117869316686523, 0.0 ], [ -0.00274658203125, 75.117869316686523, 0.0 ], [ -0.00274658203125, 75.118222016840249, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1444, "task_x": 131070, "task_y": 46176, "task_z": 18, "center_y": 75.106755077784499, "area_in_sqm": 1552.8447991609601, "perimeter_in_m": 157.62461107542501, "length_x": 39.4144663868991, "length_y": 39.4153789588403 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.106931558628219, 0.0 ], [ -0.001373291015625, 75.106931558628219, 0.0 ], [ -0.001373291015625, 75.106578596940764, 0.0 ], [ -0.00274658203125, 75.106578596940764, 0.0 ], [ -0.00274658203125, 75.106931558628219, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1445, "task_x": 131070, "task_y": 46208, "task_z": 18, "center_y": 75.095456116843096, "area_in_sqm": 1555.1464053392399, "perimeter_in_m": 157.74138240543601, "length_x": 39.443678419594001, "length_y": 39.444591619369596 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.095632728543791, 0.0 ], [ -0.001373291015625, 75.095632728543791, 0.0 ], [ -0.001373291015625, 75.0952795051424, 0.0 ], [ -0.00274658203125, 75.0952795051424, 0.0 ], [ -0.00274658203125, 75.095632728543791, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1446, "task_x": 131070, "task_y": 46240, "task_z": 18, "center_y": 75.084148778171098, "area_in_sqm": 1557.45129954815, "perimeter_in_m": 157.85823395465999, "length_x": 39.472910547970599, "length_y": 39.473824375901998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.084325520818936, 0.0 ], [ -0.001373291015625, 75.084325520818936, 0.0 ], [ -0.001373291015625, 75.083972035523288, 0.0 ], [ -0.00274658203125, 75.083972035523288, 0.0 ], [ -0.00274658203125, 75.084325520818936, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1447, "task_x": 131070, "task_y": 46272, "task_z": 18, "center_y": 75.072833055997506, "area_in_sqm": 1559.7594839334499, "perimeter_in_m": 157.97516574809401, "length_x": 39.502162782313299, "length_y": 39.503077238721801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.073009929682641, 0.0 ], [ -0.001373291015625, 75.073009929682641, 0.0 ], [ -0.001373291015625, 75.072656182312386, 0.0 ], [ -0.00274658203125, 75.072656182312386, 0.0 ], [ -0.00274658203125, 75.073009929682641, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1448, "task_x": 131070, "task_y": 46304, "task_z": 18, "center_y": 75.061508944548294, "area_in_sqm": 1562.0709646940199, "perimeter_in_m": 158.092177840468, "length_x": 39.531435132903198, "length_y": 39.532350218109897 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.061685949360964, 0.0 ], [ -0.001373291015625, 75.061685949360964, 0.0 ], [ -0.001373291015625, 75.061331939735595, 0.0 ], [ -0.00274658203125, 75.061331939735595, 0.0 ], [ -0.00274658203125, 75.061685949360964, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1449, "task_x": 131070, "task_y": 46336, "task_z": 18, "center_y": 75.050176438046407, "area_in_sqm": 1564.3857464790301, "perimeter_in_m": 158.209270277651, "length_x": 39.560727610017999, "length_y": 39.561643324344303 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.050353574076979, 0.0 ], [ -0.001373291015625, 75.050353574076979, 0.0 ], [ -0.001373291015625, 75.049999302015905, 0.0 ], [ -0.00274658203125, 75.049999302015905, 0.0 ], [ -0.00274658203125, 75.050353574076979, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1450, "task_x": 131070, "task_y": 46368, "task_z": 18, "center_y": 75.038835530712007, "area_in_sqm": 1566.7038320303, "perimeter_in_m": 158.32644308391599, "length_x": 39.590040223932697, "length_y": 39.5909565676995 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.039012798050749, 0.0 ], [ -0.001373291015625, 75.039012798050749, 0.0 ], [ -0.001373291015625, 75.038658263373321, 0.0 ], [ -0.00274658203125, 75.038658263373321, 0.0 ], [ -0.00274658203125, 75.039012798050749, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1451, "task_x": 131070, "task_y": 46400, "task_z": 18, "center_y": 75.027486216762199, "area_in_sqm": 1569.0252267122301, "perimeter_in_m": 158.44369631041999, "length_x": 39.619372984918598, "length_y": 39.620289958446797 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.027663615499421, 0.0 ], [ -0.001373291015625, 75.027663615499421, 0.0 ], [ -0.001373291015625, 75.027308818024878, 0.0 ], [ -0.00274658203125, 75.027308818024878, 0.0 ], [ -0.00274658203125, 75.027663615499421, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1452, "task_x": 131070, "task_y": 46432, "task_z": 18, "center_y": 75.016128490410907, "area_in_sqm": 1571.3499345779401, "perimeter_in_m": 158.56102999346299, "length_x": 39.6487259032439, "length_y": 39.649643506854403 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.016306020637174, 0.0 ], [ -0.001373291015625, 75.016306020637174, 0.0 ], [ -0.001373291015625, 75.015950960184639, 0.0 ], [ -0.00274658203125, 75.015950960184639, 0.0 ], [ -0.00274658203125, 75.016306020637174, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1453, "task_x": 131070, "task_y": 46464, "task_z": 18, "center_y": 75.004762345869494, "area_in_sqm": 1573.6779602766001, "perimeter_in_m": 158.678444174639, "length_x": 39.678098989173499, "length_y": 39.679017223187003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 75.00494000767516, 0.0 ], [ -0.001373291015625, 75.00494000767516, 0.0 ], [ -0.001373291015625, 75.004584684063715, 0.0 ], [ -0.00274658203125, 75.004584684063715, 0.0 ], [ -0.00274658203125, 75.00494000767516, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1454, "task_x": 131070, "task_y": 46496, "task_z": 18, "center_y": 74.993387777345902, "area_in_sqm": 1576.0093078613299, "perimeter_in_m": 158.795938891285, "length_x": 39.707492252969097, "length_y": 39.708411117706099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.99356557082163, 0.0 ], [ -0.001373291015625, 74.99356557082163, 0.0 ], [ -0.001373291015625, 74.993209983870216, 0.0 ], [ -0.00274658203125, 74.993209983870216, 0.0 ], [ -0.00274658203125, 74.99356557082163, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1455, "task_x": 131070, "task_y": 46528, "task_z": 18, "center_y": 74.982004779045596, "area_in_sqm": 1578.3439816236501, "perimeter_in_m": 158.913514204103, "length_x": 39.736905704888599, "length_y": 39.737825200670002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.98218270428184, 0.0 ], [ -0.001373291015625, 74.98218270428184, 0.0 ], [ -0.001373291015625, 74.981826853809324, 0.0 ], [ -0.00274658203125, 74.981826853809324, 0.0 ], [ -0.00274658203125, 74.98218270428184, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1456, "task_x": 131070, "task_y": 46560, "task_z": 18, "center_y": 74.970613345170705, "area_in_sqm": 1580.6819856166801, "perimeter_in_m": 159.03117012704701, "length_x": 39.766339355187299, "length_y": 39.767259482333102 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.970791402258101, 0.0 ], [ -0.001373291015625, 74.970791402258101, 0.0 ], [ -0.001373291015625, 74.970435288083252, 0.0 ], [ -0.00274658203125, 74.970435288083252, 0.0 ], [ -0.00274658203125, 74.970791402258101, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1457, "task_x": 131070, "task_y": 46592, "task_z": 18, "center_y": 74.959213469920499, "area_in_sqm": 1583.0233254432701, "perimeter_in_m": 159.14890671159901, "length_x": 39.795793214116301, "length_y": 39.796713972946897 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.959391658949727, 0.0 ], [ -0.001373291015625, 74.959391658949727, 0.0 ], [ -0.001373291015625, 74.959035280891243, 0.0 ], [ -0.00274658203125, 74.959035280891243, 0.0 ], [ -0.00274658203125, 74.959391658949727, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1458, "task_x": 131070, "task_y": 46624, "task_z": 18, "center_y": 74.947805147491295, "area_in_sqm": 1585.36800408363, "perimeter_in_m": 159.26672400002801, "length_x": 39.825267291923701, "length_y": 39.826188682759401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.947983468553105, 0.0 ], [ -0.001373291015625, 74.947983468553105, 0.0 ], [ -0.001373291015625, 74.947626826429556, 0.0 ], [ -0.00274658203125, 74.947626826429556, 0.0 ], [ -0.00274658203125, 74.947983468553105, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1459, "task_x": 131070, "task_y": 46656, "task_z": 18, "center_y": 74.936388372076607, "area_in_sqm": 1587.7160261869401, "perimeter_in_m": 159.384622032473, "length_x": 39.854761598854097, "length_y": 39.855683622015 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.936566825261636, 0.0 ], [ -0.001373291015625, 74.936566825261636, 0.0 ], [ -0.001373291015625, 74.936209918891521, 0.0 ], [ -0.00274658203125, 74.936209918891521, 0.0 ], [ -0.00274658203125, 74.936566825261636, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1460, "task_x": 131070, "task_y": 46688, "task_z": 18, "center_y": 74.924963137866598, "area_in_sqm": 1590.06739711761, "perimeter_in_m": 159.50260084834599, "length_x": 39.884276145148597, "length_y": 39.885198800954598 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.925141723265767, 0.0 ], [ -0.001373291015625, 74.925141723265767, 0.0 ], [ -0.001373291015625, 74.9247845524675, 0.0 ], [ -0.00274658203125, 74.9247845524675, 0.0 ], [ -0.00274658203125, 74.925141723265767, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1461, "task_x": 131070, "task_y": 46720, "task_z": 18, "center_y": 74.913529439048901, "area_in_sqm": 1592.4221203327199, "perimeter_in_m": 159.620660484236, "length_x": 39.9138109410449, "length_y": 39.914734229815799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.913708156752989, 0.0 ], [ -0.001373291015625, 74.913708156752989, 0.0 ], [ -0.001373291015625, 74.913350721344884, 0.0 ], [ -0.00274658203125, 74.913350721344884, 0.0 ], [ -0.00274658203125, 74.913708156752989, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1462, "task_x": 131070, "task_y": 46752, "task_z": 18, "center_y": 74.902087269808007, "area_in_sqm": 1594.7802003622101, "perimeter_in_m": 159.73880098804099, "length_x": 39.943365996776897, "length_y": 39.944289918832602 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.90226611990785, 0.0 ], [ -0.001373291015625, 74.90226611990785, 0.0 ], [ -0.001373291015625, 74.901908419708121, 0.0 ], [ -0.00274658203125, 74.901908419708121, 0.0 ], [ -0.00274658203125, 74.90226611990785, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1463, "task_x": 131070, "task_y": 46784, "task_z": 18, "center_y": 74.890636624325296, "area_in_sqm": 1597.14164209366, "perimeter_in_m": 159.85702239986901, "length_x": 39.972941322575103, "length_y": 39.973865878235202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.890815606911914, 0.0 ], [ -0.001373291015625, 74.890815606911914, 0.0 ], [ -0.001373291015625, 74.890457641738678, 0.0 ], [ -0.00274658203125, 74.890457641738678, 0.0 ], [ -0.00274658203125, 74.890815606911914, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1464, "task_x": 131070, "task_y": 46816, "task_z": 18, "center_y": 74.879177496779405, "area_in_sqm": 1599.5064486265201, "perimeter_in_m": 159.97532474919899, "length_x": 40.0025369286667, "length_y": 40.003462118250603 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.879356611943791, 0.0 ], [ -0.001373291015625, 74.879356611943791, 0.0 ], [ -0.001373291015625, 74.878998381615105, 0.0 ], [ -0.00274658203125, 74.878998381615105, 0.0 ], [ -0.00274658203125, 74.879356611943791, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1465, "task_x": 131070, "task_y": 46848, "task_z": 18, "center_y": 74.867709881346101, "area_in_sqm": 1601.87462639809, "perimeter_in_m": 160.093708093115, "length_x": 40.0321528252747, "length_y": 40.033078649101903 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.867889129179162, 0.0 ], [ -0.001373291015625, 74.867889129179162, 0.0 ], [ -0.001373291015625, 74.867530633512942, 0.0 ], [ -0.00274658203125, 74.867530633512942, 0.0 ], [ -0.00274658203125, 74.867889129179162, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1466, "task_x": 131070, "task_y": 46880, "task_z": 18, "center_y": 74.856233772197797, "area_in_sqm": 1604.24617791176, "perimeter_in_m": 160.21217245825201, "length_x": 40.061789022619003, "length_y": 40.062715481008901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.856413152790708, 0.0 ], [ -0.001373291015625, 74.856413152790708, 0.0 ], [ -0.001373291015625, 74.856054391604829, 0.0 ], [ -0.00274658203125, 74.856054391604829, 0.0 ], [ -0.00274658203125, 74.856413152790708, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1467, "task_x": 131070, "task_y": 46912, "task_z": 18, "center_y": 74.844749163504304, "area_in_sqm": 1606.6211085319501, "perimeter_in_m": 160.330717896008, "length_x": 40.0914455309155, "length_y": 40.092372624187298 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.8449286769482, 0.0 ], [ -0.001373291015625, 74.8449286769482, 0.0 ], [ -0.001373291015625, 74.844569650060407, 0.0 ], [ -0.00274658203125, 74.844569650060407, 0.0 ], [ -0.00274658203125, 74.8449286769482, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1468, "task_x": 131070, "task_y": 46944, "task_z": 18, "center_y": 74.833256049432407, "area_in_sqm": 1608.99942266941, "perimeter_in_m": 160.449344444329, "length_x": 40.121122360376702, "length_y": 40.122050088849399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.833435695818451, 0.0 ], [ -0.001373291015625, 74.833435695818451, 0.0 ], [ -0.001373291015625, 74.833076403046391, 0.0 ], [ -0.00274658203125, 74.833076403046391, 0.0 ], [ -0.00274658203125, 74.833435695818451, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1469, "task_x": 131070, "task_y": 46976, "task_z": 18, "center_y": 74.821754424145894, "area_in_sqm": 1611.38112413883, "perimeter_in_m": 160.56805213265901, "length_x": 40.150819521211098, "length_y": 40.151747885203598 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.821934203565291, 0.0 ], [ -0.001373291015625, 74.821934203565291, 0.0 ], [ -0.001373291015625, 74.821574644726567, 0.0 ], [ -0.00274658203125, 74.821574644726567, 0.0 ], [ -0.00274658203125, 74.821934203565291, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1470, "task_x": 131070, "task_y": 47008, "task_z": 18, "center_y": 74.810244281805694, "area_in_sqm": 1613.7662179470101, "perimeter_in_m": 160.68684101662501, "length_x": 40.1805370236237, "length_y": 40.181466023455002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.810424194349622, 0.0 ], [ -0.001373291015625, 74.810424194349622, 0.0 ], [ -0.001373291015625, 74.810064369261696, 0.0 ], [ -0.00274658203125, 74.810064369261696, 0.0 ], [ -0.00274658203125, 74.810424194349622, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1471, "task_x": 131070, "task_y": 47040, "task_z": 18, "center_y": 74.798725616569499, "area_in_sqm": 1616.1547087430999, "perimeter_in_m": 160.805711122823, "length_x": 40.2102748778156, "length_y": 40.211204513804297 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.798905662329403, 0.0 ], [ -0.001373291015625, 74.798905662329403, 0.0 ], [ -0.001373291015625, 74.798545570809665, 0.0 ], [ -0.00274658203125, 74.798545570809665, 0.0 ], [ -0.00274658203125, 74.798905662329403, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1472, "task_x": 131070, "task_y": 47072, "task_z": 18, "center_y": 74.787198422592496, "area_in_sqm": 1618.5466003418001, "perimeter_in_m": 160.92466250544501, "length_x": 40.240033093984202, "length_y": 40.240963366449002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.787378601659626, 0.0 ], [ -0.001373291015625, 74.787378601659626, 0.0 ], [ -0.001373291015625, 74.787018243525367, 0.0 ], [ -0.00274658203125, 74.787018243525367, 0.0 ], [ -0.00274658203125, 74.787378601659626, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1473, "task_x": 131070, "task_y": 47104, "task_z": 18, "center_y": 74.775662694026593, "area_in_sqm": 1620.94189739227, "perimeter_in_m": 161.04369519390301, "length_x": 40.269811682323002, "length_y": 40.270742591582298 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.775843006492337, 0.0 ], [ -0.001373291015625, 74.775843006492337, 0.0 ], [ -0.001373291015625, 74.775482381560778, 0.0 ], [ -0.00274658203125, 74.775482381560778, 0.0 ], [ -0.00274658203125, 74.775843006492337, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1474, "task_x": 131070, "task_y": 47136, "task_z": 18, "center_y": 74.764118425020797, "area_in_sqm": 1623.3406046629, "perimeter_in_m": 161.162809235298, "length_x": 40.299610653021702, "length_y": 40.300542199393902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.764298870976674, 0.0 ], [ -0.001373291015625, 74.764298870976674, 0.0 ], [ -0.001373291015625, 74.763937979064906, 0.0 ], [ -0.00274658203125, 74.763937979064906, 0.0 ], [ -0.00274658203125, 74.764298870976674, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1475, "task_x": 131070, "task_y": 47168, "task_z": 18, "center_y": 74.752565609721302, "area_in_sqm": 1625.7427262067799, "perimeter_in_m": 161.28200466043899, "length_x": 40.329430016266102, "length_y": 40.330362200069402 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.752746189258758, 0.0 ], [ -0.001373291015625, 74.752746189258758, 0.0 ], [ -0.001373291015625, 74.752385030183831, 0.0 ], [ -0.00274658203125, 74.752385030183831, 0.0 ], [ -0.00274658203125, 74.752746189258758, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1476, "task_x": 131070, "task_y": 47200, "task_z": 18, "center_y": 74.741004242271202, "area_in_sqm": 1628.14826607704, "perimeter_in_m": 161.40128152844599, "length_x": 40.359269782238101, "length_y": 40.360202603790697 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.741184955481842, 0.0 ], [ -0.001373291015625, 74.741184955481842, 0.0 ], [ -0.001373291015625, 74.740823529060663, 0.0 ], [ -0.00274658203125, 74.740823529060663, 0.0 ], [ -0.00274658203125, 74.741184955481842, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1477, "task_x": 131070, "task_y": 47232, "task_z": 18, "center_y": 74.729434316810895, "area_in_sqm": 1630.5572297573101, "perimeter_in_m": 161.520639858788, "length_x": 40.3891299611157, "length_y": 40.390063420735501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.729615163786178, 0.0 ], [ -0.001373291015625, 74.729615163786178, 0.0 ], [ -0.001373291015625, 74.729253469835584, 0.0 ], [ -0.00274658203125, 74.729253469835584, 0.0 ], [ -0.00274658203125, 74.729615163786178, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1478, "task_x": 131070, "task_y": 47264, "task_z": 18, "center_y": 74.717855827477507, "area_in_sqm": 1632.9696210622801, "perimeter_in_m": 161.640079708439, "length_x": 40.419010563073101, "length_y": 40.419944661078098 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.718036808309094, 0.0 ], [ -0.001373291015625, 74.718036808309094, 0.0 ], [ -0.001373291015625, 74.717674846645835, 0.0 ], [ -0.00274658203125, 74.717674846645835, 0.0 ], [ -0.00274658203125, 74.718036808309094, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1479, "task_x": 131070, "task_y": 47296, "task_z": 18, "center_y": 74.706268768405394, "area_in_sqm": 1635.3854444026899, "perimeter_in_m": 161.759601104636, "length_x": 40.448911598280098, "length_y": 40.449846334988003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.706449883185002, 0.0 ], [ -0.001373291015625, 74.706449883185002, 0.0 ], [ -0.001373291015625, 74.706087653625715, 0.0 ], [ -0.00274658203125, 74.706087653625715, 0.0 ], [ -0.00274658203125, 74.706449883185002, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1480, "task_x": 131070, "task_y": 47328, "task_z": 18, "center_y": 74.694673133725999, "area_in_sqm": 1637.8047043085101, "perimeter_in_m": 161.87920408735701, "length_x": 40.478833076903001, "length_y": 40.479768452631298 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.694854382545344, 0.0 ], [ -0.001373291015625, 74.694854382545344, 0.0 ], [ -0.001373291015625, 74.694491884906611, 0.0 ], [ -0.00274658203125, 74.694491884906611, 0.0 ], [ -0.00274658203125, 74.694854382545344, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1481, "task_x": 131070, "task_y": 47360, "task_z": 18, "center_y": 74.683068917567795, "area_in_sqm": 1640.2274059057199, "perimeter_in_m": 161.99888871638299, "length_x": 40.508775009103601, "length_y": 40.509711024170002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.683250300518623, 0.0 ], [ -0.001373291015625, 74.683250300518623, 0.0 ], [ -0.001373291015625, 74.682887534616896, 0.0 ], [ -0.00274658203125, 74.682887534616896, 0.0 ], [ -0.00274658203125, 74.683250300518623, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1482, "task_x": 131070, "task_y": 47392, "task_z": 18, "center_y": 74.671456114056298, "area_in_sqm": 1642.6535525321999, "perimeter_in_m": 162.118655006892, "length_x": 40.538737405040202, "length_y": 40.5396740597619 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.671637631230411, 0.0 ], [ -0.001373291015625, 74.671637631230411, 0.0 ], [ -0.001373291015625, 74.671274596882085, 0.0 ], [ -0.00274658203125, 74.671274596882085, 0.0 ], [ -0.00274658203125, 74.671637631230411, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1483, "task_x": 131070, "task_y": 47424, "task_z": 18, "center_y": 74.659834717313998, "area_in_sqm": 1645.08314979076, "perimeter_in_m": 162.23850301440501, "length_x": 40.568720274866401, "length_y": 40.569657569560803 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.660016368803355, 0.0 ], [ -0.001373291015625, 74.660016368803355, 0.0 ], [ -0.001373291015625, 74.659653065824713, 0.0 ], [ -0.00274658203125, 74.659653065824713, 0.0 ], [ -0.00274658203125, 74.660016368803355, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1484, "task_x": 131070, "task_y": 47456, "task_z": 18, "center_y": 74.6482047214608, "area_in_sqm": 1647.5162011385, "perimeter_in_m": 162.358432777442, "length_x": 40.598723628732102, "length_y": 40.599661563716197 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.648386507357159, 0.0 ], [ -0.001373291015625, 74.648386507357159, 0.0 ], [ -0.001373291015625, 74.648022935564384, 0.0 ], [ -0.00274658203125, 74.648022935564384, 0.0 ], [ -0.00274658203125, 74.648386507357159, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1485, "task_x": 131070, "task_y": 47488, "task_z": 18, "center_y": 74.636566120613196, "area_in_sqm": 1649.95271229744, "perimeter_in_m": 162.47844433735301, "length_x": 40.628747476782898, "length_y": 40.6296860523737 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.636748041008602, 0.0 ], [ -0.001373291015625, 74.636748041008602, 0.0 ], [ -0.001373291015625, 74.636384200217776, 0.0 ], [ -0.00274658203125, 74.636384200217776, 0.0 ], [ -0.00274658203125, 74.636748041008602, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1486, "task_x": 131070, "task_y": 47520, "task_z": 18, "center_y": 74.624918908885107, "area_in_sqm": 1652.3926866054501, "perimeter_in_m": 162.59853772343399, "length_x": 40.6587918291603, "length_y": 40.659731045674597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.625100963871489, 0.0 ], [ -0.001373291015625, 74.625100963871489, 0.0 ], [ -0.001373291015625, 74.624736853898654, 0.0 ], [ -0.00274658203125, 74.624736853898654, 0.0 ], [ -0.00274658203125, 74.625100963871489, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1487, "task_x": 131070, "task_y": 47552, "task_z": 18, "center_y": 74.613263080387298, "area_in_sqm": 1654.8361293077501, "perimeter_in_m": 162.718712994713, "length_x": 40.688856696001402, "length_y": 40.689796553756203 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.613445270056729, 0.0 ], [ -0.001373291015625, 74.613445270056729, 0.0 ], [ -0.001373291015625, 74.613080890717782, 0.0 ], [ -0.00274658203125, 74.613080890717782, 0.0 ], [ -0.00274658203125, 74.613445270056729, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1488, "task_x": 131070, "task_y": 47584, "task_z": 18, "center_y": 74.601598629227695, "area_in_sqm": 1657.28304421902, "perimeter_in_m": 162.83897015994501, "length_x": 40.718942087439601, "length_y": 40.719882586751098 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.601780953672289, 0.0 ], [ -0.001373291015625, 74.601780953672289, 0.0 ], [ -0.001373291015625, 74.601416304783086, 0.0 ], [ -0.00274658203125, 74.601416304783086, 0.0 ], [ -0.00274658203125, 74.601780953672289, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1489, "task_x": 131070, "task_y": 47616, "task_z": 18, "center_y": 74.589925549511406, "area_in_sqm": 1659.73343610764, "perimeter_in_m": 162.95930929866901, "length_x": 40.7490480136033, "length_y": 40.749989154788302 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.590108008823236, 0.0 ], [ -0.001373291015625, 74.590108008823236, 0.0 ], [ -0.001373291015625, 74.589743090199491, 0.0 ], [ -0.00274658203125, 74.589743090199491, 0.0 ], [ -0.00274658203125, 74.590108008823236, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1490, "task_x": 131070, "task_y": 47648, "task_z": 18, "center_y": 74.578243835340302, "area_in_sqm": 1662.1873104572301, "perimeter_in_m": 163.07973042315601, "length_x": 40.7791744846173, "length_y": 40.780116267991801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.578426429611667, 0.0 ], [ -0.001373291015625, 74.578426429611667, 0.0 ], [ -0.001373291015625, 74.578061241069022, 0.0 ], [ -0.00274658203125, 74.578061241069022, 0.0 ], [ -0.00274658203125, 74.578426429611667, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1491, "task_x": 131070, "task_y": 47680, "task_z": 18, "center_y": 74.566553480813795, "area_in_sqm": 1664.64467024803, "perimeter_in_m": 163.20023358461199, "length_x": 40.809321510601599, "length_y": 40.810263936482102 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.566736210136753, 0.0 ], [ -0.001373291015625, 74.566736210136753, 0.0 ], [ -0.001373291015625, 74.566370751490766, 0.0 ], [ -0.00274658203125, 74.566370751490766, 0.0 ], [ -0.00274658203125, 74.566736210136753, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1492, "task_x": 131070, "task_y": 47712, "task_z": 18, "center_y": 74.554854480027799, "area_in_sqm": 1667.1055210828799, "perimeter_in_m": 163.320818816535, "length_x": 40.8394891016722, "length_y": 40.840432170374598 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.555037344494764, 0.0 ], [ -0.001373291015625, 74.555037344494764, 0.0 ], [ -0.001373291015625, 74.554671615560906, 0.0 ], [ -0.00274658203125, 74.554671615560906, 0.0 ], [ -0.00274658203125, 74.555037344494764, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1493, "task_x": 131070, "task_y": 47744, "task_z": 18, "center_y": 74.543146827075802, "area_in_sqm": 1669.56986689568, "perimeter_in_m": 163.44148616656599, "length_x": 40.869677267940602, "length_y": 40.870620979780803 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.543329826779043, 0.0 ], [ -0.001373291015625, 74.543329826779043, 0.0 ], [ -0.001373291015625, 74.54296382737266, 0.0 ], [ -0.00274658203125, 74.54296382737266, 0.0 ], [ -0.00274658203125, 74.543329826779043, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1494, "task_x": 131070, "task_y": 47776, "task_z": 18, "center_y": 74.531430516048204, "area_in_sqm": 1672.0377124547999, "perimeter_in_m": 163.56223567455601, "length_x": 40.8998860195139, "length_y": 40.900830374807697 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.531613651079994, 0.0 ], [ -0.001373291015625, 74.531613651079994, 0.0 ], [ -0.001373291015625, 74.531247381016371, 0.0 ], [ -0.00274658203125, 74.531247381016371, 0.0 ], [ -0.00274658203125, 74.531613651079994, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1495, "task_x": 131070, "task_y": 47808, "task_z": 18, "center_y": 74.519705541032295, "area_in_sqm": 1674.5090624094, "perimeter_in_m": 163.68306736972599, "length_x": 40.930115366494803, "length_y": 40.931060365557798 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.519888811485089, 0.0 ], [ -0.001373291015625, 74.519888811485089, 0.0 ], [ -0.001373291015625, 74.519522270579429, 0.0 ], [ -0.00274658203125, 74.519522270579429, 0.0 ], [ -0.00274658203125, 74.519888811485089, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1496, "task_x": 131070, "task_y": 47840, "task_z": 18, "center_y": 74.507971896112593, "area_in_sqm": 1676.9839211702299, "perimeter_in_m": 163.80398129969001, "length_x": 40.960365318981601, "length_y": 40.961310962129197 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.508155302078904, 0.0 ], [ -0.001373291015625, 74.508155302078904, 0.0 ], [ -0.001373291015625, 74.507788490146297, 0.0 ], [ -0.00274658203125, 74.507788490146297, 0.0 ], [ -0.00274658203125, 74.508155302078904, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1497, "task_x": 131070, "task_y": 47872, "task_z": 18, "center_y": 74.496229575370805, "area_in_sqm": 1679.46229338646, "perimeter_in_m": 163.92497751347699, "length_x": 40.990635887068002, "length_y": 40.991582174615701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.496413116943089, 0.0 ], [ -0.001373291015625, 74.496413116943089, 0.0 ], [ -0.001373291015625, 74.496046033798535, 0.0 ], [ -0.00274658203125, 74.496046033798535, 0.0 ], [ -0.00274658203125, 74.496413116943089, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1498, "task_x": 131070, "task_y": 47904, "task_z": 18, "center_y": 74.484478572885607, "area_in_sqm": 1681.94418358803, "perimeter_in_m": 164.046056034618, "length_x": 41.0209270808433, "length_y": 41.021874013106398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.484662250156362, 0.0 ], [ -0.001373291015625, 74.484662250156362, 0.0 ], [ -0.001373291015625, 74.484294895614767, 0.0 ], [ -0.00274658203125, 74.484294895614767, 0.0 ], [ -0.00274658203125, 74.484662250156362, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1499, "task_x": 131070, "task_y": 47936, "task_z": 18, "center_y": 74.472718882732593, "area_in_sqm": 1684.42959582806, "perimeter_in_m": 164.16721690857099, "length_x": 41.0512389103923, "length_y": 41.052186487685702 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.472902695794531, 0.0 ], [ -0.001373291015625, 74.472902695794531, 0.0 ], [ -0.001373291015625, 74.472535069670727, 0.0 ], [ -0.00274658203125, 74.472535069670727, 0.0 ], [ -0.00274658203125, 74.472902695794531, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1500, "task_x": 131070, "task_y": 47968, "task_z": 18, "center_y": 74.460950498984801, "area_in_sqm": 1686.91853547096, "perimeter_in_m": 164.288460186463, "length_x": 41.081571385795101, "length_y": 41.082519608433799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.461134447930505, 0.0 ], [ -0.001373291015625, 74.461134447930505, 0.0 ], [ -0.001373291015625, 74.46076655003921, 0.0 ], [ -0.00274658203125, 74.46076655003921, 0.0 ], [ -0.00274658203125, 74.461134447930505, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1501, "task_x": 131070, "task_y": 48000, "task_z": 18, "center_y": 74.449173415712195, "area_in_sqm": 1689.4110070467, "perimeter_in_m": 164.40978589107999, "length_x": 41.111924517127399, "length_y": 41.112873385426198 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.449357500634235, 0.0 ], [ -0.001373291015625, 74.449357500634235, 0.0 ], [ -0.001373291015625, 74.448989330790099, 0.0 ], [ -0.00274658203125, 74.448989330790099, 0.0 ], [ -0.00274658203125, 74.449357500634235, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1502, "task_x": 131070, "task_y": 48032, "task_z": 18, "center_y": 74.437387626981604, "area_in_sqm": 1691.9070141315501, "perimeter_in_m": 164.53119406928101, "length_x": 41.142298314460099, "length_y": 41.143247828733699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.437571847972791, 0.0 ], [ -0.001373291015625, 74.437571847972791, 0.0 ], [ -0.001373291015625, 74.437203405990374, 0.0 ], [ -0.00274658203125, 74.437203405990374, 0.0 ], [ -0.00274658203125, 74.437571847972791, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1503, "task_x": 131070, "task_y": 48064, "task_z": 18, "center_y": 74.425593126857194, "area_in_sqm": 1694.4065625667599, "perimeter_in_m": 164.652684762951, "length_x": 41.172692787859603, "length_y": 41.173642948422398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.425777484010325, 0.0 ], [ -0.001373291015625, 74.425777484010325, 0.0 ], [ -0.001373291015625, 74.425408769704077, 0.0 ], [ -0.00274658203125, 74.425408769704077, 0.0 ], [ -0.00274658203125, 74.425777484010325, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1504, "task_x": 131070, "task_y": 48096, "task_z": 18, "center_y": 74.413789909400194, "area_in_sqm": 1696.9096560478199, "perimeter_in_m": 164.774258013967, "length_x": 41.203107947387501, "length_y": 41.204058754553898 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.41397440280808, 0.0 ], [ -0.001373291015625, 74.41397440280808, 0.0 ], [ -0.001373291015625, 74.413605415992365, 0.0 ], [ -0.00274658203125, 74.413605415992365, 0.0 ], [ -0.00274658203125, 74.41397440280808, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1505, "task_x": 131070, "task_y": 48128, "task_z": 18, "center_y": 74.401977968668902, "area_in_sqm": 1699.41629934311, "perimeter_in_m": 164.89591385428901, "length_x": 41.233543803100901, "length_y": 41.234495257185003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.402162598424383, 0.0 ], [ -0.001373291015625, 74.402162598424383, 0.0 ], [ -0.001373291015625, 74.401793338913478, 0.0 ], [ -0.00274658203125, 74.401793338913478, 0.0 ], [ -0.00274658203125, 74.402162598424383, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1506, "task_x": 131070, "task_y": 48160, "task_z": 18, "center_y": 74.390157298718705, "area_in_sqm": 1701.9264973402001, "perimeter_in_m": 165.01765232860501, "length_x": 41.264000365051899, "length_y": 41.264952466367902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.390342064914648, 0.0 ], [ -0.001373291015625, 74.390342064914648, 0.0 ], [ -0.001373291015625, 74.389972532522734, 0.0 ], [ -0.00274658203125, 74.389972532522734, 0.0 ], [ -0.00274658203125, 74.390342064914648, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1507, "task_x": 131070, "task_y": 48192, "task_z": 18, "center_y": 74.378327893602005, "area_in_sqm": 1704.4402543306401, "perimeter_in_m": 165.13947348018601, "length_x": 41.294477643287898, "length_y": 41.295430392149697 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.378512796331393, 0.0 ], [ -0.001373291015625, 74.378512796331393, 0.0 ], [ -0.001373291015625, 74.378142990872561, 0.0 ], [ -0.00274658203125, 74.378142990872561, 0.0 ], [ -0.00274658203125, 74.378512796331393, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1508, "task_x": 131070, "task_y": 48224, "task_z": 18, "center_y": 74.366489747368306, "area_in_sqm": 1706.95757520199, "perimeter_in_m": 165.26137734873501, "length_x": 41.324975647851801, "length_y": 41.325929044573101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.366674786724218, 0.0 ], [ -0.001373291015625, 74.366674786724218, 0.0 ], [ -0.001373291015625, 74.366304708012478, 0.0 ], [ -0.00274658203125, 74.366304708012478, 0.0 ], [ -0.00274658203125, 74.366674786724218, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1509, "task_x": 131070, "task_y": 48256, "task_z": 18, "center_y": 74.354642854064494, "area_in_sqm": 1709.47846436501, "perimeter_in_m": 165.38336396405199, "length_x": 41.355494388781302, "length_y": 41.356448433675702 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.354828030139828, 0.0 ], [ -0.001373291015625, 74.354828030139828, 0.0 ], [ -0.001373291015625, 74.354457677989075, 0.0 ], [ -0.00274658203125, 74.354457677989075, 0.0 ], [ -0.00274658203125, 74.354828030139828, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1510, "task_x": 131070, "task_y": 48288, "task_z": 18, "center_y": 74.342787207734006, "area_in_sqm": 1712.0029263496399, "perimeter_in_m": 165.50543336795599, "length_x": 41.386033876109501, "length_y": 41.386988569490399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.342972520621998, 0.0 ], [ -0.001373291015625, 74.342972520621998, 0.0 ], [ -0.001373291015625, 74.342601894846098, 0.0 ], [ -0.00274658203125, 74.342601894846098, 0.0 ], [ -0.00274658203125, 74.342972520621998, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1511, "task_x": 131070, "task_y": 48320, "task_z": 18, "center_y": 74.330922802418002, "area_in_sqm": 1714.53096604347, "perimeter_in_m": 165.62758561287501, "length_x": 41.416594119864499, "length_y": 41.417549462045301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.331108252211664, 0.0 ], [ -0.001373291015625, 74.331108252211664, 0.0 ], [ -0.001373291015625, 74.330737352624297, 0.0 ], [ -0.00274658203125, 74.330737352624297, 0.0 ], [ -0.00274658203125, 74.331108252211664, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1512, "task_x": 131070, "task_y": 48352, "task_z": 18, "center_y": 74.319049632154204, "area_in_sqm": 1717.06258809567, "perimeter_in_m": 165.74982072432201, "length_x": 41.447175130069503, "length_y": 41.448131121363403 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.319235218946787, 0.0 ], [ -0.001373291015625, 74.319235218946787, 0.0 ], [ -0.001373291015625, 74.318864045361622, 0.0 ], [ -0.00274658203125, 74.318864045361622, 0.0 ], [ -0.00274658203125, 74.319235218946787, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1513, "task_x": 131070, "task_y": 48384, "task_z": 18, "center_y": 74.307167690977806, "area_in_sqm": 1719.59779644012, "perimeter_in_m": 165.87213875470499, "length_x": 41.477776916742897, "length_y": 41.478733557462903 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.307353414862476, 0.0 ], [ -0.001373291015625, 74.307353414862476, 0.0 ], [ -0.001373291015625, 74.306981967093051, 0.0 ], [ -0.00274658203125, 74.306981967093051, 0.0 ], [ -0.00274658203125, 74.307353414862476, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1514, "task_x": 131070, "task_y": 48416, "task_z": 18, "center_y": 74.295276972920803, "area_in_sqm": 1722.1365962028499, "perimeter_in_m": 165.99453972739599, "length_x": 41.508399489898103, "length_y": 41.509356780356804 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.295462833990911, 0.0 ], [ -0.001373291015625, 74.295462833990911, 0.0 ], [ -0.001373291015625, 74.295091111850695, 0.0 ], [ -0.00274658203125, 74.295091111850695, 0.0 ], [ -0.00274658203125, 74.295462833990911, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1515, "task_x": 131070, "task_y": 48448, "task_z": 18, "center_y": 74.283377472012603, "area_in_sqm": 1724.6789923906299, "perimeter_in_m": 166.117023696199, "length_x": 41.539042859543201, "length_y": 41.540000800053498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.283563470361415, 0.0 ], [ -0.001373291015625, 74.283563470361415, 0.0 ], [ -0.001373291015625, 74.283191473663777, 0.0 ], [ -0.00274658203125, 74.283191473663777, 0.0 ], [ -0.00274658203125, 74.283563470361415, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1516, "task_x": 131070, "task_y": 48480, "task_z": 18, "center_y": 74.271469182279503, "area_in_sqm": 1727.22498869896, "perimeter_in_m": 166.23959069579101, "length_x": 41.569707035681802, "length_y": 41.570665626556099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.27165531800037, 0.0 ], [ -0.001373291015625, 74.27165531800037, 0.0 ], [ -0.001373291015625, 74.27128304655858, 0.0 ], [ -0.00274658203125, 74.27128304655858, 0.0 ], [ -0.00274658203125, 74.27165531800037, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1517, "task_x": 131070, "task_y": 48512, "task_z": 18, "center_y": 74.259552097744901, "area_in_sqm": 1729.7745907306701, "perimeter_in_m": 166.36224076012601, "length_x": 41.600392028312001, "length_y": 41.601351269862697 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.259738370931302, 0.0 ], [ -0.001373291015625, 74.259738370931302, 0.0 ], [ -0.001373291015625, 74.259365824558557, 0.0 ], [ -0.00274658203125, 74.259365824558557, 0.0 ], [ -0.00274658203125, 74.259738370931302, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1518, "task_x": 131070, "task_y": 48544, "task_z": 18, "center_y": 74.247626212429495, "area_in_sqm": 1732.32780230045, "perimeter_in_m": 166.48497393944101, "length_x": 41.631097847427, "length_y": 41.632057739966399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.247812623174809, 0.0 ], [ -0.001373291015625, 74.247812623174809, 0.0 ], [ -0.001373291015625, 74.247439801684209, 0.0 ], [ -0.00274658203125, 74.247439801684209, 0.0 ], [ -0.00274658203125, 74.247812623174809, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1519, "task_x": 131070, "task_y": 48576, "task_z": 18, "center_y": 74.235691520350898, "area_in_sqm": 1734.8846286535299, "perimeter_in_m": 166.60779027121001, "length_x": 41.661824503014898, "length_y": 41.662785046854999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.235878068748633, 0.0 ], [ -0.001373291015625, 74.235878068748633, 0.0 ], [ -0.001373291015625, 74.235504971953176, 0.0 ], [ -0.00274658203125, 74.235504971953176, 0.0 ], [ -0.00274658203125, 74.235878068748633, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1520, "task_x": 131070, "task_y": 48608, "task_z": 18, "center_y": 74.223748015523896, "area_in_sqm": 1737.4450745582601, "perimeter_in_m": 166.730689787947, "length_x": 41.6925720050588, "length_y": 41.693533200511297 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.223934701667616, 0.0 ], [ -0.001373291015625, 74.223934701667616, 0.0 ], [ -0.001373291015625, 74.223561329380217, 0.0 ], [ -0.00274658203125, 74.223561329380217, 0.0 ], [ -0.00274658203125, 74.223934701667616, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1521, "task_x": 131070, "task_y": 48640, "task_z": 18, "center_y": 74.211795691960404, "area_in_sqm": 1740.00914406776, "perimeter_in_m": 166.85367252994001, "length_x": 41.723340363536302, "length_y": 41.724302210913102 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.211982515943674, 0.0 ], [ -0.001373291015625, 74.211982515943674, 0.0 ], [ -0.001373291015625, 74.211608867977176, 0.0 ], [ -0.00274658203125, 74.211608867977176, 0.0 ], [ -0.00274658203125, 74.211982515943674, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1522, "task_x": 131070, "task_y": 48672, "task_z": 18, "center_y": 74.199834543669496, "area_in_sqm": 1742.5768421888399, "perimeter_in_m": 166.97673854808301, "length_x": 41.7541295884199, "length_y": 41.755092088032598 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.200021505585909, 0.0 ], [ -0.001373291015625, 74.200021505585909, 0.0 ], [ -0.001373291015625, 74.199647581753027, 0.0 ], [ -0.00274658203125, 74.199647581753027, 0.0 ], [ -0.00274658203125, 74.200021505585909, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1523, "task_x": 131070, "task_y": 48704, "task_z": 18, "center_y": 74.187864564657204, "area_in_sqm": 1745.14817345142, "perimeter_in_m": 167.09988786352901, "length_x": 41.784939689677103, "length_y": 41.785902841836901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.188051664600465, 0.0 ], [ -0.001373291015625, 74.188051664600465, 0.0 ], [ -0.001373291015625, 74.187677464713872, 0.0 ], [ -0.00274658203125, 74.187677464713872, 0.0 ], [ -0.00274658203125, 74.188051664600465, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1524, "task_x": 131070, "task_y": 48736, "task_z": 18, "center_y": 74.175885748926802, "area_in_sqm": 1747.7231426239, "perimeter_in_m": 167.223120534939, "length_x": 41.815770677269903, "length_y": 41.816734482288197 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.176072986990647, 0.0 ], [ -0.001373291015625, 74.176072986990647, 0.0 ], [ -0.001373291015625, 74.175698510862887, 0.0 ], [ -0.00274658203125, 74.175698510862887, 0.0 ], [ -0.00274658203125, 74.176072986990647, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1525, "task_x": 131070, "task_y": 48768, "task_z": 18, "center_y": 74.163898090478597, "area_in_sqm": 1750.30175495148, "perimeter_in_m": 167.346436590526, "length_x": 41.846622561155101, "length_y": 41.847587019343003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.164085466756873, 0.0 ], [ -0.001373291015625, 74.164085466756873, 0.0 ], [ -0.001373291015625, 74.163710714200391, 0.0 ], [ -0.00274658203125, 74.163710714200391, 0.0 ], [ -0.00274658203125, 74.164085466756873, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1526, "task_x": 131070, "task_y": 48800, "task_z": 18, "center_y": 74.151901583310206, "area_in_sqm": 1752.88401353359, "perimeter_in_m": 167.46983607335201, "length_x": 41.877495351284303, "length_y": 41.878460462952503 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.152089097896635, 0.0 ], [ -0.001373291015625, 74.152089097896635, 0.0 ], [ -0.001373291015625, 74.151714068723834, 0.0 ], [ -0.00274658203125, 74.151714068723834, 0.0 ], [ -0.00274658203125, 74.152089097896635, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1527, "task_x": 131070, "task_y": 48832, "task_z": 18, "center_y": 74.139896221416194, "area_in_sqm": 1755.4699248075499, "perimeter_in_m": 167.59331901160601, "length_x": 41.908389057603401, "length_y": 41.909354823062799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.14008387440461, 0.0 ], [ -0.001373291015625, 74.14008387440461, 0.0 ], [ -0.001373291015625, 74.139708568427778, 0.0 ], [ -0.00274658203125, 74.139708568427778, 0.0 ], [ -0.00274658203125, 74.14008387440461, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1528, "task_x": 131070, "task_y": 48864, "task_z": 18, "center_y": 74.127881998788197, "area_in_sqm": 1758.05949258804, "perimeter_in_m": 167.71688545895, "length_x": 41.939303690053201, "length_y": 41.940270109614197 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.128069790272576, 0.0 ], [ -0.001373291015625, 74.128069790272576, 0.0 ], [ -0.001373291015625, 74.12769420730389, 0.0 ], [ -0.00274658203125, 74.12769420730389, 0.0 ], [ -0.00274658203125, 74.128069790272576, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1529, "task_x": 131070, "task_y": 48896, "task_z": 18, "center_y": 74.115858909415195, "area_in_sqm": 1760.6527217626599, "perimeter_in_m": 167.840535456292, "length_x": 41.970239258569102, "length_y": 41.971206332542302 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.1160468394894, 0.0 ], [ -0.001373291015625, 74.1160468394894, 0.0 ], [ -0.001373291015625, 74.115670979340976, 0.0 ], [ -0.00274658203125, 74.115670979340976, 0.0 ], [ -0.00274658203125, 74.1160468394894, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1530, "task_x": 131070, "task_y": 48928, "task_z": 18, "center_y": 74.103826947283096, "area_in_sqm": 1763.24961674213, "perimeter_in_m": 167.96426903886299, "length_x": 42.001195773080902, "length_y": 42.002163501776501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.104015016041103, 0.0 ], [ -0.001373291015625, 74.104015016041103, 0.0 ], [ -0.001373291015625, 74.103638878524961, 0.0 ], [ -0.00274658203125, 74.103638878524961, 0.0 ], [ -0.00274658203125, 74.104015016041103, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1531, "task_x": 131070, "task_y": 48960, "task_z": 18, "center_y": 74.091786106374897, "area_in_sqm": 1765.8501825332601, "perimeter_in_m": 168.08808622843901, "length_x": 42.032173243513199, "length_y": 42.033141627241001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.091974313910853, 0.0 ], [ -0.001373291015625, 74.091974313910853, 0.0 ], [ -0.001373291015625, 74.091597898838913, 0.0 ], [ -0.00274658203125, 74.091597898838913, 0.0 ], [ -0.00274658203125, 74.091974313910853, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1532, "task_x": 131070, "task_y": 48992, "task_z": 18, "center_y": 74.079736380670894, "area_in_sqm": 1768.4544239044201, "perimeter_in_m": 168.21198708712899, "length_x": 42.063171679784602, "length_y": 42.064140718854702 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.07992472707889, 0.0 ], [ -0.001373291015625, 74.07992472707889, 0.0 ], [ -0.001373291015625, 74.079548034262999, 0.0 ], [ -0.00274658203125, 74.079548034262999, 0.0 ], [ -0.00274658203125, 74.07992472707889, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1533, "task_x": 131070, "task_y": 49024, "task_z": 18, "center_y": 74.067677764148598, "area_in_sqm": 1771.0623455047601, "perimeter_in_m": 168.33597165154299, "length_x": 42.094191091808703, "length_y": 42.095160786530798 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.067866249522638, 0.0 ], [ -0.001373291015625, 74.067866249522638, 0.0 ], [ -0.001373291015625, 74.067489278774531, 0.0 ], [ -0.00274658203125, 74.067489278774531, 0.0 ], [ -0.00274658203125, 74.067866249522638, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1534, "task_x": 131070, "task_y": 49056, "task_z": 18, "center_y": 74.055610250782294, "area_in_sqm": 1773.6739516258201, "perimeter_in_m": 168.460039951216, "length_x": 42.125231489493302, "length_y": 42.126201840176797 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.05579887521661, 0.0 ], [ -0.001373291015625, 74.05579887521661, 0.0 ], [ -0.001373291015625, 74.055421626347965, 0.0 ], [ -0.00274658203125, 74.055421626347965, 0.0 ], [ -0.00274658203125, 74.05579887521661, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1535, "task_x": 131070, "task_y": 49088, "task_z": 18, "center_y": 74.043533834543695, "area_in_sqm": 1776.2892475128201, "perimeter_in_m": 168.584192036183, "length_x": 42.156292882740502, "length_y": 42.157263889695002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.04372259813249, 0.0 ], [ -0.001373291015625, 74.04372259813249, 0.0 ], [ -0.001373291015625, 74.043345070954842, 0.0 ], [ -0.00274658203125, 74.043345070954842, 0.0 ], [ -0.00274658203125, 74.04372259813249, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1536, "task_x": 131070, "task_y": 49120, "task_z": 18, "center_y": 74.0314485094015, "area_in_sqm": 1778.9082376956901, "perimeter_in_m": 168.70842793098799, "length_x": 42.187375281446997, "length_y": 42.188346944981397 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.031637412239064, 0.0 ], [ -0.001373291015625, 74.031637412239064, 0.0 ], [ -0.001373291015625, 74.031259606563921, 0.0 ], [ -0.00274658203125, 74.031259606563921, 0.0 ], [ -0.00274658203125, 74.031637412239064, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1537, "task_x": 131070, "task_y": 49152, "task_z": 18, "center_y": 74.019354269321596, "area_in_sqm": 1781.53092718124, "perimeter_in_m": 168.832747689196, "length_x": 42.218478695503698, "length_y": 42.219451015927099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.019543311502275, 0.0 ], [ -0.001373291015625, 74.019543311502275, 0.0 ], [ -0.001373291015625, 74.019165227141002, 0.0 ], [ -0.00274658203125, 74.019165227141002, 0.0 ], [ -0.00274658203125, 74.019543311502275, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1538, "task_x": 131070, "task_y": 49184, "task_z": 18, "center_y": 74.007251108267099, "area_in_sqm": 1784.1573199033701, "perimeter_in_m": 168.95715134028299, "length_x": 42.249603134795798, "length_y": 42.2505761124171 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 74.007440289885167, 0.0 ], [ -0.001373291015625, 74.007440289885167, 0.0 ], [ -0.001373291015625, 74.007061926649101, 0.0 ], [ -0.00274658203125, 74.007061926649101, 0.0 ], [ -0.00274658203125, 74.007440289885167, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1539, "task_x": 131070, "task_y": 49216, "task_z": 18, "center_y": 73.995139020198096, "area_in_sqm": 1786.78742146492, "perimeter_in_m": 169.08163892574399, "length_x": 42.280748609203002, "length_y": 42.281722244330702 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.995328341347985, 0.0 ], [ -0.001373291015625, 73.995328341347985, 0.0 ], [ -0.001373291015625, 73.994949699048306, 0.0 ], [ -0.00274658203125, 73.994949699048306, 0.0 ], [ -0.00274658203125, 73.995328341347985, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1540, "task_x": 131070, "task_y": 49248, "task_z": 18, "center_y": 73.983017999072004, "area_in_sqm": 1789.4212367534601, "perimeter_in_m": 169.20621049132001, "length_x": 42.311915128598798, "length_y": 42.312889421541499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.983207459848074, 0.0 ], [ -0.001373291015625, 73.983207459848074, 0.0 ], [ -0.001373291015625, 73.982828538295905, 0.0 ], [ -0.00274658203125, 73.982828538295905, 0.0 ], [ -0.00274658203125, 73.983207459848074, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1541, "task_x": 131070, "task_y": 49280, "task_z": 18, "center_y": 73.9708880388431, "area_in_sqm": 1792.0587691068599, "perimeter_in_m": 169.33086606645401, "length_x": 42.343102702851503, "length_y": 42.344077653917303 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.971077639339896, 0.0 ], [ -0.001373291015625, 73.971077639339896, 0.0 ], [ -0.001373291015625, 73.97069843834629, 0.0 ], [ -0.00274658203125, 73.97069843834629, 0.0 ], [ -0.00274658203125, 73.971077639339896, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1542, "task_x": 131070, "task_y": 49312, "task_z": 18, "center_y": 73.958749133463101, "area_in_sqm": 1794.70002496243, "perimeter_in_m": 169.45560569473199, "length_x": 42.374311341823102, "length_y": 42.375286951320199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.958938873775111, 0.0 ], [ -0.001373291015625, 73.958938873775111, 0.0 ], [ -0.001373291015625, 73.958559393150992, 0.0 ], [ -0.00274658203125, 73.958559393150992, 0.0 ], [ -0.00274658203125, 73.958938873775111, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1543, "task_x": 131070, "task_y": 49344, "task_z": 18, "center_y": 73.9466012768806, "area_in_sqm": 1797.3450082540501, "perimeter_in_m": 169.58042941265001, "length_x": 42.405541055369902, "length_y": 42.406517323606302 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.946791157102496, 0.0 ], [ -0.001373291015625, 73.946791157102496, 0.0 ], [ -0.001373291015625, 73.946411396658732, 0.0 ], [ -0.00274658203125, 73.946411396658732, 0.0 ], [ -0.00274658203125, 73.946791157102496, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1544, "task_x": 131070, "task_y": 49376, "task_z": 18, "center_y": 73.934444463041601, "area_in_sqm": 1799.9937236309099, "perimeter_in_m": 169.705337270146, "length_x": 42.436791853342498, "length_y": 42.437768780625802 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.934634483267985, 0.0 ], [ -0.001373291015625, 73.934634483267985, 0.0 ], [ -0.001373291015625, 73.934254442815316, 0.0 ], [ -0.00274658203125, 73.934254442815316, 0.0 ], [ -0.00274658203125, 73.934634483267985, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1545, "task_x": 131070, "task_y": 49408, "task_z": 18, "center_y": 73.922278685889196, "area_in_sqm": 1802.64617609978, "perimeter_in_m": 169.83032929306901, "length_x": 42.468063745585397, "length_y": 42.469041332223199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.922468846214642, 0.0 ], [ -0.001373291015625, 73.922468846214642, 0.0 ], [ -0.001373291015625, 73.922088525563751, 0.0 ], [ -0.00274658203125, 73.922088525563751, 0.0 ], [ -0.00274658203125, 73.922468846214642, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1546, "task_x": 131070, "task_y": 49440, "task_z": 18, "center_y": 73.910103939363395, "area_in_sqm": 1805.3023705482501, "perimeter_in_m": 169.95540552284299, "length_x": 42.499356741937198, "length_y": 42.500334988237 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.910294239882688, 0.0 ], [ -0.001373291015625, 73.910294239882688, 0.0 ], [ -0.001373291015625, 73.909913638844174, 0.0 ], [ -0.00274658203125, 73.909913638844174, 0.0 ], [ -0.00274658203125, 73.910294239882688, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1547, "task_x": 131070, "task_y": 49472, "task_z": 18, "center_y": 73.897920217401705, "area_in_sqm": 1807.9623117446899, "perimeter_in_m": 170.08056599166301, "length_x": 42.530670852230699, "length_y": 42.531649758499398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.898110658209504, 0.0 ], [ -0.001373291015625, 73.898110658209504, 0.0 ], [ -0.001373291015625, 73.897729776593863, 0.0 ], [ -0.00274658203125, 73.897729776593863, 0.0 ], [ -0.00274658203125, 73.898110658209504, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1548, "task_x": 131070, "task_y": 49504, "task_z": 18, "center_y": 73.885727513938505, "area_in_sqm": 1810.62600386143, "perimeter_in_m": 170.20581076853, "length_x": 42.5620060862923, "length_y": 42.562985652837099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.885918095129639, 0.0 ], [ -0.001373291015625, 73.885918095129639, 0.0 ], [ -0.001373291015625, 73.885536932747257, 0.0 ], [ -0.00274658203125, 73.885536932747257, 0.0 ], [ -0.00274658203125, 73.885918095129639, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1549, "task_x": 131070, "task_y": 49536, "task_z": 18, "center_y": 73.873525822905407, "area_in_sqm": 1813.2934526205099, "perimeter_in_m": 170.33113985871901, "length_x": 42.593362453942902, "length_y": 42.594342681070501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.873716544574748, 0.0 ], [ -0.001373291015625, 73.873716544574748, 0.0 ], [ -0.001373291015625, 73.873335101235966, 0.0 ], [ -0.00274658203125, 73.873335101235966, 0.0 ], [ -0.00274658203125, 73.873716544574748, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1550, "task_x": 131070, "task_y": 49568, "task_z": 18, "center_y": 73.861315138231205, "area_in_sqm": 1815.9646624326699, "perimeter_in_m": 170.45655331421199, "length_x": 42.624739964996799, "length_y": 42.625720853013902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.861506000473696, 0.0 ], [ -0.001373291015625, 73.861506000473696, 0.0 ], [ -0.001373291015625, 73.861124275988743, 0.0 ], [ -0.00274658203125, 73.861124275988743, 0.0 ], [ -0.00274658203125, 73.861506000473696, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1551, "task_x": 131070, "task_y": 49600, "task_z": 18, "center_y": 73.849095453841997, "area_in_sqm": 1818.6396377086601, "perimeter_in_m": 170.58205117282699, "length_x": 42.6561386292626, "length_y": 42.657120178475601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.849286456752466, 0.0 ], [ -0.001373291015625, 73.849286456752466, 0.0 ], [ -0.001373291015625, 73.848904450931485, 0.0 ], [ -0.00274658203125, 73.848904450931485, 0.0 ], [ -0.00274658203125, 73.849286456752466, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1552, "task_x": 131070, "task_y": 49632, "task_z": 18, "center_y": 73.836866763660694, "area_in_sqm": 1821.3183834552799, "perimeter_in_m": 170.70763347024399, "length_x": 42.687558456542703, "length_y": 42.688540667257698 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.837057907334227, 0.0 ], [ -0.001373291015625, 73.837057907334227, 0.0 ], [ -0.001373291015625, 73.836675619987261, 0.0 ], [ -0.00274658203125, 73.836675619987261, 0.0 ], [ -0.00274658203125, 73.837057907334227, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1553, "task_x": 131070, "task_y": 49664, "task_z": 18, "center_y": 73.824629061607794, "area_in_sqm": 1824.0009051561401, "perimeter_in_m": 170.83330024778201, "length_x": 42.718999456633199, "length_y": 42.719982329156203 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.824820346139305, 0.0 ], [ -0.001373291015625, 73.824820346139305, 0.0 ], [ -0.001373291015625, 73.824437777076326, 0.0 ], [ -0.00274658203125, 73.824437777076326, 0.0 ], [ -0.00274658203125, 73.824820346139305, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1554, "task_x": 131070, "task_y": 49696, "task_z": 18, "center_y": 73.812382341600596, "area_in_sqm": 1826.6872063875201, "perimeter_in_m": 170.95905155243, "length_x": 42.750461639323902, "length_y": 42.751445173961002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.812573767085183, 0.0 ], [ -0.001373291015625, 73.812573767085183, 0.0 ], [ -0.001373291015625, 73.812190916116052, 0.0 ], [ -0.00274658203125, 73.812190916116052, 0.0 ], [ -0.00274658203125, 73.812573767085183, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1555, "task_x": 131070, "task_y": 49728, "task_z": 18, "center_y": 73.800126597553799, "area_in_sqm": 1829.37729299068, "perimeter_in_m": 171.08488740353701, "length_x": 42.7819450143989, "length_y": 42.782929211455397 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.800318164086505, 0.0 ], [ -0.001373291015625, 73.800318164086505, 0.0 ], [ -0.001373291015625, 73.799935031021022, 0.0 ], [ -0.00274658203125, 73.799935031021022, 0.0 ], [ -0.00274658203125, 73.800318164086505, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1556, "task_x": 131070, "task_y": 49760, "task_z": 18, "center_y": 73.787861823379004, "area_in_sqm": 1832.07116889954, "perimeter_in_m": 171.21080785938599, "length_x": 42.813449591635397, "length_y": 42.814434451417 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.788053531055084, 0.0 ], [ -0.001373291015625, 73.788053531055084, 0.0 ], [ -0.001373291015625, 73.787670115702952, 0.0 ], [ -0.00274658203125, 73.787670115702952, 0.0 ], [ -0.00274658203125, 73.788053531055084, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1557, "task_x": 131070, "task_y": 49792, "task_z": 18, "center_y": 73.775588012985295, "area_in_sqm": 1834.7688401937501, "perimeter_in_m": 171.33681295771399, "length_x": 42.844975380804698, "length_y": 42.8459609036166 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.775779861899935, 0.0 ], [ -0.001373291015625, 73.775779861899935, 0.0 ], [ -0.001373291015625, 73.775396164070742, 0.0 ], [ -0.00274658203125, 73.775396164070742, 0.0 ], [ -0.00274658203125, 73.775779861899935, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1558, "task_x": 131070, "task_y": 49824, "task_z": 18, "center_y": 73.763305160278804, "area_in_sqm": 1837.47031056881, "perimeter_in_m": 171.462902715712, "length_x": 42.876522391671699, "length_y": 42.877508577818901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.763497150527172, 0.0 ], [ -0.001373291015625, 73.763497150527172, 0.0 ], [ -0.001373291015625, 73.763113170030479, 0.0 ], [ -0.00274658203125, 73.763113170030479, 0.0 ], [ -0.00274658203125, 73.763497150527172, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1559, "task_x": 131070, "task_y": 49856, "task_z": 18, "center_y": 73.751013259162804, "area_in_sqm": 1840.17558526993, "perimeter_in_m": 171.589077198708, "length_x": 42.908090633994902, "length_y": 42.909077483782298 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.75120539084017, 0.0 ], [ -0.001373291015625, 73.75120539084017, 0.0 ], [ -0.001373291015625, 73.750821127485366, 0.0 ], [ -0.00274658203125, 73.750821127485366, 0.0 ], [ -0.00274658203125, 73.75120539084017, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1560, "task_x": 131070, "task_y": 49888, "task_z": 18, "center_y": 73.738712303537596, "area_in_sqm": 1842.88466918468, "perimeter_in_m": 171.71533641749301, "length_x": 42.9396801175265, "length_y": 42.940667631258798 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.738904576739372, 0.0 ], [ -0.001373291015625, 73.738904576739372, 0.0 ], [ -0.001373291015625, 73.738520030335849, 0.0 ], [ -0.00274658203125, 73.738520030335849, 0.0 ], [ -0.00274658203125, 73.738904576739372, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1561, "task_x": 131070, "task_y": 49920, "task_z": 18, "center_y": 73.726402287300999, "area_in_sqm": 1845.5975666046099, "perimeter_in_m": 171.841680446563, "length_x": 42.971290852012103, "length_y": 42.9722790299937 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.726594702122526, 0.0 ], [ -0.001373291015625, 73.726594702122526, 0.0 ], [ -0.001373291015625, 73.726209872479501, 0.0 ], [ -0.00274658203125, 73.726209872479501, 0.0 ], [ -0.00274658203125, 73.726594702122526, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1562, "task_x": 131070, "task_y": 49952, "task_z": 18, "center_y": 73.714083204347801, "area_in_sqm": 1848.3142832517599, "perimeter_in_m": 171.96810928748999, "length_x": 43.002922847191101, "length_y": 43.003911689726202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.714275760884433, 0.0 ], [ -0.001373291015625, 73.714275760884433, 0.0 ], [ -0.001373291015625, 73.713890647811098, 0.0 ], [ -0.00274658203125, 73.713890647811098, 0.0 ], [ -0.00274658203125, 73.714275760884433, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1563, "task_x": 131070, "task_y": 49984, "task_z": 18, "center_y": 73.701755048569893, "area_in_sqm": 1851.0348235368699, "perimeter_in_m": 172.094623001282, "length_x": 43.034576112796302, "length_y": 43.035565620188997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.701947746917156, 0.0 ], [ -0.001373291015625, 73.701947746917156, 0.0 ], [ -0.001373291015625, 73.701562350222574, 0.0 ], [ -0.00274658203125, 73.701562350222574, 0.0 ], [ -0.00274658203125, 73.701947746917156, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1564, "task_x": 131070, "task_y": 50016, "task_z": 18, "center_y": 73.689417813856494, "area_in_sqm": 1853.75919234753, "perimeter_in_m": 172.22122161851601, "length_x": 43.066250658553798, "length_y": 43.067240831107902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.689610654109899, 0.0 ], [ -0.001373291015625, 73.689610654109899, 0.0 ], [ -0.001373291015625, 73.689224973603075, 0.0 ], [ -0.00274658203125, 73.689224973603075, 0.0 ], [ -0.00274658203125, 73.689610654109899, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1565, "task_x": 131070, "task_y": 50048, "task_z": 18, "center_y": 73.677071494093994, "area_in_sqm": 1856.4873948097199, "perimeter_in_m": 172.347905176111, "length_x": 43.097946494183503, "length_y": 43.098937332202603 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.677264476349052, 0.0 ], [ -0.001373291015625, 73.677264476349052, 0.0 ], [ -0.001373291015625, 73.676878511838893, 0.0 ], [ -0.00274658203125, 73.676878511838893, 0.0 ], [ -0.00274658203125, 73.677264476349052, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1566, "task_x": 131070, "task_y": 50080, "task_z": 18, "center_y": 73.664716083165899, "area_in_sqm": 1859.21943497658, "perimeter_in_m": 172.47467371805399, "length_x": 43.129663629398401, "length_y": 43.130655133186004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.664909207518235, 0.0 ], [ -0.001373291015625, 73.664909207518235, 0.0 ], [ -0.001373291015625, 73.664522958813535, 0.0 ], [ -0.00274658203125, 73.664522958813535, 0.0 ], [ -0.00274658203125, 73.664909207518235, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1567, "task_x": 131070, "task_y": 50112, "task_z": 18, "center_y": 73.652351574952903, "area_in_sqm": 1861.95531857014, "perimeter_in_m": 172.60152728478101, "length_x": 43.161402073905002, "length_y": 43.162394243764297 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.65254484149817, 0.0 ], [ -0.001373291015625, 73.65254484149817, 0.0 ], [ -0.001373291015625, 73.652158308407692, 0.0 ], [ -0.00274658203125, 73.652158308407692, 0.0 ], [ -0.00274658203125, 73.65254484149817, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1568, "task_x": 131070, "task_y": 50144, "task_z": 18, "center_y": 73.639977963332996, "area_in_sqm": 1864.6950500011401, "perimeter_in_m": 172.72846590397199, "length_x": 43.193161837403402, "length_y": 43.194154673637399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.640171372166847, 0.0 ], [ -0.001373291015625, 73.640171372166847, 0.0 ], [ -0.001373291015625, 73.639784554499215, 0.0 ], [ -0.00274658203125, 73.639784554499215, 0.0 ], [ -0.00274658203125, 73.640171372166847, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1569, "task_x": 131070, "task_y": 50176, "task_z": 18, "center_y": 73.6275952421813, "area_in_sqm": 1867.43863451481, "perimeter_in_m": 172.85548962735899, "length_x": 43.224942929586398, "length_y": 43.225936432497903 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.627788793399418, 0.0 ], [ -0.001373291015625, 73.627788793399418, 0.0 ], [ -0.001373291015625, 73.627401690963183, 0.0 ], [ -0.00274658203125, 73.627401690963183, 0.0 ], [ -0.00274658203125, 73.627788793399418, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1570, "task_x": 131070, "task_y": 50208, "task_z": 18, "center_y": 73.615203405369996, "area_in_sqm": 1870.18607664108, "perimeter_in_m": 172.982598476226, "length_x": 43.256745360140798, "length_y": 43.257739530032403 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.61539709906819, 0.0 ], [ -0.001373291015625, 73.61539709906819, 0.0 ], [ -0.001373291015625, 73.615009711671831, 0.0 ], [ -0.00274658203125, 73.615009711671831, 0.0 ], [ -0.00274658203125, 73.61539709906819, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1571, "task_x": 131070, "task_y": 50240, "task_z": 18, "center_y": 73.602802446768706, "area_in_sqm": 1872.9373813867601, "perimeter_in_m": 173.10979250652599, "length_x": 43.288569138746098, "length_y": 43.289563975920203 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.602996283042728, 0.0 ], [ -0.001373291015625, 73.602996283042728, 0.0 ], [ -0.001373291015625, 73.602608610494599, 0.0 ], [ -0.00274658203125, 73.602608610494599, 0.0 ], [ -0.00274658203125, 73.602996283042728, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1572, "task_x": 131070, "task_y": 50272, "task_z": 18, "center_y": 73.590392360243996, "area_in_sqm": 1875.6925535201999, "perimeter_in_m": 173.23707175083899, "length_x": 43.320414275075301, "length_y": 43.321409779834099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.59058633918977, 0.0 ], [ -0.001373291015625, 73.59058633918977, 0.0 ], [ -0.001373291015625, 73.590198381298165, 0.0 ], [ -0.00274658203125, 73.590198381298165, 0.0 ], [ -0.00274658203125, 73.59058633918977, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1573, "task_x": 131070, "task_y": 50304, "task_z": 18, "center_y": 73.577973139659804, "area_in_sqm": 1878.4515979289999, "perimeter_in_m": 173.36443623818599, "length_x": 43.352280778794501, "length_y": 43.353276951439902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.57816726137321, 0.0 ], [ -0.001373291015625, 73.57816726137321, 0.0 ], [ -0.001373291015625, 73.577779017946341, 0.0 ], [ -0.00274658203125, 73.577779017946341, 0.0 ], [ -0.00274658203125, 73.57816726137321, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1574, "task_x": 131070, "task_y": 50336, "task_z": 18, "center_y": 73.565544778877197, "area_in_sqm": 1881.21452021599, "perimeter_in_m": 173.49188601315299, "length_x": 43.384168659563002, "length_y": 43.385165500396702 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.565739043454187, 0.0 ], [ -0.001373291015625, 73.565739043454187, 0.0 ], [ -0.001373291015625, 73.565350514300178, 0.0 ], [ -0.00274658203125, 73.565350514300178, 0.0 ], [ -0.00274658203125, 73.565739043454187, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1575, "task_x": 131070, "task_y": 50368, "task_z": 18, "center_y": 73.553107271754499, "area_in_sqm": 1883.98132431507, "perimeter_in_m": 173.61942112031801, "length_x": 43.4160779270332, "length_y": 43.417075436356797 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.553301679291053, 0.0 ], [ -0.001373291015625, 73.553301679291053, 0.0 ], [ -0.001373291015625, 73.55291286421793, 0.0 ], [ -0.00274658203125, 73.55291286421793, 0.0 ], [ -0.00274658203125, 73.553301679291053, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1576, "task_x": 131070, "task_y": 50400, "task_z": 18, "center_y": 73.540660612147207, "area_in_sqm": 1886.7520158290899, "perimeter_in_m": 173.74704158865501, "length_x": 43.448008590850499, "length_y": 43.449006768965198 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.540855162739319, 0.0 ], [ -0.001373291015625, 73.540855162739319, 0.0 ], [ -0.001373291015625, 73.540466061555009, 0.0 ], [ -0.00274658203125, 73.540466061555009, 0.0 ], [ -0.00274658203125, 73.540855162739319, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1577, "task_x": 131070, "task_y": 50432, "task_z": 18, "center_y": 73.528204793907904, "area_in_sqm": 1889.52659904957, "perimeter_in_m": 173.87474746342099, "length_x": 43.479960660653298, "length_y": 43.480959507860398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.52839948765174, 0.0 ], [ -0.001373291015625, 73.52839948765174, 0.0 ], [ -0.001373291015625, 73.528010100164096, 0.0 ], [ -0.00274658203125, 73.528010100164096, 0.0 ], [ -0.00274658203125, 73.52839948765174, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1578, "task_x": 131070, "task_y": 50464, "task_z": 18, "center_y": 73.5157398108866, "area_in_sqm": 1892.30507922173, "perimeter_in_m": 174.00253877781401, "length_x": 43.511934146073301, "length_y": 43.512933662673497 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.51593464787824, 0.0 ], [ -0.001373291015625, 73.51593464787824, 0.0 ], [ -0.001373291015625, 73.515544973895032, 0.0 ], [ -0.00274658203125, 73.515544973895032, 0.0 ], [ -0.00274658203125, 73.51593464787824, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1579, "task_x": 131070, "task_y": 50496, "task_z": 18, "center_y": 73.503265656930395, "area_in_sqm": 1895.0874613523499, "perimeter_in_m": 174.13041556856601, "length_x": 43.543929056734903, "length_y": 43.544929243028903 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.503460637265988, 0.0 ], [ -0.001373291015625, 73.503460637265988, 0.0 ], [ -0.001373291015625, 73.503070676594902, 0.0 ], [ -0.00274658203125, 73.503070676594902, 0.0 ], [ -0.00274658203125, 73.503460637265988, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1580, "task_x": 131070, "task_y": 50528, "task_z": 18, "center_y": 73.4907823258837, "area_in_sqm": 1897.87375104427, "perimeter_in_m": 174.25837787733701, "length_x": 43.575945402255599, "length_y": 43.576946258543899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.49097744965934, 0.0 ], [ -0.001373291015625, 73.49097744965934, 0.0 ], [ -0.001373291015625, 73.49058720210796, 0.0 ], [ -0.00274658203125, 73.49058720210796, 0.0 ], [ -0.00274658203125, 73.49097744965934, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1581, "task_x": 131070, "task_y": 50560, "task_z": 18, "center_y": 73.4782898115878, "area_in_sqm": 1900.6639515161501, "perimeter_in_m": 174.386425739413, "length_x": 43.607983192245698, "length_y": 43.608984718828502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.478485078899894, 0.0 ], [ -0.001373291015625, 73.478485078899894, 0.0 ], [ -0.001373291015625, 73.478094544275734, 0.0 ], [ -0.00274658203125, 73.478094544275734, 0.0 ], [ -0.00274658203125, 73.478485078899894, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1582, "task_x": 131070, "task_y": 50592, "task_z": 18, "center_y": 73.465788107881707, "area_in_sqm": 1903.4580689668701, "perimeter_in_m": 174.51455920067801, "length_x": 43.640042436308498, "length_y": 43.641044633485699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.465983518826434, 0.0 ], [ -0.001373291015625, 73.465983518826434, 0.0 ], [ -0.001373291015625, 73.465592696936895, 0.0 ], [ -0.00274658203125, 73.465592696936895, 0.0 ], [ -0.00274658203125, 73.465983518826434, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1583, "task_x": 131070, "task_y": 50624, "task_z": 18, "center_y": 73.453277208601193, "area_in_sqm": 1906.2561079263701, "perimeter_in_m": 174.642778289311, "length_x": 43.67212314404, "length_y": 43.673126012111403 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.453472763274959, 0.0 ], [ -0.001373291015625, 73.453472763274959, 0.0 ], [ -0.001373291015625, 73.453081653927384, 0.0 ], [ -0.00274658203125, 73.453081653927384, 0.0 ], [ -0.00274658203125, 73.453472763274959, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1584, "task_x": 131070, "task_y": 50656, "task_z": 18, "center_y": 73.4407571075795, "area_in_sqm": 1909.0580739975001, "perimeter_in_m": 174.77108303841899, "length_x": 43.704225325029199, "length_y": 43.705228864294298 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.440952806078727, 0.0 ], [ -0.001373291015625, 73.440952806078727, 0.0 ], [ -0.001373291015625, 73.440561409080345, 0.0 ], [ -0.00274658203125, 73.440561409080345, 0.0 ], [ -0.00274658203125, 73.440952806078727, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1585, "task_x": 131070, "task_y": 50688, "task_z": 18, "center_y": 73.4282277986472, "area_in_sqm": 1911.86397099495, "perimeter_in_m": 174.899473501637, "length_x": 43.7363489888576, "length_y": 43.737353199615697 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.428423641068164, 0.0 ], [ -0.001373291015625, 73.428423641068164, 0.0 ], [ -0.001373291015625, 73.42803195622615, 0.0 ], [ -0.00274658203125, 73.42803195622615, 0.0 ], [ -0.00274658203125, 73.428423641068164, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1586, "task_x": 131070, "task_y": 50720, "task_z": 18, "center_y": 73.415689275631706, "area_in_sqm": 1914.67380440235, "perimeter_in_m": 175.027949714165, "length_x": 43.768494145099702, "length_y": 43.769499027649999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.415885262070958, 0.0 ], [ -0.001373291015625, 73.415885262070958, 0.0 ], [ -0.001373291015625, 73.415493289192369, 0.0 ], [ -0.00274658203125, 73.415493289192369, 0.0 ], [ -0.00274658203125, 73.415885262070958, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1587, "task_x": 131070, "task_y": 50752, "task_z": 18, "center_y": 73.403141532357907, "area_in_sqm": 1917.4875798225401, "perimeter_in_m": 175.15651170128899, "length_x": 43.8006608033227, "length_y": 43.801666357963903 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.403337662911994, 0.0 ], [ -0.001373291015625, 73.403337662911994, 0.0 ], [ -0.001373291015625, 73.402945401803834, 0.0 ], [ -0.00274658203125, 73.402945401803834, 0.0 ], [ -0.00274658203125, 73.403337662911994, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1588, "task_x": 131070, "task_y": 50784, "task_z": 18, "center_y": 73.390584562648002, "area_in_sqm": 1920.30530083179, "perimeter_in_m": 175.28515950880501, "length_x": 43.832848973086101, "length_y": 43.833855200117 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.390780837413431, 0.0 ], [ -0.001373291015625, 73.390780837413431, 0.0 ], [ -0.001373291015625, 73.390388287882573, 0.0 ], [ -0.00274658203125, 73.390388287882573, 0.0 ], [ -0.00274658203125, 73.390780837413431, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1589, "task_x": 131070, "task_y": 50816, "task_z": 18, "center_y": 73.378018360321207, "area_in_sqm": 1923.12697374821, "perimeter_in_m": 175.41389317683499, "length_x": 43.865058663942598, "length_y": 43.8660655636615 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.378214779394597, 0.0 ], [ -0.001373291015625, 73.378214779394597, 0.0 ], [ -0.001373291015625, 73.377821941247859, 0.0 ], [ -0.00274658203125, 73.377821941247859, 0.0 ], [ -0.00274658203125, 73.378214779394597, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1590, "task_x": 131070, "task_y": 50848, "task_z": 18, "center_y": 73.365442919194194, "area_in_sqm": 1925.9526027441, "perimeter_in_m": 175.542712738398, "length_x": 43.897289885436997, "length_y": 43.898297458141997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.365639482672094, 0.0 ], [ -0.001373291015625, 73.365639482672094, 0.0 ], [ -0.001373291015625, 73.365246355716209, 0.0 ], [ -0.00274658203125, 73.365246355716209, 0.0 ], [ -0.00274658203125, 73.365639482672094, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1591, "task_x": 131070, "task_y": 50880, "task_z": 18, "center_y": 73.352858233080497, "area_in_sqm": 1928.78219342232, "perimeter_in_m": 175.67161823782899, "length_x": 43.929542647106999, "length_y": 43.930550893096203 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.353054941059753, 0.0 ], [ -0.001373291015625, 73.353054941059753, 0.0 ], [ -0.001373291015625, 73.352661525101325, 0.0 ], [ -0.00274658203125, 73.352661525101325, 0.0 ], [ -0.00274658203125, 73.353054941059753, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1592, "task_x": 131070, "task_y": 50912, "task_z": 18, "center_y": 73.3402642957914, "area_in_sqm": 1931.61575007439, "perimeter_in_m": 175.80060970104299, "length_x": 43.9618169584828, "length_y": 43.9628258780537 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.340461148368604, 0.0 ], [ -0.001373291015625, 73.340461148368604, 0.0 ], [ -0.001373291015625, 73.340067443214224, 0.0 ], [ -0.00274658203125, 73.340067443214224, 0.0 ], [ -0.00274658203125, 73.340461148368604, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1593, "task_x": 131070, "task_y": 50944, "task_z": 18, "center_y": 73.327661101135007, "area_in_sqm": 1934.45327818394, "perimeter_in_m": 175.929687174468, "length_x": 43.994112829086802, "length_y": 43.995122422536902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.327858098406949, 0.0 ], [ -0.001373291015625, 73.327858098406949, 0.0 ], [ -0.001373291015625, 73.327464103863079, 0.0 ], [ -0.00274658203125, 73.327464103863079, 0.0 ], [ -0.00274658203125, 73.327858098406949, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1594, "task_x": 131070, "task_y": 50976, "task_z": 18, "center_y": 73.315048642916807, "area_in_sqm": 1937.2947822809199, "perimeter_in_m": 176.058850695312, "length_x": 44.026430268434098, "length_y": 44.027440536060702 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.315245784980348, 0.0 ], [ -0.001373291015625, 73.315245784980348, 0.0 ], [ -0.001373291015625, 73.314851500853337, 0.0 ], [ -0.00274658203125, 73.314851500853337, 0.0 ], [ -0.00274658203125, 73.315245784980348, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1595, "task_x": 131070, "task_y": 51008, "task_z": 18, "center_y": 73.302426914939602, "area_in_sqm": 1940.1402677297599, "perimeter_in_m": 176.18810029864699, "length_x": 44.058769286032302, "length_y": 44.059780228132396 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.302624201891547, 0.0 ], [ -0.001373291015625, 73.302624201891547, 0.0 ], [ -0.001373291015625, 73.302229627987714, 0.0 ], [ -0.00274658203125, 73.302229627987714, 0.0 ], [ -0.00274658203125, 73.302624201891547, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1596, "task_x": 131070, "task_y": 51040, "task_z": 18, "center_y": 73.289795911003395, "area_in_sqm": 1942.98973953724, "perimeter_in_m": 176.317436023071, "length_x": 44.0911298913813, "length_y": 44.092141508251501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.289993342940576, 0.0 ], [ -0.001373291015625, 73.289993342940576, 0.0 ], [ -0.001373291015625, 73.289598479066115, 0.0 ], [ -0.00274658203125, 73.289598479066115, 0.0 ], [ -0.00274658203125, 73.289993342940576, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1597, "task_x": 131070, "task_y": 51072, "task_z": 18, "center_y": 73.277155624905205, "area_in_sqm": 1945.8432024717299, "perimeter_in_m": 176.44685790007199, "length_x": 44.123512093973197, "length_y": 44.1245243859101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.277353201924711, 0.0 ], [ -0.001373291015625, 73.277353201924711, 0.0 ], [ -0.001373291015625, 73.276958047885756, 0.0 ], [ -0.00274658203125, 73.276958047885756, 0.0 ], [ -0.00274658203125, 73.277353201924711, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1598, "task_x": 131070, "task_y": 51104, "task_z": 18, "center_y": 73.264506050439707, "area_in_sqm": 1948.70066189766, "perimeter_in_m": 176.57636598804601, "length_x": 44.155915903292701, "length_y": 44.156928870592601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.264703772638455, 0.0 ], [ -0.001373291015625, 73.264703772638455, 0.0 ], [ -0.001373291015625, 73.264308328241015, 0.0 ], [ -0.00274658203125, 73.264308328241015, 0.0 ], [ -0.00274658203125, 73.264703772638455, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1599, "task_x": 131070, "task_y": 51136, "task_z": 18, "center_y": 73.251847181398603, "area_in_sqm": 1951.56212246418, "perimeter_in_m": 176.70596030571099, "length_x": 44.188341328816499, "length_y": 44.189354971775501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.252045048873569, 0.0 ], [ -0.001373291015625, 73.252045048873569, 0.0 ], [ -0.001373291015625, 73.251649313923608, 0.0 ], [ -0.00274658203125, 73.251649313923608, 0.0 ], [ -0.00274658203125, 73.252045048873569, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1600, "task_x": 131070, "task_y": 51168, "task_z": 18, "center_y": 73.239179011570798, "area_in_sqm": 1954.4275892972901, "perimeter_in_m": 176.835640886649, "length_x": 44.220788380013701, "length_y": 44.221802698927497 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.239377024419085, 0.0 ], [ -0.001373291015625, 73.239377024419085, 0.0 ], [ -0.001373291015625, 73.238980998722468, 0.0 ], [ -0.00274658203125, 73.238980998722468, 0.0 ], [ -0.00274658203125, 73.239377024419085, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1601, "task_x": 131070, "task_y": 51200, "task_z": 18, "center_y": 73.226501534742496, "area_in_sqm": 1957.2970675229999, "perimeter_in_m": 176.96540777290701, "length_x": 44.253257066345803, "length_y": 44.254272061509901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.226699693061249, 0.0 ], [ -0.001373291015625, 73.226699693061249, 0.0 ], [ -0.001373291015625, 73.226303376423758, 0.0 ], [ -0.00274658203125, 73.226303376423758, 0.0 ], [ -0.00274658203125, 73.226699693061249, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1602, "task_x": 131070, "task_y": 51232, "task_z": 18, "center_y": 73.213814744697302, "area_in_sqm": 1960.17056238651, "perimeter_in_m": 177.095261016438, "length_x": 44.2857473972661, "length_y": 44.286763068975802 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.214013048583624, 0.0 ], [ -0.001373291015625, 73.214013048583624, 0.0 ], [ -0.001373291015625, 73.213616440810938, 0.0 ], [ -0.00274658203125, 73.213616440810938, 0.0 ], [ -0.00274658203125, 73.214013048583624, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1603, "task_x": 131070, "task_y": 51264, "task_z": 18, "center_y": 73.201118635215806, "area_in_sqm": 1963.0480784177801, "perimeter_in_m": 177.22520063165399, "length_x": 44.318259382220297, "length_y": 44.319275730770599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.20131708476697, 0.0 ], [ -0.001373291015625, 73.20131708476697, 0.0 ], [ -0.001373291015625, 73.2009201856647, 0.0 ], [ -0.00274658203125, 73.2009201856647, 0.0 ], [ -0.00274658203125, 73.20131708476697, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1604, "task_x": 131070, "task_y": 51296, "task_z": 18, "center_y": 73.188413200076198, "area_in_sqm": 1965.92962050438, "perimeter_in_m": 177.355226681803, "length_x": 44.350793030645903, "length_y": 44.3518100563318 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.188611795389363, 0.0 ], [ -0.001373291015625, 73.188611795389363, 0.0 ], [ -0.001373291015625, 73.188214604763004, 0.0 ], [ -0.00274658203125, 73.188214604763004, 0.0 ], [ -0.00274658203125, 73.188611795389363, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1605, "task_x": 131070, "task_y": 51328, "task_z": 18, "center_y": 73.175698433053597, "area_in_sqm": 1968.8151943683599, "perimeter_in_m": 177.48533917205901, "length_x": 44.383348351973197, "length_y": 44.384366055088996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.175897174226066, 0.0 ], [ -0.001373291015625, 73.175897174226066, 0.0 ], [ -0.001373291015625, 73.1754996918811, 0.0 ], [ -0.00274658203125, 73.1754996918811, 0.0 ], [ -0.00274658203125, 73.175897174226066, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1606, "task_x": 131070, "task_y": 51360, "task_z": 18, "center_y": 73.162974327920594, "area_in_sqm": 1971.7048047781, "perimeter_in_m": 177.61553816987799, "length_x": 44.4159253556235, "length_y": 44.416943736463701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.16317321504971, 0.0 ], [ -0.001373291015625, 73.16317321504971, 0.0 ], [ -0.001373291015625, 73.162775440791449, 0.0 ], [ -0.00274658203125, 73.162775440791449, 0.0 ], [ -0.00274658203125, 73.16317321504971, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1607, "task_x": 131070, "task_y": 51392, "task_z": 18, "center_y": 73.150240878446994, "area_in_sqm": 1974.59845685959, "perimeter_in_m": 177.74582369244399, "length_x": 44.448524051010899, "length_y": 44.449543109869502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.150439911630102, 0.0 ], [ -0.001373291015625, 73.150439911630102, 0.0 ], [ -0.001373291015625, 73.150041845263829, 0.0 ], [ -0.00274658203125, 73.150041845263829, 0.0 ], [ -0.00274658203125, 73.150439911630102, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1608, "task_x": 131070, "task_y": 51424, "task_z": 18, "center_y": 73.137498078399801, "area_in_sqm": 1977.49615514278, "perimeter_in_m": 177.876195788068, "length_x": 44.481144447541098, "length_y": 44.482164184711898 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.137697257734388, 0.0 ], [ -0.001373291015625, 73.137697257734388, 0.0 ], [ -0.001373291015625, 73.137298899065271, 0.0 ], [ -0.00274658203125, 73.137298899065271, 0.0 ], [ -0.00274658203125, 73.137697257734388, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1609, "task_x": 131070, "task_y": 51456, "task_z": 18, "center_y": 73.124745921543493, "area_in_sqm": 1980.39790570736, "perimeter_in_m": 178.00665448026601, "length_x": 44.513786554611897, "length_y": 44.5148069703883 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.124945247126931, 0.0 ], [ -0.001373291015625, 73.124945247126931, 0.0 ], [ -0.001373291015625, 73.124546595960069, 0.0 ], [ -0.00274658203125, 73.124546595960069, 0.0 ], [ -0.00274658203125, 73.124945247126931, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1610, "task_x": 131070, "task_y": 51488, "task_z": 18, "center_y": 73.111984401639603, "area_in_sqm": 1983.30371201038, "perimeter_in_m": 178.137199827942, "length_x": 44.5464503816129, "length_y": 44.547471476288401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.112183873569393, 0.0 ], [ -0.001373291015625, 73.112183873569393, 0.0 ], [ -0.001373291015625, 73.111784929709799, 0.0 ], [ -0.00274658203125, 73.111784929709799, 0.0 ], [ -0.00274658203125, 73.112183873569393, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1611, "task_x": 131070, "task_y": 51520, "task_z": 18, "center_y": 73.099213512446994, "area_in_sqm": 1986.2135808467899, "perimeter_in_m": 178.26783184961701, "length_x": 44.5791359379254, "length_y": 44.5801577117929 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.099413130820736, 0.0 ], [ -0.001373291015625, 73.099413130820736, 0.0 ], [ -0.001373291015625, 73.099013894073323, 0.0 ], [ -0.00274658203125, 73.099013894073323, 0.0 ], [ -0.00274658203125, 73.099413130820736, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1612, "task_x": 131070, "task_y": 51552, "task_z": 18, "center_y": 73.086433247721999, "area_in_sqm": 1989.1275165080999, "perimeter_in_m": 178.398550589998, "length_x": 44.611843232922801, "length_y": 44.6128656862751 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.086633012637151, 0.0 ], [ -0.001373291015625, 73.086633012637151, 0.0 ], [ -0.001373291015625, 73.086233482806762, 0.0 ], [ -0.00274658203125, 73.086233482806762, 0.0 ], [ -0.00274658203125, 73.086633012637151, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1613, "task_x": 131070, "task_y": 51584, "task_z": 18, "center_y": 73.073643601217896, "area_in_sqm": 1992.04552388191, "perimeter_in_m": 178.52935609023399, "length_x": 44.644572275969999, "length_y": 44.645595409099798 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.073843512772171, 0.0 ], [ -0.001373291015625, 73.073843512772171, 0.0 ], [ -0.001373291015625, 73.073443689663534, 0.0 ], [ -0.00274658203125, 73.073443689663534, 0.0 ], [ -0.00274658203125, 73.073843512772171, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1614, "task_x": 131070, "task_y": 51616, "task_z": 18, "center_y": 73.060844566685404, "area_in_sqm": 1994.9676084518401, "perimeter_in_m": 178.660248370929, "length_x": 44.677323076424003, "length_y": 44.678346889623398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.061044624976532, 0.0 ], [ -0.001373291015625, 73.061044624976532, 0.0 ], [ -0.001373291015625, 73.060644508394361, 0.0 ], [ -0.00274658203125, 73.060644508394361, 0.0 ], [ -0.00274658203125, 73.061044624976532, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1615, "task_x": 131070, "task_y": 51648, "task_z": 18, "center_y": 73.048036137872799, "area_in_sqm": 1997.89377522469, "perimeter_in_m": 178.79122748948001, "length_x": 44.710095643633103, "length_y": 44.7111201371942 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.048236342998351, 0.0 ], [ -0.001373291015625, 73.048236342998351, 0.0 ], [ -0.001373291015625, 73.047835932747191, 0.0 ], [ -0.00274658203125, 73.047835932747191, 0.0 ], [ -0.00274658203125, 73.048236342998351, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1616, "task_x": 131070, "task_y": 51680, "task_z": 18, "center_y": 73.035218308525103, "area_in_sqm": 2000.8240292072301, "perimeter_in_m": 178.922293463622, "length_x": 44.742889986937598, "length_y": 44.743915161152003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.035418660582948, 0.0 ], [ -0.001373291015625, 73.035418660582948, 0.0 ], [ -0.001373291015625, 73.035017956467314, 0.0 ], [ -0.00274658203125, 73.035017956467314, 0.0 ], [ -0.00274658203125, 73.035418660582948, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1617, "task_x": 131070, "task_y": 51712, "task_z": 18, "center_y": 73.022391072385105, "area_in_sqm": 2003.7583749294299, "perimeter_in_m": 179.053446345764, "length_x": 44.775706115669202, "length_y": 44.7767319708285 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.022591571472987, 0.0 ], [ -0.001373291015625, 73.022591571472987, 0.0 ], [ -0.001373291015625, 73.022190573297308, 0.0 ], [ -0.00274658203125, 73.022190573297308, 0.0 ], [ -0.00274658203125, 73.022591571472987, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1618, "task_x": 131070, "task_y": 51744, "task_z": 18, "center_y": 73.009554423192697, "area_in_sqm": 2006.6968183517499, "perimeter_in_m": 179.184686159981, "length_x": 44.8085440391513, "length_y": 44.809570575546701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 73.009755069408413, 0.0 ], [ -0.001373291015625, 73.009755069408413, 0.0 ], [ -0.001373291015625, 73.009353776977008, 0.0 ], [ -0.00274658203125, 73.009353776977008, 0.0 ], [ -0.00274658203125, 73.009755069408413, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1619, "task_x": 131070, "task_y": 51776, "task_z": 18, "center_y": 72.996708354684998, "area_in_sqm": 2009.63936448097, "perimeter_in_m": 179.31601296501199, "length_x": 44.841403766698903, "length_y": 44.842430984621402 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.996909148126477, 0.0 ], [ -0.001373291015625, 72.996909148126477, 0.0 ], [ -0.001373291015625, 72.996507561243561, 0.0 ], [ -0.00274658203125, 72.996507561243561, 0.0 ], [ -0.00274658203125, 72.996909148126477, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1620, "task_x": 131070, "task_y": 51808, "task_z": 18, "center_y": 72.983852860596599, "area_in_sqm": 2012.5860183238999, "perimeter_in_m": 179.44742676790801, "length_x": 44.874285307618401, "length_y": 44.875313207358602 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.984053801361668, 0.0 ], [ -0.001373291015625, 72.984053801361668, 0.0 ], [ -0.001373291015625, 72.983651919831431, 0.0 ], [ -0.00274658203125, 72.983651919831431, 0.0 ], [ -0.00274658203125, 72.984053801361668, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1621, "task_x": 131070, "task_y": 51840, "task_z": 18, "center_y": 72.970987934659107, "area_in_sqm": 2015.5367846489, "perimeter_in_m": 179.578927627377, "length_x": 44.907188671207699, "length_y": 44.908217253056002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.971189022845863, 0.0 ], [ -0.001373291015625, 72.971189022845863, 0.0 ], [ -0.001373291015625, 72.970786846472379, 0.0 ], [ -0.00274658203125, 72.970786846472379, 0.0 ], [ -0.00274658203125, 72.971189022845863, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1622, "task_x": 131070, "task_y": 51872, "task_z": 18, "center_y": 72.958113570601796, "area_in_sqm": 2018.49166882038, "perimeter_in_m": 179.71051556530099, "length_x": 44.940113866756299, "length_y": 44.941143131002903 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.958314806308167, 0.0 ], [ -0.001373291015625, 72.958314806308167, 0.0 ], [ -0.001373291015625, 72.95791233489544, 0.0 ], [ -0.00274658203125, 72.95791233489544, 0.0 ], [ -0.00274658203125, 72.958314806308167, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1623, "task_x": 131070, "task_y": 51904, "task_z": 18, "center_y": 72.945229762151001, "area_in_sqm": 2021.45067596436, "perimeter_in_m": 179.84219063044, "length_x": 44.973060903544898, "length_y": 44.974090850479698 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.945431145475055, 0.0 ], [ -0.001373291015625, 72.945431145475055, 0.0 ], [ -0.001373291015625, 72.945028378826962, 0.0 ], [ -0.00274658203125, 72.945028378826962, 0.0 ], [ -0.00274658203125, 72.945431145475055, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1624, "task_x": 131070, "task_y": 51936, "task_z": 18, "center_y": 72.932336503030399, "area_in_sqm": 2024.41381084919, "perimeter_in_m": 179.97395285101601, "length_x": 45.006029790845702, "length_y": 45.0070604207584 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.932538034070248, 0.0 ], [ -0.001373291015625, 72.932538034070248, 0.0 ], [ -0.001373291015625, 72.932134971990621, 0.0 ], [ -0.00274658203125, 72.932134971990621, 0.0 ], [ -0.00274658203125, 72.932538034070248, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1625, "task_x": 131070, "task_y": 51968, "task_z": 18, "center_y": 72.919433786961093, "area_in_sqm": 2027.3810795545601, "perimeter_in_m": 180.10580227504201, "length_x": 45.039020537922099, "length_y": 45.040051851102 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.919635465814807, 0.0 ], [ -0.001373291015625, 72.919635465814807, 0.0 ], [ -0.001373291015625, 72.919232108107408, 0.0 ], [ -0.00274658203125, 72.919232108107408, 0.0 ], [ -0.00274658203125, 72.919635465814807, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1626, "task_x": 131070, "task_y": 52000, "task_z": 18, "center_y": 72.906521607661404, "area_in_sqm": 2030.35248601437, "perimeter_in_m": 180.23773892362601, "length_x": 45.072033154029199, "length_y": 45.073065150765302 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.906723434427121, 0.0 ], [ -0.001373291015625, 72.906723434427121, 0.0 ], [ -0.001373291015625, 72.906319780895586, 0.0 ], [ -0.00274658203125, 72.906319780895586, 0.0 ], [ -0.00274658203125, 72.906723434427121, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1627, "task_x": 131070, "task_y": 52032, "task_z": 18, "center_y": 72.893599958846806, "area_in_sqm": 2033.32803618908, "perimeter_in_m": 180.369762834829, "length_x": 45.1050676484127, "length_y": 45.106100328993797 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.893801933622854, 0.0 ], [ -0.001373291015625, 72.893801933622854, 0.0 ], [ -0.001373291015625, 72.893397984070774, 0.0 ], [ -0.00274658203125, 72.893397984070774, 0.0 ], [ -0.00274658203125, 72.893801933622854, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1628, "task_x": 131070, "task_y": 52064, "task_z": 18, "center_y": 72.880668834230406, "area_in_sqm": 2036.3077349662799, "perimeter_in_m": 180.50187406229199, "length_x": 45.138124030310003, "length_y": 45.139157395024696 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.880870957115022, 0.0 ], [ -0.001373291015625, 72.880870957115022, 0.0 ], [ -0.001373291015625, 72.880466711345861, 0.0 ], [ -0.00274658203125, 72.880466711345861, 0.0 ], [ -0.00274658203125, 72.880870957115022, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1629, "task_x": 131070, "task_y": 52096, "task_z": 18, "center_y": 72.867728227522505, "area_in_sqm": 2039.2915874719599, "perimeter_in_m": 180.63407262564201, "length_x": 45.171202308949603, "length_y": 45.172236358086103 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.867930498613944, 0.0 ], [ -0.001373291015625, 72.867930498613944, 0.0 ], [ -0.001373291015625, 72.867525956431123, 0.0 ], [ -0.00274658203125, 72.867525956431123, 0.0 ], [ -0.00274658203125, 72.867930498613944, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1630, "task_x": 131070, "task_y": 52128, "task_z": 18, "center_y": 72.854778132430695, "area_in_sqm": 2042.2795993089701, "perimeter_in_m": 180.766358571392, "length_x": 45.204302493550998, "length_y": 45.205337227397301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.854980551827268, 0.0 ], [ -0.001373291015625, 72.854980551827268, 0.0 ], [ -0.001373291015625, 72.854575713034095, 0.0 ], [ -0.00274658203125, 72.854575713034095, 0.0 ], [ -0.00274658203125, 72.854980551827268, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1631, "task_x": 131070, "task_y": 52160, "task_z": 18, "center_y": 72.841818542659794, "area_in_sqm": 2045.27177476883, "perimeter_in_m": 180.89873192126001, "length_x": 45.237424593325102, "length_y": 45.238460012168701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.842021110459939, 0.0 ], [ -0.001373291015625, 72.842021110459939, 0.0 ], [ -0.001373291015625, 72.841615974859664, 0.0 ], [ -0.00274658203125, 72.841615974859664, 0.0 ], [ -0.00274658203125, 72.842021110459939, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1632, "task_x": 131070, "task_y": 52192, "task_z": 18, "center_y": 72.828849451912205, "area_in_sqm": 2048.26811957359, "perimeter_in_m": 181.03119272597499, "length_x": 45.270568617473302, "length_y": 45.271604721601904 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.829052168214275, 0.0 ], [ -0.001373291015625, 72.829052168214275, 0.0 ], [ -0.001373291015625, 72.82864673561005, 0.0 ], [ -0.00274658203125, 72.82864673561005, 0.0 ], [ -0.00274658203125, 72.829052168214275, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1633, "task_x": 131070, "task_y": 52224, "task_z": 18, "center_y": 72.815870853887304, "area_in_sqm": 2051.2686384916301, "perimeter_in_m": 181.16374101925001, "length_x": 45.303734575188699, "length_y": 45.304771364889199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.816073718789909, 0.0 ], [ -0.001373291015625, 72.816073718789909, 0.0 ], [ -0.001373291015625, 72.815667988984785, 0.0 ], [ -0.00274658203125, 72.815667988984785, 0.0 ], [ -0.00274658203125, 72.816073718789909, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1634, "task_x": 131070, "task_y": 52256, "task_z": 18, "center_y": 72.802882742282307, "area_in_sqm": 2054.2733373642, "perimeter_in_m": 181.29637683336799, "length_x": 45.336922475655001, "length_y": 45.337959951214401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.803085755883757, 0.0 ], [ -0.001373291015625, 72.803085755883757, 0.0 ], [ -0.001373291015625, 72.802679728680744, 0.0 ], [ -0.00274658203125, 72.802679728680744, 0.0 ], [ -0.00274658203125, 72.803085755883757, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1635, "task_x": 131070, "task_y": 52288, "task_z": 18, "center_y": 72.789885110791104, "area_in_sqm": 2057.2822209596602, "perimeter_in_m": 181.429100209084, "length_x": 45.3701323280469, "length_y": 45.371170489751698 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.79008827319015, 0.0 ], [ -0.001373291015625, 72.79008827319015, 0.0 ], [ -0.001373291015625, 72.789681948392143, 0.0 ], [ -0.00274658203125, 72.789681948392143, 0.0 ], [ -0.00274658203125, 72.79008827319015, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1636, "task_x": 131070, "task_y": 52320, "task_z": 18, "center_y": 72.776877953105597, "area_in_sqm": 2060.29529452324, "perimeter_in_m": 181.56191117582, "length_x": 45.403364141529998, "length_y": 45.404402989666501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.777081264400692, 0.0 ], [ -0.001373291015625, 72.777081264400692, 0.0 ], [ -0.001373291015625, 72.776674641810516, 0.0 ], [ -0.00274658203125, 72.776674641810516, 0.0 ], [ -0.00274658203125, 72.777081264400692, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1637, "task_x": 131070, "task_y": 52352, "task_z": 18, "center_y": 72.763861262914602, "area_in_sqm": 2063.3125629424999, "perimeter_in_m": 181.69480977782601, "length_x": 45.436617925260997, "length_y": 45.437657460115197 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.764064723204356, 0.0 ], [ -0.001373291015625, 72.764064723204356, 0.0 ], [ -0.001373291015625, 72.763657802624749, 0.0 ], [ -0.00274658203125, 72.763657802624749, 0.0 ], [ -0.00274658203125, 72.764064723204356, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1638, "task_x": 131070, "task_y": 52384, "task_z": 18, "center_y": 72.750835033904295, "area_in_sqm": 2066.3340319395102, "perimeter_in_m": 181.827796047318, "length_x": 45.469893688387103, "length_y": 45.470933910244703 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.751038643287458, 0.0 ], [ -0.001373291015625, 72.751038643287458, 0.0 ], [ -0.001373291015625, 72.75063142452106, 0.0 ], [ -0.00274658203125, 72.75063142452106, 0.0 ], [ -0.00274658203125, 72.751038643287458, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1639, "task_x": 131070, "task_y": 52416, "task_z": 18, "center_y": 72.737799259758305, "area_in_sqm": 2069.35970640183, "perimeter_in_m": 181.960870016477, "length_x": 45.5031914400465, "length_y": 45.504232349192897 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.738003018333643, 0.0 ], [ -0.001373291015625, 72.738003018333643, 0.0 ], [ -0.001373291015625, 72.737595501183037, 0.0 ], [ -0.00274658203125, 72.737595501183037, 0.0 ], [ -0.00274658203125, 72.738003018333643, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1640, "task_x": 131070, "task_y": 52448, "task_z": 18, "center_y": 72.724753934157704, "area_in_sqm": 2072.38959145546, "perimeter_in_m": 182.09403172951599, "length_x": 45.536511189368198, "length_y": 45.537552786088597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.724957842023912, 0.0 ], [ -0.001373291015625, 72.724957842023912, 0.0 ], [ -0.001373291015625, 72.724550026291581, 0.0 ], [ -0.00274658203125, 72.724550026291581, 0.0 ], [ -0.00274658203125, 72.724957842023912, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1641, "task_x": 131070, "task_y": 52480, "task_z": 18, "center_y": 72.711699050780794, "area_in_sqm": 2075.4236922264099, "perimeter_in_m": 182.227281210082, "length_x": 45.569852945471702, "length_y": 45.570895230050802 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.711903108036609, 0.0 ], [ -0.001373291015625, 72.711903108036609, 0.0 ], [ -0.001373291015625, 72.71149499352498, 0.0 ], [ -0.00274658203125, 72.71149499352498, 0.0 ], [ -0.00274658203125, 72.711903108036609, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1642, "task_x": 131070, "task_y": 52512, "task_z": 18, "center_y": 72.698634603303105, "area_in_sqm": 2078.4620145559302, "perimeter_in_m": 182.36061851296401, "length_x": 45.603216717467397, "length_y": 45.604259690189799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.698838810047462, 0.0 ], [ -0.001373291015625, 72.698838810047462, 0.0 ], [ -0.001373291015625, 72.69843039655882, 0.0 ], [ -0.00274658203125, 72.69843039655882, 0.0 ], [ -0.00274658203125, 72.698838810047462, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1643, "task_x": 131070, "task_y": 52544, "task_z": 18, "center_y": 72.685560585397795, "area_in_sqm": 2081.5045624971399, "perimeter_in_m": 182.49404365682901, "length_x": 45.6366025144562, "length_y": 45.6376461756062 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.685764941729502, 0.0 ], [ -0.001373291015625, 72.685764941729502, 0.0 ], [ -0.001373291015625, 72.685356229066116, 0.0 ], [ -0.00274658203125, 72.685356229066116, 0.0 ], [ -0.00274658203125, 72.685764941729502, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1644, "task_x": 131070, "task_y": 52576, "task_z": 18, "center_y": 72.672476990735206, "area_in_sqm": 2084.5513426065399, "perimeter_in_m": 182.62755667942801, "length_x": 45.670010345529697, "length_y": 45.671054695391199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.672681496753157, 0.0 ], [ -0.001373291015625, 72.672681496753157, 0.0 ], [ -0.001373291015625, 72.672272484717183, 0.0 ], [ -0.00274658203125, 72.672272484717183, 0.0 ], [ -0.00274658203125, 72.672681496753157, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1645, "task_x": 131070, "task_y": 52608, "task_z": 18, "center_y": 72.659383812982995, "area_in_sqm": 2087.6023586988399, "perimeter_in_m": 182.761157619908, "length_x": 45.703440219770101, "length_y": 45.704485258626697 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.659588468786197, 0.0 ], [ -0.001373291015625, 72.659588468786197, 0.0 ], [ -0.001373291015625, 72.659179157179707, 0.0 ], [ -0.00274658203125, 72.659179157179707, 0.0 ], [ -0.00274658203125, 72.659588468786197, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1646, "task_x": 131070, "task_y": 52640, "task_z": 18, "center_y": 72.646281045806305, "area_in_sqm": 2090.6576175689702, "perimeter_in_m": 182.894846529452, "length_x": 45.736892146249801, "length_y": 45.737937874385203 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.646485851493779, 0.0 ], [ -0.001373291015625, 72.646485851493779, 0.0 ], [ -0.001373291015625, 72.646076240118745, 0.0 ], [ -0.00274658203125, 72.646076240118745, 0.0 ], [ -0.00274658203125, 72.646485851493779, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1647, "task_x": 131070, "task_y": 52672, "task_z": 18, "center_y": 72.633168682867606, "area_in_sqm": 2093.71712315083, "perimeter_in_m": 183.02862342238399, "length_x": 45.770366134032102, "length_y": 45.771412551729199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.633373638538387, 0.0 ], [ -0.001373291015625, 72.633373638538387, 0.0 ], [ -0.001373291015625, 72.632963727196739, 0.0 ], [ -0.00274658203125, 72.632963727196739, 0.0 ], [ -0.00274658203125, 72.633373638538387, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1648, "task_x": 131070, "task_y": 52704, "task_z": 18, "center_y": 72.620046717826696, "area_in_sqm": 2096.7808815240901, "perimeter_in_m": 183.16248833709699, "length_x": 45.803862192170698, "length_y": 45.804909299712101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.620251823579878, 0.0 ], [ -0.001373291015625, 72.620251823579878, 0.0 ], [ -0.001373291015625, 72.619841612073458, 0.0 ], [ -0.00274658203125, 72.619841612073458, 0.0 ], [ -0.00274658203125, 72.620251823579878, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1649, "task_x": 131070, "task_y": 52736, "task_z": 18, "center_y": 72.606915144340803, "area_in_sqm": 2099.8488969802902, "perimeter_in_m": 183.29644131761799, "length_x": 45.837380329709397, "length_y": 45.838428127377597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.607120400275548, 0.0 ], [ -0.001373291015625, 72.607120400275548, 0.0 ], [ -0.001373291015625, 72.606709888406087, 0.0 ], [ -0.00274658203125, 72.606709888406087, 0.0 ], [ -0.00274658203125, 72.607120400275548, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1650, "task_x": 131070, "task_y": 52768, "task_z": 18, "center_y": 72.593773956064496, "area_in_sqm": 2102.9211757183102, "perimeter_in_m": 183.43048239805, "length_x": 45.870920555682503, "length_y": 45.871969043759897 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.593979362279967, 0.0 ], [ -0.001373291015625, 72.593979362279967, 0.0 ], [ -0.001373291015625, 72.593568549849124, 0.0 ], [ -0.00274658203125, 72.593568549849124, 0.0 ], [ -0.00274658203125, 72.593979362279967, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1651, "task_x": 131070, "task_y": 52800, "task_z": 18, "center_y": 72.580623146649799, "area_in_sqm": 2105.9977226257301, "perimeter_in_m": 183.56461160609999, "length_x": 45.904482879114902, "length_y": 45.9055320578831 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.580828703245146, 0.0 ], [ -0.001373291015625, 72.580828703245146, 0.0 ], [ -0.001373291015625, 72.580417590054509, 0.0 ], [ -0.00274658203125, 72.580417590054509, 0.0 ], [ -0.00274658203125, 72.580828703245146, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1652, "task_x": 131070, "task_y": 52832, "task_z": 18, "center_y": 72.567462709745996, "area_in_sqm": 2109.0785425901399, "perimeter_in_m": 183.698828975829, "length_x": 45.938067309021399, "length_y": 45.939117178762103 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.567668416820453, 0.0 ], [ -0.001373291015625, 72.567668416820453, 0.0 ], [ -0.001373291015625, 72.567257002671539, 0.0 ], [ -0.00274658203125, 72.567257002671539, 0.0 ], [ -0.00274658203125, 72.567668416820453, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1653, "task_x": 131070, "task_y": 52864, "task_z": 18, "center_y": 72.554292638999698, "area_in_sqm": 2112.1636414527902, "perimeter_in_m": 183.833134558973, "length_x": 45.9716738544072, "length_y": 45.972724415401501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.554498496652656, 0.0 ], [ -0.001373291015625, 72.554498496652656, 0.0 ], [ -0.001373291015625, 72.554086781346854, 0.0 ], [ -0.00274658203125, 72.554086781346854, 0.0 ], [ -0.00274658203125, 72.554498496652656, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1654, "task_x": 131070, "task_y": 52896, "task_z": 18, "center_y": 72.541112928055199, "area_in_sqm": 2115.2530242204698, "perimeter_in_m": 183.96752838601299, "length_x": 46.005302524267698, "length_y": 46.0063537767968 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.541318936385863, 0.0 ], [ -0.001373291015625, 72.541318936385863, 0.0 ], [ -0.001373291015625, 72.540906919724534, 0.0 ], [ -0.00274658203125, 72.540906919724534, 0.0 ], [ -0.00274658203125, 72.541318936385863, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1655, "task_x": 131070, "task_y": 52928, "task_z": 18, "center_y": 72.527923570553796, "area_in_sqm": 2118.3466960191699, "perimeter_in_m": 184.10201048386901, "length_x": 46.038953327588402, "length_y": 46.040005271932898 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.528129729661629, 0.0 ], [ -0.001373291015625, 72.528129729661629, 0.0 ], [ -0.001373291015625, 72.527717411446034, 0.0 ], [ -0.00274658203125, 72.527717411446034, 0.0 ], [ -0.00274658203125, 72.528129729661629, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1656, "task_x": 131070, "task_y": 52960, "task_z": 18, "center_y": 72.514724560134496, "area_in_sqm": 2121.4446619749101, "perimeter_in_m": 184.23658088298799, "length_x": 46.072626273345399, "length_y": 46.073678909785301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.51493087011886, 0.0 ], [ -0.001373291015625, 72.51493087011886, 0.0 ], [ -0.001373291015625, 72.514518250150161, 0.0 ], [ -0.00274658203125, 72.514518250150161, 0.0 ], [ -0.00274658203125, 72.51493087011886, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1657, "task_x": 131070, "task_y": 52992, "task_z": 18, "center_y": 72.501515890433495, "area_in_sqm": 2124.5469285249701, "perimeter_in_m": 184.371239649177, "length_x": 46.106321370503899, "length_y": 46.107374699319699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.50172235139388, 0.0 ], [ -0.001373291015625, 72.50172235139388, 0.0 ], [ -0.001373291015625, 72.501309429473139, 0.0 ], [ -0.00274658203125, 72.501309429473139, 0.0 ], [ -0.00274658203125, 72.50172235139388, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1658, "task_x": 131070, "task_y": 53024, "task_z": 18, "center_y": 72.4882975550845, "area_in_sqm": 2127.6534991264298, "perimeter_in_m": 184.50598677319701, "length_x": 46.1400386280202, "length_y": 46.141092649491299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.488504167120354, 0.0 ], [ -0.001373291015625, 72.488504167120354, 0.0 ], [ -0.001373291015625, 72.488090943048633, 0.0 ], [ -0.00274658203125, 72.488090943048633, 0.0 ], [ -0.00274658203125, 72.488504167120354, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1659, "task_x": 131070, "task_y": 53056, "task_z": 18, "center_y": 72.475069547718505, "area_in_sqm": 2130.7643803358101, "perimeter_in_m": 184.640822320822, "length_x": 46.1737780548399, "length_y": 46.174832769245803 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.475276310929416, 0.0 ], [ -0.001373291015625, 72.475276310929416, 0.0 ], [ -0.001373291015625, 72.474862784507621, 0.0 ], [ -0.00274658203125, 72.474862784507621, 0.0 ], [ -0.00274658203125, 72.475276310929416, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1660, "task_x": 131070, "task_y": 53088, "task_z": 18, "center_y": 72.461831861964001, "area_in_sqm": 2133.87957727909, "perimeter_in_m": 184.77574632594599, "length_x": 46.207539659898899, "length_y": 46.208595067518601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.46203877644956, 0.0 ], [ -0.001373291015625, 72.46203877644956, 0.0 ], [ -0.001373291015625, 72.461624947478541, 0.0 ], [ -0.00274658203125, 72.461624947478541, 0.0 ], [ -0.00274658203125, 72.46203877644956, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1661, "task_x": 131070, "task_y": 53120, "task_z": 18, "center_y": 72.448584491446994, "area_in_sqm": 2136.9990944862402, "perimeter_in_m": 184.91075881325199, "length_x": 46.241323452122899, "length_y": 46.242379553235203 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.448791557306706, 0.0 ], [ -0.001373291015625, 72.448791557306706, 0.0 ], [ -0.001373291015625, 72.448377425587225, 0.0 ], [ -0.00274658203125, 72.448377425587225, 0.0 ], [ -0.00274658203125, 72.448791557306706, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1662, "task_x": 131070, "task_y": 53152, "task_z": 18, "center_y": 72.435327429790505, "area_in_sqm": 2140.1229382753399, "perimeter_in_m": 185.045859822251, "length_x": 46.275129440427499, "length_y": 46.276186235310803 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.435534647124143, 0.0 ], [ -0.001373291015625, 72.435534647124143, 0.0 ], [ -0.001373291015625, 72.435120212456894, 0.0 ], [ -0.00274658203125, 72.435120212456894, 0.0 ], [ -0.00274658203125, 72.435534647124143, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1663, "task_x": 131070, "task_y": 53184, "task_z": 18, "center_y": 72.422060670615394, "area_in_sqm": 2143.2511134147599, "perimeter_in_m": 185.18104938041299, "length_x": 46.308957633718101, "length_y": 46.310015122650597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.422268039522606, 0.0 ], [ -0.001373291015625, 72.422268039522606, 0.0 ], [ -0.001373291015625, 72.421853301708211, 0.0 ], [ -0.00274658203125, 72.421853301708211, 0.0 ], [ -0.00274658203125, 72.422268039522606, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1664, "task_x": 131070, "task_y": 53216, "task_z": 18, "center_y": 72.408784207539696, "area_in_sqm": 2146.38362538815, "perimeter_in_m": 185.31632754562099, "length_x": 46.342808040889999, "length_y": 46.343866224149501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.408991728120242, 0.0 ], [ -0.001373291015625, 72.408991728120242, 0.0 ], [ -0.001373291015625, 72.408576686959208, 0.0 ], [ -0.00274658203125, 72.408576686959208, 0.0 ], [ -0.00274658203125, 72.408991728120242, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1665, "task_x": 131070, "task_y": 53248, "task_z": 18, "center_y": 72.395498034178999, "area_in_sqm": 2149.5204789638501, "perimeter_in_m": 185.45169433043401, "length_x": 46.3766806708282, "length_y": 46.377739548692297 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.395705706532596, 0.0 ], [ -0.001373291015625, 72.395705706532596, 0.0 ], [ -0.001373291015625, 72.39529036182536, 0.0 ], [ -0.00274658203125, 72.39529036182536, 0.0 ], [ -0.00274658203125, 72.395705706532596, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1666, "task_x": 131070, "task_y": 53280, "task_z": 18, "center_y": 72.382202144146106, "area_in_sqm": 2152.6616802215599, "perimeter_in_m": 185.587149777115, "length_x": 46.4105755324074, "length_y": 46.411635105153103 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.382409968372642, 0.0 ], [ -0.001373291015625, 72.382409968372642, 0.0 ], [ -0.001373291015625, 72.381994319919571, 0.0 ], [ -0.00274658203125, 72.381994319919571, 0.0 ], [ -0.00274658203125, 72.382409968372642, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1667, "task_x": 131070, "task_y": 53312, "task_z": 18, "center_y": 72.368896531051405, "area_in_sqm": 2155.8072336912201, "perimeter_in_m": 185.72269392437599, "length_x": 46.444492634492001, "length_y": 46.445552902396301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.369104507250753, 0.0 ], [ -0.001373291015625, 72.369104507250753, 0.0 ], [ -0.001373291015625, 72.368688554852142, 0.0 ], [ -0.00274658203125, 72.368688554852142, 0.0 ], [ -0.00274658203125, 72.369104507250753, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1668, "task_x": 131070, "task_y": 53344, "task_z": 18, "center_y": 72.355581188502796, "area_in_sqm": 2158.9571456909198, "perimeter_in_m": 185.85832680240699, "length_x": 46.478431985936197, "length_y": 46.479492949275503 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.355789316774761, 0.0 ], [ -0.001373291015625, 72.355789316774761, 0.0 ], [ -0.001373291015625, 72.355373060230804, 0.0 ], [ -0.00274658203125, 72.355373060230804, 0.0 ], [ -0.00274658203125, 72.355789316774761, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1669, "task_x": 131070, "task_y": 53376, "task_z": 18, "center_y": 72.342256110105296, "area_in_sqm": 2162.1114207506198, "perimeter_in_m": 185.99404844350099, "length_x": 46.512393595583497, "length_y": 46.513455254634103 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.342464390549893, 0.0 ], [ -0.001373291015625, 72.342464390549893, 0.0 ], [ -0.001373291015625, 72.342047829660714, 0.0 ], [ -0.00274658203125, 72.342047829660714, 0.0 ], [ -0.00274658203125, 72.342464390549893, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1670, "task_x": 131070, "task_y": 53408, "task_z": 18, "center_y": 72.328921289461704, "area_in_sqm": 2165.2700642347299, "perimeter_in_m": 186.12985888630499, "length_x": 46.546377472266997, "length_y": 46.5474398273047 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.329129722178834, 0.0 ], [ -0.001373291015625, 72.329129722178834, 0.0 ], [ -0.001373291015625, 72.328712856744488, 0.0 ], [ -0.00274658203125, 72.328712856744488, 0.0 ], [ -0.00274658203125, 72.329129722178834, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1671, "task_x": 131070, "task_y": 53440, "task_z": 18, "center_y": 72.315576720171904, "area_in_sqm": 2168.4330821037302, "perimeter_in_m": 186.26575816801699, "length_x": 46.580383624809599, "length_y": 46.581446676109998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.315785305261699, 0.0 ], [ -0.001373291015625, 72.315785305261699, 0.0 ], [ -0.001373291015625, 72.315368135082124, 0.0 ], [ -0.00274658203125, 72.315368135082124, 0.0 ], [ -0.00274658203125, 72.315785305261699, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1672, "task_x": 131070, "task_y": 53472, "task_z": 18, "center_y": 72.302222395833596, "area_in_sqm": 2171.6004787683501, "perimeter_in_m": 186.40174631592001, "length_x": 46.614412062023398, "length_y": 46.6154758098616 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.302431133395999, 0.0 ], [ -0.001373291015625, 72.302431133395999, 0.0 ], [ -0.001373291015625, 72.302013658271093, 0.0 ], [ -0.00274658203125, 72.302013658271093, 0.0 ], [ -0.00274658203125, 72.302431133395999, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1673, "task_x": 131070, "task_y": 53504, "task_z": 18, "center_y": 72.288858310041505, "area_in_sqm": 2174.7722603082698, "perimeter_in_m": 186.53782337283801, "length_x": 46.648462792709999, "length_y": 46.6495272373609 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.289067200176731, 0.0 ], [ -0.001373291015625, 72.289067200176731, 0.0 ], [ -0.001373291015625, 72.288649419906292, 0.0 ], [ -0.00274658203125, 72.288649419906292, 0.0 ], [ -0.00274658203125, 72.289067200176731, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1674, "task_x": 131070, "task_y": 53536, "task_z": 18, "center_y": 72.275484456388199, "area_in_sqm": 2177.9484316110602, "perimeter_in_m": 186.673989367415, "length_x": 46.682535825660402, "length_y": 46.683600967398597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.275693499196308, 0.0 ], [ -0.001373291015625, 72.275693499196308, 0.0 ], [ -0.001373291015625, 72.275275413580061, 0.0 ], [ -0.00274658203125, 72.275275413580061, 0.0 ], [ -0.00274658203125, 72.275693499196308, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1675, "task_x": 131070, "task_y": 53568, "task_z": 18, "center_y": 72.262100828463403, "area_in_sqm": 2181.1289983987799, "perimeter_in_m": 186.810244337482, "length_x": 46.716631169654903, "length_y": 46.717697008754598 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.262310024044609, 0.0 ], [ -0.001373291015625, 72.262310024044609, 0.0 ], [ -0.001373291015625, 72.261891632882197, 0.0 ], [ -0.00274658203125, 72.261891632882197, 0.0 ], [ -0.00274658203125, 72.262310024044609, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1676, "task_x": 131070, "task_y": 53600, "task_z": 18, "center_y": 72.248707419854398, "area_in_sqm": 2184.31396591663, "perimeter_in_m": 186.94658831942701, "length_x": 46.750748833463298, "length_y": 46.751815370198301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.248916768308916, 0.0 ], [ -0.001373291015625, 72.248916768308916, 0.0 ], [ -0.001373291015625, 72.248498071399894, 0.0 ], [ -0.00274658203125, 72.248498071399894, 0.0 ], [ -0.00274658203125, 72.248916768308916, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1677, "task_x": 131070, "task_y": 53632, "task_z": 18, "center_y": 72.235304224146006, "area_in_sqm": 2187.5033390521999, "perimeter_in_m": 187.083021344663, "length_x": 46.784888825844199, "length_y": 46.785956060488097 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.235513725574037, 0.0 ], [ -0.001373291015625, 72.235513725574037, 0.0 ], [ -0.001373291015625, 72.235094722717889, 0.0 ], [ -0.00274658203125, 72.235094722717889, 0.0 ], [ -0.00274658203125, 72.235513725574037, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1678, "task_x": 131070, "task_y": 53664, "task_z": 18, "center_y": 72.221891234920193, "area_in_sqm": 2190.6971240043599, "perimeter_in_m": 187.21954344387001, "length_x": 46.819051155545999, "length_y": 46.820119088372103 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.222100889422137, 0.0 ], [ -0.001373291015625, 72.222100889422137, 0.0 ], [ -0.001373291015625, 72.221681580418277, 0.0 ], [ -0.00274658203125, 72.221681580418277, 0.0 ], [ -0.00274658203125, 72.222100889422137, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1679, "task_x": 131070, "task_y": 53696, "task_z": 18, "center_y": 72.208468445756793, "area_in_sqm": 2193.8953258991201, "perimeter_in_m": 187.35615466399699, "length_x": 46.853235831305902, "length_y": 46.854304462587002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.208678253432936, 0.0 ], [ -0.001373291015625, 72.208678253432936, 0.0 ], [ -0.001373291015625, 72.208258638080665, 0.0 ], [ -0.00274658203125, 72.208258638080665, 0.0 ], [ -0.00274658203125, 72.208678253432936, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1680, "task_x": 131070, "task_y": 53728, "task_z": 18, "center_y": 72.195035850232799, "area_in_sqm": 2197.09794950485, "perimeter_in_m": 187.49285502081301, "length_x": 46.887442861850403, "length_y": 46.888512191858901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.195245811183526, 0.0 ], [ -0.001373291015625, 72.195245811183526, 0.0 ], [ -0.001373291015625, 72.194825889282114, 0.0 ], [ -0.00274658203125, 72.194825889282114, 0.0 ], [ -0.00274658203125, 72.195245811183526, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1681, "task_x": 131070, "task_y": 53760, "task_z": 18, "center_y": 72.1815934419228, "area_in_sqm": 2200.30500090122, "perimeter_in_m": 187.629644564751, "length_x": 46.921672255894897, "length_y": 46.922742284903201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.181803556248525, 0.0 ], [ -0.001373291015625, 72.181803556248525, 0.0 ], [ -0.001373291015625, 72.181383327597132, 0.0 ], [ -0.00274658203125, 72.181383327597132, 0.0 ], [ -0.00274658203125, 72.181803556248525, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1682, "task_x": 131070, "task_y": 53792, "task_z": 18, "center_y": 72.168141214398801, "area_in_sqm": 2203.5164852142302, "perimeter_in_m": 187.76652333278199, "length_x": 46.955924022144103, "length_y": 46.956994750424002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.168351482200009, 0.0 ], [ -0.001373291015625, 72.168351482200009, 0.0 ], [ -0.001373291015625, 72.167930946597693, 0.0 ], [ -0.00274658203125, 72.167930946597693, 0.0 ], [ -0.00274658203125, 72.168351482200009, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1683, "task_x": 131070, "task_y": 53824, "task_z": 18, "center_y": 72.154679161230405, "area_in_sqm": 2206.7324078083002, "perimeter_in_m": 187.90349133353101, "length_x": 46.990198169291602, "length_y": 46.991269597114403 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.154889582607481, 0.0 ], [ -0.001373291015625, 72.154889582607481, 0.0 ], [ -0.001373291015625, 72.154468739853286, 0.0 ], [ -0.00274658203125, 72.154468739853286, 0.0 ], [ -0.00274658203125, 72.154889582607481, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1684, "task_x": 131070, "task_y": 53856, "task_z": 18, "center_y": 72.141207275984399, "area_in_sqm": 2209.9527733325999, "perimeter_in_m": 188.040548622324, "length_x": 47.024494706019901, "length_y": 47.025566833656796 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.141417851037943, 0.0 ], [ -0.001373291015625, 72.141417851037943, 0.0 ], [ -0.001373291015625, 72.140996700930785, 0.0 ], [ -0.00274658203125, 72.140996700930785, 0.0 ], [ -0.00274658203125, 72.141417851037943, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1685, "task_x": 131070, "task_y": 53888, "task_z": 18, "center_y": 72.1277255522253, "area_in_sqm": 2213.17758870125, "perimeter_in_m": 188.17769523676299, "length_x": 47.058813641000398, "length_y": 47.059886468722397 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.127936281055895, 0.0 ], [ -0.001373291015625, 72.127936281055895, 0.0 ], [ -0.001373291015625, 72.12751482339462, 0.0 ], [ -0.00274658203125, 72.12751482339462, 0.0 ], [ -0.00274658203125, 72.127936281055895, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1686, "task_x": 131070, "task_y": 53920, "task_z": 18, "center_y": 72.114233983515007, "area_in_sqm": 2216.40685856342, "perimeter_in_m": 188.31493120523101, "length_x": 47.093154982893601, "length_y": 47.094228510971099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.114444866223266, 0.0 ], [ -0.001373291015625, 72.114444866223266, 0.0 ], [ -0.001373291015625, 72.114023100806648, 0.0 ], [ -0.00274658203125, 72.114023100806648, 0.0 ], [ -0.00274658203125, 72.114444866223266, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1687, "task_x": 131070, "task_y": 53952, "task_z": 18, "center_y": 72.100732563412905, "area_in_sqm": 2219.6405878066998, "perimeter_in_m": 188.45225655254299, "length_x": 47.127518740348698, "length_y": 47.128592969051802 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.100943600099512, 0.0 ], [ -0.001373291015625, 72.100943600099512, 0.0 ], [ -0.001373291015625, 72.10052152672624, 0.0 ], [ -0.00274658203125, 72.10052152672624, 0.0 ], [ -0.00274658203125, 72.100943600099512, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1688, "task_x": 131070, "task_y": 53984, "task_z": 18, "center_y": 72.087221285475906, "area_in_sqm": 2222.87878215313, "perimeter_in_m": 188.58967132261, "length_x": 47.1619049220036, "length_y": 47.162979851601897 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.08743247624156, 0.0 ], [ -0.001373291015625, 72.08743247624156, 0.0 ], [ -0.001373291015625, 72.087010094710237, 0.0 ], [ -0.00274658203125, 72.087010094710237, 0.0 ], [ -0.00274658203125, 72.08743247624156, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1689, "task_x": 131070, "task_y": 54016, "task_z": 18, "center_y": 72.073700143258407, "area_in_sqm": 2226.1214472055399, "perimeter_in_m": 188.72717555010999, "length_x": 47.196313536485, "length_y": 47.197389167248097 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.073911488203791, 0.0 ], [ -0.001373291015625, 72.073911488203791, 0.0 ], [ -0.001373291015625, 72.073488798312965, 0.0 ], [ -0.00274658203125, 72.073488798312965, 0.0 ], [ -0.00274658203125, 72.073911488203791, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1690, "task_x": 131070, "task_y": 54048, "task_z": 18, "center_y": 72.060169130312204, "area_in_sqm": 2229.3685889244098, "perimeter_in_m": 188.864769258378, "length_x": 47.230744592408598, "length_y": 47.231820924605401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.06038062953813, 0.0 ], [ -0.001373291015625, 72.06038062953813, 0.0 ], [ -0.001373291015625, 72.059957631086249, 0.0 ], [ -0.00274658203125, 72.059957631086249, 0.0 ], [ -0.00274658203125, 72.06038062953813, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1691, "task_x": 131070, "task_y": 54080, "task_z": 18, "center_y": 72.046628240186706, "area_in_sqm": 2232.62021183968, "perimeter_in_m": 189.00245249125101, "length_x": 47.2651980983782, "length_y": 47.2662751322774 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.046839893793958, 0.0 ], [ -0.001373291015625, 72.046839893793958, 0.0 ], [ -0.001373291015625, 72.046416586579412, 0.0 ], [ -0.00274658203125, 72.046416586579412, 0.0 ], [ -0.00274658203125, 72.046839893793958, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1692, "task_x": 131070, "task_y": 54112, "task_z": 18, "center_y": 72.033077466428693, "area_in_sqm": 2235.8763213157699, "perimeter_in_m": 189.14022527980401, "length_x": 47.299674062986703, "length_y": 47.300751798856702 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.033289274518154, 0.0 ], [ -0.001373291015625, 72.033289274518154, 0.0 ], [ -0.001373291015625, 72.032865658339247, 0.0 ], [ -0.00274658203125, 72.032865658339247, 0.0 ], [ -0.00274658203125, 72.033289274518154, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1693, "task_x": 131070, "task_y": 54144, "task_z": 18, "center_y": 72.019516802582601, "area_in_sqm": 2239.1369235515599, "perimeter_in_m": 189.27808766358601, "length_x": 47.334172494815398, "length_y": 47.335250932924197 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.019728765255138, 0.0 ], [ -0.001373291015625, 72.019728765255138, 0.0 ], [ -0.001373291015625, 72.019304839910063, 0.0 ], [ -0.00274658203125, 72.019304839910063, 0.0 ], [ -0.00274658203125, 72.019728765255138, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1694, "task_x": 131070, "task_y": 54176, "task_z": 18, "center_y": 72.005946242190205, "area_in_sqm": 2242.4020235538501, "perimeter_in_m": 189.416039669367, "length_x": 47.368693402434097, "length_y": 47.3697725430494 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 72.006158359546788, 0.0 ], [ -0.001373291015625, 72.006158359546788, 0.0 ], [ -0.001373291015625, 72.005734124833708, 0.0 ], [ -0.00274658203125, 72.005734124833708, 0.0 ], [ -0.00274658203125, 72.006158359546788, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1695, "task_x": 131070, "task_y": 54208, "task_z": 18, "center_y": 71.992365778790997, "area_in_sqm": 2245.6716263294202, "perimeter_in_m": 189.554081321784, "length_x": 47.403236794401302, "length_y": 47.404316637790103 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.992578050932494, 0.0 ], [ -0.001373291015625, 71.992578050932494, 0.0 ], [ -0.001373291015625, 71.992153506649487, 0.0 ], [ -0.00274658203125, 71.992153506649487, 0.0 ], [ -0.00274658203125, 71.992578050932494, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1696, "task_x": 131070, "task_y": 54240, "task_z": 18, "center_y": 71.978775405921695, "area_in_sqm": 2248.9457379579499, "perimeter_in_m": 189.69221267871799, "length_x": 47.437802679263498, "length_y": 47.438883225692997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.978987832949187, 0.0 ], [ -0.001373291015625, 71.978987832949187, 0.0 ], [ -0.001373291015625, 71.978562978894217, 0.0 ], [ -0.00274658203125, 71.978562978894217, 0.0 ], [ -0.00274658203125, 71.978987832949187, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1697, "task_x": 131070, "task_y": 54272, "task_z": 18, "center_y": 71.9651751171168, "area_in_sqm": 2252.2243638038599, "perimeter_in_m": 189.830433755549, "length_x": 47.472391065556103, "length_y": 47.473472315292703 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.96538769913127, 0.0 ], [ -0.001373291015625, 71.96538769913127, 0.0 ], [ -0.001373291015625, 71.964962535102273, 0.0 ], [ -0.00274658203125, 71.964962535102273, 0.0 ], [ -0.00274658203125, 71.96538769913127, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1698, "task_x": 131070, "task_y": 54304, "task_z": 18, "center_y": 71.9515649059081, "area_in_sqm": 2255.5075089931502, "perimeter_in_m": 189.968744582498, "length_x": 47.5070019618027, "length_y": 47.508083915112501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.951777643010701, 0.0 ], [ -0.001373291015625, 71.951777643010701, 0.0 ], [ -0.001373291015625, 71.951352168805499, 0.0 ], [ -0.00274658203125, 71.951352168805499, 0.0 ], [ -0.00274658203125, 71.951777643010701, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1699, "task_x": 131070, "task_y": 54336, "task_z": 18, "center_y": 71.937944765825094, "area_in_sqm": 2258.79517936707, "perimeter_in_m": 190.107145210298, "length_x": 47.541635376514897, "length_y": 47.542718033663803 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.938157658116936, 0.0 ], [ -0.001373291015625, 71.938157658116936, 0.0 ], [ -0.001373291015625, 71.937731873533281, 0.0 ], [ -0.00274658203125, 71.937731873533281, 0.0 ], [ -0.00274658203125, 71.938157658116936, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1700, "task_x": 131070, "task_y": 54368, "task_z": 18, "center_y": 71.924314690394695, "area_in_sqm": 2262.0873799323999, "perimeter_in_m": 190.24563565850701, "length_x": 47.5762913181931, "length_y": 47.5773746794465 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.924527737976959, 0.0 ], [ -0.001373291015625, 71.924527737976959, 0.0 ], [ -0.001373291015625, 71.924101642812531, 0.0 ], [ -0.00274658203125, 71.924101642812531, 0.0 ], [ -0.00274658203125, 71.924527737976959, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1701, "task_x": 131070, "task_y": 54400, "task_z": 18, "center_y": 71.9106746731415, "area_in_sqm": 2265.3841165304202, "perimeter_in_m": 190.38421596152801, "length_x": 47.610969795325602, "length_y": 47.612053860948599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.910887876115268, 0.0 ], [ -0.001373291015625, 71.910887876115268, 0.0 ], [ -0.001373291015625, 71.910461470167661, 0.0 ], [ -0.00274658203125, 71.910461470167661, 0.0 ], [ -0.00274658203125, 71.910887876115268, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1702, "task_x": 131070, "task_y": 54432, "task_z": 18, "center_y": 71.897024707587306, "area_in_sqm": 2268.68539440632, "perimeter_in_m": 190.52288616080401, "length_x": 47.645670816388801, "length_y": 47.646755586646101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.897238066053916, 0.0 ], [ -0.001373291015625, 71.897238066053916, 0.0 ], [ -0.001373291015625, 71.896811349120668, 0.0 ], [ -0.00274658203125, 71.896811349120668, 0.0 ], [ -0.00274658203125, 71.897238066053916, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1703, "task_x": 131070, "task_y": 54464, "task_z": 18, "center_y": 71.883364787251793, "area_in_sqm": 2271.9912190437299, "perimeter_in_m": 190.66164628574501, "length_x": 47.6803943898475, "length_y": 47.681479865003503 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.883578301312468, 0.0 ], [ -0.001373291015625, 71.883578301312468, 0.0 ], [ -0.001373291015625, 71.883151273191018, 0.0 ], [ -0.00274658203125, 71.883151273191018, 0.0 ], [ -0.00274658203125, 71.883578301312468, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1704, "task_x": 131070, "task_y": 54496, "task_z": 18, "center_y": 71.869694905651897, "area_in_sqm": 2275.3015961647002, "perimeter_in_m": 190.80049636854301, "length_x": 47.715140524154499, "length_y": 47.716226704473002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.869908575408033, 0.0 ], [ -0.001373291015625, 71.869908575408033, 0.0 ], [ -0.001373291015625, 71.869481235895762, 0.0 ], [ -0.00274658203125, 71.869481235895762, 0.0 ], [ -0.00274658203125, 71.869908575408033, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1705, "task_x": 131070, "task_y": 54528, "task_z": 18, "center_y": 71.856015056302397, "area_in_sqm": 2278.6165311336499, "perimeter_in_m": 190.93943644067301, "length_x": 47.749909227750599, "length_y": 47.750996113495297 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.856228881855273, 0.0 ], [ -0.001373291015625, 71.856228881855273, 0.0 ], [ -0.001373291015625, 71.855801230749449, 0.0 ], [ -0.00274658203125, 71.855801230749449, 0.0 ], [ -0.00274658203125, 71.856228881855273, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1706, "task_x": 131070, "task_y": 54560, "task_z": 18, "center_y": 71.842325232715297, "area_in_sqm": 2281.9360293149898, "perimeter_in_m": 191.07846653924801, "length_x": 47.784700509064699, "length_y": 47.785788100498799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.842539214166351, 0.0 ], [ -0.001373291015625, 71.842539214166351, 0.0 ], [ -0.001373291015625, 71.842111251264214, 0.0 ], [ -0.00274658203125, 71.842111251264214, 0.0 ], [ -0.00274658203125, 71.842539214166351, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1707, "task_x": 131070, "task_y": 54592, "task_z": 18, "center_y": 71.8286254284004, "area_in_sqm": 2285.2600960731502, "perimeter_in_m": 191.21758669426899, "length_x": 47.819514376513503, "length_y": 47.8206026738997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.828839565851027, 0.0 ], [ -0.001373291015625, 71.828839565851027, 0.0 ], [ -0.001373291015625, 71.828411290949703, 0.0 ], [ -0.00274658203125, 71.828411290949703, 0.0 ], [ -0.00274658203125, 71.828839565851027, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1708, "task_x": 131070, "task_y": 54624, "task_z": 18, "center_y": 71.814915636864896, "area_in_sqm": 2288.5887371301701, "perimeter_in_m": 191.35679693714201, "length_x": 47.854350838501702, "length_y": 47.855439842102598 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.815129930416589, 0.0 ], [ -0.001373291015625, 71.815129930416589, 0.0 ], [ -0.001373291015625, 71.814701343313146, 0.0 ], [ -0.00274658203125, 71.814701343313146, 0.0 ], [ -0.00274658203125, 71.815129930416589, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1709, "task_x": 131070, "task_y": 54656, "task_z": 18, "center_y": 71.801195851613599, "area_in_sqm": 2291.9219574928302, "perimeter_in_m": 191.496097309139, "length_x": 47.889209903422, "length_y": 47.8902996134997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.801410301367852, 0.0 ], [ -0.001373291015625, 71.801410301367852, 0.0 ], [ -0.001373291015625, 71.800981401859275, 0.0 ], [ -0.00274658203125, 71.800981401859275, 0.0 ], [ -0.00274658203125, 71.801410301367852, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1710, "task_x": 131070, "task_y": 54688, "task_z": 18, "center_y": 71.787466066148795, "area_in_sqm": 2295.25976371765, "perimeter_in_m": 191.635487833121, "length_x": 47.9240915796547, "length_y": 47.925181996470798 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.787680672207244, 0.0 ], [ -0.001373291015625, 71.787680672207244, 0.0 ], [ -0.001373291015625, 71.787251460090445, 0.0 ], [ -0.00274658203125, 71.787251460090445, 0.0 ], [ -0.00274658203125, 71.787680672207244, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1711, "task_x": 131070, "task_y": 54720, "task_z": 18, "center_y": 71.773726273970595, "area_in_sqm": 2298.60216069222, "perimeter_in_m": 191.774968549606, "length_x": 47.9589958755681, "length_y": 47.960086999383797 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.773941036434707, 0.0 ], [ -0.001373291015625, 71.773941036434707, 0.0 ], [ -0.001373291015625, 71.773511511506513, 0.0 ], [ -0.00274658203125, 71.773511511506513, 0.0 ], [ -0.00274658203125, 71.773941036434707, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1712, "task_x": 131070, "task_y": 54752, "task_z": 18, "center_y": 71.759976468576397, "area_in_sqm": 2301.9491529464699, "perimeter_in_m": 191.914539483526, "length_x": 47.993922799518003, "length_y": 47.995014630594397 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.760191387547749, 0.0 ], [ -0.001373291015625, 71.760191387547749, 0.0 ], [ -0.001373291015625, 71.759761549604946, 0.0 ], [ -0.00274658203125, 71.759761549604946, 0.0 ], [ -0.00274658203125, 71.760191387547749, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1713, "task_x": 131070, "task_y": 54784, "task_z": 18, "center_y": 71.746216643461096, "area_in_sqm": 2305.3007478713998, "perimeter_in_m": 192.05420067465101, "length_x": 48.028872359848002, "length_y": 48.029964898445598 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.746431719041482, 0.0 ], [ -0.001373291015625, 71.746431719041482, 0.0 ], [ -0.001373291015625, 71.746001567880725, 0.0 ], [ -0.00274658203125, 71.746001567880725, 0.0 ], [ -0.00274658203125, 71.746431719041482, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1714, "task_x": 131070, "task_y": 54816, "task_z": 18, "center_y": 71.7324467921175, "area_in_sqm": 2308.6569494009, "perimeter_in_m": 192.19395215210301, "length_x": 48.0638445648896, "length_y": 48.0649378112685 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.73266202440854, 0.0 ], [ -0.001373291015625, 71.73266202440854, 0.0 ], [ -0.001373291015625, 71.732231559826459, 0.0 ], [ -0.00274658203125, 71.732231559826459, 0.0 ], [ -0.00274658203125, 71.73266202440854, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1715, "task_x": 131070, "task_y": 54848, "task_z": 18, "center_y": 71.718666908035701, "area_in_sqm": 2312.0177645683302, "perimeter_in_m": 192.33379395063801, "length_x": 48.098839422961397, "length_y": 48.099933377381397 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.718882297139174, 0.0 ], [ -0.001373291015625, 71.718882297139174, 0.0 ], [ -0.001373291015625, 71.71845151893227, 0.0 ], [ -0.00274658203125, 71.71845151893227, 0.0 ], [ -0.00274658203125, 71.718882297139174, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1716, "task_x": 131070, "task_y": 54880, "task_z": 18, "center_y": 71.704876984703603, "area_in_sqm": 2315.3831974268001, "perimeter_in_m": 192.47372610854001, "length_x": 48.133856942369903, "length_y": 48.1349516050904 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.705092530721188, 0.0 ], [ -0.001373291015625, 71.705092530721188, 0.0 ], [ -0.001373291015625, 71.704661438685932, 0.0 ], [ -0.00274658203125, 71.704661438685932, 0.0 ], [ -0.00274658203125, 71.705092530721188, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1717, "task_x": 131070, "task_y": 54912, "task_z": 18, "center_y": 71.691077015606396, "area_in_sqm": 2318.7532540559801, "perimeter_in_m": 192.61374864989301, "length_x": 48.168897131409103, "length_y": 48.169992502689098 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.691292718639971, 0.0 ], [ -0.001373291015625, 71.691292718639971, 0.0 ], [ -0.001373291015625, 71.690861312572736, 0.0 ], [ -0.00274658203125, 71.690861312572736, 0.0 ], [ -0.00274658203125, 71.691292718639971, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1718, "task_x": 131070, "task_y": 54944, "task_z": 18, "center_y": 71.677266994226997, "area_in_sqm": 2322.12794029713, "perimeter_in_m": 192.753861605851, "length_x": 48.203959998360297, "length_y": 48.205056078458298 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.677482854378496, 0.0 ], [ -0.001373291015625, 71.677482854378496, 0.0 ], [ -0.001373291015625, 71.677051134075597, 0.0 ], [ -0.00274658203125, 71.677051134075597, 0.0 ], [ -0.00274658203125, 71.677482854378496, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1719, "task_x": 131070, "task_y": 54976, "task_z": 18, "center_y": 71.663446914046105, "area_in_sqm": 2325.5072615146601, "perimeter_in_m": 192.894065013899, "length_x": 48.239045551492303, "length_y": 48.240142340666601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.663662931417321, 0.0 ], [ -0.001373291015625, 71.663662931417321, 0.0 ], [ -0.001373291015625, 71.663230896674975, 0.0 ], [ -0.00274658203125, 71.663230896674975, 0.0 ], [ -0.00274658203125, 71.663662931417321, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1720, "task_x": 131070, "task_y": 55008, "task_z": 18, "center_y": 71.649616768541804, "area_in_sqm": 2328.8912227153801, "perimeter_in_m": 193.034358909384, "length_x": 48.274153799061402, "length_y": 48.275251297569802 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.649832943234586, 0.0 ], [ -0.001373291015625, 71.649832943234586, 0.0 ], [ -0.001373291015625, 71.649400593848952, 0.0 ], [ -0.00274658203125, 71.649400593848952, 0.0 ], [ -0.00274658203125, 71.649832943234586, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1721, "task_x": 131070, "task_y": 55040, "task_z": 18, "center_y": 71.635776551189693, "area_in_sqm": 2332.2798299789401, "perimeter_in_m": 193.17474331275099, "length_x": 48.309284749310898, "length_y": 48.310382957410802 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.635992883306074, 0.0 ], [ -0.001373291015625, 71.635992883306074, 0.0 ], [ -0.001373291015625, 71.635560219073227, 0.0 ], [ -0.00274658203125, 71.635560219073227, 0.0 ], [ -0.00274658203125, 71.635992883306074, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1722, "task_x": 131070, "task_y": 55072, "task_z": 18, "center_y": 71.621926255463094, "area_in_sqm": 2335.6730887889898, "perimeter_in_m": 193.31521826637299, "length_x": 48.344438410471902, "length_y": 48.3455373284202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.622142745105094, 0.0 ], [ -0.001373291015625, 71.622142745105094, 0.0 ], [ -0.001373291015625, 71.621709765821052, 0.0 ], [ -0.00274658203125, 71.621709765821052, 0.0 ], [ -0.00274658203125, 71.622142745105094, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1723, "task_x": 131070, "task_y": 55104, "task_z": 18, "center_y": 71.608065874833002, "area_in_sqm": 2339.0710047483399, "perimeter_in_m": 193.455783803386, "length_x": 48.379614790762098, "length_y": 48.380714418815401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.608282522102627, 0.0 ], [ -0.001373291015625, 71.608282522102627, 0.0 ], [ -0.001373291015625, 71.607849227563307, 0.0 ], [ -0.00274658203125, 71.607849227563307, 0.0 ], [ -0.00274658203125, 71.608282522102627, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1724, "task_x": 131070, "task_y": 55136, "task_z": 18, "center_y": 71.594195402767795, "area_in_sqm": 2342.4735829830202, "perimeter_in_m": 193.59643995124699, "length_x": 48.414813898386797, "length_y": 48.415914236801498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.594412207767206, 0.0 ], [ -0.001373291015625, 71.594412207767206, 0.0 ], [ -0.001373291015625, 71.593978597768469, 0.0 ], [ -0.00274658203125, 71.593978597768469, 0.0 ], [ -0.00274658203125, 71.594412207767206, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1725, "task_x": 131070, "task_y": 55168, "task_z": 18, "center_y": 71.580314832733805, "area_in_sqm": 2345.8808296918901, "perimeter_in_m": 193.737186739496, "length_x": 48.4500357415385, "length_y": 48.451136790570096 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.580531795565008, 0.0 ], [ -0.001373291015625, 71.580531795565008, 0.0 ], [ -0.001373291015625, 71.580097869902616, 0.0 ], [ -0.00274658203125, 71.580097869902616, 0.0 ], [ -0.00274658203125, 71.580531795565008, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1726, "task_x": 131070, "task_y": 55200, "task_z": 18, "center_y": 71.566424158194593, "area_in_sqm": 2349.2927505970001, "perimeter_in_m": 193.878024208282, "length_x": 48.485280328396399, "length_y": 48.486382088300502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.566641278959793, 0.0 ], [ -0.001373291015625, 71.566641278959793, 0.0 ], [ -0.001373291015625, 71.566207037429464, 0.0 ], [ -0.00274658203125, 71.566207037429464, 0.0 ], [ -0.00274658203125, 71.566641278959793, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1727, "task_x": 131070, "task_y": 55232, "task_z": 18, "center_y": 71.552523372611603, "area_in_sqm": 2352.7093501090999, "perimeter_in_m": 194.018952390637, "length_x": 48.520547667127097, "length_y": 48.521650138158797 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.552740651412975, 0.0 ], [ -0.001373291015625, 71.552740651412975, 0.0 ], [ -0.001373291015625, 71.55230609381033, 0.0 ], [ -0.00274658203125, 71.55230609381033, 0.0 ], [ -0.00274658203125, 71.552740651412975, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1728, "task_x": 131070, "task_y": 55264, "task_z": 18, "center_y": 71.538612469443805, "area_in_sqm": 2356.1306345462799, "perimeter_in_m": 194.15997130470001, "length_x": 48.555837765884199, "length_y": 48.5569409482978 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.53882990638354, 0.0 ], [ -0.001373291015625, 71.53882990638354, 0.0 ], [ -0.001373291015625, 71.538395032504155, 0.0 ], [ -0.00274658203125, 71.538395032504155, 0.0 ], [ -0.00274658203125, 71.53882990638354, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1729, "task_x": 131070, "task_y": 55296, "task_z": 18, "center_y": 71.524691442147798, "area_in_sqm": 2359.5566097497899, "perimeter_in_m": 194.30108100186399, "length_x": 48.591150632807903, "length_y": 48.592254526857801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.524909037328172, 0.0 ], [ -0.001373291015625, 71.524909037328172, 0.0 ], [ -0.001373291015625, 71.524473846967496, 0.0 ], [ -0.00274658203125, 71.524473846967496, 0.0 ], [ -0.00274658203125, 71.524909037328172, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1730, "task_x": 131070, "task_y": 55328, "task_z": 18, "center_y": 71.510760284177806, "area_in_sqm": 2362.9872807264301, "perimeter_in_m": 194.44228149879899, "length_x": 48.626486276025702, "length_y": 48.627590881965702 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.510978037701079, 0.0 ], [ -0.001373291015625, 71.510978037701079, 0.0 ], [ -0.001373291015625, 71.510542530654547, 0.0 ], [ -0.00274658203125, 71.510542530654547, 0.0 ], [ -0.00274658203125, 71.510978037701079, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1731, "task_x": 131070, "task_y": 55360, "task_z": 18, "center_y": 71.496818988985694, "area_in_sqm": 2366.4226534366599, "perimeter_in_m": 194.583572831271, "length_x": 48.661844703651902, "length_y": 48.662950021735199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.497036900954186, 0.0 ], [ -0.001373291015625, 71.497036900954186, 0.0 ], [ -0.001373291015625, 71.496601077017118, 0.0 ], [ -0.00274658203125, 71.496601077017118, 0.0 ], [ -0.00274658203125, 71.497036900954186, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1732, "task_x": 131070, "task_y": 55392, "task_z": 18, "center_y": 71.482867550020899, "area_in_sqm": 2369.8627332449, "perimeter_in_m": 194.724955032884, "length_x": 48.6972259237873, "length_y": 48.698331954266997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.483085620537025, 0.0 ], [ -0.001373291015625, 71.483085620537025, 0.0 ], [ -0.001373291015625, 71.482649479504687, 0.0 ], [ -0.00274658203125, 71.482649479504687, 0.0 ], [ -0.00274658203125, 71.483085620537025, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1733, "task_x": 131070, "task_y": 55424, "task_z": 18, "center_y": 71.468905960730496, "area_in_sqm": 2373.3075262308098, "perimeter_in_m": 194.86642813368101, "length_x": 48.7326299445199, "length_y": 48.733736687648403 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.46912418989676, 0.0 ], [ -0.001373291015625, 71.46912418989676, 0.0 ], [ -0.001373291015625, 71.468687731564344, 0.0 ], [ -0.00274658203125, 71.468687731564344, 0.0 ], [ -0.00274658203125, 71.46912418989676, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1734, "task_x": 131070, "task_y": 55456, "task_z": 18, "center_y": 71.454934214559501, "area_in_sqm": 2376.7570371627799, "perimeter_in_m": 195.007992168637, "length_x": 48.768056773924002, "length_y": 48.769164229953397 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.455152602478222, 0.0 ], [ -0.001373291015625, 71.455152602478222, 0.0 ], [ -0.001373291015625, 71.454715826640822, 0.0 ], [ -0.00274658203125, 71.454715826640822, 0.0 ], [ -0.00274658203125, 71.455152602478222, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1735, "task_x": 131070, "task_y": 55488, "task_z": 18, "center_y": 71.440952304950201, "area_in_sqm": 2380.2112720012701, "perimeter_in_m": 195.149647171987, "length_x": 48.803506420060998, "length_y": 48.804614589243101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.441170851723825, 0.0 ], [ -0.001373291015625, 71.441170851723825, 0.0 ], [ -0.001373291015625, 71.440733758176506, 0.0 ], [ -0.00274658203125, 71.440733758176506, 0.0 ], [ -0.00274658203125, 71.441170851723825, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1736, "task_x": 131070, "task_y": 55520, "task_z": 18, "center_y": 71.426960225342597, "area_in_sqm": 2383.6702367067301, "perimeter_in_m": 195.29139315599201, "length_x": 48.838978890978701, "length_y": 48.840087773564697 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.427178931073712, 0.0 ], [ -0.001373291015625, 71.427178931073712, 0.0 ], [ -0.001373291015625, 71.426741519611426, 0.0 ], [ -0.00274658203125, 71.426741519611426, 0.0 ], [ -0.00274658203125, 71.427178931073712, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1737, "task_x": 131070, "task_y": 55552, "task_z": 18, "center_y": 71.412957969174499, "area_in_sqm": 2387.1339365243898, "perimeter_in_m": 195.433230178201, "length_x": 48.874474194711297, "length_y": 48.875583790952 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.41317683396565, 0.0 ], [ -0.001373291015625, 71.41317683396565, 0.0 ], [ -0.001373291015625, 71.412739104383277, 0.0 ], [ -0.00274658203125, 71.412739104383277, 0.0 ], [ -0.00274658203125, 71.41317683396565, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1738, "task_x": 131070, "task_y": 55584, "task_z": 18, "center_y": 71.398945529881203, "area_in_sqm": 2390.6023769378698, "perimeter_in_m": 195.57515825789901, "length_x": 48.909992339279903, "length_y": 48.9111026494258 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.399164553835035, 0.0 ], [ -0.001373291015625, 71.399164553835035, 0.0 ], [ -0.001373291015625, 71.398726505927414, 0.0 ], [ -0.00274658203125, 71.398726505927414, 0.0 ], [ -0.00274658203125, 71.399164553835035, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1739, "task_x": 131070, "task_y": 55616, "task_z": 18, "center_y": 71.384922900895901, "area_in_sqm": 2394.07556438446, "perimeter_in_m": 195.717177427791, "length_x": 48.945533332691703, "length_y": 48.946644356992898 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.38514208411496, 0.0 ], [ -0.001373291015625, 71.38514208411496, 0.0 ], [ -0.001373291015625, 71.384703717676814, 0.0 ], [ -0.00274658203125, 71.384703717676814, 0.0 ], [ -0.00274658203125, 71.38514208411496, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1740, "task_x": 131070, "task_y": 55648, "task_z": 18, "center_y": 71.3708900756492, "area_in_sqm": 2397.5535029172902, "perimeter_in_m": 195.85928771349501, "length_x": 48.9810971829408, "length_y": 48.982208921646802 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.371109418236159, 0.0 ], [ -0.001373291015625, 71.371109418236159, 0.0 ], [ -0.001373291015625, 71.370670733062184, 0.0 ], [ -0.00274658203125, 71.370670733062184, 0.0 ], [ -0.00274658203125, 71.371109418236159, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1741, "task_x": 131070, "task_y": 55680, "task_z": 18, "center_y": 71.356847047569502, "area_in_sqm": 2401.03619992733, "perimeter_in_m": 196.00148915897799, "length_x": 49.016683898007102, "length_y": 49.017796351367203 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.357066549627064, 0.0 ], [ -0.001373291015625, 71.357066549627064, 0.0 ], [ -0.001373291015625, 71.356627545511842, 0.0 ], [ -0.00274658203125, 71.356627545511842, 0.0 ], [ -0.00274658203125, 71.357066549627064, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1742, "task_x": 131070, "task_y": 55712, "task_z": 18, "center_y": 71.342793810082796, "area_in_sqm": 2404.5236597061198, "perimeter_in_m": 196.14378178201301, "length_x": 49.052293485857497, "length_y": 49.053406654120202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.343013471713732, 0.0 ], [ -0.001373291015625, 71.343013471713732, 0.0 ], [ -0.001373291015625, 71.342574148451817, 0.0 ], [ -0.00274658203125, 71.342574148451817, 0.0 ], [ -0.00274658203125, 71.343013471713732, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1743, "task_x": 131070, "task_y": 55744, "task_z": 18, "center_y": 71.328730356612894, "area_in_sqm": 2408.0158886909499, "perimeter_in_m": 196.286165616613, "length_x": 49.0879259544446, "length_y": 49.089039837858301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.328950177919964, 0.0 ], [ -0.001373291015625, 71.328950177919964, 0.0 ], [ -0.001373291015625, 71.328510535305782, 0.0 ], [ -0.00274658203125, 71.328510535305782, 0.0 ], [ -0.00274658203125, 71.328950177919964, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1744, "task_x": 131070, "task_y": 55776, "task_z": 18, "center_y": 71.314656680581194, "area_in_sqm": 2411.51289200783, "perimeter_in_m": 196.428640705258, "length_x": 49.123581311707603, "length_y": 49.124695910520202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.314876661667171, 0.0 ], [ -0.001373291015625, 71.314876661667171, 0.0 ], [ -0.001373291015625, 71.314436699495133, 0.0 ], [ -0.00274658203125, 71.314436699495133, 0.0 ], [ -0.00274658203125, 71.314876661667171, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1745, "task_x": 131070, "task_y": 55808, "task_z": 18, "center_y": 71.300572775406707, "area_in_sqm": 2415.01467597485, "perimeter_in_m": 196.57120707482801, "length_x": 49.159259565571702, "length_y": 49.160374880030702 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.300792916374519, 0.0 ], [ -0.001373291015625, 71.300792916374519, 0.0 ], [ -0.001373291015625, 71.300352634438894, 0.0 ], [ -0.00274658203125, 71.300352634438894, 0.0 ], [ -0.00274658203125, 71.300792916374519, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1746, "task_x": 131070, "task_y": 55840, "task_z": 18, "center_y": 71.286478634506295, "area_in_sqm": 2418.5212454795801, "perimeter_in_m": 196.713864744392, "length_x": 49.194960723948498, "length_y": 49.196076754300798 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.286698935458773, 0.0 ], [ -0.001373291015625, 71.286698935458773, 0.0 ], [ -0.001373291015625, 71.286258333553832, 0.0 ], [ -0.00274658203125, 71.286258333553832, 0.0 ], [ -0.00274658203125, 71.286698935458773, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1747, "task_x": 131070, "task_y": 55872, "task_z": 18, "center_y": 71.272374251294394, "area_in_sqm": 2422.0326063633001, "perimeter_in_m": 196.856613748559, "length_x": 49.230684794735403, "length_y": 49.231801541227597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.272594712334467, 0.0 ], [ -0.001373291015625, 71.272594712334467, 0.0 ], [ -0.001373291015625, 71.272153790254393, 0.0 ], [ -0.00274658203125, 71.272153790254393, 0.0 ], [ -0.00274658203125, 71.272594712334467, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1748, "task_x": 131070, "task_y": 55904, "task_z": 18, "center_y": 71.258259619183207, "area_in_sqm": 2425.54876482487, "perimeter_in_m": 196.999454134654, "length_x": 49.266431785815897, "length_y": 49.267549248694301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.258480240413832, 0.0 ], [ -0.001373291015625, 71.258480240413832, 0.0 ], [ -0.001373291015625, 71.258038997952667, 0.0 ], [ -0.00274658203125, 71.258038997952667, 0.0 ], [ -0.00274658203125, 71.258480240413832, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1749, "task_x": 131070, "task_y": 55936, "task_z": 18, "center_y": 71.244134731582605, "area_in_sqm": 2429.0697253942499, "perimeter_in_m": 197.142385915989, "length_x": 49.302201705059801, "length_y": 49.303319884569902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.244355513106726, 0.0 ], [ -0.001373291015625, 71.244355513106726, 0.0 ], [ -0.001373291015625, 71.243913950058527, 0.0 ], [ -0.00274658203125, 71.243913950058527, 0.0 ], [ -0.00274658203125, 71.244355513106726, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1750, "task_x": 131070, "task_y": 55968, "task_z": 18, "center_y": 71.229999581900103, "area_in_sqm": 2432.5954948663698, "perimeter_in_m": 197.28540912285101, "length_x": 49.3379945603224, "length_y": 49.339113456709399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.230220523820776, 0.0 ], [ -0.001373291015625, 71.230220523820776, 0.0 ], [ -0.001373291015625, 71.2297786399795, 0.0 ], [ -0.00274658203125, 71.2297786399795, 0.0 ], [ -0.00274658203125, 71.230220523820776, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1751, "task_x": 131070, "task_y": 56000, "task_z": 18, "center_y": 71.215854163541096, "area_in_sqm": 2436.1260782480199, "perimeter_in_m": 197.42852379681401, "length_x": 49.3738103594454, "length_y": 49.374929972954298 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.216075265961308, 0.0 ], [ -0.001373291015625, 71.216075265961308, 0.0 ], [ -0.001373291015625, 71.215633061120812, 0.0 ], [ -0.00274658203125, 71.215633061120812, 0.0 ], [ -0.00274658203125, 71.216075265961308, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1752, "task_x": 131070, "task_y": 56032, "task_z": 18, "center_y": 71.201698469908393, "area_in_sqm": 2439.6614816188799, "perimeter_in_m": 197.57172997021601, "length_x": 49.409649110255899, "length_y": 49.410769441131002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.201919732931316, 0.0 ], [ -0.001373291015625, 71.201919732931316, 0.0 ], [ -0.001373291015625, 71.201477206885428, 0.0 ], [ -0.00274658203125, 71.201477206885428, 0.0 ], [ -0.00274658203125, 71.201919732931316, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1753, "task_x": 131070, "task_y": 56064, "task_z": 18, "center_y": 71.187532494402802, "area_in_sqm": 2443.2017104625702, "perimeter_in_m": 197.715027664758, "length_x": 49.445510820566902, "length_y": 49.446631869052197 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.187753918131591, 0.0 ], [ -0.001373291015625, 71.187753918131591, 0.0 ], [ -0.001373291015625, 71.187311070674028, 0.0 ], [ -0.00274658203125, 71.187311070674028, 0.0 ], [ -0.00274658203125, 71.187753918131591, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1754, "task_x": 131070, "task_y": 56096, "task_z": 18, "center_y": 71.173356230422797, "area_in_sqm": 2446.7467701435098, "perimeter_in_m": 197.85841691201401, "length_x": 49.481395498177498, "length_y": 49.482517264516403 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.173577814960566, 0.0 ], [ -0.001373291015625, 71.173577814960566, 0.0 ], [ -0.001373291015625, 71.173134645885, 0.0 ], [ -0.00274658203125, 71.173134645885, 0.0 ], [ -0.00274658203125, 71.173577814960566, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1755, "task_x": 131070, "task_y": 56128, "task_z": 18, "center_y": 71.159169671364396, "area_in_sqm": 2450.29666662216, "perimeter_in_m": 198.001897740711, "length_x": 49.517303150872202, "length_y": 49.5184256353077 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.159391416814415, 0.0 ], [ -0.001373291015625, 71.159391416814415, 0.0 ], [ -0.001373291015625, 71.158947925914461, 0.0 ], [ -0.00274658203125, 71.158947925914461, 0.0 ], [ -0.00274658203125, 71.159391416814415, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1756, "task_x": 131070, "task_y": 56160, "task_z": 18, "center_y": 71.144972810621695, "area_in_sqm": 2453.8514060974098, "perimeter_in_m": 198.14547019439101, "length_x": 49.553233786421004, "length_y": 49.554356989195803 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.145194717087094, 0.0 ], [ -0.001373291015625, 71.145194717087094, 0.0 ], [ -0.001373291015625, 71.14475090415624, 0.0 ], [ -0.00274658203125, 71.14475090415624, 0.0 ], [ -0.00274658203125, 71.145194717087094, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1757, "task_x": 131070, "task_y": 56192, "task_z": 18, "center_y": 71.130765641586095, "area_in_sqm": 2457.4109930992099, "perimeter_in_m": 198.28913428544601, "length_x": 49.589187412580003, "length_y": 49.5903113339361 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.130987709170213, 0.0 ], [ -0.001373291015625, 71.130987709170213, 0.0 ], [ -0.001373291015625, 71.130543574001933, 0.0 ], [ -0.00274658203125, 71.130543574001933, 0.0 ], [ -0.00274658203125, 71.130987709170213, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1758, "task_x": 131070, "task_y": 56224, "task_z": 18, "center_y": 71.116548157647003, "area_in_sqm": 2460.9754346609102, "perimeter_in_m": 198.43289005877301, "length_x": 49.6251640370904, "length_y": 49.626288677269599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.116770386453155, 0.0 ], [ -0.001373291015625, 71.116770386453155, 0.0 ], [ -0.001373291015625, 71.116325928840837, 0.0 ], [ -0.00274658203125, 71.116325928840837, 0.0 ], [ -0.00274658203125, 71.116770386453155, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1759, "task_x": 131070, "task_y": 56256, "task_z": 18, "center_y": 71.102320352191498, "area_in_sqm": 2464.5447350740401, "perimeter_in_m": 198.57673753307199, "length_x": 49.661163667679197, "length_y": 49.6622890269227 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.102542742323067, 0.0 ], [ -0.001373291015625, 71.102542742323067, 0.0 ], [ -0.001373291015625, 71.10209796206, 0.0 ], [ -0.00274658203125, 71.10209796206, 0.0 ], [ -0.00274658203125, 71.102542742323067, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1760, "task_x": 131070, "task_y": 56288, "task_z": 18, "center_y": 71.088082218604498, "area_in_sqm": 2468.1189008951201, "perimeter_in_m": 198.72067674398599, "length_x": 49.697186312058598, "length_y": 49.6983123906072 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.088304770164797, 0.0 ], [ -0.001373291015625, 71.088304770164797, 0.0 ], [ -0.001373291015625, 71.087859667044242, 0.0 ], [ -0.00274658203125, 71.087859667044242, 0.0 ], [ -0.00274658203125, 71.088304770164797, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1761, "task_x": 131070, "task_y": 56320, "task_z": 18, "center_y": 71.073833750268506, "area_in_sqm": 2471.6979379653899, "perimeter_in_m": 198.86470772431201, "length_x": 49.733231977926501, "length_y": 49.7343587760205 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.074056463360975, 0.0 ], [ -0.001373291015625, 71.074056463360975, 0.0 ], [ -0.001373291015625, 71.073611037176079, 0.0 ], [ -0.00274658203125, 71.073611037176079, 0.0 ], [ -0.00274658203125, 71.074056463360975, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1762, "task_x": 131070, "task_y": 56352, "task_z": 18, "center_y": 71.059574940563905, "area_in_sqm": 2475.2818516492798, "perimeter_in_m": 199.008830494763, "length_x": 49.769300672966096, "length_y": 49.770428190845202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.059797815291944, 0.0 ], [ -0.001373291015625, 71.059797815291944, 0.0 ], [ -0.001373291015625, 71.059352065835839, 0.0 ], [ -0.00274658203125, 71.059352065835839, 0.0 ], [ -0.00274658203125, 71.059797815291944, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1763, "task_x": 131070, "task_y": 56384, "task_z": 18, "center_y": 71.045305782868695, "area_in_sqm": 2478.8706475496301, "perimeter_in_m": 199.15304510435601, "length_x": 49.805392404845499, "length_y": 49.806520642749398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.045528819335843, 0.0 ], [ -0.001373291015625, 71.045528819335843, 0.0 ], [ -0.001373291015625, 71.045082746401533, 0.0 ], [ -0.00274658203125, 71.045082746401533, 0.0 ], [ -0.00274658203125, 71.045528819335843, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1764, "task_x": 131070, "task_y": 56416, "task_z": 18, "center_y": 71.031026270558797, "area_in_sqm": 2482.4643316268898, "perimeter_in_m": 199.29735156455101, "length_x": 49.841507181218802, "length_y": 49.842636139386201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.031249468868552, 0.0 ], [ -0.001373291015625, 71.031249468868552, 0.0 ], [ -0.001373291015625, 71.030803072249014, 0.0 ], [ -0.00274658203125, 71.030803072249014, 0.0 ], [ -0.00274658203125, 71.031249468868552, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1765, "task_x": 131070, "task_y": 56448, "task_z": 18, "center_y": 71.016736397007804, "area_in_sqm": 2486.06290972233, "perimeter_in_m": 199.44174991863599, "length_x": 49.877645009724503, "length_y": 49.878774688394003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.016959757263734, 0.0 ], [ -0.001373291015625, 71.016959757263734, 0.0 ], [ -0.001373291015625, 71.016513036751846, 0.0 ], [ -0.00274658203125, 71.016513036751846, 0.0 ], [ -0.00274658203125, 71.016959757263734, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1766, "task_x": 131070, "task_y": 56480, "task_z": 18, "center_y": 71.002436155587105, "area_in_sqm": 2489.6663867235202, "perimeter_in_m": 199.58624017447599, "length_x": 49.913805897986997, "length_y": 49.914936297396501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 71.00265967789278, 0.0 ], [ -0.001373291015625, 71.00265967789278, 0.0 ], [ -0.001373291015625, 71.002212633281374, 0.0 ], [ -0.00274658203125, 71.002212633281374, 0.0 ], [ -0.00274658203125, 71.00265967789278, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1767, "task_x": 131070, "task_y": 56512, "task_z": 18, "center_y": 70.988125539665802, "area_in_sqm": 2493.2747694253899, "perimeter_in_m": 199.73082239157, "length_x": 49.9499898536152, "length_y": 49.9511209740025 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.988349224124889, 0.0 ], [ -0.001373291015625, 70.988349224124889, 0.0 ], [ -0.001373291015625, 70.987901855206701, 0.0 ], [ -0.00274658203125, 70.987901855206701, 0.0 ], [ -0.00274658203125, 70.988349224124889, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1768, "task_x": 131070, "task_y": 56544, "task_z": 18, "center_y": 70.973804542610907, "area_in_sqm": 2496.8880630731601, "perimeter_in_m": 199.87549657135801, "length_x": 49.986196884203601, "length_y": 49.987328725805497 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.974028389327032, 0.0 ], [ -0.001373291015625, 70.974028389327032, 0.0 ], [ -0.001373291015625, 70.973580695894768, 0.0 ], [ -0.00274658203125, 70.973580695894768, 0.0 ], [ -0.00274658203125, 70.974028389327032, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1769, "task_x": 131070, "task_y": 56576, "task_z": 18, "center_y": 70.959473157787102, "area_in_sqm": 2500.5062732696501, "perimeter_in_m": 200.02026276832501, "length_x": 50.022426997331102, "length_y": 50.023559560384399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.959697166863975, 0.0 ], [ -0.001373291015625, 70.959697166863975, 0.0 ], [ -0.001373291015625, 70.959249148710228, 0.0 ], [ -0.00274658203125, 70.959249148710228, 0.0 ], [ -0.00274658203125, 70.959697166863975, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1770, "task_x": 131070, "task_y": 56608, "task_z": 18, "center_y": 70.945131378556894, "area_in_sqm": 2504.1294063329701, "perimeter_in_m": 200.16512100295699, "length_x": 50.0586802005622, "length_y": 50.059813485302897 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.945355550098228, 0.0 ], [ -0.001373291015625, 70.945355550098228, 0.0 ], [ -0.001373291015625, 70.944907207015532, 0.0 ], [ -0.00274658203125, 70.944907207015532, 0.0 ], [ -0.00274658203125, 70.945355550098228, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1771, "task_x": 131070, "task_y": 56640, "task_z": 18, "center_y": 70.930779198280504, "area_in_sqm": 2507.75746691227, "perimeter_in_m": 200.310071295706, "length_x": 50.0949565014458, "length_y": 50.096090508109597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.931003532390122, 0.0 ], [ -0.001373291015625, 70.931003532390122, 0.0 ], [ -0.001373291015625, 70.930554864170972, 0.0 ], [ -0.00274658203125, 70.930554864170972, 0.0 ], [ -0.00274658203125, 70.931003532390122, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1772, "task_x": 131070, "task_y": 56672, "task_z": 18, "center_y": 70.916416610316205, "area_in_sqm": 2511.3904618024799, "perimeter_in_m": 200.45511368681599, "length_x": 50.1312559075159, "length_y": 50.132390636338101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.916641107097774, 0.0 ], [ -0.001373291015625, 70.916641107097774, 0.0 ], [ -0.001373291015625, 70.916192113534578, 0.0 ], [ -0.00274658203125, 70.916192113534578, 0.0 ], [ -0.00274658203125, 70.916641107097774, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1773, "task_x": 131070, "task_y": 56704, "task_z": 18, "center_y": 70.902043608019696, "area_in_sqm": 2515.0283964872401, "perimeter_in_m": 200.600248196666, "length_x": 50.1675784262913, "length_y": 50.168713877506498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.902268267577114, 0.0 ], [ -0.001373291015625, 70.902268267577114, 0.0 ], [ -0.001373291015625, 70.901818948462193, 0.0 ], [ -0.00274658203125, 70.901818948462193, 0.0 ], [ -0.00274658203125, 70.902268267577114, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1774, "task_x": 131070, "task_y": 56736, "task_z": 18, "center_y": 70.887660184744703, "area_in_sqm": 2518.67127621174, "perimeter_in_m": 200.74547486403199, "length_x": 50.203924065275601, "length_y": 50.205060239117998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.887885007181836, 0.0 ], [ -0.001373291015625, 70.887885007181836, 0.0 ], [ -0.001373291015625, 70.887435362307485, 0.0 ], [ -0.00274658203125, 70.887435362307485, 0.0 ], [ -0.00274658203125, 70.887885007181836, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1775, "task_x": 131070, "task_y": 56768, "task_z": 18, "center_y": 70.873266333842693, "area_in_sqm": 2522.3191075324999, "perimeter_in_m": 200.89079371631701, "length_x": 50.240292831956801, "length_y": 50.2414297286603 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.873491319263508, 0.0 ], [ -0.001373291015625, 70.873491319263508, 0.0 ], [ -0.001373291015625, 70.873041348421893, 0.0 ], [ -0.00274658203125, 70.873041348421893, 0.0 ], [ -0.00274658203125, 70.873491319263508, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1776, "task_x": 131070, "task_y": 56800, "task_z": 18, "center_y": 70.858862048663099, "area_in_sqm": 2525.97189545631, "perimeter_in_m": 201.03620478088899, "length_x": 50.276684733807897, "length_y": 50.2778223536057 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.859087197171434, 0.0 ], [ -0.001373291015625, 70.859087197171434, 0.0 ], [ -0.001373291015625, 70.858636900154707, 0.0 ], [ -0.00274658203125, 70.858636900154707, 0.0 ], [ -0.00274658203125, 70.859087197171434, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1777, "task_x": 131070, "task_y": 56832, "task_z": 18, "center_y": 70.844447322552895, "area_in_sqm": 2529.6296465396899, "perimeter_in_m": 201.181708084398, "length_x": 50.3130997782864, "length_y": 50.314238121411201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.844672634252788, 0.0 ], [ -0.001373291015625, 70.844672634252788, 0.0 ], [ -0.001373291015625, 70.844222010853002, 0.0 ], [ -0.00274658203125, 70.844222010853002, 0.0 ], [ -0.00274658203125, 70.844672634252788, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1778, "task_x": 131070, "task_y": 56864, "task_z": 18, "center_y": 70.830022148857097, "area_in_sqm": 2533.2923656702001, "perimeter_in_m": 201.32730366547401, "length_x": 50.349537972834099, "length_y": 50.350677039518402 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.830247623852529, 0.0 ], [ -0.001373291015625, 70.830247623852529, 0.0 ], [ -0.001373291015625, 70.829796673861679, 0.0 ], [ -0.00274658203125, 70.829796673861679, 0.0 ], [ -0.00274658203125, 70.830247623852529, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1779, "task_x": 131070, "task_y": 56896, "task_z": 18, "center_y": 70.815586520918501, "area_in_sqm": 2536.9600592851598, "perimeter_in_m": 201.472991533704, "length_x": 50.385999324877801, "length_y": 50.3871391153533 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.815812159313467, 0.0 ], [ -0.001373291015625, 70.815812159313467, 0.0 ], [ -0.001373291015625, 70.815360882523493, 0.0 ], [ -0.00274658203125, 70.815360882523493, 0.0 ], [ -0.00274658203125, 70.815812159313467, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1780, "task_x": 131070, "task_y": 56928, "task_z": 18, "center_y": 70.801140432077602, "area_in_sqm": 2540.6327321529402, "perimeter_in_m": 201.618771736865, "length_x": 50.422483841828303, "length_y": 50.4236243563264 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.801366233976225, 0.0 ], [ -0.001373291015625, 70.801366233976225, 0.0 ], [ -0.001373291015625, 70.80091463017898, 0.0 ], [ -0.00274658203125, 70.80091463017898, 0.0 ], [ -0.00274658203125, 70.801366233976225, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1781, "task_x": 131070, "task_y": 56960, "task_z": 18, "center_y": 70.786683875672907, "area_in_sqm": 2544.3103917837102, "perimeter_in_m": 201.76464429580301, "length_x": 50.458991531080898, "length_y": 50.460132769832498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.786909841179266, 0.0 ], [ -0.001373291015625, 70.786909841179266, 0.0 ], [ -0.001373291015625, 70.786457910166547, 0.0 ], [ -0.00274658203125, 70.786457910166547, 0.0 ], [ -0.00274658203125, 70.786909841179266, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1782, "task_x": 131070, "task_y": 56992, "task_z": 18, "center_y": 70.772216845040703, "area_in_sqm": 2547.9930428266498, "perimeter_in_m": 201.910609244786, "length_x": 50.495522400015503, "length_y": 50.496664363250801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.772442974258894, 0.0 ], [ -0.001373291015625, 70.772442974258894, 0.0 ], [ -0.001373291015625, 70.771990715822412, 0.0 ], [ -0.00274658203125, 70.771990715822412, 0.0 ], [ -0.00274658203125, 70.772442974258894, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1783, "task_x": 131070, "task_y": 57024, "task_z": 18, "center_y": 70.757739333515005, "area_in_sqm": 2551.6806907653799, "perimeter_in_m": 202.05666660317701, "length_x": 50.532076455995799, "length_y": 50.533219143944798 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.757965626549236, 0.0 ], [ -0.001373291015625, 70.757965626549236, 0.0 ], [ -0.001373291015625, 70.75751304048066, 0.0 ], [ -0.00274658203125, 70.75751304048066, 0.0 ], [ -0.00274658203125, 70.757965626549236, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1784, "task_x": 131070, "task_y": 57056, "task_z": 18, "center_y": 70.743251334427697, "area_in_sqm": 2555.3733420372, "perimeter_in_m": 202.20281641225901, "length_x": 50.568653706370299, "length_y": 50.569797119262397 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.743477791382276, 0.0 ], [ -0.001373291015625, 70.743477791382276, 0.0 ], [ -0.001373291015625, 70.743024877473204, 0.0 ], [ -0.00274658203125, 70.743024877473204, 0.0 ], [ -0.00274658203125, 70.743477791382276, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1785, "task_x": 131070, "task_y": 57088, "task_z": 18, "center_y": 70.7287528411088, "area_in_sqm": 2559.07100236416, "perimeter_in_m": 202.349058686381, "length_x": 50.605254158471297, "length_y": 50.606398296535197 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.728979462087878, 0.0 ], [ -0.001373291015625, 70.728979462087878, 0.0 ], [ -0.001373291015625, 70.728526220129822, 0.0 ], [ -0.00274658203125, 70.728526220129822, 0.0 ], [ -0.00274658203125, 70.728979462087878, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1786, "task_x": 131070, "task_y": 57120, "task_z": 18, "center_y": 70.714243846885907, "area_in_sqm": 2562.77367782593, "perimeter_in_m": 202.49539347524899, "length_x": 50.641877819615203, "length_y": 50.643022683079501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.71447063199372, 0.0 ], [ -0.001373291015625, 70.71447063199372, 0.0 ], [ -0.001373291015625, 70.714017061778122, 0.0 ], [ -0.00274658203125, 70.714017061778122, 0.0 ], [ -0.00274658203125, 70.71447063199372, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1787, "task_x": 131070, "task_y": 57152, "task_z": 18, "center_y": 70.699724345084505, "area_in_sqm": 2566.4813731908798, "perimeter_in_m": 202.64182078111401, "length_x": 50.678524697102802, "length_y": 50.679670286195297 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.699951294425361, 0.0 ], [ -0.001373291015625, 70.699951294425361, 0.0 ], [ -0.001373291015625, 70.69949739574362, 0.0 ], [ -0.00274658203125, 70.69949739574362, 0.0 ], [ -0.00274658203125, 70.699951294425361, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1788, "task_x": 131070, "task_y": 57184, "task_z": 18, "center_y": 70.685194329027894, "area_in_sqm": 2570.1940946579002, "perimeter_in_m": 202.78834065149701, "length_x": 50.715194798218697, "length_y": 50.716341113166798 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.6854214427062, 0.0 ], [ -0.001373291015625, 70.6854214427062, 0.0 ], [ -0.001373291015625, 70.684967215349644, 0.0 ], [ -0.00274658203125, 70.684967215349644, 0.0 ], [ -0.00274658203125, 70.6854214427062, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1789, "task_x": 131070, "task_y": 57216, "task_z": 18, "center_y": 70.670653792037498, "area_in_sqm": 2573.9118489027001, "perimeter_in_m": 202.93495310345199, "length_x": 50.751888130231499, "length_y": 50.753035171262098 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.670881070157535, 0.0 ], [ -0.001373291015625, 70.670881070157535, 0.0 ], [ -0.001373291015625, 70.67042651391742, 0.0 ], [ -0.00274658203125, 70.67042651391742, 0.0 ], [ -0.00274658203125, 70.670881070157535, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1790, "task_x": 131070, "task_y": 57248, "task_z": 18, "center_y": 70.656102727432298, "area_in_sqm": 2577.63464069366, "perimeter_in_m": 203.08165817168299, "length_x": 50.788604700393797, "length_y": 50.789752467733202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.656330170098528, 0.0 ], [ -0.001373291015625, 70.656330170098528, 0.0 ], [ -0.001373291015625, 70.65587528476604, 0.0 ], [ -0.00274658203125, 70.65587528476604, 0.0 ], [ -0.00274658203125, 70.656330170098528, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1791, "task_x": 131070, "task_y": 57280, "task_z": 18, "center_y": 70.641541128529298, "area_in_sqm": 2581.3624764680899, "perimeter_in_m": 203.22845588804901, "length_x": 50.825344515942, "length_y": 50.826493009816097 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.641768735846213, 0.0 ], [ -0.001373291015625, 70.641768735846213, 0.0 ], [ -0.001373291015625, 70.641313521212481, 0.0 ], [ -0.00274658203125, 70.641313521212481, 0.0 ], [ -0.00274658203125, 70.641768735846213, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1792, "task_x": 131070, "task_y": 57312, "task_z": 18, "center_y": 70.626968988643597, "area_in_sqm": 2585.0953618287999, "perimeter_in_m": 203.375346272332, "length_x": 50.8621075840964, "length_y": 50.863256804730597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.62719676071552, 0.0 ], [ -0.001373291015625, 70.62719676071552, 0.0 ], [ -0.001373291015625, 70.626741216571588, 0.0 ], [ -0.00274658203125, 70.626741216571588, 0.0 ], [ -0.00274658203125, 70.62719676071552, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1793, "task_x": 131070, "task_y": 57344, "task_z": 18, "center_y": 70.612386301087696, "area_in_sqm": 2588.8333026170699, "perimeter_in_m": 203.52232935772801, "length_x": 50.898893912060799, "length_y": 50.900043859679997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.612614238019233, 0.0 ], [ -0.001373291015625, 70.612614238019233, 0.0 ], [ -0.001373291015625, 70.612158364156116, 0.0 ], [ -0.00274658203125, 70.612158364156116, 0.0 ], [ -0.00274658203125, 70.612614238019233, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1794, "task_x": 131070, "task_y": 57376, "task_z": 18, "center_y": 70.597793059172403, "area_in_sqm": 2592.5763043165198, "perimeter_in_m": 203.66940517245601, "length_x": 50.935703507023099, "length_y": 50.936854181851601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.598021161068075, 0.0 ], [ -0.001373291015625, 70.598021161068075, 0.0 ], [ -0.001373291015625, 70.597564957276688, 0.0 ], [ -0.00274658203125, 70.597564957276688, 0.0 ], [ -0.00274658203125, 70.598021161068075, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1795, "task_x": 131070, "task_y": 57408, "task_z": 18, "center_y": 70.583189256206197, "area_in_sqm": 2596.32437312603, "perimeter_in_m": 203.81657374043499, "length_x": 50.972536376154601, "length_y": 50.973687778416298 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.583417523170638, 0.0 ], [ -0.001373291015625, 70.583417523170638, 0.0 ], [ -0.001373291015625, 70.582960989241826, 0.0 ], [ -0.00274658203125, 70.582960989241826, 0.0 ], [ -0.00274658203125, 70.583417523170638, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1796, "task_x": 131070, "task_y": 57440, "task_z": 18, "center_y": 70.568574885495707, "area_in_sqm": 2600.0775152444799, "perimeter_in_m": 203.963835091943, "length_x": 51.009392526610398, "length_y": 51.010544656528502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.56880331763341, 0.0 ], [ -0.001373291015625, 70.56880331763341, 0.0 ], [ -0.001373291015625, 70.568346453357975, 0.0 ], [ -0.00274658203125, 70.568346453357975, 0.0 ], [ -0.00274658203125, 70.56880331763341, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1797, "task_x": 131070, "task_y": 57472, "task_z": 18, "center_y": 70.553949940345106, "area_in_sqm": 2603.8357354402501, "perimeter_in_m": 204.11118925862399, "length_x": 51.046271965528902, "length_y": 51.047424823326402 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.554178537760777, 0.0 ], [ -0.001373291015625, 70.554178537760777, 0.0 ], [ -0.001373291015625, 70.55372134292945, 0.0 ], [ -0.00274658203125, 70.55372134292945, 0.0 ], [ -0.00274658203125, 70.554178537760777, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1798, "task_x": 131070, "task_y": 57504, "task_z": 18, "center_y": 70.539314414056804, "area_in_sqm": 2607.5990409851102, "perimeter_in_m": 204.258636264317, "length_x": 51.083174700032203, "length_y": 51.084328285931299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.539543176855076, 0.0 ], [ -0.001373291015625, 70.539543176855076, 0.0 ], [ -0.001373291015625, 70.539085651258517, 0.0 ], [ -0.00274658203125, 70.539085651258517, 0.0 ], [ -0.00274658203125, 70.539543176855076, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1799, "task_x": 131070, "task_y": 57536, "task_z": 18, "center_y": 70.524668299930894, "area_in_sqm": 2611.3674364090002, "perimeter_in_m": 204.40617613352001, "length_x": 51.120100737225698, "length_y": 51.121255051448202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.524897228216517, 0.0 ], [ -0.001373291015625, 70.524897228216517, 0.0 ], [ -0.001373291015625, 70.524439371645343, 0.0 ], [ -0.00274658203125, 70.524439371645343, 0.0 ], [ -0.00274658203125, 70.524897228216517, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1800, "task_x": 131070, "task_y": 57568, "task_z": 18, "center_y": 70.510011591265595, "area_in_sqm": 2615.1409282684299, "perimeter_in_m": 204.553808902035, "length_x": 51.157050084198403, "length_y": 51.158205126965498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.510240685143259, 0.0 ], [ -0.001373291015625, 70.510240685143259, 0.0 ], [ -0.001373291015625, 70.509782497387974, 0.0 ], [ -0.00274658203125, 70.509782497387974, 0.0 ], [ -0.00274658203125, 70.510240685143259, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1801, "task_x": 131070, "task_y": 57600, "task_z": 18, "center_y": 70.495344281356907, "area_in_sqm": 2618.9195224046698, "perimeter_in_m": 204.70153459075399, "length_x": 51.194022748022299, "length_y": 51.195178519554801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.49557354093136, 0.0 ], [ -0.001373291015625, 70.49557354093136, 0.0 ], [ -0.001373291015625, 70.495115021782453, 0.0 ], [ -0.00274658203125, 70.495115021782453, 0.0 ], [ -0.00274658203125, 70.49557354093136, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1802, "task_x": 131070, "task_y": 57632, "task_z": 18, "center_y": 70.480666363498798, "area_in_sqm": 2622.7032240629201, "perimeter_in_m": 204.84935322974701, "length_x": 51.231018735753203, "length_y": 51.232175236271203 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.480895788874818, 0.0 ], [ -0.001373291015625, 70.480895788874818, 0.0 ], [ -0.001373291015625, 70.480436938122693, 0.0 ], [ -0.00274658203125, 70.480436938122693, 0.0 ], [ -0.00274658203125, 70.480895788874818, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1803, "task_x": 131070, "task_y": 57664, "task_z": 18, "center_y": 70.465977830983107, "area_in_sqm": 2626.49203968048, "perimeter_in_m": 204.997264850465, "length_x": 51.268038054429503, "length_y": 51.2691952841529 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.466207422265569, 0.0 ], [ -0.001373291015625, 70.466207422265569, 0.0 ], [ -0.001373291015625, 70.465748239700559, 0.0 ], [ -0.00274658203125, 70.465748239700559, 0.0 ], [ -0.00274658203125, 70.466207422265569, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1804, "task_x": 131070, "task_y": 57696, "task_z": 18, "center_y": 70.451278677099694, "area_in_sqm": 2630.2859750986099, "perimeter_in_m": 205.14526947228299, "length_x": 51.305080711073302, "length_y": 51.306238670221198 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.451508434393489, 0.0 ], [ -0.001373291015625, 70.451508434393489, 0.0 ], [ -0.001373291015625, 70.451048919805871, 0.0 ], [ -0.00274658203125, 70.451048919805871, 0.0 ], [ -0.00274658203125, 70.451508434393489, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1805, "task_x": 131070, "task_y": 57728, "task_z": 18, "center_y": 70.436568895136404, "area_in_sqm": 2634.0850358009302, "perimeter_in_m": 205.293367121627, "length_x": 51.342146712689697, "length_y": 51.343305401480499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.436798818546379, 0.0 ], [ -0.001373291015625, 70.436798818546379, 0.0 ], [ -0.001373291015625, 70.436338971726371, 0.0 ], [ -0.00274658203125, 70.436338971726371, 0.0 ], [ -0.00274658203125, 70.436798818546379, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1806, "task_x": 131070, "task_y": 57760, "task_z": 18, "center_y": 70.421848478378905, "area_in_sqm": 2637.88922810555, "perimeter_in_m": 205.441557845414, "length_x": 51.379236066266401, "length_y": 51.380395484918502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.422078568010022, 0.0 ], [ -0.001373291015625, 70.422078568010022, 0.0 ], [ -0.001373291015625, 70.421618388747746, 0.0 ], [ -0.00274658203125, 70.421618388747746, 0.0 ], [ -0.00274658203125, 70.422078568010022, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1807, "task_x": 131070, "task_y": 57792, "task_z": 18, "center_y": 70.407117420110893, "area_in_sqm": 2641.6985573768602, "perimeter_in_m": 205.589841645934, "length_x": 51.416348778774903, "length_y": 51.4175089275058 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.407347676068099, 0.0 ], [ -0.001373291015625, 70.407347676068099, 0.0 ], [ -0.001373291015625, 70.406887164153659, 0.0 ], [ -0.00274658203125, 70.406887164153659, 0.0 ], [ -0.00274658203125, 70.407347676068099, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1808, "task_x": 131070, "task_y": 57824, "task_z": 18, "center_y": 70.392375713614001, "area_in_sqm": 2645.5130301713898, "perimeter_in_m": 205.738218561541, "length_x": 51.453484857169201, "length_y": 51.454645736195801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.392606136002286, 0.0 ], [ -0.001373291015625, 70.392606136002286, 0.0 ], [ -0.001373291015625, 70.392145291225702, 0.0 ], [ -0.00274658203125, 70.392145291225702, 0.0 ], [ -0.00274658203125, 70.392606136002286, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1809, "task_x": 131070, "task_y": 57856, "task_z": 18, "center_y": 70.377623352167902, "area_in_sqm": 2649.3326519727698, "perimeter_in_m": 205.886688617815, "length_x": 51.490644308386003, "length_y": 51.4918059179249 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.377853941092241, 0.0 ], [ -0.001373291015625, 70.377853941092241, 0.0 ], [ -0.001373291015625, 70.377392763243478, 0.0 ], [ -0.00274658203125, 70.377392763243478, 0.0 ], [ -0.00274658203125, 70.377853941092241, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1810, "task_x": 131070, "task_y": 57888, "task_z": 18, "center_y": 70.362860329049994, "area_in_sqm": 2653.1574286222499, "perimeter_in_m": 206.035251847372, "length_x": 51.527827139345398, "length_y": 51.528989479612598 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.363091084615561, 0.0 ], [ -0.001373291015625, 70.363091084615561, 0.0 ], [ -0.001373291015625, 70.362629573484483, 0.0 ], [ -0.00274658203125, 70.362629573484483, 0.0 ], [ -0.00274658203125, 70.363091084615561, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1811, "task_x": 131070, "task_y": 57920, "task_z": 18, "center_y": 70.348086637535999, "area_in_sqm": 2656.9873659610698, "perimeter_in_m": 206.18390826227699, "length_x": 51.565033356949797, "length_y": 51.566196428160602 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.3483175598478, 0.0 ], [ -0.001373291015625, 70.3483175598478, 0.0 ], [ -0.001373291015625, 70.347855715224256, 0.0 ], [ -0.00274658203125, 70.347855715224256, 0.0 ], [ -0.00274658203125, 70.3483175598478, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1812, "task_x": 131070, "task_y": 57952, "task_z": 18, "center_y": 70.333302270899395, "area_in_sqm": 2660.8224700689302, "perimeter_in_m": 206.33265790923801, "length_x": 51.602262968084702, "length_y": 51.603426770454199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.333533360062503, 0.0 ], [ -0.001373291015625, 70.333533360062503, 0.0 ], [ -0.001373291015625, 70.333071181736258, 0.0 ], [ -0.00274658203125, 70.333071181736258, 0.0 ], [ -0.00274658203125, 70.333533360062503, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1813, "task_x": 131070, "task_y": 57984, "task_z": 18, "center_y": 70.318507222411597, "area_in_sqm": 2664.6627469062801, "perimeter_in_m": 206.48150080873299, "length_x": 51.639515979618103, "length_y": 51.6406805133606 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.31873847853123, 0.0 ], [ -0.001373291015625, 70.31873847853123, 0.0 ], [ -0.001373291015625, 70.318275966291964, 0.0 ], [ -0.00274658203125, 70.318275966291964, 0.0 ], [ -0.00274658203125, 70.31873847853123, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1814, "task_x": 131070, "task_y": 58016, "task_z": 18, "center_y": 70.303701485342103, "area_in_sqm": 2668.5082020759601, "perimeter_in_m": 206.63043697414301, "length_x": 51.6767923984007, "length_y": 51.677957663729799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.303932908523464, 0.0 ], [ -0.001373291015625, 70.303932908523464, 0.0 ], [ -0.001373291015625, 70.303470062160841, 0.0 ], [ -0.00274658203125, 70.303470062160841, 0.0 ], [ -0.00274658203125, 70.303932908523464, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1815, "task_x": 131070, "task_y": 58048, "task_z": 18, "center_y": 70.288885052958506, "area_in_sqm": 2672.3588410615898, "perimeter_in_m": 206.77946644073799, "length_x": 51.714092231265603, "length_y": 51.715258228394703 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.289116643306727, 0.0 ], [ -0.001373291015625, 70.289116643306727, 0.0 ], [ -0.001373291015625, 70.288653462610341, 0.0 ], [ -0.00274658203125, 70.288653462610341, 0.0 ], [ -0.00274658203125, 70.289116643306727, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1816, "task_x": 131070, "task_y": 58080, "task_z": 18, "center_y": 70.274057918526196, "area_in_sqm": 2676.2146714925798, "perimeter_in_m": 206.92858924234301, "length_x": 51.751415485028701, "length_y": 51.752582214170502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.274289676146537, 0.0 ], [ -0.001373291015625, 70.274289676146537, 0.0 ], [ -0.001373291015625, 70.27382616090587, 0.0 ], [ -0.00274658203125, 70.27382616090587, 0.0 ], [ -0.00274658203125, 70.274289676146537, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1817, "task_x": 131070, "task_y": 58112, "task_z": 18, "center_y": 70.259220075308605, "area_in_sqm": 2680.07569694519, "perimeter_in_m": 207.077805395052, "length_x": 51.788762166488098, "length_y": 51.789929627854796 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.259452000306382, 0.0 ], [ -0.001373291015625, 70.259452000306382, 0.0 ], [ -0.001373291015625, 70.258988150310898, 0.0 ], [ -0.00274658203125, 70.258988150310898, 0.0 ], [ -0.00274658203125, 70.259452000306382, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1818, "task_x": 131070, "task_y": 58144, "task_z": 18, "center_y": 70.244371516567298, "area_in_sqm": 2683.9419251680401, "perimeter_in_m": 207.227114935456, "length_x": 51.826132282424602, "length_y": 51.827300476227698 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.244603609047786, 0.0 ], [ -0.001373291015625, 70.244603609047786, 0.0 ], [ -0.001373291015625, 70.244139424086868, 0.0 ], [ -0.00274658203125, 70.244139424086868, 0.0 ], [ -0.00274658203125, 70.244603609047786, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1819, "task_x": 131070, "task_y": 58176, "task_z": 18, "center_y": 70.2295122355617, "area_in_sqm": 2687.8133610486998, "perimeter_in_m": 207.376517881697, "length_x": 51.863525839601003, "length_y": 51.864694766051699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.229744495630257, 0.0 ], [ -0.001373291015625, 70.229744495630257, 0.0 ], [ -0.001373291015625, 70.229279975493242, 0.0 ], [ -0.00274658203125, 70.229279975493242, 0.0 ], [ -0.00274658203125, 70.229744495630257, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1820, "task_x": 131070, "task_y": 58208, "task_z": 18, "center_y": 70.214642225549397, "area_in_sqm": 2691.69001126289, "perimeter_in_m": 207.52601425826001, "length_x": 51.900942844762596, "length_y": 51.902112504071297 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.214874653311355, 0.0 ], [ -0.001373291015625, 70.214874653311355, 0.0 ], [ -0.001373291015625, 70.214409797787511, 0.0 ], [ -0.00274658203125, 70.214409797787511, 0.0 ], [ -0.00274658203125, 70.214874653311355, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1821, "task_x": 131070, "task_y": 58240, "task_z": 18, "center_y": 70.199761479785906, "area_in_sqm": 2695.5718809366199, "perimeter_in_m": 207.67560409808101, "length_x": 51.9383833046371, "length_y": 51.9395536970138 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.199994075346609, 0.0 ], [ -0.001373291015625, 70.199994075346609, 0.0 ], [ -0.001373291015625, 70.199528884225145, 0.0 ], [ -0.00274658203125, 70.199528884225145, 0.0 ], [ -0.00274658203125, 70.199994075346609, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1822, "task_x": 131070, "task_y": 58272, "task_z": 18, "center_y": 70.184869991524707, "area_in_sqm": 2699.4589762687701, "perimeter_in_m": 207.82528742486099, "length_x": 51.975847225933997, "length_y": 51.9770183515881 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.185102754989643, 0.0 ], [ -0.001373291015625, 70.185102754989643, 0.0 ], [ -0.001373291015625, 70.184637228059685, 0.0 ], [ -0.00274658203125, 70.184637228059685, 0.0 ], [ -0.00274658203125, 70.185102754989643, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1823, "task_x": 131070, "task_y": 58304, "task_z": 18, "center_y": 70.169967754017406, "area_in_sqm": 2703.3513034582102, "perimeter_in_m": 207.97506426226701, "length_x": 52.0133346153453, "length_y": 52.014506474485501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.170200685492063, 0.0 ], [ -0.001373291015625, 70.170200685492063, 0.0 ], [ -0.001373291015625, 70.169734822542694, 0.0 ], [ -0.00274658203125, 70.169734822542694, 0.0 ], [ -0.00274658203125, 70.170200685492063, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1824, "task_x": 131070, "task_y": 58336, "task_z": 18, "center_y": 70.155054760513593, "area_in_sqm": 2707.2488681077998, "perimeter_in_m": 208.12493464312601, "length_x": 52.050845479544797, "length_y": 52.052018072379497 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.155287860103499, 0.0 ], [ -0.001373291015625, 70.155287860103499, 0.0 ], [ -0.001373291015625, 70.154821660923758, 0.0 ], [ -0.00274658203125, 70.154821660923758, 0.0 ], [ -0.00274658203125, 70.155287860103499, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1825, "task_x": 131070, "task_y": 58368, "task_z": 18, "center_y": 70.140131004261093, "area_in_sqm": 2711.15167653561, "perimeter_in_m": 208.27489859032599, "length_x": 52.088379825188397, "length_y": 52.089553151925401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.140364272071679, 0.0 ], [ -0.001373291015625, 70.140364272071679, 0.0 ], [ -0.001373291015625, 70.139897736450507, 0.0 ], [ -0.00274658203125, 70.139897736450507, 0.0 ], [ -0.00274658203125, 70.140364272071679, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1826, "task_x": 131070, "task_y": 58400, "task_z": 18, "center_y": 70.125196478505501, "area_in_sqm": 2715.0597345829001, "perimeter_in_m": 208.42495612247001, "length_x": 52.125937658914097, "length_y": 52.1271117197604 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.125429914642339, 0.0 ], [ -0.001373291015625, 70.125429914642339, 0.0 ], [ -0.001373291015625, 70.124963042368634, 0.0 ], [ -0.00274658203125, 70.124963042368634, 0.0 ], [ -0.00274658203125, 70.125429914642339, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1827, "task_x": 131070, "task_y": 58432, "task_z": 18, "center_y": 70.110251176490607, "area_in_sqm": 2718.9730472564702, "perimeter_in_m": 208.57510727368401, "length_x": 52.163518987341703, "length_y": 52.164693782503903 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.110484781059256, 0.0 ], [ -0.001373291015625, 70.110484781059256, 0.0 ], [ -0.001373291015625, 70.110017571921858, 0.0 ], [ -0.00274658203125, 70.110017571921858, 0.0 ], [ -0.00274658203125, 70.110484781059256, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1828, "task_x": 131070, "task_y": 58464, "task_z": 18, "center_y": 70.095295091458098, "area_in_sqm": 2722.8916218280801, "perimeter_in_m": 208.725352076657, "length_x": 52.201123817072698, "length_y": 52.202299346756902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.095528864564287, 0.0 ], [ -0.001373291015625, 70.095528864564287, 0.0 ], [ -0.001373291015625, 70.095061318351981, 0.0 ], [ -0.00274658203125, 70.095061318351981, 0.0 ], [ -0.00274658203125, 70.095528864564287, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1829, "task_x": 131070, "task_y": 58496, "task_z": 18, "center_y": 70.080328216648098, "area_in_sqm": 2726.81546378136, "perimeter_in_m": 208.87569053218101, "length_x": 52.238752154690701, "length_y": 52.2399284191021 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.080562158397356, 0.0 ], [ -0.001373291015625, 70.080562158397356, 0.0 ], [ -0.001373291015625, 70.080094274898855, 0.0 ], [ -0.00274658203125, 70.080094274898855, 0.0 ], [ -0.00274658203125, 70.080562158397356, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1830, "task_x": 131070, "task_y": 58528, "task_z": 18, "center_y": 70.065350545298401, "area_in_sqm": 2730.7445790767702, "perimeter_in_m": 209.02612268773501, "length_x": 52.276404006760799, "length_y": 52.277581006104398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.065584655796428, 0.0 ], [ -0.001373291015625, 70.065584655796428, 0.0 ], [ -0.001373291015625, 70.065116434800387, 0.0 ], [ -0.00274658203125, 70.065116434800387, 0.0 ], [ -0.00274658203125, 70.065584655796428, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1831, "task_x": 131070, "task_y": 58560, "task_z": 18, "center_y": 70.050362070645093, "area_in_sqm": 2734.6789733171499, "perimeter_in_m": 209.17664856031399, "length_x": 52.314079379829799, "length_y": 52.315257114309901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.050596349997562, 0.0 ], [ -0.001373291015625, 70.050596349997562, 0.0 ], [ -0.001373291015625, 70.050127791292567, 0.0 ], [ -0.00274658203125, 70.050127791292567, 0.0 ], [ -0.00274658203125, 70.050596349997562, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1832, "task_x": 131070, "task_y": 58592, "task_z": 18, "center_y": 70.035362785922203, "area_in_sqm": 2738.6186529398001, "perimeter_in_m": 209.32726817679199, "length_x": 52.351778280426103, "length_y": 52.352956750246499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.035597234234885, 0.0 ], [ -0.001373291015625, 70.035597234234885, 0.0 ], [ -0.001373291015625, 70.035128337609478, 0.0 ], [ -0.00274658203125, 70.035128337609478, 0.0 ], [ -0.00274658203125, 70.035597234234885, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1833, "task_x": 131070, "task_y": 58624, "task_z": 18, "center_y": 70.020352684361896, "area_in_sqm": 2742.5636231899298, "perimeter_in_m": 209.47798156400299, "length_x": 52.389500715060002, "length_y": 52.390679920423601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.020587301740605, 0.0 ], [ -0.001373291015625, 70.020587301740605, 0.0 ], [ -0.001373291015625, 70.020118066983272, 0.0 ], [ -0.00274658203125, 70.020118066983272, 0.0 ], [ -0.00274658203125, 70.020587301740605, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1834, "task_x": 131070, "task_y": 58656, "task_z": 18, "center_y": 70.005331759194604, "area_in_sqm": 2746.5138909816701, "perimeter_in_m": 209.62878874945201, "length_x": 52.427246690222702, "length_y": 52.4284266313323 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 70.005566545745026, 0.0 ], [ -0.001373291015625, 70.005566545745026, 0.0 ], [ -0.001373291015625, 70.005096972644168, 0.0 ], [ -0.00274658203125, 70.005096972644168, 0.0 ], [ -0.00274658203125, 70.005566545745026, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1835, "task_x": 131070, "task_y": 58688, "task_z": 18, "center_y": 69.9903000036485, "area_in_sqm": 2750.4694619178799, "perimeter_in_m": 209.77968975848501, "length_x": 52.465016212387397, "length_y": 52.466196889445001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.990534959476534, 0.0 ], [ -0.001373291015625, 69.990534959476534, 0.0 ], [ -0.001373291015625, 69.990065047820508, 0.0 ], [ -0.00274658203125, 69.990065047820508, 0.0 ], [ -0.00274658203125, 69.990534959476534, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1836, "task_x": 131070, "task_y": 58720, "task_z": 18, "center_y": 69.975257410950206, "area_in_sqm": 2754.4303414821602, "perimeter_in_m": 209.930684603663, "length_x": 52.5028092880084, "length_y": 52.503990701215301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.975492536161624, 0.0 ], [ -0.001373291015625, 69.975492536161624, 0.0 ], [ -0.001373291015625, 69.975022285738731, 0.0 ], [ -0.00274658203125, 69.975022285738731, 0.0 ], [ -0.00274658203125, 69.975492536161624, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1837, "task_x": 131070, "task_y": 58752, "task_z": 18, "center_y": 69.960203974324102, "area_in_sqm": 2758.3965359926201, "perimeter_in_m": 210.08177332512099, "length_x": 52.540625923521397, "length_y": 52.541808073078499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.960439269024874, 0.0 ], [ -0.001373291015625, 69.960439269024874, 0.0 ], [ -0.001373291015625, 69.959968679623373, 0.0 ], [ -0.00274658203125, 69.959968679623373, 0.0 ], [ -0.00274658203125, 69.960439269024874, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1838, "task_x": 131070, "task_y": 58784, "task_z": 18, "center_y": 69.945139686993002, "area_in_sqm": 2762.36805164814, "perimeter_in_m": 210.23295593818301, "length_x": 52.578466125343603, "length_y": 52.579649011450996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.945375151288999, 0.0 ], [ -0.001373291015625, 69.945375151288999, 0.0 ], [ -0.001373291015625, 69.944904222697048, 0.0 ], [ -0.00274658203125, 69.944904222697048, 0.0 ], [ -0.00274658203125, 69.945375151288999, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1839, "task_x": 131070, "task_y": 58816, "task_z": 18, "center_y": 69.930064542177703, "area_in_sqm": 2766.34489405155, "perimeter_in_m": 210.38423246591, "length_x": 52.616329899872902, "length_y": 52.617513522730199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.930300176174825, 0.0 ], [ -0.001373291015625, 69.930300176174825, 0.0 ], [ -0.001373291015625, 69.929828908180554, 0.0 ], [ -0.00274658203125, 69.929828908180554, 0.0 ], [ -0.00274658203125, 69.930300176174825, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1840, "task_x": 131070, "task_y": 58848, "task_z": 18, "center_y": 69.914978533096999, "area_in_sqm": 2770.3270694017401, "perimeter_in_m": 210.53560295328401, "length_x": 52.654217253488802, "length_y": 52.655401613295197 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.915214336901272, 0.0 ], [ -0.001373291015625, 69.915214336901272, 0.0 ], [ -0.001373291015625, 69.914742729292726, 0.0 ], [ -0.00274658203125, 69.914742729292726, 0.0 ], [ -0.00274658203125, 69.915214336901272, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1841, "task_x": 131070, "task_y": 58880, "task_z": 18, "center_y": 69.899881652968006, "area_in_sqm": 2774.3145838975902, "perimeter_in_m": 210.68706740063899, "length_x": 52.692128192551799, "length_y": 52.693313289505703 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.9001176266854, 0.0 ], [ -0.001373291015625, 69.9001176266854, 0.0 ], [ -0.001373291015625, 69.899645679250582, 0.0 ], [ -0.00274658203125, 69.899645679250582, 0.0 ], [ -0.00274658203125, 69.9001176266854, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1842, "task_x": 131070, "task_y": 58912, "task_z": 18, "center_y": 69.884773895005793, "area_in_sqm": 2778.3074434995701, "perimeter_in_m": 210.838625850043, "length_x": 52.7300627234034, "length_y": 52.7312485577026 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.885010038742408, 0.0 ], [ -0.001373291015625, 69.885010038742408, 0.0 ], [ -0.001373291015625, 69.884537751269264, 0.0 ], [ -0.00274658203125, 69.884537751269264, 0.0 ], [ -0.00274658203125, 69.885010038742408, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1843, "task_x": 131070, "task_y": 58944, "task_z": 18, "center_y": 69.869655252423797, "area_in_sqm": 2782.3056533336598, "perimeter_in_m": 210.99027831237899, "length_x": 52.768020852366, "length_y": 52.769207424207899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.869891566285602, 0.0 ], [ -0.001373291015625, 69.869891566285602, 0.0 ], [ -0.001373291015625, 69.869418938562035, 0.0 ], [ -0.00274658203125, 69.869418938562035, 0.0 ], [ -0.00274658203125, 69.869891566285602, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1844, "task_x": 131070, "task_y": 58976, "task_z": 18, "center_y": 69.854525718433393, "area_in_sqm": 2786.30922007561, "perimeter_in_m": 211.14202481972001, "length_x": 52.806002585743201, "length_y": 52.807189895324399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.854762202526473, 0.0 ], [ -0.001373291015625, 69.854762202526473, 0.0 ], [ -0.001373291015625, 69.8542892343403, 0.0 ], [ -0.00274658203125, 69.8542892343403, 0.0 ], [ -0.00274658203125, 69.854762202526473, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1845, "task_x": 131070, "task_y": 59008, "task_z": 18, "center_y": 69.839385286244095, "area_in_sqm": 2790.3181501627, "perimeter_in_m": 211.29386539420599, "length_x": 52.844007929819199, "length_y": 52.845195977335798 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.839621940674604, 0.0 ], [ -0.001373291015625, 69.839621940674604, 0.0 ], [ -0.001373291015625, 69.839148631813615, 0.0 ], [ -0.00274658203125, 69.839148631813615, 0.0 ], [ -0.00274658203125, 69.839621940674604, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1846, "task_x": 131070, "task_y": 59040, "task_z": 18, "center_y": 69.824233949063697, "area_in_sqm": 2794.3324491977701, "perimeter_in_m": 211.44580005933199, "length_x": 52.882036890859098, "length_y": 52.883225676506598 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.82447077393779, 0.0 ], [ -0.001373291015625, 69.82447077393779, 0.0 ], [ -0.001373291015625, 69.823997124189674, 0.0 ], [ -0.00274658203125, 69.823997124189674, 0.0 ], [ -0.00274658203125, 69.82447077393779, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1847, "task_x": 131070, "task_y": 59072, "task_z": 18, "center_y": 69.809071700098102, "area_in_sqm": 2798.35212278366, "perimeter_in_m": 211.59782884848201, "length_x": 52.920089475108902, "length_y": 52.921278999082098 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.809308695521935, 0.0 ], [ -0.001373291015625, 69.809308695521935, 0.0 ], [ -0.001373291015625, 69.808834704674339, 0.0 ], [ -0.00274658203125, 69.808834704674339, 0.0 ], [ -0.00274658203125, 69.809308695521935, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1848, "task_x": 131070, "task_y": 59104, "task_z": 18, "center_y": 69.793898532551395, "area_in_sqm": 2802.3771768808401, "perimeter_in_m": 211.74995176951199, "length_x": 52.958165688794999, "length_y": 52.959355951288202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.794135698631109, 0.0 ], [ -0.001373291015625, 69.794135698631109, 0.0 ], [ -0.001373291015625, 69.793661366471653, 0.0 ], [ -0.00274658203125, 69.793661366471653, 0.0 ], [ -0.00274658203125, 69.794135698631109, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1849, "task_x": 131070, "task_y": 59136, "task_z": 18, "center_y": 69.778714439625702, "area_in_sqm": 2806.40761852264, "perimeter_in_m": 211.902168862792, "length_x": 52.996265538124803, "length_y": 52.997456539331701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.778951776467594, 0.0 ], [ -0.001373291015625, 69.778951776467594, 0.0 ], [ -0.001373291015625, 69.77847710278381, 0.0 ], [ -0.00274658203125, 69.77847710278381, 0.0 ], [ -0.00274658203125, 69.778951776467594, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1850, "task_x": 131070, "task_y": 59168, "task_z": 18, "center_y": 69.763519414521497, "area_in_sqm": 2810.4434525966599, "perimeter_in_m": 212.054480139644, "length_x": 53.034389029285897, "length_y": 53.035580769399502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.763756922231778, 0.0 ], [ -0.001373291015625, 69.763756922231778, 0.0 ], [ -0.001373291015625, 69.763281906811159, 0.0 ], [ -0.00274658203125, 69.763281906811159, 0.0 ], [ -0.00274658203125, 69.763756922231778, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1851, "task_x": 131070, "task_y": 59200, "task_z": 18, "center_y": 69.748313450437294, "area_in_sqm": 2814.4846857786201, "perimeter_in_m": 212.206885632579, "length_x": 53.072536168446597, "length_y": 53.073728647659401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.748551129122291, 0.0 ], [ -0.001373291015625, 69.748551129122291, 0.0 ], [ -0.001373291015625, 69.748075771752255, 0.0 ], [ -0.00274658203125, 69.748075771752255, 0.0 ], [ -0.00274658203125, 69.748551129122291, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1852, "task_x": 131070, "task_y": 59232, "task_z": 18, "center_y": 69.733096540569903, "area_in_sqm": 2818.5313240289702, "perimeter_in_m": 212.359385363451, "length_x": 53.110706961755803, "length_y": 53.111900180259603 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.733334390335898, 0.0 ], [ -0.001373291015625, 69.733334390335898, 0.0 ], [ -0.001373291015625, 69.732858690803823, 0.0 ], [ -0.00274658203125, 69.732858690803823, 0.0 ], [ -0.00274658203125, 69.733334390335898, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1853, "task_x": 131070, "task_y": 59264, "task_z": 18, "center_y": 69.717868678114201, "area_in_sqm": 2822.5833731889702, "perimeter_in_m": 212.51197935195299, "length_x": 53.1489014153426, "length_y": 53.150095373328597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.718106699067619, 0.0 ], [ -0.001373291015625, 69.718106699067619, 0.0 ], [ -0.001373291015625, 69.717630657160797, 0.0 ], [ -0.00274658203125, 69.717630657160797, 0.0 ], [ -0.00274658203125, 69.718106699067619, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1854, "task_x": 131070, "task_y": 59296, "task_z": 18, "center_y": 69.7026298562634, "area_in_sqm": 2826.64083886147, "perimeter_in_m": 212.66466762410599, "length_x": 53.187119535316398, "length_y": 53.188314232975202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.702868048510567, 0.0 ], [ -0.001373291015625, 69.702868048510567, 0.0 ], [ -0.001373291015625, 69.702391664016275, 0.0 ], [ -0.00274658203125, 69.702391664016275, 0.0 ], [ -0.00274658203125, 69.702868048510567, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1855, "task_x": 131070, "task_y": 59328, "task_z": 18, "center_y": 69.687380068208896, "area_in_sqm": 2830.7037281990101, "perimeter_in_m": 212.81745021154899, "length_x": 53.225361327766997, "length_y": 53.226556765288798 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.687618431856151, 0.0 ], [ -0.001373291015625, 69.687618431856151, 0.0 ], [ -0.001373291015625, 69.687141704561583, 0.0 ], [ -0.00274658203125, 69.687141704561583, 0.0 ], [ -0.00274658203125, 69.687618431856151, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1856, "task_x": 131070, "task_y": 59360, "task_z": 18, "center_y": 69.672119307140093, "area_in_sqm": 2834.7720459699599, "perimeter_in_m": 212.97032711616799, "length_x": 53.263626798764697, "length_y": 53.2648229763385 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.672357842293934, 0.0 ], [ -0.001373291015625, 69.672357842293934, 0.0 ], [ -0.001373291015625, 69.671880771986253, 0.0 ], [ -0.00274658203125, 69.671880771986253, 0.0 ], [ -0.00274658203125, 69.672357842293934, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1857, "task_x": 131070, "task_y": 59392, "task_z": 18, "center_y": 69.656847566244906, "area_in_sqm": 2838.8457990884799, "perimeter_in_m": 213.123298383677, "length_x": 53.301915954359302, "length_y": 53.303112872173998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.657086273011728, 0.0 ], [ -0.001373291015625, 69.657086273011728, 0.0 ], [ -0.001373291015625, 69.656608859478013, 0.0 ], [ -0.00274658203125, 69.656608859478013, 0.0 ], [ -0.00274658203125, 69.657086273011728, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1858, "task_x": 131070, "task_y": 59424, "task_z": 18, "center_y": 69.641564838709201, "area_in_sqm": 2842.92499315739, "perimeter_in_m": 213.27636402790699, "length_x": 53.340228800581201, "length_y": 53.341426458824898 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.641803717195529, 0.0 ], [ -0.001373291015625, 69.641803717195529, 0.0 ], [ -0.001373291015625, 69.641325960222815, 0.0 ], [ -0.00274658203125, 69.641325960222815, 0.0 ], [ -0.00274658203125, 69.641803717195529, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1859, "task_x": 131070, "task_y": 59456, "task_z": 18, "center_y": 69.626271117717195, "area_in_sqm": 2847.0096346139899, "perimeter_in_m": 213.42952407962599, "length_x": 53.378565343440599, "length_y": 53.379763742300902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.626510168029583, 0.0 ], [ -0.001373291015625, 69.626510168029583, 0.0 ], [ -0.001373291015625, 69.626032067404836, 0.0 ], [ -0.00274658203125, 69.626032067404836, 0.0 ], [ -0.00274658203125, 69.626510168029583, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1860, "task_x": 131070, "task_y": 59488, "task_z": 18, "center_y": 69.610966396451403, "area_in_sqm": 2851.0997292995498, "perimeter_in_m": 213.58277855330201, "length_x": 53.416925588928002, "length_y": 53.418124728591799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.611205618696331, 0.0 ], [ -0.001373291015625, 69.611205618696331, 0.0 ], [ -0.001373291015625, 69.610727174206488, 0.0 ], [ -0.00274658203125, 69.610727174206488, 0.0 ], [ -0.00274658203125, 69.611205618696331, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1861, "task_x": 131070, "task_y": 59520, "task_z": 18, "center_y": 69.595650668092404, "area_in_sqm": 2855.1952829360998, "perimeter_in_m": 213.73612747395401, "length_x": 53.455309543013499, "length_y": 53.456509423666901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.595890062376483, 0.0 ], [ -0.001373291015625, 69.595890062376483, 0.0 ], [ -0.001373291015625, 69.595411273808409, 0.0 ], [ -0.00274658203125, 69.595411273808409, 0.0 ], [ -0.00274658203125, 69.595890062376483, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1862, "task_x": 131070, "task_y": 59552, "task_z": 18, "center_y": 69.580323925819201, "area_in_sqm": 2859.2963021993601, "perimeter_in_m": 213.88957087365901, "length_x": 53.493717211647201, "length_y": 53.494917833475903 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.580563492248984, 0.0 ], [ -0.001373291015625, 69.580563492248984, 0.0 ], [ -0.001373291015625, 69.580084359389474, 0.0 ], [ -0.00274658203125, 69.580084359389474, 0.0 ], [ -0.00274658203125, 69.580563492248984, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1863, "task_x": 131070, "task_y": 59584, "task_z": 18, "center_y": 69.564986162808907, "area_in_sqm": 2863.40279245377, "perimeter_in_m": 214.04310875259401, "length_x": 53.532148600759101, "length_y": 53.533349963947998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.565225901490976, 0.0 ], [ -0.001373291015625, 69.565225901490976, 0.0 ], [ -0.001373291015625, 69.564746424126824, 0.0 ], [ -0.00274658203125, 69.564746424126824, 0.0 ], [ -0.00274658203125, 69.565225901490976, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1864, "task_x": 131070, "task_y": 59616, "task_z": 18, "center_y": 69.549637372236901, "area_in_sqm": 2867.5147603750202, "perimeter_in_m": 214.19674116043299, "length_x": 53.570603716258503, "length_y": 53.571805820992097 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.549877283277965, 0.0 ], [ -0.001373291015625, 69.549877283277965, 0.0 ], [ -0.001373291015625, 69.549397461195838, 0.0 ], [ -0.00274658203125, 69.549397461195838, 0.0 ], [ -0.00274658203125, 69.549877283277965, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1865, "task_x": 131070, "task_y": 59648, "task_z": 18, "center_y": 69.534277547276901, "area_in_sqm": 2871.63221156597, "perimeter_in_m": 214.35046810223201, "length_x": 53.609082564034999, "length_y": 53.6102854104969 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.534517630783569, 0.0 ], [ -0.001373291015625, 69.534517630783569, 0.0 ], [ -0.001373291015625, 69.534037463770161, 0.0 ], [ -0.00274658203125, 69.534037463770161, 0.0 ], [ -0.00274658203125, 69.534517630783569, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1866, "task_x": 131070, "task_y": 59680, "task_z": 18, "center_y": 69.518906681100702, "area_in_sqm": 2875.7551519870799, "perimeter_in_m": 214.504289610602, "length_x": 53.6475851499575, "length_y": 53.648788738330801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.519146937179798, 0.0 ], [ -0.001373291015625, 69.519146937179798, 0.0 ], [ -0.001373291015625, 69.518666425021664, 0.0 ], [ -0.00274658203125, 69.518666425021664, 0.0 ], [ -0.00274658203125, 69.519146937179798, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1867, "task_x": 131070, "task_y": 59712, "task_z": 18, "center_y": 69.503524766878698, "area_in_sqm": 2879.88358855248, "perimeter_in_m": 214.65820570819901, "length_x": 53.686111479874398, "length_y": 53.687315810341602 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.503765195636845, 0.0 ], [ -0.001373291015625, 69.503765195636845, 0.0 ], [ -0.001373291015625, 69.503284338120551, 0.0 ], [ -0.00274658203125, 69.503284338120551, 0.0 ], [ -0.00274658203125, 69.503765195636845, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1868, "task_x": 131070, "task_y": 59744, "task_z": 18, "center_y": 69.488131797779204, "area_in_sqm": 2884.0175259113298, "perimeter_in_m": 214.81221640491, "length_x": 53.7246615596137, "length_y": 53.725866632356599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.488372399323225, 0.0 ], [ -0.001373291015625, 69.488372399323225, 0.0 ], [ -0.001373291015625, 69.487891196235253, 0.0 ], [ -0.00274658203125, 69.487891196235253, 0.0 ], [ -0.00274658203125, 69.488372399323225, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1869, "task_x": 131070, "task_y": 59776, "task_z": 18, "center_y": 69.472727766969101, "area_in_sqm": 2888.15697181225, "perimeter_in_m": 214.96632173038401, "length_x": 53.7632353949829, "length_y": 53.764441210182497 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.47296854140572, 0.0 ], [ -0.001373291015625, 69.47296854140572, 0.0 ], [ -0.001373291015625, 69.472486992532509, 0.0 ], [ -0.00274658203125, 69.472486992532509, 0.0 ], [ -0.00274658203125, 69.47296854140572, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1870, "task_x": 131070, "task_y": 59808, "task_z": 18, "center_y": 69.457312667613294, "area_in_sqm": 2892.3019312620199, "perimeter_in_m": 215.12052171424099, "length_x": 53.801832991768698, "length_y": 53.8030395496056 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.457553615049392, 0.0 ], [ -0.001373291015625, 69.457553615049392, 0.0 ], [ -0.001373291015625, 69.457071720177311, 0.0 ], [ -0.00274658203125, 69.457071720177311, 0.0 ], [ -0.00274658203125, 69.457553615049392, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1871, "task_x": 131070, "task_y": 59840, "task_z": 18, "center_y": 69.441886492875298, "area_in_sqm": 2896.4524104595198, "perimeter_in_m": 215.27481637472599, "length_x": 53.8404543557374, "length_y": 53.841661656391402 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.442127613417597, 0.0 ], [ -0.001373291015625, 69.442127613417597, 0.0 ], [ -0.001373291015625, 69.441645372332971, 0.0 ], [ -0.00274658203125, 69.441645372332971, 0.0 ], [ -0.00274658203125, 69.442127613417597, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1872, "task_x": 131070, "task_y": 59872, "task_z": 18, "center_y": 69.426449235916607, "area_in_sqm": 2900.6084154844302, "perimeter_in_m": 215.429205726503, "length_x": 53.879099492634097, "length_y": 53.880307536284498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.426690529672001, 0.0 ], [ -0.001373291015625, 69.426690529672001, 0.0 ], [ -0.001373291015625, 69.426207942161113, 0.0 ], [ -0.00274658203125, 69.426207942161113, 0.0 ], [ -0.00274658203125, 69.426690529672001, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1873, "task_x": 131070, "task_y": 59904, "task_z": 18, "center_y": 69.411000889897096, "area_in_sqm": 2904.7699527740501, "perimeter_in_m": 215.58368980472599, "length_x": 53.917768408183598, "length_y": 53.9189771950089 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.411242356972551, 0.0 ], [ -0.001373291015625, 69.411242356972551, 0.0 ], [ -0.001373291015625, 69.410759422821627, 0.0 ], [ -0.00274658203125, 69.410759422821627, 0.0 ], [ -0.00274658203125, 69.411242356972551, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1874, "task_x": 131070, "task_y": 59936, "task_z": 18, "center_y": 69.395541447975106, "area_in_sqm": 2908.9370279312102, "perimeter_in_m": 215.73826862185101, "length_x": 53.956461108089499, "length_y": 53.9576706382677 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.395783088477529, 0.0 ], [ -0.001373291015625, 69.395783088477529, 0.0 ], [ -0.001373291015625, 69.395299807472725, 0.0 ], [ -0.00274658203125, 69.395299807472725, 0.0 ], [ -0.00274658203125, 69.395783088477529, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1875, "task_x": 131070, "task_y": 59968, "task_z": 18, "center_y": 69.3800709033072, "area_in_sqm": 2913.1096472740201, "perimeter_in_m": 215.892942193127, "length_x": 53.995177598034701, "length_y": 53.996387871742797 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.380312717343514, 0.0 ], [ -0.001373291015625, 69.380312717343514, 0.0 ], [ -0.001373291015625, 69.37982908927097, 0.0 ], [ -0.00274658203125, 69.37982908927097, 0.0 ], [ -0.00274658203125, 69.380312717343514, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1876, "task_x": 131070, "task_y": 60000, "task_z": 18, "center_y": 69.364589249048294, "area_in_sqm": 2917.2878168821298, "perimeter_in_m": 216.047710562069, "length_x": 54.0339178836809, "length_y": 54.035128901095597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.364831236725422, 0.0 ], [ -0.001373291015625, 69.364831236725422, 0.0 ], [ -0.001373291015625, 69.364347261371179, 0.0 ], [ -0.00274658203125, 69.364347261371179, 0.0 ], [ -0.00274658203125, 69.364831236725422, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1877, "task_x": 131070, "task_y": 60032, "task_z": 18, "center_y": 69.349096478351498, "area_in_sqm": 2921.4715428352401, "perimeter_in_m": 216.202573738887, "length_x": 54.072681970668697, "length_y": 54.073893731966102 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.349338639776491, 0.0 ], [ -0.001373291015625, 69.349338639776491, 0.0 ], [ -0.001373291015625, 69.348854316926563, 0.0 ], [ -0.00274658203125, 69.348854316926563, 0.0 ], [ -0.00274658203125, 69.349338639776491, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1878, "task_x": 131070, "task_y": 60064, "task_z": 18, "center_y": 69.333592584368503, "area_in_sqm": 2925.6608314514201, "perimeter_in_m": 216.35753174506601, "length_x": 54.111469864617902, "length_y": 54.1126823699733 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.333834919648297, 0.0 ], [ -0.001373291015625, 69.333834919648297, 0.0 ], [ -0.001373291015625, 69.333350249088639, 0.0 ], [ -0.00274658203125, 69.333350249088639, 0.0 ], [ -0.00274658203125, 69.333834919648297, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1879, "task_x": 131070, "task_y": 60096, "task_z": 18, "center_y": 69.318077560248994, "area_in_sqm": 2929.85568833351, "perimeter_in_m": 216.512584595687, "length_x": 54.150281571127003, "length_y": 54.151494820714703 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.31832006949071, 0.0 ], [ -0.001373291015625, 69.31832006949071, 0.0 ], [ -0.001373291015625, 69.317835051007251, 0.0 ], [ -0.00274658203125, 69.317835051007251, 0.0 ], [ -0.00274658203125, 69.31832006949071, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1880, "task_x": 131070, "task_y": 60128, "task_z": 18, "center_y": 69.302551399141294, "area_in_sqm": 2934.05612015724, "perimeter_in_m": 216.66773232701399, "length_x": 54.189117095773, "length_y": 54.190331089767199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.302794082452039, 0.0 ], [ -0.001373291015625, 69.302794082452039, 0.0 ], [ -0.001373291015625, 69.302308715830605, 0.0 ], [ -0.00274658203125, 69.302308715830605, 0.0 ], [ -0.00274658203125, 69.302794082452039, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1881, "task_x": 131070, "task_y": 60160, "task_z": 18, "center_y": 69.287014094192102, "area_in_sqm": 2938.2621324062302, "perimeter_in_m": 216.82297493917699, "length_x": 54.227976444112002, "length_y": 54.229191182685902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.287256951678856, 0.0 ], [ -0.001373291015625, 69.287256951678856, 0.0 ], [ -0.001373291015625, 69.286771236705277, 0.0 ], [ -0.00274658203125, 69.286771236705277, 0.0 ], [ -0.00274658203125, 69.287256951678856, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1882, "task_x": 131070, "task_y": 60192, "task_z": 18, "center_y": 69.271465638546204, "area_in_sqm": 2942.4737315177899, "perimeter_in_m": 216.978312477554, "length_x": 54.2668596216783, "length_y": 54.268075105004598 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.271708670316144, 0.0 ], [ -0.001373291015625, 69.271708670316144, 0.0 ], [ -0.001373291015625, 69.271222606776163, 0.0 ], [ -0.00274658203125, 69.271222606776163, 0.0 ], [ -0.00274658203125, 69.271708670316144, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1883, "task_x": 131070, "task_y": 60224, "task_z": 18, "center_y": 69.255906025346903, "area_in_sqm": 2946.6909229755402, "perimeter_in_m": 217.133744945019, "length_x": 54.305766633985399, "length_y": 54.306982862235799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.256149231507209, 0.0 ], [ -0.001373291015625, 69.256149231507209, 0.0 ], [ -0.001373291015625, 69.25566281918654, 0.0 ], [ -0.00274658203125, 69.25566281918654, 0.0 ], [ -0.00274658203125, 69.256149231507209, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1884, "task_x": 131070, "task_y": 60256, "task_z": 18, "center_y": 69.240335247735899, "area_in_sqm": 2950.91371417046, "perimeter_in_m": 217.289272374831, "length_x": 54.344697486524502, "length_y": 54.3459144598704 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.240578628393763, 0.0 ], [ -0.001373291015625, 69.240578628393763, 0.0 ], [ -0.001373291015625, 69.240091867078064, 0.0 ], [ -0.00274658203125, 69.240091867078064, 0.0 ], [ -0.00274658203125, 69.240578628393763, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1885, "task_x": 131070, "task_y": 60288, "task_z": 18, "center_y": 69.224753298853301, "area_in_sqm": 2955.1421107053802, "perimeter_in_m": 217.44489478110199, "length_x": 54.3836521847659, "length_y": 54.384869903377997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.224996854115886, 0.0 ], [ -0.001373291015625, 69.224996854115886, 0.0 ], [ -0.001373291015625, 69.224509743590744, 0.0 ], [ -0.00274658203125, 69.224509743590744, 0.0 ], [ -0.00274658203125, 69.224996854115886, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1886, "task_x": 131070, "task_y": 60320, "task_z": 18, "center_y": 69.209160171837496, "area_in_sqm": 2959.3761183023498, "perimeter_in_m": 217.600612192049, "length_x": 54.422630734158098, "length_y": 54.423849198206199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.209403901812038, 0.0 ], [ -0.001373291015625, 69.209403901812038, 0.0 ], [ -0.001373291015625, 69.208916441862996, 0.0 ], [ -0.00274658203125, 69.208916441862996, 0.0 ], [ -0.00274658203125, 69.209403901812038, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1887, "task_x": 131070, "task_y": 60352, "task_z": 18, "center_y": 69.193555859825295, "area_in_sqm": 2963.61574363709, "perimeter_in_m": 217.75642461674201, "length_x": 54.461633140127802, "length_y": 54.462852349781102 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.193799764619044, 0.0 ], [ -0.001373291015625, 69.193799764619044, 0.0 ], [ -0.001373291015625, 69.193311955031618, 0.0 ], [ -0.00274658203125, 69.193311955031618, 0.0 ], [ -0.00274658203125, 69.193799764619044, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1888, "task_x": 131070, "task_y": 60384, "task_z": 18, "center_y": 69.177940355952003, "area_in_sqm": 2967.86099207401, "perimeter_in_m": 217.91233209321999, "length_x": 54.500659408079997, "length_y": 54.5018793635072 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.178184435672151, 0.0 ], [ -0.001373291015625, 69.178184435672151, 0.0 ], [ -0.001373291015625, 69.177696276231771, 0.0 ], [ -0.00274658203125, 69.177696276231771, 0.0 ], [ -0.00274658203125, 69.178184435672151, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1889, "task_x": 131070, "task_y": 60416, "task_z": 18, "center_y": 69.162313653351006, "area_in_sqm": 2972.1118702888498, "perimeter_in_m": 218.068334616301, "length_x": 54.539709543398203, "length_y": 54.540930244766997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.162557908104986, 0.0 ], [ -0.001373291015625, 69.162557908104986, 0.0 ], [ -0.001373291015625, 69.162069398597083, 0.0 ], [ -0.00274658203125, 69.162069398597083, 0.0 ], [ -0.00274658203125, 69.162557908104986, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1890, "task_x": 131070, "task_y": 60448, "task_z": 18, "center_y": 69.146675745154596, "area_in_sqm": 2976.36838448048, "perimeter_in_m": 218.224432238106, "length_x": 54.5787835514435, "length_y": 54.580004998921297 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.146920175049615, 0.0 ], [ -0.001373291015625, 69.146920175049615, 0.0 ], [ -0.001373291015625, 69.146431315259505, 0.0 ], [ -0.00274658203125, 69.146431315259505, 0.0 ], [ -0.00274658203125, 69.146920175049615, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1891, "task_x": 131070, "task_y": 60480, "task_z": 18, "center_y": 69.131026624493003, "area_in_sqm": 2980.6305400133101, "perimeter_in_m": 218.380624950525, "length_x": 54.617881437555603, "length_y": 54.619103631308597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.131271229636482, 0.0 ], [ -0.001373291015625, 69.131271229636482, 0.0 ], [ -0.001373291015625, 69.130782019349482, 0.0 ], [ -0.00274658203125, 69.130782019349482, 0.0 ], [ -0.00274658203125, 69.131271229636482, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1892, "task_x": 131070, "task_y": 60512, "task_z": 18, "center_y": 69.115366284495195, "area_in_sqm": 2984.8983438014998, "perimeter_in_m": 218.53691280204399, "length_x": 54.657003207051702, "length_y": 54.658226147245998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.115611064994482, 0.0 ], [ -0.001373291015625, 69.115611064994482, 0.0 ], [ -0.001373291015625, 69.115121503995837, 0.0 ], [ -0.00274658203125, 69.115121503995837, 0.0 ], [ -0.00274658203125, 69.115611064994482, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1893, "task_x": 131070, "task_y": 60544, "task_z": 18, "center_y": 69.099694718288305, "area_in_sqm": 2989.1718019247101, "perimeter_in_m": 218.69329578943001, "length_x": 54.6961488652274, "length_y": 54.697372552028 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.099939674250876, 0.0 ], [ -0.001373291015625, 69.099939674250876, 0.0 ], [ -0.001373291015625, 69.099449762325804, 0.0 ], [ -0.00274658203125, 69.099449762325804, 0.0 ], [ -0.00274658203125, 69.099939674250876, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1894, "task_x": 131070, "task_y": 60576, "task_z": 18, "center_y": 69.0840119189983, "area_in_sqm": 2993.4509202241902, "perimeter_in_m": 218.84977393913201, "length_x": 54.735318417355899, "length_y": 54.7365428509273 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.084257050531434, 0.0 ], [ -0.001373291015625, 69.084257050531434, 0.0 ], [ -0.001373291015625, 69.083766787465095, 0.0 ], [ -0.00274658203125, 69.083766787465095, 0.0 ], [ -0.00274658203125, 69.084257050531434, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1895, "task_x": 131070, "task_y": 60608, "task_z": 18, "center_y": 69.068317879749102, "area_in_sqm": 2997.7357050180399, "perimeter_in_m": 219.00634727189399, "length_x": 54.7745118686884, "length_y": 54.775737049194198 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.068563186960318, 0.0 ], [ -0.001373291015625, 69.068563186960318, 0.0 ], [ -0.001373291015625, 69.068072572537801, 0.0 ], [ -0.00274658203125, 69.068072572537801, 0.0 ], [ -0.00274658203125, 69.068563186960318, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1896, "task_x": 131070, "task_y": 60640, "task_z": 18, "center_y": 69.052612593663298, "area_in_sqm": 3002.02616262436, "perimeter_in_m": 219.163015817614, "length_x": 54.813729224453702, "length_y": 54.814955152057003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.052858076660129, 0.0 ], [ -0.001373291015625, 69.052858076660129, 0.0 ], [ -0.001373291015625, 69.052367110666509, 0.0 ], [ -0.00274658203125, 69.052367110666509, 0.0 ], [ -0.00274658203125, 69.052858076660129, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1897, "task_x": 131070, "task_y": 60672, "task_z": 18, "center_y": 69.036896053862094, "area_in_sqm": 3006.3222982883499, "perimeter_in_m": 219.31977959057099, "length_x": 54.852970489858301, "length_y": 54.854197164721498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.037141712751975, 0.0 ], [ -0.001373291015625, 69.037141712751975, 0.0 ], [ -0.001373291015625, 69.036650394972227, 0.0 ], [ -0.00274658203125, 69.036650394972227, 0.0 ], [ -0.00274658203125, 69.037141712751975, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1898, "task_x": 131070, "task_y": 60704, "task_z": 18, "center_y": 69.021168253464893, "area_in_sqm": 3010.6241196393999, "perimeter_in_m": 219.47663860146901, "length_x": 54.8922356700865, "length_y": 54.893463092371199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.021414088355314, 0.0 ], [ -0.001373291015625, 69.021414088355314, 0.0 ], [ -0.001373291015625, 69.020922418574429, 0.0 ], [ -0.00274658203125, 69.020922418574429, 0.0 ], [ -0.00274658203125, 69.021414088355314, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1899, "task_x": 131070, "task_y": 60736, "task_z": 18, "center_y": 69.005429185589605, "area_in_sqm": 3014.93163132668, "perimeter_in_m": 219.63359288148499, "length_x": 54.931524770299902, "length_y": 54.932752940167099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 69.005675196588186, 0.0 ], [ -0.001373291015625, 69.005675196588186, 0.0 ], [ -0.001373291015625, 69.005183174591053, 0.0 ], [ -0.00274658203125, 69.005183174591053, 0.0 ], [ -0.00274658203125, 69.005675196588186, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1900, "task_x": 131070, "task_y": 60768, "task_z": 18, "center_y": 68.989678843352806, "area_in_sqm": 3019.2448402643199, "perimeter_in_m": 219.790642446882, "length_x": 54.970837795637799, "length_y": 54.972066713247699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.989925030567008, 0.0 ], [ -0.001373291015625, 68.989925030567008, 0.0 ], [ -0.001373291015625, 68.989432656138518, 0.0 ], [ -0.00274658203125, 68.989432656138518, 0.0 ], [ -0.00274658203125, 68.989925030567008, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1901, "task_x": 131070, "task_y": 60800, "task_z": 18, "center_y": 68.973917219869193, "area_in_sqm": 3023.5637530088402, "perimeter_in_m": 219.94778731884401, "length_x": 55.010174751216802, "length_y": 55.011404416729 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.974163583406735, 0.0 ], [ -0.001373291015625, 68.974163583406735, 0.0 ], [ -0.001373291015625, 68.97367085633168, 0.0 ], [ -0.00274658203125, 68.97367085633168, 0.0 ], [ -0.00274658203125, 68.974163583406735, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1902, "task_x": 131070, "task_y": 60832, "task_z": 18, "center_y": 68.9581443082524, "area_in_sqm": 3027.8883749246602, "perimeter_in_m": 220.10502751213301, "length_x": 55.049535642131097, "length_y": 55.050766055704301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.958390848220773, 0.0 ], [ -0.001373291015625, 68.958390848220773, 0.0 ], [ -0.001373291015625, 68.957897768283928, 0.0 ], [ -0.00274658203125, 68.957897768283928, 0.0 ], [ -0.00274658203125, 68.958390848220773, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1903, "task_x": 131070, "task_y": 60864, "task_z": 18, "center_y": 68.942360101614099, "area_in_sqm": 3032.21871232986, "perimeter_in_m": 220.262363051374, "length_x": 55.0889204734518, "length_y": 55.090151635244297 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.942606818121007, 0.0 ], [ -0.001373291015625, 68.942606818121007, 0.0 ], [ -0.001373291015625, 68.942113385107106, 0.0 ], [ -0.00274658203125, 68.942113385107106, 0.0 ], [ -0.00274658203125, 68.942606818121007, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1904, "task_x": 131070, "task_y": 60896, "task_z": 18, "center_y": 68.926564593064697, "area_in_sqm": 3036.5547719001802, "perimeter_in_m": 220.41979395548, "length_x": 55.128329250227701, "length_y": 55.129561160396797 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.926811486217844, 0.0 ], [ -0.001373291015625, 68.926811486217844, 0.0 ], [ -0.001373291015625, 68.92631769991155, 0.0 ], [ -0.00274658203125, 68.92631769991155, 0.0 ], [ -0.00274658203125, 68.926811486217844, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1905, "task_x": 131070, "task_y": 60928, "task_z": 18, "center_y": 68.910757775713193, "area_in_sqm": 3040.8965592384302, "perimeter_in_m": 220.57732023553999, "length_x": 55.167761977484403, "length_y": 55.168994636186703 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.911004845620184, 0.0 ], [ -0.001373291015625, 68.911004845620184, 0.0 ], [ -0.001373291015625, 68.910510705806132, 0.0 ], [ -0.00274658203125, 68.910510705806132, 0.0 ], [ -0.00274658203125, 68.911004845620184, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1906, "task_x": 131070, "task_y": 60960, "task_z": 18, "center_y": 68.894939642666799, "area_in_sqm": 3045.2440805435199, "perimeter_in_m": 220.73494192028201, "length_x": 55.207218660224903, "length_y": 55.2084520676163 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.895186889435422, 0.0 ], [ -0.001373291015625, 68.895186889435422, 0.0 ], [ -0.001373291015625, 68.894692395898204, 0.0 ], [ -0.00274658203125, 68.894692395898204, 0.0 ], [ -0.00274658203125, 68.895186889435422, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1907, "task_x": 131070, "task_y": 60992, "task_z": 18, "center_y": 68.8791101870316, "area_in_sqm": 3049.59734201431, "perimeter_in_m": 220.89265902778001, "length_x": 55.246699303428898, "length_y": 55.2479334596649 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.879357610769489, 0.0 ], [ -0.001373291015625, 68.879357610769489, 0.0 ], [ -0.001373291015625, 68.878862763293625, 0.0 ], [ -0.00274658203125, 68.878862763293625, 0.0 ], [ -0.00274658203125, 68.879357610769489, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1908, "task_x": 131070, "task_y": 61024, "task_z": 18, "center_y": 68.863269401911793, "area_in_sqm": 3053.9563504457501, "perimeter_in_m": 221.05047157181201, "length_x": 55.286203912053402, "length_y": 55.287438817288397 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.863517002726809, 0.0 ], [ -0.001373291015625, 68.863517002726809, 0.0 ], [ -0.001373291015625, 68.863021801096806, 0.0 ], [ -0.00274658203125, 68.863021801096806, 0.0 ], [ -0.00274658203125, 68.863517002726809, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1909, "task_x": 131070, "task_y": 61056, "task_z": 18, "center_y": 68.847417280410497, "area_in_sqm": 3058.3211115598701, "perimeter_in_m": 221.208379583088, "length_x": 55.325732491032198, "length_y": 55.326968145419997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.847665058410371, 0.0 ], [ -0.001373291015625, 68.847665058410371, 0.0 ], [ -0.001373291015625, 68.847169502410651, 0.0 ], [ -0.00274658203125, 68.847169502410651, 0.0 ], [ -0.00274658203125, 68.847665058410371, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1910, "task_x": 131070, "task_y": 61088, "task_z": 18, "center_y": 68.831553815629107, "area_in_sqm": 3062.6916310787201, "perimeter_in_m": 221.36638306468501, "length_x": 55.365285045275897, "length_y": 55.3665214489696 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.831801770921658, 0.0 ], [ -0.001373291015625, 68.831801770921658, 0.0 ], [ -0.001373291015625, 68.831305860336627, 0.0 ], [ -0.00274658203125, 68.831305860336627, 0.0 ], [ -0.00274658203125, 68.831801770921658, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1911, "task_x": 131070, "task_y": 61120, "task_z": 18, "center_y": 68.8156790006677, "area_in_sqm": 3067.06791555882, "perimeter_in_m": 221.52448204509, "length_x": 55.404861579671902, "length_y": 55.406098732823899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.815927133360702, 0.0 ], [ -0.001373291015625, 68.815927133360702, 0.0 ], [ -0.001373291015625, 68.815430867974726, 0.0 ], [ -0.00274658203125, 68.815430867974726, 0.0 ], [ -0.00274658203125, 68.815927133360702, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1912, "task_x": 131070, "task_y": 61152, "task_z": 18, "center_y": 68.799792828624803, "area_in_sqm": 3071.44997107983, "perimeter_in_m": 221.682676540019, "length_x": 55.444462099084397, "length_y": 55.445700001846298 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.800041138826117, 0.0 ], [ -0.001373291015625, 68.800041138826117, 0.0 ], [ -0.001373291015625, 68.799544518423488, 0.0 ], [ -0.00274658203125, 68.799544518423488, 0.0 ], [ -0.00274658203125, 68.800041138826117, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1913, "task_x": 131070, "task_y": 61184, "task_z": 18, "center_y": 68.783895292597506, "area_in_sqm": 3075.83780443668, "perimeter_in_m": 221.84096657221701, "length_x": 55.484086608354197, "length_y": 55.485325260876898 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.784143780415036, 0.0 ], [ -0.001373291015625, 68.784143780415036, 0.0 ], [ -0.001373291015625, 68.78364680478002, 0.0 ], [ -0.00274658203125, 68.78364680478002, 0.0 ], [ -0.00274658203125, 68.784143780415036, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1914, "task_x": 131070, "task_y": 61216, "task_z": 18, "center_y": 68.767986385681596, "area_in_sqm": 3080.2314211130101, "perimeter_in_m": 221.9993521481, "length_x": 55.523735112298603, "length_y": 55.5249745147322 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.768235051223144, 0.0 ], [ -0.001373291015625, 68.768235051223144, 0.0 ], [ -0.001373291015625, 68.767737720139976, 0.0 ], [ -0.00274658203125, 68.767737720139976, 0.0 ], [ -0.00274658203125, 68.768235051223144, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1915, "task_x": 131070, "task_y": 61248, "task_z": 18, "center_y": 68.752066100971106, "area_in_sqm": 3084.63082718849, "perimeter_in_m": 222.15783330376499, "length_x": 55.563407615711597, "length_y": 55.564647768205496 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.752314944344732, 0.0 ], [ -0.001373291015625, 68.752314944344732, 0.0 ], [ -0.001373291015625, 68.751817257597565, 0.0 ], [ -0.00274658203125, 68.751817257597565, 0.0 ], [ -0.00274658203125, 68.752314944344732, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1916, "task_x": 131070, "task_y": 61280, "task_z": 18, "center_y": 68.736134431559094, "area_in_sqm": 3089.0360294580501, "perimeter_in_m": 222.31641005047899, "length_x": 55.603104123363302, "length_y": 55.604345026066298 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.736383452872644, 0.0 ], [ -0.001373291015625, 68.736383452872644, 0.0 ], [ -0.001373291015625, 68.735885410245615, 0.0 ], [ -0.00274658203125, 68.735885410245615, 0.0 ], [ -0.00274658203125, 68.736383452872644, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1917, "task_x": 131070, "task_y": 61312, "task_z": 18, "center_y": 68.720191370536895, "area_in_sqm": 3093.4470338821402, "perimeter_in_m": 222.47508239381699, "length_x": 55.642824640000697, "length_y": 55.644066293060803 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.720440569898287, 0.0 ], [ -0.001373291015625, 68.720440569898287, 0.0 ], [ -0.001373291015625, 68.719942171175475, 0.0 ], [ -0.00274658203125, 68.719942171175475, 0.0 ], [ -0.00274658203125, 68.720440569898287, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1918, "task_x": 131070, "task_y": 61344, "task_z": 18, "center_y": 68.704236910994396, "area_in_sqm": 3097.8638465404501, "perimeter_in_m": 222.63385037114099, "length_x": 55.682569170346703, "length_y": 55.6838115739111 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.704486288511674, 0.0 ], [ -0.001373291015625, 68.704486288511674, 0.0 ], [ -0.001373291015625, 68.703987533477118, 0.0 ], [ -0.00274658203125, 68.703987533477118, 0.0 ], [ -0.00274658203125, 68.704486288511674, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1919, "task_x": 131070, "task_y": 61376, "task_z": 18, "center_y": 68.688271046020304, "area_in_sqm": 3102.2864738702801, "perimeter_in_m": 222.79271399075199, "length_x": 55.7223377191008, "length_y": 55.723580873315797 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.688520601801415, 0.0 ], [ -0.001373291015625, 68.688520601801415, 0.0 ], [ -0.001373291015625, 68.688021490239109, 0.0 ], [ -0.00274658203125, 68.688021490239109, 0.0 ], [ -0.00274658203125, 68.688520601801415, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1920, "task_x": 131070, "task_y": 61408, "task_z": 18, "center_y": 68.672293768701707, "area_in_sqm": 3106.71492123604, "perimeter_in_m": 222.95167326586099, "length_x": 55.762130290938302, "length_y": 55.763374195949702 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.672543502854694, 0.0 ], [ -0.001373291015625, 68.672543502854694, 0.0 ], [ -0.001373291015625, 68.672044034548605, 0.0 ], [ -0.00274658203125, 68.672044034548605, 0.0 ], [ -0.00274658203125, 68.672543502854694, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1921, "task_x": 131070, "task_y": 61440, "task_z": 18, "center_y": 68.656305072124397, "area_in_sqm": 3111.1491962671298, "perimeter_in_m": 223.110728227316, "length_x": 55.801946890510798, "length_y": 55.803191546463701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.656554984757364, 0.0 ], [ -0.001373291015625, 68.656554984757364, 0.0 ], [ -0.001373291015625, 68.656055159491387, 0.0 ], [ -0.00274658203125, 68.656055159491387, 0.0 ], [ -0.00274658203125, 68.656554984757364, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1922, "task_x": 131070, "task_y": 61472, "task_z": 18, "center_y": 68.640304949372805, "area_in_sqm": 3115.58930361271, "perimeter_in_m": 223.26987888115099, "length_x": 55.841787522446097, "length_y": 55.8430329294846 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.640555040593796, 0.0 ], [ -0.001373291015625, 68.640555040593796, 0.0 ], [ -0.001373291015625, 68.640054858151814, 0.0 ], [ -0.00274658203125, 68.640054858151814, 0.0 ], [ -0.00274658203125, 68.640555040593796, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1923, "task_x": 131070, "task_y": 61504, "task_z": 18, "center_y": 68.624293393529996, "area_in_sqm": 3120.0352505445499, "perimeter_in_m": 223.429125249626, "length_x": 55.881652191347698, "length_y": 55.882898349615303 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.624543663447085, 0.0 ], [ -0.001373291015625, 68.624543663447085, 0.0 ], [ -0.001373291015625, 68.624043123612907, 0.0 ], [ -0.00274658203125, 68.624043123612907, 0.0 ], [ -0.00274658203125, 68.624543663447085, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1924, "task_x": 131070, "task_y": 61536, "task_z": 18, "center_y": 68.6082703976776, "area_in_sqm": 3124.4870431423201, "perimeter_in_m": 223.58846735142001, "length_x": 55.921540901795296, "length_y": 55.922787811434802 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.608520846398875, 0.0 ], [ -0.001373291015625, 68.608520846398875, 0.0 ], [ -0.001373291015625, 68.608019948956269, 0.0 ], [ -0.00274658203125, 68.608019948956269, 0.0 ], [ -0.00274658203125, 68.608520846398875, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1925, "task_x": 131070, "task_y": 61568, "task_z": 18, "center_y": 68.592235954895798, "area_in_sqm": 3128.9446874856899, "perimeter_in_m": 223.74790521365099, "length_x": 55.961453658344297, "length_y": 55.962701319497597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.592486582529489, 0.0 ], [ -0.001373291015625, 68.592486582529489, 0.0 ], [ -0.001373291015625, 68.591985327262208, 0.0 ], [ -0.00274658203125, 68.591985327262208, 0.0 ], [ -0.00274658203125, 68.592486582529489, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1926, "task_x": 131070, "task_y": 61600, "task_z": 18, "center_y": 68.576190058263705, "area_in_sqm": 3133.4081894159299, "perimeter_in_m": 223.90743882375099, "length_x": 56.001390465526001, "length_y": 56.002638878334302 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.576440864917842, 0.0 ], [ -0.001373291015625, 68.576440864917842, 0.0 ], [ -0.001373291015625, 68.575939251609583, 0.0 ], [ -0.00274658203125, 68.575939251609583, 0.0 ], [ -0.00274658203125, 68.576440864917842, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1927, "task_x": 131070, "task_y": 61632, "task_z": 18, "center_y": 68.560132700858802, "area_in_sqm": 3137.8775560855902, "perimeter_in_m": 224.06706822572701, "length_x": 56.041351327847103, "length_y": 56.042600492450902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.560383686641572, 0.0 ], [ -0.001373291015625, 68.560383686641572, 0.0 ], [ -0.001373291015625, 68.559881715075988, 0.0 ], [ -0.00274658203125, 68.559881715075988, 0.0 ], [ -0.00274658203125, 68.560383686641572, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1928, "task_x": 131070, "task_y": 61664, "task_z": 18, "center_y": 68.544063875757303, "area_in_sqm": 3142.3527923822398, "perimeter_in_m": 224.22679342532101, "length_x": 56.081336249790397, "length_y": 56.0825861663293 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.544315040776894, 0.0 ], [ -0.001373291015625, 68.544315040776894, 0.0 ], [ -0.001373291015625, 68.543812710737612, 0.0 ], [ -0.00274658203125, 68.543812710737612, 0.0 ], [ -0.00274658203125, 68.544315040776894, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1929, "task_x": 131070, "task_y": 61696, "task_z": 18, "center_y": 68.527983576034003, "area_in_sqm": 3146.83390581608, "perimeter_in_m": 224.386614448746, "length_x": 56.121345235813997, "length_y": 56.122595904426902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.528234920398759, 0.0 ], [ -0.001373291015625, 68.528234920398759, 0.0 ], [ -0.001373291015625, 68.527732231669319, 0.0 ], [ -0.00274658203125, 68.527732231669319, 0.0 ], [ -0.00274658203125, 68.528234920398759, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1930, "task_x": 131070, "task_y": 61728, "task_z": 18, "center_y": 68.511891794762704, "area_in_sqm": 3151.3209010362598, "perimeter_in_m": 224.54653130376801, "length_x": 56.161378290351401, "length_y": 56.162629711176599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.512143318580726, 0.0 ], [ -0.001373291015625, 68.512143318580726, 0.0 ], [ -0.001373291015625, 68.511640270944667, 0.0 ], [ -0.00274658203125, 68.511640270944667, 0.0 ], [ -0.00274658203125, 68.512143318580726, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1931, "task_x": 131070, "task_y": 61760, "task_z": 18, "center_y": 68.495788525015499, "area_in_sqm": 3155.81378591061, "perimeter_in_m": 224.706544009418, "length_x": 56.2014354178121, "length_y": 56.202687590986898 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.496040228395046, 0.0 ], [ -0.001373291015625, 68.496040228395046, 0.0 ], [ -0.001373291015625, 68.495536821635852, 0.0 ], [ -0.00274658203125, 68.495536821635852, 0.0 ], [ -0.00274658203125, 68.496040228395046, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1932, "task_x": 131070, "task_y": 61792, "task_z": 18, "center_y": 68.479673759863203, "area_in_sqm": 3160.3125659227399, "perimeter_in_m": 224.86665258398199, "length_x": 56.241516622580299, "length_y": 56.242769548241299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.479925642912661, 0.0 ], [ -0.001373291015625, 68.479925642912661, 0.0 ], [ -0.001373291015625, 68.479421876813788, 0.0 ], [ -0.00274658203125, 68.479421876813788, 0.0 ], [ -0.00274658203125, 68.479925642912661, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1933, "task_x": 131070, "task_y": 61824, "task_z": 18, "center_y": 68.463547492375596, "area_in_sqm": 3164.8172472715401, "perimeter_in_m": 225.02685704992899, "length_x": 56.281621909016003, "length_y": 56.282875587299102 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.463799555203224, 0.0 ], [ -0.001373291015625, 68.463799555203224, 0.0 ], [ -0.001373291015625, 68.463295429548069, 0.0 ], [ -0.00274658203125, 68.463295429548069, 0.0 ], [ -0.00274658203125, 68.463799555203224, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1934, "task_x": 131070, "task_y": 61856, "task_z": 18, "center_y": 68.447409715621006, "area_in_sqm": 3169.3278369903601, "perimeter_in_m": 225.187157413417, "length_x": 56.321751281454098, "length_y": 56.3230057124944 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.447661958335033, 0.0 ], [ -0.001373291015625, 68.447661958335033, 0.0 ], [ -0.001373291015625, 68.447157472906952, 0.0 ], [ -0.00274658203125, 68.447157472906952, 0.0 ], [ -0.00274658203125, 68.447661958335033, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1935, "task_x": 131070, "task_y": 61888, "task_z": 18, "center_y": 68.431260422666298, "area_in_sqm": 3173.84433948994, "perimeter_in_m": 225.34755369115001, "length_x": 56.361904744204999, "length_y": 56.363159928136703 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.431512845375138, 0.0 ], [ -0.001373291015625, 68.431512845375138, 0.0 ], [ -0.001373291015625, 68.431007999957458, 0.0 ], [ -0.00274658203125, 68.431007999957458, 0.0 ], [ -0.00274658203125, 68.431512845375138, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1936, "task_x": 131070, "task_y": 61920, "task_z": 18, "center_y": 68.4150996065773, "area_in_sqm": 3178.3667622804601, "perimeter_in_m": 225.50804590899801, "length_x": 56.402082301553897, "length_y": 56.403338238510599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.415352209389255, 0.0 ], [ -0.001373291015625, 68.415352209389255, 0.0 ], [ -0.001373291015625, 68.414847003765288, 0.0 ], [ -0.00274658203125, 68.414847003765288, 0.0 ], [ -0.00274658203125, 68.415352209389255, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1937, "task_x": 131070, "task_y": 61952, "task_z": 18, "center_y": 68.398927260418404, "area_in_sqm": 3182.8951119184499, "perimeter_in_m": 225.668634081449, "length_x": 56.442283957761397, "length_y": 56.443540647875899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.399180043441874, 0.0 ], [ -0.001373291015625, 68.399180043441874, 0.0 ], [ -0.001373291015625, 68.39867447739482, 0.0 ], [ -0.00274658203125, 68.39867447739482, 0.0 ], [ -0.00274658203125, 68.399180043441874, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1938, "task_x": 131070, "task_y": 61984, "task_z": 18, "center_y": 68.382743377252694, "area_in_sqm": 3187.4293941259398, "perimeter_in_m": 225.829318218699, "length_x": 56.482509717062598, "length_y": 56.483767160466797 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.382996340596151, 0.0 ], [ -0.001373291015625, 68.382996340596151, 0.0 ], [ -0.001373291015625, 68.382490413909238, 0.0 ], [ -0.00274658203125, 68.382490413909238, 0.0 ], [ -0.00274658203125, 68.382996340596151, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1939, "task_x": 131070, "task_y": 62016, "task_z": 18, "center_y": 68.366547950142206, "area_in_sqm": 3191.96961474419, "perimeter_in_m": 225.99009833371599, "length_x": 56.522759583667998, "length_y": 56.524017780492997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.366801093914006, 0.0 ], [ -0.001373291015625, 68.366801093914006, 0.0 ], [ -0.001373291015625, 68.366294806370405, 0.0 ], [ -0.00274658203125, 68.366294806370405, 0.0 ], [ -0.00274658203125, 68.366801093914006, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1940, "task_x": 131070, "task_y": 62048, "task_z": 18, "center_y": 68.350340972147507, "area_in_sqm": 3196.5157804489099, "perimeter_in_m": 226.15097444508601, "length_x": 56.563033561762602, "length_y": 56.564292512138699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.350594296456109, 0.0 ], [ -0.001373291015625, 68.350594296456109, 0.0 ], [ -0.001373291015625, 68.350087647838933, 0.0 ], [ -0.00274658203125, 68.350087647838933, 0.0 ], [ -0.00274658203125, 68.350594296456109, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1941, "task_x": 131070, "task_y": 62080, "task_z": 18, "center_y": 68.334122436328002, "area_in_sqm": 3201.0678976774202, "perimeter_in_m": 226.31194657417501, "length_x": 56.603331655506203, "length_y": 56.604591359563102 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.334375941281834, 0.0 ], [ -0.001373291015625, 68.334375941281834, 0.0 ], [ -0.001373291015625, 68.333868931374184, 0.0 ], [ -0.00274658203125, 68.333868931374184, 0.0 ], [ -0.00274658203125, 68.334375941281834, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1942, "task_x": 131070, "task_y": 62112, "task_z": 18, "center_y": 68.317892335741803, "area_in_sqm": 3205.6259727478, "perimeter_in_m": 226.47301474229201, "length_x": 56.643653869033301, "length_y": 56.644914326899901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.318146021449365, 0.0 ], [ -0.001373291015625, 68.318146021449365, 0.0 ], [ -0.001373291015625, 68.317638650034255, 0.0 ], [ -0.00274658203125, 68.317638650034255, 0.0 ], [ -0.00274658203125, 68.318146021449365, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1943, "task_x": 131070, "task_y": 62144, "task_z": 18, "center_y": 68.301650663445798, "area_in_sqm": 3210.1900109052699, "perimeter_in_m": 226.63417894168401, "length_x": 56.684000206453298, "length_y": 56.685261418257397 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.301904530015577, 0.0 ], [ -0.001373291015625, 68.301904530015577, 0.0 ], [ -0.001373291015625, 68.301396796876048, 0.0 ], [ -0.00274658203125, 68.301396796876048, 0.0 ], [ -0.00274658203125, 68.301904530015577, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1944, "task_x": 131070, "task_y": 62176, "task_z": 18, "center_y": 68.285397412495698, "area_in_sqm": 3214.76001930237, "perimeter_in_m": 226.79543921054301, "length_x": 56.724370671849798, "length_y": 56.725632637718597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.285651460036192, 0.0 ], [ -0.001373291015625, 68.285651460036192, 0.0 ], [ -0.001373291015625, 68.285143364955204, 0.0 ], [ -0.00274658203125, 68.285143364955204, 0.0 ], [ -0.00274658203125, 68.285651460036192, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1945, "task_x": 131070, "task_y": 62208, "task_z": 18, "center_y": 68.269132575945903, "area_in_sqm": 3219.3360044956198, "perimeter_in_m": 226.95679556366301, "length_x": 56.764765269281, "length_y": 56.766027989341097 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.269386804565642, 0.0 ], [ -0.001373291015625, 68.269386804565642, 0.0 ], [ -0.001373291015625, 68.268878347326122, 0.0 ], [ -0.00274658203125, 68.268878347326122, 0.0 ], [ -0.00274658203125, 68.269386804565642, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1946, "task_x": 131070, "task_y": 62240, "task_z": 18, "center_y": 68.252856146849595, "area_in_sqm": 3223.9179713725998, "perimeter_in_m": 227.11824799878701, "length_x": 56.805184002779498, "length_y": 56.806447477156397 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.253110556657177, 0.0 ], [ -0.001373291015625, 68.253110556657177, 0.0 ], [ -0.001373291015625, 68.252601737042013, 0.0 ], [ -0.00274658203125, 68.252601737042013, 0.0 ], [ -0.00274658203125, 68.253110556657177, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1947, "task_x": 131070, "task_y": 62272, "task_z": 18, "center_y": 68.236568118258802, "area_in_sqm": 3228.5059274434998, "perimeter_in_m": 227.27979654688599, "length_x": 56.845626876352398, "length_y": 56.846891105170897 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.236822709362812, 0.0 ], [ -0.001373291015625, 68.236822709362812, 0.0 ], [ -0.001373291015625, 68.236313527154877, 0.0 ], [ -0.00274658203125, 68.236313527154877, 0.0 ], [ -0.00274658203125, 68.236822709362812, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1948, "task_x": 131070, "task_y": 62304, "task_z": 18, "center_y": 68.220268483224402, "area_in_sqm": 3233.0998785495799, "perimeter_in_m": 227.44144121055601, "length_x": 56.886093893980998, "length_y": 56.887358877365003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.220523255733383, 0.0 ], [ -0.001373291015625, 68.220523255733383, 0.0 ], [ -0.001373291015625, 68.220013710715492, 0.0 ], [ -0.00274658203125, 68.220013710715492, 0.0 ], [ -0.00274658203125, 68.220523255733383, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1949, "task_x": 131070, "task_y": 62336, "task_z": 18, "center_y": 68.203957234795993, "area_in_sqm": 3237.6998306512801, "perimeter_in_m": 227.60318201712099, "length_x": 56.926585059620599, "length_y": 56.927850797693502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.204212188818502, 0.0 ], [ -0.001373291015625, 68.204212188818502, 0.0 ], [ -0.001373291015625, 68.203702280773442, 0.0 ], [ -0.00274658203125, 68.203702280773442, 0.0 ], [ -0.00274658203125, 68.204212188818502, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1950, "task_x": 131070, "task_y": 62368, "task_z": 18, "center_y": 68.187634366021896, "area_in_sqm": 3242.3057905435599, "perimeter_in_m": 227.76501897402801, "length_x": 56.9671003772009, "length_y": 56.968366870084999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.187889501666632, 0.0 ], [ -0.001373291015625, 68.187889501666632, 0.0 ], [ -0.001373291015625, 68.187379230377132, 0.0 ], [ -0.00274658203125, 68.187379230377132, 0.0 ], [ -0.00274658203125, 68.187889501666632, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1951, "task_x": 131070, "task_y": 62400, "task_z": 18, "center_y": 68.171299869949394, "area_in_sqm": 3246.91776418686, "perimeter_in_m": 227.926952095046, "length_x": 57.007639850625601, "length_y": 57.0089070984424 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.171555187325026, 0.0 ], [ -0.001373291015625, 68.171555187325026, 0.0 ], [ -0.001373291015625, 68.171044552573804, 0.0 ], [ -0.00274658203125, 68.171044552573804, 0.0 ], [ -0.00274658203125, 68.171555187325026, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1952, "task_x": 131070, "task_y": 62432, "task_z": 18, "center_y": 68.154953739624602, "area_in_sqm": 3251.5357577800801, "perimeter_in_m": 228.08898140380299, "length_x": 57.048203483772397, "length_y": 57.049471486642702 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.155209238839745, 0.0 ], [ -0.001373291015625, 68.155209238839745, 0.0 ], [ -0.001373291015625, 68.154698240409473, 0.0 ], [ -0.00274658203125, 68.154698240409473, 0.0 ], [ -0.00274658203125, 68.155209238839745, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1953, "task_x": 131070, "task_y": 62464, "task_z": 18, "center_y": 68.138595968092403, "area_in_sqm": 3256.1597775220898, "perimeter_in_m": 228.25110691324599, "length_x": 57.088791280492799, "length_y": 57.090060038536599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.138851649255741, 0.0 ], [ -0.001373291015625, 68.138851649255741, 0.0 ], [ -0.001373291015625, 68.138340286929051, 0.0 ], [ -0.00274658203125, 68.138340286929051, 0.0 ], [ -0.00274658203125, 68.138851649255741, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1954, "task_x": 131070, "task_y": 62496, "task_z": 18, "center_y": 68.122226548396497, "area_in_sqm": 3260.7898296117801, "perimeter_in_m": 228.41332862283801, "length_x": 57.129403244612398, "length_y": 57.130672757948801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.122482411616744, 0.0 ], [ -0.001373291015625, 68.122482411616744, 0.0 ], [ -0.001373291015625, 68.121970685176237, 0.0 ], [ -0.00274658203125, 68.121970685176237, 0.0 ], [ -0.00274658203125, 68.122482411616744, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1955, "task_x": 131070, "task_y": 62528, "task_z": 18, "center_y": 68.105845473579507, "area_in_sqm": 3265.4259209632901, "perimeter_in_m": 228.575646565949, "length_x": 57.170039379930401, "length_y": 57.1713096486776 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.106101518965374, 0.0 ], [ -0.001373291015625, 68.106101518965374, 0.0 ], [ -0.001373291015625, 68.105589428193611, 0.0 ], [ -0.00274658203125, 68.105589428193611, 0.0 ], [ -0.00274658203125, 68.106101518965374, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1956, "task_x": 131070, "task_y": 62560, "task_z": 18, "center_y": 68.089452736682802, "area_in_sqm": 3270.0680571794501, "perimeter_in_m": 228.738060742632, "length_x": 57.210699690219698, "length_y": 57.211970714495301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.089708964343089, 0.0 ], [ -0.001373291015625, 68.089708964343089, 0.0 ], [ -0.001373291015625, 68.089196509022599, 0.0 ], [ -0.00274658203125, 68.089196509022599, 0.0 ], [ -0.00274658203125, 68.089708964343089, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1957, "task_x": 131070, "task_y": 62592, "task_z": 18, "center_y": 68.0730483307469, "area_in_sqm": 3274.7162455320399, "perimeter_in_m": 228.90057118474499, "length_x": 57.251384179227003, "length_y": 57.252655959147702 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.073304740790235, 0.0 ], [ -0.001373291015625, 68.073304740790235, 0.0 ], [ -0.001373291015625, 68.072791920703509, 0.0 ], [ -0.00274658203125, 68.072791920703509, 0.0 ], [ -0.00274658203125, 68.073304740790235, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1958, "task_x": 131070, "task_y": 62624, "task_z": 18, "center_y": 68.056632248810701, "area_in_sqm": 3279.3704906702001, "perimeter_in_m": 229.063177883034, "length_x": 57.292092850672397, "length_y": 57.293365386353997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.05688884134598, 0.0 ], [ -0.001373291015625, 68.05688884134598, 0.0 ], [ -0.001373291015625, 68.056375656275463, 0.0 ], [ -0.00274658203125, 68.056375656275463, 0.0 ], [ -0.00274658203125, 68.05688884134598, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1959, "task_x": 131070, "task_y": 62656, "task_z": 18, "center_y": 68.040204483912504, "area_in_sqm": 3284.0307998657199, "perimeter_in_m": 229.22588085579599, "length_x": 57.3328257082497, "length_y": 57.334098999806997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.040461259048399, 0.0 ], [ -0.001373291015625, 68.040461259048399, 0.0 ], [ -0.001373291015625, 68.039947708776538, 0.0 ], [ -0.00274658203125, 68.039947708776538, 0.0 ], [ -0.00274658203125, 68.040461259048399, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1960, "task_x": 131070, "task_y": 62688, "task_z": 18, "center_y": 68.023765029089105, "area_in_sqm": 3288.6971789598501, "perimeter_in_m": 229.38868013897499, "length_x": 57.373582755626003, "length_y": 57.374856803173302 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.024021986934471, 0.0 ], [ -0.001373291015625, 68.024021986934471, 0.0 ], [ -0.001373291015625, 68.02350807124364, 0.0 ], [ -0.00274658203125, 68.02350807124364, 0.0 ], [ -0.00274658203125, 68.024021986934471, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1961, "task_x": 131070, "task_y": 62720, "task_z": 18, "center_y": 68.007313877376305, "area_in_sqm": 3293.3696351051299, "perimeter_in_m": 229.551575727396, "length_x": 57.4143639964418, "length_y": 57.415638800092502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 68.007571018040039, 0.0 ], [ -0.001373291015625, 68.007571018040039, 0.0 ], [ -0.001373291015625, 68.007056736712585, 0.0 ], [ -0.00274658203125, 68.007056736712585, 0.0 ], [ -0.00274658203125, 68.007571018040039, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1962, "task_x": 131070, "task_y": 62752, "task_z": 18, "center_y": 67.990851021808993, "area_in_sqm": 3298.04817318916, "perimeter_in_m": 229.71456763636601, "length_x": 57.455169434310797, "length_y": 57.456444994177303 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.991108345399851, 0.0 ], [ -0.001373291015625, 67.991108345399851, 0.0 ], [ -0.001373291015625, 67.990593698218106, 0.0 ], [ -0.00274658203125, 67.990593698218106, 0.0 ], [ -0.00274658203125, 67.991108345399851, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1963, "task_x": 131070, "task_y": 62784, "task_z": 18, "center_y": 67.974376455420696, "area_in_sqm": 3302.7328008413301, "perimeter_in_m": 229.87765588397301, "length_x": 57.495999072820098, "length_y": 57.497275389014099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.974633962047577, 0.0 ], [ -0.001373291015625, 67.974633962047577, 0.0 ], [ -0.001373291015625, 67.974118948793802, 0.0 ], [ -0.00274658203125, 67.974118948793802, 0.0 ], [ -0.00274658203125, 67.974633962047577, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1964, "task_x": 131070, "task_y": 62816, "task_z": 18, "center_y": 67.957890171244003, "area_in_sqm": 3307.4235236644699, "perimeter_in_m": 230.04084048399, "length_x": 57.5368529155297, "length_y": 57.538129988162098 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.958147861015789, 0.0 ], [ -0.001373291015625, 67.958147861015789, 0.0 ], [ -0.001373291015625, 67.957632481472245, 0.0 ], [ -0.00274658203125, 67.957632481472245, 0.0 ], [ -0.00274658203125, 67.958147861015789, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1965, "task_x": 131070, "task_y": 62848, "task_z": 18, "center_y": 67.941392162310393, "area_in_sqm": 3312.1203477382701, "perimeter_in_m": 230.20412144307099, "length_x": 57.577730965972997, "length_y": 57.579008795153698 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.941650035335982, 0.0 ], [ -0.001373291015625, 67.941650035335982, 0.0 ], [ -0.001373291015625, 67.941134289284904, 0.0 ], [ -0.00274658203125, 67.941134289284904, 0.0 ], [ -0.00274658203125, 67.941650035335982, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1966, "task_x": 131070, "task_y": 62880, "task_z": 18, "center_y": 67.924882421650395, "area_in_sqm": 3316.8232803344699, "perimeter_in_m": 230.36749877347, "length_x": 57.618633227656098, "length_y": 57.619911813494099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.925140478038614, 0.0 ], [ -0.001373291015625, 67.925140478038614, 0.0 ], [ -0.001373291015625, 67.924624365262162, 0.0 ], [ -0.00274658203125, 67.924624365262162, 0.0 ], [ -0.00274658203125, 67.925140478038614, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1967, "task_x": 131070, "task_y": 62912, "task_z": 18, "center_y": 67.9083609422932, "area_in_sqm": 3321.5323264598801, "perimeter_in_m": 230.53097250720799, "length_x": 57.659559704058097, "length_y": 57.660839046661998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.908619182153018, 0.0 ], [ -0.001373291015625, 67.908619182153018, 0.0 ], [ -0.001373291015625, 67.908102702433354, 0.0 ], [ -0.00274658203125, 67.908102702433354, 0.0 ], [ -0.00274658203125, 67.908619182153018, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1968, "task_x": 131070, "task_y": 62944, "task_z": 18, "center_y": 67.891827717267205, "area_in_sqm": 3326.2474929094301, "perimeter_in_m": 230.69454262741201, "length_x": 57.700510398631202, "length_y": 57.701790498108203 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.892086140707534, 0.0 ], [ -0.001373291015625, 67.892086140707534, 0.0 ], [ -0.001373291015625, 67.891569293826791, 0.0 ], [ -0.00274658203125, 67.891569293826791, 0.0 ], [ -0.00274658203125, 67.892086140707534, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1969, "task_x": 131070, "task_y": 62976, "task_z": 18, "center_y": 67.875282739599598, "area_in_sqm": 3330.9687861204102, "perimeter_in_m": 230.858209172361, "length_x": 57.741485314800101, "length_y": 57.742766171256797 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.875541346729435, 0.0 ], [ -0.001373291015625, 67.875541346729435, 0.0 ], [ -0.001373291015625, 67.87502413246969, 0.0 ], [ -0.00274658203125, 67.87502413246969, 0.0 ], [ -0.00274658203125, 67.875541346729435, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1970, "task_x": 131070, "task_y": 63008, "task_z": 18, "center_y": 67.858726002316601, "area_in_sqm": 3335.6962122917198, "perimeter_in_m": 231.021972146308, "length_x": 57.782484455962297, "length_y": 57.783766069504601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.858984793244943, 0.0 ], [ -0.001373291015625, 67.858984793244943, 0.0 ], [ -0.001373291015625, 67.858467211388231, 0.0 ], [ -0.00274658203125, 67.858467211388231, 0.0 ], [ -0.00274658203125, 67.858984793244943, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1971, "task_x": 131070, "task_y": 63040, "task_z": 18, "center_y": 67.842157498443498, "area_in_sqm": 3340.4297778606401, "perimeter_in_m": 231.18583156194001, "length_x": 57.823507825487901, "length_y": 57.824790196220597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.842416473279286, 0.0 ], [ -0.001373291015625, 67.842416473279286, 0.0 ], [ -0.001373291015625, 67.841898523607625, 0.0 ], [ -0.00274658203125, 67.841898523607625, 0.0 ], [ -0.00274658203125, 67.842416473279286, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1972, "task_x": 131070, "task_y": 63072, "task_z": 18, "center_y": 67.825577221004295, "area_in_sqm": 3345.1694885492302, "perimeter_in_m": 231.349787424813, "length_x": 57.864555426719903, "length_y": 57.865838554746901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.825836379856611, 0.0 ], [ -0.001373291015625, 67.825836379856611, 0.0 ], [ -0.001373291015625, 67.825318062152007, 0.0 ], [ -0.00274658203125, 67.825318062152007, 0.0 ], [ -0.00274658203125, 67.825836379856611, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1973, "task_x": 131070, "task_y": 63104, "task_z": 18, "center_y": 67.8089851630223, "area_in_sqm": 3349.9153516292599, "perimeter_in_m": 231.51383975316901, "length_x": 57.905627262973297, "length_y": 57.906911148397803 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.809244506000098, 0.0 ], [ -0.001373291015625, 67.809244506000098, 0.0 ], [ -0.001373291015625, 67.808725820044515, 0.0 ], [ -0.00274658203125, 67.808725820044515, 0.0 ], [ -0.00274658203125, 67.809244506000098, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1974, "task_x": 131070, "task_y": 63136, "task_z": 18, "center_y": 67.792381317519599, "area_in_sqm": 3354.6673721075099, "perimeter_in_m": 231.67798856306999, "length_x": 57.946723337535801, "length_y": 57.948007980460197 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.792640844731906, 0.0 ], [ -0.001373291015625, 67.792640844731906, 0.0 ], [ -0.001373291015625, 67.792121790307249, 0.0 ], [ -0.00274658203125, 67.792121790307249, 0.0 ], [ -0.00274658203125, 67.792640844731906, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1975, "task_x": 131070, "task_y": 63168, "task_z": 18, "center_y": 67.775765677517299, "area_in_sqm": 3359.4255574941599, "perimeter_in_m": 231.84223386273101, "length_x": 57.987843653667397, "length_y": 57.9891290541931 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.776025389073197, 0.0 ], [ -0.001373291015625, 67.776025389073197, 0.0 ], [ -0.001373291015625, 67.775505965961372, 0.0 ], [ -0.00274658203125, 67.775505965961372, 0.0 ], [ -0.00274658203125, 67.776025389073197, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1976, "task_x": 131070, "task_y": 63200, "task_z": 18, "center_y": 67.759138236035596, "area_in_sqm": 3364.1899131536502, "perimeter_in_m": 232.006575655365, "length_x": 58.028988214600503, "length_y": 58.030274372827897 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.759398132044112, 0.0 ], [ -0.001373291015625, 67.759398132044112, 0.0 ], [ -0.001373291015625, 67.75887834002701, 0.0 ], [ -0.00274658203125, 67.75887834002701, 0.0 ], [ -0.00274658203125, 67.759398132044112, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1977, "task_x": 131070, "task_y": 63232, "task_z": 18, "center_y": 67.742498986093594, "area_in_sqm": 3368.9604458808899, "perimeter_in_m": 232.171013973143, "length_x": 58.070157023539402, "length_y": 58.071443939568397 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.742759066663893, 0.0 ], [ -0.001373291015625, 67.742759066663893, 0.0 ], [ -0.001373291015625, 67.742238905523308, 0.0 ], [ -0.00274658203125, 67.742238905523308, 0.0 ], [ -0.00274658203125, 67.742759066663893, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1978, "task_x": 131070, "task_y": 63264, "task_z": 18, "center_y": 67.725847920709597, "area_in_sqm": 3373.7371627092398, "perimeter_in_m": 232.335548815621, "length_x": 58.111350083660902, "length_y": 58.112637757590299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.726108185950693, 0.0 ], [ -0.001373291015625, 67.726108185950693, 0.0 ], [ -0.001373291015625, 67.725587655468445, 0.0 ], [ -0.00274658203125, 67.725587655468445, 0.0 ], [ -0.00274658203125, 67.726108185950693, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1979, "task_x": 131070, "task_y": 63296, "task_z": 18, "center_y": 67.709185032900706, "area_in_sqm": 3378.5200684070601, "perimeter_in_m": 232.50018019575299, "length_x": 58.152567398113597, "length_y": 58.153855830041302 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.709445482921794, 0.0 ], [ -0.001373291015625, 67.709445482921794, 0.0 ], [ -0.001373291015625, 67.708924582879632, 0.0 ], [ -0.00274658203125, 67.708924582879632, 0.0 ], [ -0.00274658203125, 67.709445482921794, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1980, "task_x": 131070, "task_y": 63328, "task_z": 18, "center_y": 67.692510315683293, "area_in_sqm": 3383.3091696500801, "perimeter_in_m": 232.66490811722599, "length_x": 58.193808970018203, "length_y": 58.195098160041198 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.692770950593427, 0.0 ], [ -0.001373291015625, 67.692770950593427, 0.0 ], [ -0.001373291015625, 67.692249680773145, 0.0 ], [ -0.00274658203125, 67.692249680773145, 0.0 ], [ -0.00274658203125, 67.692770950593427, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1981, "task_x": 131070, "task_y": 63360, "task_z": 18, "center_y": 67.675823762072596, "area_in_sqm": 3388.1044739484801, "perimeter_in_m": 232.82973260419899, "length_x": 58.235074802467402, "length_y": 58.236364750681901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.676084581980973, 0.0 ], [ -0.001373291015625, 67.676084581980973, 0.0 ], [ -0.001373291015625, 67.675562942164262, 0.0 ], [ -0.00274658203125, 67.675562942164262, 0.0 ], [ -0.00274658203125, 67.676084581980973, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1982, "task_x": 131070, "task_y": 63392, "task_z": 18, "center_y": 67.659125365083099, "area_in_sqm": 3392.90598618984, "perimeter_in_m": 232.99465366450099, "length_x": 58.2763648985255, "length_y": 58.277655605026801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.659386370098801, 0.0 ], [ -0.001373291015625, 67.659386370098801, 0.0 ], [ -0.001373291015625, 67.658864360067327, 0.0 ], [ -0.00274658203125, 67.658864360067327, 0.0 ], [ -0.00274658203125, 67.659386370098801, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1983, "task_x": 131070, "task_y": 63424, "task_z": 18, "center_y": 67.642415117728106, "area_in_sqm": 3397.7137132883099, "perimeter_in_m": 233.15967131085401, "length_x": 58.317679261228697, "length_y": 58.318970726111303 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.642676307960357, 0.0 ], [ -0.001373291015625, 67.642676307960357, 0.0 ], [ -0.001373291015625, 67.642153927495784, 0.0 ], [ -0.00274658203125, 67.642153927495784, 0.0 ], [ -0.00274658203125, 67.642676307960357, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1984, "task_x": 131070, "task_y": 63456, "task_z": 18, "center_y": 67.625693013020197, "area_in_sqm": 3402.5276612043399, "perimeter_in_m": 233.324785541757, "length_x": 58.359017893584898, "length_y": 58.360310116942301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.625954388578151, 0.0 ], [ -0.001373291015625, 67.625954388578151, 0.0 ], [ -0.001373291015625, 67.625431637462128, 0.0 ], [ -0.00274658203125, 67.625431637462128, 0.0 ], [ -0.00274658203125, 67.625954388578151, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1985, "task_x": 131070, "task_y": 63488, "task_z": 18, "center_y": 67.608959043970899, "area_in_sqm": 3407.34783685207, "perimeter_in_m": 233.48999638752201, "length_x": 58.4003807985736, "length_y": 58.401673780498498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.609220604963824, 0.0 ], [ -0.001373291015625, 67.609220604963824, 0.0 ], [ -0.001373291015625, 67.608697482977917, 0.0 ], [ -0.00274658203125, 67.608697482977917, 0.0 ], [ -0.00274658203125, 67.609220604963824, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1986, "task_x": 131070, "task_y": 63520, "task_z": 18, "center_y": 67.592213203590902, "area_in_sqm": 3412.1742461919798, "perimeter_in_m": 233.65530385008401, "length_x": 58.441767979146, "length_y": 58.443061719730103 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.592474950128022, 0.0 ], [ -0.001373291015625, 67.592474950128022, 0.0 ], [ -0.001373291015625, 67.59195145705381, 0.0 ], [ -0.00274658203125, 67.59195145705381, 0.0 ], [ -0.00274658203125, 67.592474950128022, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1987, "task_x": 131070, "task_y": 63552, "task_z": 18, "center_y": 67.575455484890099, "area_in_sqm": 3417.00689542294, "perimeter_in_m": 233.820707936264, "length_x": 58.483179438224397, "length_y": 58.484473937558597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.575717417080554, 0.0 ], [ -0.001373291015625, 67.575717417080554, 0.0 ], [ -0.001373291015625, 67.575193552699588, 0.0 ], [ -0.00274658203125, 67.575193552699588, 0.0 ], [ -0.00274658203125, 67.575717417080554, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1988, "task_x": 131070, "task_y": 63584, "task_z": 18, "center_y": 67.558685880877206, "area_in_sqm": 3421.84579098225, "perimeter_in_m": 233.98620866486999, "length_x": 58.524615178702803, "length_y": 58.525910436877098 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.55894799883032, 0.0 ], [ -0.001373291015625, 67.55894799883032, 0.0 ], [ -0.001373291015625, 67.558423762924093, 0.0 ], [ -0.00274658203125, 67.558423762924093, 0.0 ], [ -0.00274658203125, 67.55894799883032, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1989, "task_x": 131070, "task_y": 63616, "task_z": 18, "center_y": 67.541904384560297, "area_in_sqm": 3426.69093894959, "perimeter_in_m": 234.15180603482901, "length_x": 58.566075203446502, "length_y": 58.567371220549902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.542166688385294, 0.0 ], [ -0.001373291015625, 67.542166688385294, 0.0 ], [ -0.001373291015625, 67.541642080735329, 0.0 ], [ -0.00274658203125, 67.541642080735329, 0.0 ], [ -0.00274658203125, 67.542166688385294, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1990, "task_x": 131070, "task_y": 63648, "task_z": 18, "center_y": 67.525110988946494, "area_in_sqm": 3431.5423461198802, "perimeter_in_m": 234.317500066956, "length_x": 58.607559515291904, "length_y": 58.6088562914126 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.525373478752641, 0.0 ], [ -0.001373291015625, 67.525373478752641, 0.0 ], [ -0.001373291015625, 67.524848499140361, 0.0 ], [ -0.00274658203125, 67.524848499140361, 0.0 ], [ -0.00274658203125, 67.525373478752641, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1991, "task_x": 131070, "task_y": 63680, "task_z": 18, "center_y": 67.508305687041997, "area_in_sqm": 3436.4000178575502, "perimeter_in_m": 234.48329076713901, "length_x": 58.649068117046703, "length_y": 58.6503656522721 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.508568362938576, 0.0 ], [ -0.001373291015625, 67.508568362938576, 0.0 ], [ -0.001373291015625, 67.508043011145446, 0.0 ], [ -0.00274658203125, 67.508043011145446, 0.0 ], [ -0.00274658203125, 67.508568362938576, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1992, "task_x": 131070, "task_y": 63712, "task_z": 18, "center_y": 67.491488471852193, "area_in_sqm": 3441.2639620304099, "perimeter_in_m": 234.64917815677799, "length_x": 58.690601011489598, "length_y": 58.691899305905999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.491751333948528, 0.0 ], [ -0.001373291015625, 67.491751333948528, 0.0 ], [ -0.001373291015625, 67.491225609755915, 0.0 ], [ -0.00274658203125, 67.491225609755915, 0.0 ], [ -0.00274658203125, 67.491751333948528, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1993, "task_x": 131070, "task_y": 63744, "task_z": 18, "center_y": 67.474659336381606, "area_in_sqm": 3446.1341834068298, "perimeter_in_m": 234.815162225373, "length_x": 58.732158201370602, "length_y": 58.7334572550633 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.474922384787007, 0.0 ], [ -0.001373291015625, 67.474922384787007, 0.0 ], [ -0.001373291015625, 67.474396287976305, 0.0 ], [ -0.00274658203125, 67.474396287976305, 0.0 ], [ -0.00274658203125, 67.474922384787007, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1994, "task_x": 131070, "task_y": 63776, "task_z": 18, "center_y": 67.457818273634004, "area_in_sqm": 3451.0106891393698, "perimeter_in_m": 234.98124299986, "length_x": 58.77373968941, "length_y": 58.775039502463699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.45808150845771, 0.0 ], [ -0.001373291015625, 67.45808150845771, 0.0 ], [ -0.001373291015625, 67.457555038810284, 0.0 ], [ -0.00274658203125, 67.457555038810284, 0.0 ], [ -0.00274658203125, 67.45808150845771, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1995, "task_x": 131070, "task_y": 63808, "task_z": 18, "center_y": 67.440965276612104, "area_in_sqm": 3455.8934855461098, "perimeter_in_m": 235.14742048095701, "length_x": 58.815345478299797, "length_y": 58.816646050798198 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.441228697963481, 0.0 ], [ -0.001373291015625, 67.441228697963481, 0.0 ], [ -0.001373291015625, 67.440701855260642, 0.0 ], [ -0.00274658203125, 67.440701855260642, 0.0 ], [ -0.00274658203125, 67.441228697963481, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1996, "task_x": 131070, "task_y": 63840, "task_z": 18, "center_y": 67.424100338317899, "area_in_sqm": 3460.7825785875302, "perimeter_in_m": 235.313694674245, "length_x": 58.856975570702197, "length_y": 58.858276902727901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.424363946306372, 0.0 ], [ -0.001373291015625, 67.424363946306372, 0.0 ], [ -0.001373291015625, 67.423836730329413, 0.0 ], [ -0.00274658203125, 67.423836730329413, 0.0 ], [ -0.00274658203125, 67.424363946306372, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1997, "task_x": 131070, "task_y": 63872, "task_z": 18, "center_y": 67.407223451752699, "area_in_sqm": 3465.67797470093, "perimeter_in_m": 235.48006561429099, "length_x": 58.898629969250301, "length_y": 58.899932060885199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.407487246487548, 0.0 ], [ -0.001373291015625, 67.407487246487548, 0.0 ], [ -0.001373291015625, 67.406959657017751, 0.0 ], [ -0.00274658203125, 67.406959657017751, 0.0 ], [ -0.00274658203125, 67.407487246487548, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1998, "task_x": 131070, "task_y": 63904, "task_z": 18, "center_y": 67.390334609916707, "area_in_sqm": 3470.5796799659702, "perimeter_in_m": 235.646533275422, "length_x": 58.9403086765479, "length_y": 58.941611527872801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.390598591507398, 0.0 ], [ -0.001373291015625, 67.390598591507398, 0.0 ], [ -0.001373291015625, 67.390070628326029, 0.0 ], [ -0.00274658203125, 67.390070628326029, 0.0 ], [ -0.00274658203125, 67.390598591507398, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 1999, "task_x": 131070, "task_y": 63936, "task_z": 18, "center_y": 67.373433805809697, "area_in_sqm": 3475.4877015352199, "perimeter_in_m": 235.81309770056799, "length_x": 58.982011695169298, "length_y": 58.983315306264302 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.373697974365541, 0.0 ], [ -0.001373291015625, 67.373697974365541, 0.0 ], [ -0.001373291015625, 67.373169637253795, 0.0 ], [ -0.00274658203125, 67.373169637253795, 0.0 ], [ -0.00274658203125, 67.373697974365541, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2000, "task_x": 131070, "task_y": 63968, "task_z": 18, "center_y": 67.356521032430294, "area_in_sqm": 3480.40204453468, "perimeter_in_m": 235.97975887103399, "length_x": 59.023739027659403, "length_y": 59.025043398603401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.356785388060715, 0.0 ], [ -0.001373291015625, 67.356785388060715, 0.0 ], [ -0.001373291015625, 67.356256676799816, 0.0 ], [ -0.00274658203125, 67.356256676799816, 0.0 ], [ -0.00274658203125, 67.356785388060715, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2001, "task_x": 131070, "task_y": 64000, "task_z": 18, "center_y": 67.339596282776498, "area_in_sqm": 3485.3227163553202, "perimeter_in_m": 236.14651681617701, "length_x": 59.0654906765334, "length_y": 59.066795807404603 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.339860825590961, 0.0 ], [ -0.001373291015625, 67.339860825590961, 0.0 ], [ -0.001373291015625, 67.339331739962063, 0.0 ], [ -0.00274658203125, 67.339331739962063, 0.0 ], [ -0.00274658203125, 67.339860825590961, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2002, "task_x": 131070, "task_y": 64032, "task_z": 18, "center_y": 67.322659549845596, "area_in_sqm": 3490.2497229576102, "perimeter_in_m": 236.31337152495601, "length_x": 59.107266644276898, "length_y": 59.108572535152497 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.32292427995344, 0.0 ], [ -0.001373291015625, 67.32292427995344, 0.0 ], [ -0.001373291015625, 67.322394819737724, 0.0 ], [ -0.00274658203125, 67.322394819737724, 0.0 ], [ -0.00274658203125, 67.32292427995344, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2003, "task_x": 131070, "task_y": 64064, "task_z": 18, "center_y": 67.305710826633899, "area_in_sqm": 3495.1830699443799, "perimeter_in_m": 236.48032303156899, "length_x": 59.149066933345601, "length_y": 59.150373584301903 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.305975744144661, 0.0 ], [ -0.001373291015625, 67.305975744144661, 0.0 ], [ -0.001373291015625, 67.305445909123222, 0.0 ], [ -0.00274658203125, 67.305445909123222, 0.0 ], [ -0.00274658203125, 67.305975744144661, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2004, "task_x": 131070, "task_y": 64096, "task_z": 18, "center_y": 67.288750106137201, "area_in_sqm": 3500.12276482582, "perimeter_in_m": 236.64737132981301, "length_x": 59.190891546165801, "length_y": 59.192198957278102 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.289015211160262, 0.0 ], [ -0.001373291015625, 67.289015211160262, 0.0 ], [ -0.001373291015625, 67.288485001114211, 0.0 ], [ -0.00274658203125, 67.288485001114211, 0.0 ], [ -0.00274658203125, 67.289015211160262, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2005, "task_x": 131070, "task_y": 64128, "task_z": 18, "center_y": 67.271777381350404, "area_in_sqm": 3505.0688136816002, "perimeter_in_m": 236.81451643181899, "length_x": 59.232740485133498, "length_y": 59.234048656476197 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.272042673995202, 0.0 ], [ -0.001373291015625, 67.272042673995202, 0.0 ], [ -0.001373291015625, 67.271512088705606, 0.0 ], [ -0.00274658203125, 67.271512088705606, 0.0 ], [ -0.00274658203125, 67.272042673995202, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2006, "task_x": 131070, "task_y": 64160, "task_z": 18, "center_y": 67.254792645267599, "area_in_sqm": 3510.0212216377299, "perimeter_in_m": 236.98175833338999, "length_x": 59.274613752614897, "length_y": 59.275922684261403 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.255058125643629, 0.0 ], [ -0.001373291015625, 67.255058125643629, 0.0 ], [ -0.001373291015625, 67.254527164891584, 0.0 ], [ -0.00274658203125, 67.254527164891584, 0.0 ], [ -0.00274658203125, 67.255058125643629, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2007, "task_x": 131070, "task_y": 64192, "task_z": 18, "center_y": 67.237795890882296, "area_in_sqm": 3514.9799962043799, "perimeter_in_m": 237.149097061405, "length_x": 59.3165113509462, "length_y": 59.317821042969101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.238061559099023, 0.0 ], [ -0.001373291015625, 67.238061559099023, 0.0 ], [ -0.001373291015625, 67.237530222665526, 0.0 ], [ -0.00274658203125, 67.237530222665526, 0.0 ], [ -0.00274658203125, 67.238061559099023, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2008, "task_x": 131070, "task_y": 64224, "task_z": 18, "center_y": 67.220787111187093, "area_in_sqm": 3519.9451434612301, "perimeter_in_m": 237.31653261790501, "length_x": 59.358433282433403, "length_y": 59.3597437349042 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.221052967354083, 0.0 ], [ -0.001373291015625, 67.221052967354083, 0.0 ], [ -0.001373291015625, 67.220521255020159, 0.0 ], [ -0.00274658203125, 67.220521255020159, 0.0 ], [ -0.00274658203125, 67.221052967354083, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2009, "task_x": 131070, "task_y": 64256, "task_z": 18, "center_y": 67.203766299174106, "area_in_sqm": 3524.9166692495301, "perimeter_in_m": 237.48406500629099, "length_x": 59.400379549352301, "length_y": 59.401690762341801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.204032343400797, 0.0 ], [ -0.001373291015625, 67.204032343400797, 0.0 ], [ -0.001373291015625, 67.203500254947443, 0.0 ], [ -0.00274658203125, 67.203500254947443, 0.0 ], [ -0.00274658203125, 67.204032343400797, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2010, "task_x": 131070, "task_y": 64288, "task_z": 18, "center_y": 67.186733447834499, "area_in_sqm": 3529.89458060265, "perimeter_in_m": 237.65169424051999, "length_x": 59.442350153948603, "length_y": 59.443662127526302 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.186999680230457, 0.0 ], [ -0.001373291015625, 67.186999680230457, 0.0 ], [ -0.001373291015625, 67.186467215438626, 0.0 ], [ -0.00274658203125, 67.186467215438626, 0.0 ], [ -0.00274658203125, 67.186999680230457, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2011, "task_x": 131070, "task_y": 64320, "task_z": 18, "center_y": 67.169688550158995, "area_in_sqm": 3534.8788837194402, "perimeter_in_m": 237.81942032174399, "length_x": 59.484345098437501, "length_y": 59.485657832672103 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.169954970833658, 0.0 ], [ -0.001373291015625, 67.169954970833658, 0.0 ], [ -0.001373291015625, 67.169422129484303, 0.0 ], [ -0.00274658203125, 67.169422129484303, 0.0 ], [ -0.00274658203125, 67.169954970833658, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2012, "task_x": 131070, "task_y": 64352, "task_z": 18, "center_y": 67.152631599137294, "area_in_sqm": 3539.8695846795999, "perimeter_in_m": 237.98724327582499, "length_x": 59.526364385003802, "length_y": 59.527677879963299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.15289820820027, 0.0 ], [ -0.001373291015625, 67.15289820820027, 0.0 ], [ -0.001373291015625, 67.15236499007429, 0.0 ], [ -0.00274658203125, 67.15236499007429, 0.0 ], [ -0.00274658203125, 67.15289820820027, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2013, "task_x": 131070, "task_y": 64384, "task_z": 18, "center_y": 67.135562587758599, "area_in_sqm": 3544.8666900396302, "perimeter_in_m": 238.15516308469199, "length_x": 59.568408015801701, "length_y": 59.569722271552799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.135829385319482, 0.0 ], [ -0.001373291015625, 67.135829385319482, 0.0 ], [ -0.001373291015625, 67.135295790197816, 0.0 ], [ -0.00274658203125, 67.135295790197816, 0.0 ], [ -0.00274658203125, 67.135829385319482, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2014, "task_x": 131070, "task_y": 64416, "task_z": 18, "center_y": 67.118481509011602, "area_in_sqm": 3549.8702056407901, "perimeter_in_m": 238.323179777619, "length_x": 59.610475992955102, "length_y": 59.611791009563802 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.118748495179844, 0.0 ], [ -0.001373291015625, 67.118748495179844, 0.0 ], [ -0.001373291015625, 67.118214522843331, 0.0 ], [ -0.00274658203125, 67.118214522843331, 0.0 ], [ -0.00274658203125, 67.118748495179844, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2015, "task_x": 131070, "task_y": 64448, "task_z": 18, "center_y": 67.101388355883898, "area_in_sqm": 3554.8801381588, "perimeter_in_m": 238.49129334560899, "length_x": 59.652568318557002, "length_y": 59.653884096087999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.101655530769193, 0.0 ], [ -0.001373291015625, 67.101655530769193, 0.0 ], [ -0.001373291015625, 67.101121180998717, 0.0 ], [ -0.00274658203125, 67.101121180998717, 0.0 ], [ -0.00274658203125, 67.101655530769193, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2016, "task_x": 131070, "task_y": 64480, "task_z": 18, "center_y": 67.084283121362901, "area_in_sqm": 3559.89649391174, "perimeter_in_m": 238.65950380224299, "length_x": 59.6946849946697, "length_y": 59.696001533187101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.084550485074715, 0.0 ], [ -0.001373291015625, 67.084550485074715, 0.0 ], [ -0.001373291015625, 67.08401575765113, 0.0 ], [ -0.00274658203125, 67.08401575765113, 0.0 ], [ -0.00274658203125, 67.084550485074715, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2017, "task_x": 131070, "task_y": 64512, "task_z": 18, "center_y": 67.067165798434999, "area_in_sqm": 3564.91927945614, "perimeter_in_m": 238.82781116175801, "length_x": 59.736826023324802, "length_y": 59.738143322891602 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.067433351082968, 0.0 ], [ -0.001373291015625, 67.067433351082968, 0.0 ], [ -0.001373291015625, 67.066898245787073, 0.0 ], [ -0.00274658203125, 67.066898245787073, 0.0 ], [ -0.00274658203125, 67.067433351082968, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2018, "task_x": 131070, "task_y": 64544, "task_z": 18, "center_y": 67.050036380086198, "area_in_sqm": 3569.9485003948198, "perimeter_in_m": 238.99621542203499, "length_x": 59.778991406522998, "length_y": 59.7803094672011 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.05030412177986, 0.0 ], [ -0.001373291015625, 67.05030412177986, 0.0 ], [ -0.001373291015625, 67.04976863839245, 0.0 ], [ -0.00274658203125, 67.04976863839245, 0.0 ], [ -0.00274658203125, 67.05030412177986, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2019, "task_x": 131070, "task_y": 64576, "task_z": 18, "center_y": 67.032894859301607, "area_in_sqm": 3574.9841637611398, "perimeter_in_m": 239.16471659364399, "length_x": 59.821181146233798, "length_y": 59.822499968084301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.033162790150641, 0.0 ], [ -0.001373291015625, 67.033162790150641, 0.0 ], [ -0.001373291015625, 67.032626928452515, 0.0 ], [ -0.00274658203125, 67.032626928452515, 0.0 ], [ -0.00274658203125, 67.033162790150641, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2020, "task_x": 131070, "task_y": 64608, "task_z": 18, "center_y": 67.015741229065895, "area_in_sqm": 3580.0262753963498, "perimeter_in_m": 239.33331468497499, "length_x": 59.863395244396003, "length_y": 59.864714827478998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 67.016009349179953, 0.0 ], [ -0.001373291015625, 67.016009349179953, 0.0 ], [ -0.001373291015625, 67.015473108951852, 0.0 ], [ -0.00274658203125, 67.015473108951852, 0.0 ], [ -0.00274658203125, 67.016009349179953, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2021, "task_x": 131070, "task_y": 64640, "task_z": 18, "center_y": 66.998575482363194, "area_in_sqm": 3585.07484233379, "perimeter_in_m": 239.50200969654901, "length_x": 59.905633702917001, "length_y": 59.906954047291599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.99884379185184, 0.0 ], [ -0.001373291015625, 66.99884379185184, 0.0 ], [ -0.001373291015625, 66.998307172874519, 0.0 ], [ -0.00274658203125, 66.998307172874519, 0.0 ], [ -0.00274658203125, 66.99884379185184, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2022, "task_x": 131070, "task_y": 64672, "task_z": 18, "center_y": 66.981397612176806, "area_in_sqm": 3590.1298701763199, "perimeter_in_m": 239.670801640165, "length_x": 59.947896523673101, "length_y": 59.949217629397502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.981666111149707, 0.0 ], [ -0.001373291015625, 66.981666111149707, 0.0 ], [ -0.001373291015625, 66.981129113203863, 0.0 ], [ -0.00274658203125, 66.981129113203863, 0.0 ], [ -0.00274658203125, 66.981666111149707, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2023, "task_x": 131070, "task_y": 64704, "task_z": 18, "center_y": 66.964207611489499, "area_in_sqm": 3595.1913658380499, "perimeter_in_m": 239.839690524014, "length_x": 59.990183708509498, "length_y": 59.991505575640701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.964476300056376, 0.0 ], [ -0.001373291015625, 66.964476300056376, 0.0 ], [ -0.001373291015625, 66.963938922922736, 0.0 ], [ -0.00274658203125, 66.963938922922736, 0.0 ], [ -0.00274658203125, 66.964476300056376, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2024, "task_x": 131070, "task_y": 64736, "task_z": 18, "center_y": 66.947005473283696, "area_in_sqm": 3600.2593348026298, "perimeter_in_m": 240.00867634915099, "length_x": 60.032495259239703, "length_y": 60.033817887833997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.947274351554071, 0.0 ], [ -0.001373291015625, 66.947274351554071, 0.0 ], [ -0.001373291015625, 66.946736595013334, 0.0 ], [ -0.00274658203125, 66.946736595013334, 0.0 ], [ -0.00274658203125, 66.947274351554071, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2025, "task_x": 131070, "task_y": 64768, "task_z": 18, "center_y": 66.929791190540897, "area_in_sqm": 3605.3337842226001, "perimeter_in_m": 240.177759130715, "length_x": 60.074831177645997, "length_y": 60.0761545677586 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.930060258624465, 0.0 ], [ -0.001373291015625, 66.930060258624465, 0.0 ], [ -0.001373291015625, 66.929522122457271, 0.0 ], [ -0.00274658203125, 66.929522122457271, 0.0 ], [ -0.00274658203125, 66.930060258624465, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2026, "task_x": 131070, "task_y": 64800, "task_z": 18, "center_y": 66.912564756242105, "area_in_sqm": 3610.4147202968602, "perimeter_in_m": 240.346938867505, "length_x": 60.117191465479202, "length_y": 60.118515617164199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.912834014248631, 0.0 ], [ -0.001373291015625, 66.912834014248631, 0.0 ], [ -0.001373291015625, 66.912295498235622, 0.0 ], [ -0.00274658203125, 66.912295498235622, 0.0 ], [ -0.00274658203125, 66.912834014248631, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2027, "task_x": 131070, "task_y": 64832, "task_z": 18, "center_y": 66.895326163367997, "area_in_sqm": 3615.5021491050702, "perimeter_in_m": 240.51621556038401, "length_x": 60.159576124458297, "length_y": 60.160901037769001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.89559561140706, 0.0 ], [ -0.001373291015625, 66.89559561140706, 0.0 ], [ -0.001373291015625, 66.895056715328906, 0.0 ], [ -0.00274658203125, 66.895056715328906, 0.0 ], [ -0.00274658203125, 66.89559561140706, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2028, "task_x": 131070, "task_y": 64864, "task_z": 18, "center_y": 66.878075404898397, "area_in_sqm": 3620.5960769653302, "perimeter_in_m": 240.685589228552, "length_x": 60.201985156270801, "length_y": 60.203310831259401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.878345043079747, 0.0 ], [ -0.001373291015625, 66.878345043079747, 0.0 ], [ -0.001373291015625, 66.877805766717017, 0.0 ], [ -0.00274658203125, 66.877805766717017, 0.0 ], [ -0.00274658203125, 66.878345043079747, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2029, "task_x": 131070, "task_y": 64896, "task_z": 18, "center_y": 66.8608124738128, "area_in_sqm": 3625.6965107917799, "perimeter_in_m": 240.85505986778199, "length_x": 60.244418562572299, "length_y": 60.245744999289997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.861082302246103, 0.0 ], [ -0.001373291015625, 66.861082302246103, 0.0 ], [ -0.001373291015625, 66.860542645379425, 0.0 ], [ -0.00274658203125, 66.860542645379425, 0.0 ], [ -0.00274658203125, 66.861082302246103, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2030, "task_x": 131070, "task_y": 64928, "task_z": 18, "center_y": 66.843537363089993, "area_in_sqm": 3630.8034558296199, "perimeter_in_m": 241.02462747945199, "length_x": 60.286876344986901, "length_y": 60.288203543484002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.843807381884986, 0.0 ], [ -0.001373291015625, 66.843807381884986, 0.0 ], [ -0.001373291015625, 66.843267344294958, 0.0 ], [ -0.00274658203125, 66.843267344294958, 0.0 ], [ -0.00274658203125, 66.843807381884986, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2031, "task_x": 131070, "task_y": 64960, "task_z": 18, "center_y": 66.826250065708393, "area_in_sqm": 3635.9169189929999, "perimeter_in_m": 241.19429208398699, "length_x": 60.329358505106399, "length_y": 60.330686465432102 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.826520274974797, 0.0 ], [ -0.001373291015625, 66.826520274974797, 0.0 ], [ -0.001373291015625, 66.825979856441947, 0.0 ], [ -0.00274658203125, 66.825979856441947, 0.0 ], [ -0.00274658203125, 66.826520274974797, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2032, "task_x": 131070, "task_y": 64992, "task_z": 18, "center_y": 66.808950574645806, "area_in_sqm": 3641.0369073152501, "perimeter_in_m": 241.364053674139, "length_x": 60.371865044490903, "length_y": 60.373193766693298 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.809220974493329, 0.0 ], [ -0.001373291015625, 66.809220974493329, 0.0 ], [ -0.001373291015625, 66.808680174798241, 0.0 ], [ -0.00274658203125, 66.808680174798241, 0.0 ], [ -0.00274658203125, 66.809220974493329, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2033, "task_x": 131070, "task_y": 65024, "task_z": 18, "center_y": 66.791638882879496, "area_in_sqm": 3646.1634256839802, "perimeter_in_m": 241.533912258866, "length_x": 60.414395964668103, "length_y": 60.415725448794603 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.791909473417945, 0.0 ], [ -0.001373291015625, 66.791909473417945, 0.0 ], [ -0.001373291015625, 66.791368292341133, 0.0 ], [ -0.00274658203125, 66.791368292341133, 0.0 ], [ -0.00274658203125, 66.791909473417945, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2034, "task_x": 131070, "task_y": 65056, "task_z": 18, "center_y": 66.774314983386503, "area_in_sqm": 3651.2964818477599, "perimeter_in_m": 241.70386785911001, "length_x": 60.456951267133803, "length_y": 60.458281513230702 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.774585764725487, 0.0 ], [ -0.001373291015625, 66.774585764725487, 0.0 ], [ -0.001373291015625, 66.774044202047435, 0.0 ], [ -0.00274658203125, 66.774044202047435, 0.0 ], [ -0.00274658203125, 66.774585764725487, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2035, "task_x": 131070, "task_y": 65088, "task_z": 18, "center_y": 66.756978869142898, "area_in_sqm": 3656.4360806942, "perimeter_in_m": 241.87392044124701, "length_x": 60.499530953351702, "length_y": 60.500861961463997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.757249841392252, 0.0 ], [ -0.001373291015625, 66.757249841392252, 0.0 ], [ -0.001373291015625, 66.756707896893516, 0.0 ], [ -0.00274658203125, 66.756707896893516, 0.0 ], [ -0.00274658203125, 66.757249841392252, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2036, "task_x": 131070, "task_y": 65120, "task_z": 18, "center_y": 66.739630533124696, "area_in_sqm": 3661.5822302103002, "perimeter_in_m": 242.04407004871899, "length_x": 60.542135024752902, "length_y": 60.543466794924903 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.739901696394128, 0.0 ], [ -0.001373291015625, 66.739901696394128, 0.0 ], [ -0.001373291015625, 66.73935936985518, 0.0 ], [ -0.00274658203125, 66.73935936985518, 0.0 ], [ -0.00274658203125, 66.739901696394128, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2037, "task_x": 131070, "task_y": 65152, "task_z": 18, "center_y": 66.722269968307202, "area_in_sqm": 3666.73493528366, "perimeter_in_m": 242.21431666546999, "length_x": 60.5847634827362, "length_y": 60.586096015011002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.722541322706519, 0.0 ], [ -0.001373291015625, 66.722541322706519, 0.0 ], [ -0.001373291015625, 66.721998613907815, 0.0 ], [ -0.00274658203125, 66.721998613907815, 0.0 ], [ -0.00274658203125, 66.722541322706519, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2038, "task_x": 131070, "task_y": 65184, "task_z": 18, "center_y": 66.704897167665294, "area_in_sqm": 3671.8942031860402, "perimeter_in_m": 242.384660303674, "length_x": 60.627416328667898, "length_y": 60.6287496230877 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.705168713304317, 0.0 ], [ -0.001373291015625, 66.705168713304317, 0.0 ], [ -0.001373291015625, 66.704625622026342, 0.0 ], [ -0.00274658203125, 66.704625622026342, 0.0 ], [ -0.00274658203125, 66.705168713304317, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2039, "task_x": 131070, "task_y": 65216, "task_z": 18, "center_y": 66.687512124173594, "area_in_sqm": 3677.0600398778902, "perimeter_in_m": 242.555100972622, "length_x": 60.670093563881998, "length_y": 60.671427620488103 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.687783861162018, 0.0 ], [ -0.001373291015625, 66.687783861162018, 0.0 ], [ -0.001373291015625, 66.687240387185199, 0.0 ], [ -0.00274658203125, 66.687240387185199, 0.0 ], [ -0.00274658203125, 66.687783861162018, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2040, "task_x": 131070, "task_y": 65248, "task_z": 18, "center_y": 66.670114830806, "area_in_sqm": 3682.23245131969, "perimeter_in_m": 242.72563865745801, "length_x": 60.712795189679497, "length_y": 60.714130008511901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.670386759253645, 0.0 ], [ -0.001373291015625, 66.670386759253645, 0.0 ], [ -0.001373291015625, 66.669842902358425, 0.0 ], [ -0.00274658203125, 66.669842902358425, 0.0 ], [ -0.00274658203125, 66.670386759253645, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2041, "task_x": 131070, "task_y": 65280, "task_z": 18, "center_y": 66.652705280536196, "area_in_sqm": 3687.4114444255802, "perimeter_in_m": 242.896273379371, "length_x": 60.755521207328897, "length_y": 60.756856788426802 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.652977400552786, 0.0 ], [ -0.001373291015625, 66.652977400552786, 0.0 ], [ -0.001373291015625, 66.652433160519578, 0.0 ], [ -0.00274658203125, 66.652433160519578, 0.0 ], [ -0.00274658203125, 66.652977400552786, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2042, "task_x": 131070, "task_y": 65312, "task_z": 18, "center_y": 66.635283466337199, "area_in_sqm": 3692.5970253944402, "perimeter_in_m": 243.06700513541199, "length_x": 60.798271618066003, "length_y": 60.799607961467302 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.635555778032611, 0.0 ], [ -0.001373291015625, 66.635555778032611, 0.0 ], [ -0.001373291015625, 66.63501115464183, 0.0 ], [ -0.00274658203125, 66.63501115464183, 0.0 ], [ -0.00274658203125, 66.635555778032611, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2043, "task_x": 131070, "task_y": 65344, "task_z": 18, "center_y": 66.617849381181898, "area_in_sqm": 3697.78920054436, "perimeter_in_m": 243.237833935314, "length_x": 60.841046423093402, "length_y": 60.842383528835299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.618121884665896, 0.0 ], [ -0.001373291015625, 66.618121884665896, 0.0 ], [ -0.001373291015625, 66.617576877697914, 0.0 ], [ -0.00274658203125, 66.617576877697914, 0.0 ], [ -0.00274658203125, 66.618121884665896, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2044, "task_x": 131070, "task_y": 65376, "task_z": 18, "center_y": 66.600403018042599, "area_in_sqm": 3702.9879759550099, "perimeter_in_m": 243.408759776697, "length_x": 60.883845623581102, "length_y": 60.885183491699699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.600675713424948, 0.0 ], [ -0.001373291015625, 66.600675713424948, 0.0 ], [ -0.001373291015625, 66.600130322660149, 0.0 ], [ -0.00274658203125, 66.600130322660149, 0.0 ], [ -0.00274658203125, 66.600675713424948, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2045, "task_x": 131070, "task_y": 65408, "task_z": 18, "center_y": 66.582944369891095, "area_in_sqm": 3708.19335830212, "perimeter_in_m": 243.57978266632699, "length_x": 60.926669220665701, "length_y": 60.928007851196 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.583217257281746, 0.0 ], [ -0.001373291015625, 66.583217257281746, 0.0 ], [ -0.001373291015625, 66.582671482500501, 0.0 ], [ -0.00274658203125, 66.582671482500501, 0.0 ], [ -0.00274658203125, 66.583217257281746, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2046, "task_x": 131070, "task_y": 65440, "task_z": 18, "center_y": 66.565473429699196, "area_in_sqm": 3713.40535366535, "perimeter_in_m": 243.75090260664999, "length_x": 60.969517215451198, "length_y": 60.970856608426999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.565746509207827, 0.0 ], [ -0.001373291015625, 66.565746509207827, 0.0 ], [ -0.001373291015625, 66.565200350190509, 0.0 ], [ -0.00274658203125, 66.565200350190509, 0.0 ], [ -0.00274658203125, 66.565746509207827, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2047, "task_x": 131070, "task_y": 65472, "task_z": 18, "center_y": 66.547990190437901, "area_in_sqm": 3718.6239688396499, "perimeter_in_m": 243.92211960146801, "length_x": 61.012389609007997, "length_y": 61.013729764462298 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.54826346217439, 0.0 ], [ -0.001373291015625, 66.54826346217439, 0.0 ], [ -0.001373291015625, 66.547716918701326, 0.0 ], [ -0.00274658203125, 66.547716918701326, 0.0 ], [ -0.00274658203125, 66.54826346217439, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2048, "task_x": 131070, "task_y": 65504, "task_z": 18, "center_y": 66.530494645077994, "area_in_sqm": 3723.8492094278299, "perimeter_in_m": 244.093433661587, "length_x": 61.055286402373198, "length_y": 61.056627320337903 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.530768109152262, 0.0 ], [ -0.001373291015625, 66.530768109152262, 0.0 ], [ -0.001373291015625, 66.530221181003753, 0.0 ], [ -0.00274658203125, 66.530221181003753, 0.0 ], [ -0.00274658203125, 66.530768109152262, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2049, "task_x": 131070, "task_y": 65536, "task_z": 18, "center_y": 66.512986786590105, "area_in_sqm": 3729.08108198643, "perimeter_in_m": 244.26484476943699, "length_x": 61.098207596550701, "length_y": 61.099549277056603 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.513260443111861, 0.0 ], [ -0.001373291015625, 66.513260443111861, 0.0 ], [ -0.001373291015625, 66.512713130068278, 0.0 ], [ -0.00274658203125, 66.512713130068278, 0.0 ], [ -0.00274658203125, 66.513260443111861, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2050, "task_x": 131070, "task_y": 65568, "task_z": 18, "center_y": 66.495466607944095, "area_in_sqm": 3734.31959319115, "perimeter_in_m": 244.43635294772599, "length_x": 61.141153192511098, "length_y": 61.142495635587998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.495740457023302, 0.0 ], [ -0.001373291015625, 66.495740457023302, 0.0 ], [ -0.001373291015625, 66.495192758864931, 0.0 ], [ -0.00274658203125, 66.495192758864931, 0.0 ], [ -0.00274658203125, 66.495740457023302, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2051, "task_x": 131070, "task_y": 65600, "task_z": 18, "center_y": 66.477934102109899, "area_in_sqm": 3739.5647492408798, "perimeter_in_m": 244.60795818724, "length_x": 61.184123191191198, "length_y": 61.185466396867803 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.478208143856349, 0.0 ], [ -0.001373291015625, 66.478208143856349, 0.0 ], [ -0.001373291015625, 66.477660060363505, 0.0 ], [ -0.00274658203125, 66.477660060363505, 0.0 ], [ -0.00274658203125, 66.478208143856349, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2052, "task_x": 131070, "task_y": 65632, "task_z": 18, "center_y": 66.460389262056907, "area_in_sqm": 3744.8165560960801, "perimeter_in_m": 244.779660498514, "length_x": 61.227117593494199, "length_y": 61.228461561798198 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.460663496580437, 0.0 ], [ -0.001373291015625, 66.460663496580437, 0.0 ], [ -0.001373291015625, 66.460115027533391, 0.0 ], [ -0.00274658203125, 66.460115027533391, 0.0 ], [ -0.00274658203125, 66.460663496580437, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2053, "task_x": 131070, "task_y": 65664, "task_z": 18, "center_y": 66.442832080754201, "area_in_sqm": 3750.07502102852, "perimeter_in_m": 244.951459879282, "length_x": 61.2701364002899, "length_y": 61.271481131247903 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.443106508164675, 0.0 ], [ -0.001373291015625, 66.443106508164675, 0.0 ], [ -0.001373291015625, 66.442557653343712, 0.0 ], [ -0.00274658203125, 66.442557653343712, 0.0 ], [ -0.00274658203125, 66.443106508164675, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2054, "task_x": 131070, "task_y": 65696, "task_z": 18, "center_y": 66.425262551170604, "area_in_sqm": 3755.3401491641998, "perimeter_in_m": 245.123356342069, "length_x": 61.313179612413997, "length_y": 61.314525106051597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.425537171577858, 0.0 ], [ -0.001373291015625, 66.425537171577858, 0.0 ], [ -0.001373291015625, 66.424987930763251, 0.0 ], [ -0.00274658203125, 66.424987930763251, 0.0 ], [ -0.00274658203125, 66.425537171577858, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2055, "task_x": 131070, "task_y": 65728, "task_z": 18, "center_y": 66.407680666274501, "area_in_sqm": 3760.61194682121, "perimeter_in_m": 245.295349876681, "length_x": 61.356247230668501, "length_y": 61.357593487010298 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.40795547978847, 0.0 ], [ -0.001373291015625, 66.40795547978847, 0.0 ], [ -0.001373291015625, 66.40740585276049, 0.0 ], [ -0.00274658203125, 66.40740585276049, 0.0 ], [ -0.00274658203125, 66.40795547978847, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2056, "task_x": 131070, "task_y": 65760, "task_z": 18, "center_y": 66.390086419034205, "area_in_sqm": 3765.89042174816, "perimeter_in_m": 245.467440488432, "length_x": 61.399339255821602, "length_y": 61.400686274891001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.390361425764738, 0.0 ], [ -0.001373291015625, 66.390361425764738, 0.0 ], [ -0.001373291015625, 66.389811412303615, 0.0 ], [ -0.00274658203125, 66.389811412303615, 0.0 ], [ -0.00274658203125, 66.390361425764738, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2057, "task_x": 131070, "task_y": 65792, "task_z": 18, "center_y": 66.372479802417502, "area_in_sqm": 3771.1755794286701, "perimeter_in_m": 245.639628174775, "length_x": 61.442455688607303, "length_y": 61.443803470426602 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.372755002474548, 0.0 ], [ -0.001373291015625, 66.372755002474548, 0.0 ], [ -0.001373291015625, 66.37220460236054, 0.0 ], [ -0.00274658203125, 66.37220460236054, 0.0 ], [ -0.00274658203125, 66.372755002474548, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2058, "task_x": 131070, "task_y": 65824, "task_z": 18, "center_y": 66.354860809392207, "area_in_sqm": 3776.4674257040001, "perimeter_in_m": 245.81191294867, "length_x": 61.485596529725399, "length_y": 61.486945074315997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.355136202885575, 0.0 ], [ -0.001373291015625, 66.355136202885575, 0.0 ], [ -0.001373291015625, 66.35458541589891, 0.0 ], [ -0.00274658203125, 66.35458541589891, 0.0 ], [ -0.00274658203125, 66.355136202885575, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2059, "task_x": 131070, "task_y": 65856, "task_z": 18, "center_y": 66.337229432925596, "area_in_sqm": 3781.7659679651301, "perimeter_in_m": 245.98429481168401, "length_x": 61.528761779841801, "length_y": 61.530111087224 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.337505019965192, 0.0 ], [ -0.001373291015625, 66.337505019965192, 0.0 ], [ -0.001373291015625, 66.336953845886086, 0.0 ], [ -0.00274658203125, 66.336953845886086, 0.0 ], [ -0.00274658203125, 66.337505019965192, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2060, "task_x": 131070, "task_y": 65888, "task_z": 18, "center_y": 66.319585665984803, "area_in_sqm": 3787.0712109804199, "perimeter_in_m": 246.15677375045399, "length_x": 61.571951439588098, "length_y": 61.573301509780997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.319861446680505, 0.0 ], [ -0.001373291015625, 66.319861446680505, 0.0 ], [ -0.001373291015625, 66.319309885289201, 0.0 ], [ -0.00274658203125, 66.319309885289201, 0.0 ], [ -0.00274658203125, 66.319861446680505, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2061, "task_x": 131070, "task_y": 65920, "task_z": 18, "center_y": 66.301929501536804, "area_in_sqm": 3792.38316273689, "perimeter_in_m": 246.32934978054999, "length_x": 61.615165509561301, "length_y": 61.616516342583097 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.30220547599842, 0.0 ], [ -0.001373291015625, 66.30220547599842, 0.0 ], [ -0.001373291015625, 66.301653527075118, 0.0 ], [ -0.00274658203125, 66.301653527075118, 0.0 ], [ -0.00274658203125, 66.30220547599842, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2062, "task_x": 131070, "task_y": 65952, "task_z": 18, "center_y": 66.284260932547994, "area_in_sqm": 3797.70182847977, "perimeter_in_m": 246.50202290263201, "length_x": 61.658403990324203, "length_y": 61.659755586191899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.284537100885586, 0.0 ], [ -0.001373291015625, 66.284537100885586, 0.0 ], [ -0.001373291015625, 66.283984764210487, 0.0 ], [ -0.00274658203125, 66.283984764210487, 0.0 ], [ -0.00274658203125, 66.284537100885586, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2063, "task_x": 131070, "task_y": 65984, "task_z": 18, "center_y": 66.266579951985094, "area_in_sqm": 3803.02721524239, "perimeter_in_m": 246.67479310807599, "length_x": 61.701666882405, "length_y": 61.703019241134498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.266856314308427, 0.0 ], [ -0.001373291015625, 66.266856314308427, 0.0 ], [ -0.001373291015625, 66.266303589661732, 0.0 ], [ -0.00274658203125, 66.266303589661732, 0.0 ], [ -0.00274658203125, 66.266856314308427, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2064, "task_x": 131070, "task_y": 66016, "task_z": 18, "center_y": 66.248886552814099, "area_in_sqm": 3808.3593289852101, "perimeter_in_m": 246.847660405883, "length_x": 61.744954186297498, "length_y": 61.746307307903599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.249163109233137, 0.0 ], [ -0.001373291015625, 66.249163109233137, 0.0 ], [ -0.001373291015625, 66.248609996395032, 0.0 ], [ -0.00274658203125, 66.248609996395032, 0.0 ], [ -0.00274658203125, 66.249163109233137, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2065, "task_x": 131070, "task_y": 66048, "task_z": 18, "center_y": 66.231180728001107, "area_in_sqm": 3813.6981754303001, "perimeter_in_m": 247.02062479438101, "length_x": 61.788265902460402, "length_y": 61.789619786956997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.231457478625728, 0.0 ], [ -0.001373291015625, 66.231457478625728, 0.0 ], [ -0.001373291015625, 66.230903977376414, 0.0 ], [ -0.00274658203125, 66.230903977376414, 0.0 ], [ -0.00274658203125, 66.231457478625728, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2066, "task_x": 131070, "task_y": 66080, "task_z": 18, "center_y": 66.2134624705118, "area_in_sqm": 3819.0437619686099, "perimeter_in_m": 247.19368627463601, "length_x": 61.831602031317999, "length_y": 61.8329566787178 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.213739415452011, 0.0 ], [ -0.001373291015625, 66.213739415452011, 0.0 ], [ -0.001373291015625, 66.213185525571646, 0.0 ], [ -0.00274658203125, 66.213185525571646, 0.0 ], [ -0.00274658203125, 66.213739415452011, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2067, "task_x": 131070, "task_y": 66112, "task_z": 18, "center_y": 66.195731773312005, "area_in_sqm": 3824.39609456062, "perimeter_in_m": 247.36684484907599, "length_x": 61.874962573259701, "length_y": 61.876317983574197 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.196008912677613, 0.0 ], [ -0.001373291015625, 66.196008912677613, 0.0 ], [ -0.001373291015625, 66.195454633946383, 0.0 ], [ -0.00274658203125, 66.195454633946383, 0.0 ], [ -0.00274658203125, 66.196008912677613, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2068, "task_x": 131070, "task_y": 66144, "task_z": 18, "center_y": 66.177988629366993, "area_in_sqm": 3829.7551789283798, "perimeter_in_m": 247.540100521467, "length_x": 61.918347528639799, "length_y": 61.919703701879698 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.178265963267975, 0.0 ], [ -0.001373291015625, 66.178265963267975, 0.0 ], [ -0.001373291015625, 66.17771129546604, 0.0 ], [ -0.00274658203125, 66.17771129546604, 0.0 ], [ -0.00274658203125, 66.178265963267975, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2069, "task_x": 131070, "task_y": 66176, "task_z": 18, "center_y": 66.160233031642093, "area_in_sqm": 3835.1210224628398, "perimeter_in_m": 247.713453278527, "length_x": 61.961756897777903, "length_y": 61.963113833952399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.160510560188371, 0.0 ], [ -0.001373291015625, 66.160510560188371, 0.0 ], [ -0.001373291015625, 66.159955503095901, 0.0 ], [ -0.00274658203125, 66.159955503095901, 0.0 ], [ -0.00274658203125, 66.160510560188371, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2070, "task_x": 131070, "task_y": 66208, "task_z": 18, "center_y": 66.142464973102506, "area_in_sqm": 3840.4936304092398, "perimeter_in_m": 247.88690312954199, "length_x": 62.005190680958101, "length_y": 62.0065483800756 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.142742696403957, 0.0 ], [ -0.001373291015625, 66.142742696403957, 0.0 ], [ -0.001373291015625, 66.142187249801097, 0.0 ], [ -0.00274658203125, 66.142187249801097, 0.0 ], [ -0.00274658203125, 66.142742696403957, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2071, "task_x": 131070, "task_y": 66240, "task_z": 18, "center_y": 66.124684446713104, "area_in_sqm": 3845.87301003933, "perimeter_in_m": 248.060450073108, "length_x": 62.048648878429702, "length_y": 62.050007340497402 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.124962364879678, 0.0 ], [ -0.001373291015625, 66.124962364879678, 0.0 ], [ -0.001373291015625, 66.124406528546601, 0.0 ], [ -0.00274658203125, 66.124406528546601, 0.0 ], [ -0.00274658203125, 66.124962364879678, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2072, "task_x": 131070, "task_y": 66272, "task_z": 18, "center_y": 66.106891445438805, "area_in_sqm": 3851.25916683674, "perimeter_in_m": 248.23409411767301, "length_x": 62.092131490406302, "length_y": 62.093490715430498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.107169558580409, 0.0 ], [ -0.001373291015625, 66.107169558580409, 0.0 ], [ -0.001373291015625, 66.106613332297243, 0.0 ], [ -0.00274658203125, 66.106613332297243, 0.0 ], [ -0.00274658203125, 66.107169558580409, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2073, "task_x": 131070, "task_y": 66304, "task_z": 18, "center_y": 66.089085962244297, "area_in_sqm": 3856.6521075964001, "perimeter_in_m": 248.407835257448, "length_x": 62.135638517066702, "length_y": 62.136998505052297 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.089364270470867, 0.0 ], [ -0.001373291015625, 66.089364270470867, 0.0 ], [ -0.001373291015625, 66.088807654017756, 0.0 ], [ -0.00274658203125, 66.088807654017756, 0.0 ], [ -0.00274658203125, 66.089364270470867, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2074, "task_x": 131070, "task_y": 66336, "task_z": 18, "center_y": 66.071267990094199, "area_in_sqm": 3862.0518386364001, "perimeter_in_m": 248.58167347666199, "length_x": 62.179169958553899, "length_y": 62.180530709504701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.071546493515626, 0.0 ], [ -0.001373291015625, 66.071546493515626, 0.0 ], [ -0.001373291015625, 66.070989486672744, 0.0 ], [ -0.00274658203125, 66.070989486672744, 0.0 ], [ -0.00274658203125, 66.071546493515626, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2075, "task_x": 131070, "task_y": 66368, "task_z": 18, "center_y": 66.053437521952901, "area_in_sqm": 3867.4583661556198, "perimeter_in_m": 248.75560879557199, "length_x": 62.222725814975497, "length_y": 62.224087328894299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.05371622067922, 0.0 ], [ -0.001373291015625, 66.05371622067922, 0.0 ], [ -0.001373291015625, 66.053158823226681, 0.0 ], [ -0.00274658203125, 66.053158823226681, 0.0 ], [ -0.00274658203125, 66.05371622067922, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2076, "task_x": 131070, "task_y": 66400, "task_z": 18, "center_y": 66.035594550785007, "area_in_sqm": 3872.8716959953299, "perimeter_in_m": 248.92964120463901, "length_x": 62.266306086403297, "length_y": 62.267668363291797 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.035873444926054, 0.0 ], [ -0.001373291015625, 66.035873444926054, 0.0 ], [ -0.001373291015625, 66.035315656643988, 0.0 ], [ -0.00274658203125, 66.035315656643988, 0.0 ], [ -0.00274658203125, 66.035873444926054, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2077, "task_x": 131070, "task_y": 66432, "task_z": 18, "center_y": 66.017739069554693, "area_in_sqm": 3878.2918354272801, "perimeter_in_m": 249.103770704868, "length_x": 62.3099107728737, "length_y": 62.311273812732502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.018018159220418, 0.0 ], [ -0.001373291015625, 66.018018159220418, 0.0 ], [ -0.001373291015625, 66.017459979888983, 0.0 ], [ -0.00274658203125, 66.017459979888983, 0.0 ], [ -0.00274658203125, 66.018018159220418, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2078, "task_x": 131070, "task_y": 66464, "task_z": 18, "center_y": 65.999871071226295, "area_in_sqm": 3883.7187901735301, "perimeter_in_m": 249.27799729930999, "length_x": 62.353539874387202, "length_y": 62.354903677215702 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 66.000150356526603, 0.0 ], [ -0.001373291015625, 66.000150356526603, 0.0 ], [ -0.001373291015625, 65.999591785925901, 0.0 ], [ -0.00274658203125, 65.999591785925901, 0.0 ], [ -0.00274658203125, 66.000150356526603, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2079, "task_x": 131070, "task_y": 66496, "task_z": 18, "center_y": 65.981990548763804, "area_in_sqm": 3889.1525665521599, "perimeter_in_m": 249.45232097396701, "length_x": 62.397193390908399, "length_y": 62.398557956704899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.982270029808731, 0.0 ], [ -0.001373291015625, 65.982270029808731, 0.0 ], [ -0.001373291015625, 65.981711067718919, 0.0 ], [ -0.00274658203125, 65.981711067718919, 0.0 ], [ -0.00274658203125, 65.982270029808731, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2080, "task_x": 131070, "task_y": 66528, "task_z": 18, "center_y": 65.964097495131597, "area_in_sqm": 3894.59317088127, "perimeter_in_m": 249.62674174377699, "length_x": 62.440871322366199, "length_y": 62.442236651127899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.964377172030964, 0.0 ], [ -0.001373291015625, 65.964377172030964, 0.0 ], [ -0.001373291015625, 65.963817818232158, 0.0 ], [ -0.00274658203125, 65.963817818232158, 0.0 ], [ -0.00274658203125, 65.964377172030964, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2081, "task_x": 131070, "task_y": 66560, "task_z": 18, "center_y": 65.946191903293595, "area_in_sqm": 3900.0406100750001, "perimeter_in_m": 249.80125959529599, "length_x": 62.484573668652899, "length_y": 62.485939760375899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.946471776157381, 0.0 ], [ -0.001373291015625, 65.946471776157381, 0.0 ], [ -0.001373291015625, 65.94591203042971, 0.0 ], [ -0.00274658203125, 65.94591203042971, 0.0 ], [ -0.00274658203125, 65.946471776157381, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2082, "task_x": 131070, "task_y": 66592, "task_z": 18, "center_y": 65.928273766213806, "area_in_sqm": 3905.4948892593402, "perimeter_in_m": 249.97587453553999, "length_x": 62.528300429625403, "length_y": 62.529667284304601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.92855383515203, 0.0 ], [ -0.001373291015625, 65.92855383515203, 0.0 ], [ -0.001373291015625, 65.92799369727561, 0.0 ], [ -0.00274658203125, 65.92799369727561, 0.0 ], [ -0.00274658203125, 65.92855383515203, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2083, "task_x": 131070, "task_y": 66624, "task_z": 18, "center_y": 65.910343076856407, "area_in_sqm": 3910.9560155868498, "perimeter_in_m": 250.150586555876, "length_x": 62.572051605103901, "length_y": 62.5734192227332 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.910623341978919, 0.0 ], [ -0.001373291015625, 65.910623341978919, 0.0 ], [ -0.001373291015625, 65.91006281173388, 0.0 ], [ -0.00274658203125, 65.91006281173388, 0.0 ], [ -0.00274658203125, 65.910623341978919, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2084, "task_x": 131070, "task_y": 66656, "task_z": 18, "center_y": 65.892399828185305, "area_in_sqm": 3916.4239951372101, "perimeter_in_m": 250.32539565325899, "length_x": 62.615827194872601, "length_y": 62.617195575444498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.892680289602069, 0.0 ], [ -0.001373291015625, 65.892680289602069, 0.0 ], [ -0.001373291015625, 65.892119366768554, 0.0 ], [ -0.00274658203125, 65.892119366768554, 0.0 ], [ -0.00274658203125, 65.892680289602069, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2085, "task_x": 131070, "task_y": 66688, "task_z": 18, "center_y": 65.874444013164506, "area_in_sqm": 3921.89883410931, "perimeter_in_m": 250.50030183235901, "length_x": 62.659627198679097, "length_y": 62.6609963421853 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.874724670985472, 0.0 ], [ -0.001373291015625, 65.874724670985472, 0.0 ], [ -0.001373291015625, 65.874163355343597, 0.0 ], [ -0.00274658203125, 65.874163355343597, 0.0 ], [ -0.00274658203125, 65.874724670985472, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2086, "task_x": 131070, "task_y": 66720, "task_z": 18, "center_y": 65.856475624758104, "area_in_sqm": 3927.3805392980598, "perimeter_in_m": 250.67530508785299, "length_x": 62.703451616234801, "length_y": 62.704821522665497 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.856756479093164, 0.0 ], [ -0.001373291015625, 65.856756479093164, 0.0 ], [ -0.001373291015625, 65.856194770423045, 0.0 ], [ -0.00274658203125, 65.856194770423045, 0.0 ], [ -0.00274658203125, 65.856756479093164, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2087, "task_x": 131070, "task_y": 66752, "task_z": 18, "center_y": 65.838494655930106, "area_in_sqm": 3932.8691166639301, "perimeter_in_m": 250.85040542781499, "length_x": 62.747300447214201, "length_y": 62.748671116558903 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.83877570688918, 0.0 ], [ -0.001373291015625, 65.83877570688918, 0.0 ], [ -0.001373291015625, 65.838213604970946, 0.0 ], [ -0.00274658203125, 65.838213604970946, 0.0 ], [ -0.00274658203125, 65.83877570688918, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2088, "task_x": 131070, "task_y": 66784, "task_z": 18, "center_y": 65.820501099644403, "area_in_sqm": 3938.3645724058201, "perimeter_in_m": 251.02560282553901, "length_x": 62.7911736912557, "length_y": 62.792545123502201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.820782347337541, 0.0 ], [ -0.001373291015625, 65.820782347337541, 0.0 ], [ -0.001373291015625, 65.820219851951322, 0.0 ], [ -0.00274658203125, 65.820219851951322, 0.0 ], [ -0.00274658203125, 65.820782347337541, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2089, "task_x": 131070, "task_y": 66816, "task_z": 18, "center_y": 65.802494948865302, "area_in_sqm": 3943.8669126033801, "perimeter_in_m": 251.200897299568, "length_x": 62.835071347960302, "length_y": 62.836443543095903 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.802776393402382, 0.0 ], [ -0.001373291015625, 65.802776393402382, 0.0 ], [ -0.001373291015625, 65.802213504328307, 0.0 ], [ -0.00274658203125, 65.802213504328307, 0.0 ], [ -0.00274658203125, 65.802776393402382, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2090, "task_x": 131070, "task_y": 66848, "task_z": 18, "center_y": 65.784476196556895, "area_in_sqm": 3949.3761436939199, "perimeter_in_m": 251.37628883649199, "length_x": 62.878993416893003, "length_y": 62.880366374903197 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.784757838047838, 0.0 ], [ -0.001373291015625, 65.784757838047838, 0.0 ], [ -0.001373291015625, 65.784194555066037, 0.0 ], [ -0.00274658203125, 65.784194555066037, 0.0 ], [ -0.00274658203125, 65.784757838047838, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2091, "task_x": 131070, "task_y": 66880, "task_z": 18, "center_y": 65.766444835683401, "area_in_sqm": 3954.8922724723798, "perimeter_in_m": 251.55177743912799, "length_x": 62.922939897581301, "length_y": 62.924313618450697 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.7667266742381, 0.0 ], [ -0.001373291015625, 65.7667266742381, 0.0 ], [ -0.001373291015625, 65.766162997128717, 0.0 ], [ -0.00274658203125, 65.766162997128717, 0.0 ], [ -0.00274658203125, 65.7667266742381, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2092, "task_x": 131070, "task_y": 66912, "task_z": 18, "center_y": 65.748400859209099, "area_in_sqm": 3960.4153048992198, "perimeter_in_m": 251.72736310738, "length_x": 62.966910789515701, "length_y": 62.968285273228098 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.748682894937474, 0.0 ], [ -0.001373291015625, 65.748682894937474, 0.0 ], [ -0.001373291015625, 65.748118823480624, 0.0 ], [ -0.00274658203125, 65.748118823480624, 0.0 ], [ -0.00274658203125, 65.748682894937474, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2093, "task_x": 131070, "task_y": 66944, "task_z": 18, "center_y": 65.730344260098207, "area_in_sqm": 3965.9452470541, "perimeter_in_m": 251.90304583045599, "length_x": 63.0109060921503, "length_y": 63.012281338687799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.730626493110293, 0.0 ], [ -0.001373291015625, 65.730626493110293, 0.0 ], [ -0.001373291015625, 65.73006202708612, 0.0 ], [ -0.00274658203125, 65.73006202708612, 0.0 ], [ -0.00274658203125, 65.730626493110293, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2094, "task_x": 131070, "task_y": 66976, "task_z": 18, "center_y": 65.712275031315301, "area_in_sqm": 3971.4821053743399, "perimeter_in_m": 252.078825602449, "length_x": 63.054925804901401, "length_y": 63.056301814245202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.712557461721019, 0.0 ], [ -0.001373291015625, 65.712557461721019, 0.0 ], [ -0.001373291015625, 65.711992600909653, 0.0 ], [ -0.00274658203125, 65.711992600909653, 0.0 ], [ -0.00274658203125, 65.712557461721019, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2095, "task_x": 131070, "task_y": 67008, "task_z": 18, "center_y": 65.694193165824998, "area_in_sqm": 3977.0258860588101, "perimeter_in_m": 252.254702430827, "length_x": 63.098969927148197, "length_y": 63.100346699278397 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.694475793734171, 0.0 ], [ -0.001373291015625, 65.694475793734171, 0.0 ], [ -0.001373291015625, 65.693910537915784, 0.0 ], [ -0.00274658203125, 65.693910537915784, 0.0 ], [ -0.00274658203125, 65.694475793734171, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2096, "task_x": 131070, "task_y": 67040, "task_z": 18, "center_y": 65.676098656591805, "area_in_sqm": 3982.5765961408601, "perimeter_in_m": 252.43067630386901, "length_x": 63.143038458232901, "length_y": 63.144415993128199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.676381482114451, 0.0 ], [ -0.001373291015625, 65.676381482114451, 0.0 ], [ -0.001373291015625, 65.675815831069173, 0.0 ], [ -0.00274658203125, 65.675815831069173, 0.0 ], [ -0.00274658203125, 65.676381482114451, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2097, "task_x": 131070, "task_y": 67072, "task_z": 18, "center_y": 65.657991496580607, "area_in_sqm": 3988.1342406272902, "perimeter_in_m": 252.606747224641, "length_x": 63.187131397459801, "length_y": 63.188509695097999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.658274519826605, 0.0 ], [ -0.001373291015625, 65.658274519826605, 0.0 ], [ -0.001373291015625, 65.65770847333458, 0.0 ], [ -0.00274658203125, 65.65770847333458, 0.0 ], [ -0.00274658203125, 65.658274519826605, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2098, "task_x": 131070, "task_y": 67104, "task_z": 18, "center_y": 65.639871678756293, "area_in_sqm": 3993.6988266706499, "perimeter_in_m": 252.78291517844099, "length_x": 63.231248744096199, "length_y": 63.232627804453699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.640154899835579, 0.0 ], [ -0.001373291015625, 65.640154899835579, 0.0 ], [ -0.001373291015625, 65.639588457676979, 0.0 ], [ -0.00274658203125, 65.639588457676979, 0.0 ], [ -0.00274658203125, 65.640154899835579, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2099, "task_x": 131070, "task_y": 67136, "task_z": 18, "center_y": 65.621739196083894, "area_in_sqm": 3999.2703602314, "perimeter_in_m": 252.959180172434, "length_x": 63.275390497371603, "length_y": 63.276770320423701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.622022615106403, 0.0 ], [ -0.001373291015625, 65.622022615106403, 0.0 ], [ -0.001373291015625, 65.621455777061385, 0.0 ], [ -0.00274658203125, 65.621455777061385, 0.0 ], [ -0.00274658203125, 65.622022615106403, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2100, "task_x": 131070, "task_y": 67168, "task_z": 18, "center_y": 65.603594041528694, "area_in_sqm": 4004.8488478660602, "perimeter_in_m": 253.13554220662201, "length_x": 63.319556656477602, "length_y": 63.320937242198603 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.603877658604333, 0.0 ], [ -0.001373291015625, 65.603877658604333, 0.0 ], [ -0.001373291015625, 65.603310424453042, 0.0 ], [ -0.00274658203125, 65.603310424453042, 0.0 ], [ -0.00274658203125, 65.603877658604333, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2101, "task_x": 131070, "task_y": 67200, "task_z": 18, "center_y": 65.585436208055995, "area_in_sqm": 4010.4342957735098, "perimeter_in_m": 253.312001249806, "length_x": 63.363747220568499, "length_y": 63.365128568931098 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.585720023294712, 0.0 ], [ -0.001373291015625, 65.585720023294712, 0.0 ], [ -0.001373291015625, 65.585152392817349, 0.0 ], [ -0.00274658203125, 65.585152392817349, 0.0 ], [ -0.00274658203125, 65.585720023294712, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2102, "task_x": 131070, "task_y": 67232, "task_z": 18, "center_y": 65.567265688631494, "area_in_sqm": 4016.0267099142102, "perimeter_in_m": 253.48855732518999, "length_x": 63.407962188760401, "length_y": 63.409344299736603 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.567549702143111, 0.0 ], [ -0.001373291015625, 65.567549702143111, 0.0 ], [ -0.001373291015625, 65.566981675119848, 0.0 ], [ -0.00274658203125, 65.566981675119848, 0.0 ], [ -0.00274658203125, 65.567549702143111, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2103, "task_x": 131070, "task_y": 67264, "task_z": 18, "center_y": 65.549082476220804, "area_in_sqm": 4021.6260970830899, "perimeter_in_m": 253.66521042194199, "length_x": 63.452201560131599, "length_y": 63.453584433691901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.549366688115299, 0.0 ], [ -0.001373291015625, 65.549366688115299, 0.0 ], [ -0.001373291015625, 65.54879826432628, 0.0 ], [ -0.00274658203125, 65.54879826432628, 0.0 ], [ -0.00274658203125, 65.549366688115299, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2104, "task_x": 131070, "task_y": 67296, "task_z": 18, "center_y": 65.530886563789906, "area_in_sqm": 4027.2324631214101, "perimeter_in_m": 253.84196052419799, "length_x": 63.496465333722497, "length_y": 63.497848969836298 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.531170974177172, 0.0 ], [ -0.001373291015625, 65.531170974177172, 0.0 ], [ -0.001373291015625, 65.530602153402626, 0.0 ], [ -0.00274658203125, 65.530602153402626, 0.0 ], [ -0.00274658203125, 65.531170974177172, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2105, "task_x": 131070, "task_y": 67328, "task_z": 18, "center_y": 65.512677944304997, "area_in_sqm": 4032.8458141088499, "perimeter_in_m": 254.01880763228999, "length_x": 63.540753508535197, "length_y": 63.542137907170698 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.512962553294898, 0.0 ], [ -0.001373291015625, 65.512962553294898, 0.0 ], [ -0.001373291015625, 65.512393335315025, 0.0 ], [ -0.00274658203125, 65.512393335315025, 0.0 ], [ -0.00274658203125, 65.512962553294898, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2106, "task_x": 131070, "task_y": 67360, "task_z": 18, "center_y": 65.494456610732399, "area_in_sqm": 4038.4661568403199, "perimeter_in_m": 254.19575174788901, "length_x": 63.585066083533697, "length_y": 63.586451244657802 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.494741418434856, 0.0 ], [ -0.001373291015625, 65.494741418434856, 0.0 ], [ -0.001373291015625, 65.494171803029843, 0.0 ], [ -0.00274658203125, 65.494171803029843, 0.0 ], [ -0.00274658203125, 65.494741418434856, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2107, "task_x": 131070, "task_y": 67392, "task_z": 18, "center_y": 65.476222556038707, "area_in_sqm": 4044.0934976339299, "perimeter_in_m": 254.372792855602, "length_x": 63.6294030576436, "length_y": 63.630788981222203 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.476507562563654, 0.0 ], [ -0.001373291015625, 65.476507562563654, 0.0 ], [ -0.001373291015625, 65.475937549513716, 0.0 ], [ -0.00274658203125, 65.475937549513716, 0.0 ], [ -0.00274658203125, 65.476507562563654, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2108, "task_x": 131070, "task_y": 67424, "task_z": 18, "center_y": 65.457975773190796, "area_in_sqm": 4049.7278422117201, "perimeter_in_m": 254.54993096474601, "length_x": 63.673764429752303, "length_y": 63.675151115750097 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.458260978648113, 0.0 ], [ -0.001373291015625, 65.458260978648113, 0.0 ], [ -0.001373291015625, 65.457690567733465, 0.0 ], [ -0.00274658203125, 65.457690567733465, 0.0 ], [ -0.00274658203125, 65.458260978648113, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2109, "task_x": 131070, "task_y": 67456, "task_z": 18, "center_y": 65.439716255155801, "area_in_sqm": 4055.3691974878302, "perimeter_in_m": 254.72716605692699, "length_x": 63.718150198708699, "length_y": 63.719537647088998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.440001659655337, 0.0 ], [ -0.001373291015625, 65.440001659655337, 0.0 ], [ -0.001373291015625, 65.439430850656208, 0.0 ], [ -0.00274658203125, 65.439430850656208, 0.0 ], [ -0.00274658203125, 65.440001659655337, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2110, "task_x": 131070, "task_y": 67488, "task_z": 18, "center_y": 65.421443994900997, "area_in_sqm": 4061.0175689458802, "perimeter_in_m": 254.904498125739, "length_x": 63.762560363323097, "length_y": 63.763948574048101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.421729598552687, 0.0 ], [ -0.001373291015625, 65.421729598552687, 0.0 ], [ -0.001373291015625, 65.421158391249307, 0.0 ], [ -0.00274658203125, 65.421158391249307, 0.0 ], [ -0.00274658203125, 65.421729598552687, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2111, "task_x": 131070, "task_y": 67520, "task_z": 18, "center_y": 65.4031589853941, "area_in_sqm": 4066.6729632616002, "perimeter_in_m": 255.08192716679599, "length_x": 63.806994922367203, "length_y": 63.808383895397803 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.40344478830778, 0.0 ], [ -0.001373291015625, 65.40344478830778, 0.0 ], [ -0.001373291015625, 65.402873182480391, 0.0 ], [ -0.00274658203125, 65.402873182480391, 0.0 ], [ -0.00274658203125, 65.40344478830778, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2112, "task_x": 131070, "task_y": 67552, "task_z": 18, "center_y": 65.384861219602996, "area_in_sqm": 4072.3353871107101, "perimeter_in_m": 255.259453187681, "length_x": 63.851453874573799, "length_y": 63.85284360987 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.385147221888559, 0.0 ], [ -0.001373291015625, 65.385147221888559, 0.0 ], [ -0.001373291015625, 65.384575217317405, 0.0 ], [ -0.00274658203125, 65.384575217317405, 0.0 ], [ -0.00274658203125, 65.385147221888559, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2113, "task_x": 131070, "task_y": 67584, "task_z": 18, "center_y": 65.366550690495899, "area_in_sqm": 4078.00484597683, "perimeter_in_m": 255.437076161916, "length_x": 63.895937218637201, "length_y": 63.897327716157498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.366836892263194, 0.0 ], [ -0.001373291015625, 65.366836892263194, 0.0 ], [ -0.001373291015625, 65.366264488728561, 0.0 ], [ -0.00274658203125, 65.366264488728561, 0.0 ], [ -0.00274658203125, 65.366836892263194, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2114, "task_x": 131070, "task_y": 67616, "task_z": 18, "center_y": 65.348227391041306, "area_in_sqm": 4083.6813470125198, "perimeter_in_m": 255.614796091263, "length_x": 63.940444953212697, "length_y": 63.941836212914303 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.34851379240024, 0.0 ], [ -0.001373291015625, 65.34851379240024, 0.0 ], [ -0.001373291015625, 65.347940989682385, 0.0 ], [ -0.00274658203125, 65.347940989682385, 0.0 ], [ -0.00274658203125, 65.34851379240024, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2115, "task_x": 131070, "task_y": 67648, "task_z": 18, "center_y": 65.329891314208098, "area_in_sqm": 4089.3648955822, "perimeter_in_m": 255.792612978818, "length_x": 63.984977076916401, "length_y": 63.986369098755603 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.330177915268536, 0.0 ], [ -0.001373291015625, 65.330177915268536, 0.0 ], [ -0.001373291015625, 65.329604713147731, 0.0 ], [ -0.00274658203125, 65.329604713147731, 0.0 ], [ -0.00274658203125, 65.330177915268536, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2116, "task_x": 131070, "task_y": 67680, "task_z": 18, "center_y": 65.311542452965497, "area_in_sqm": 4095.0554981231699, "perimeter_in_m": 255.97052680353301, "length_x": 64.029533588325506, "length_y": 64.030926372257099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.311829253837232, 0.0 ], [ -0.001373291015625, 65.311829253837232, 0.0 ], [ -0.001373291015625, 65.311255652093777, 0.0 ], [ -0.00274658203125, 65.311255652093777, 0.0 ], [ -0.00274658203125, 65.311829253837232, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2117, "task_x": 131070, "task_y": 67712, "task_z": 18, "center_y": 65.293180800282897, "area_in_sqm": 4100.7531613111496, "perimeter_in_m": 256.14853756622398, "length_x": 64.074114485978001, "length_y": 64.075508031955806 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.293467801075835, 0.0 ], [ -0.001373291015625, 65.293467801075835, 0.0 ], [ -0.001373291015625, 65.292893799490031, 0.0 ], [ -0.00274658203125, 65.292893799490031, 0.0 ], [ -0.00274658203125, 65.293467801075835, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2118, "task_x": 131070, "task_y": 67744, "task_z": 18, "center_y": 65.274806349130301, "area_in_sqm": 4106.4578909873999, "perimeter_in_m": 256.326645252059, "length_x": 64.118719768372699, "length_y": 64.120114076349097 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.275093549954207, 0.0 ], [ -0.001373291015625, 65.275093549954207, 0.0 ], [ -0.001373291015625, 65.274519148306382, 0.0 ], [ -0.00274658203125, 65.274519148306382, 0.0 ], [ -0.00274658203125, 65.275093549954207, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2119, "task_x": 131070, "task_y": 67776, "task_z": 18, "center_y": 65.256419092477799, "area_in_sqm": 4112.1696935892096, "perimeter_in_m": 256.50484986309999, "length_x": 64.163349433969003, "length_y": 64.164744503895093 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.256706493442579, 0.0 ], [ -0.001373291015625, 65.256706493442579, 0.0 ], [ -0.001373291015625, 65.256131691513048, 0.0 ], [ -0.00274658203125, 65.256131691513048, 0.0 ], [ -0.00274658203125, 65.256706493442579, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2120, "task_x": 131070, "task_y": 67808, "task_z": 18, "center_y": 65.238019023296104, "area_in_sqm": 4117.8885750770596, "perimeter_in_m": 256.68315138436498, "length_x": 64.208003481186694, "length_y": 64.209399313012597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.238306624511551, 0.0 ], [ -0.001373291015625, 65.238306624511551, 0.0 ], [ -0.001373291015625, 65.237731422080657, 0.0 ], [ -0.00274658203125, 65.237731422080657, 0.0 ], [ -0.00274658203125, 65.238306624511551, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2121, "task_x": 131070, "task_y": 67840, "task_z": 18, "center_y": 65.219606134556102, "area_in_sqm": 4123.6145423650696, "perimeter_in_m": 256.861549828374, "length_x": 64.252681908406302, "length_y": 64.254078502080901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.219893936132081, 0.0 ], [ -0.001373291015625, 65.219893936132081, 0.0 ], [ -0.001373291015625, 65.219318332980166, 0.0 ], [ -0.00274658203125, 65.219318332980166, 0.0 ], [ -0.00274658203125, 65.219893936132081, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2122, "task_x": 131070, "task_y": 67872, "task_z": 18, "center_y": 65.201180419229303, "area_in_sqm": 4129.34760117531, "perimeter_in_m": 257.04004515521001, "length_x": 64.297384713968697, "length_y": 64.298782069439198 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.201468421275578, 0.0 ], [ -0.001373291015625, 65.201468421275578, 0.0 ], [ -0.001373291015625, 65.200892417182999, 0.0 ], [ -0.00274658203125, 65.200892417182999, 0.0 ], [ -0.00274658203125, 65.201468421275578, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2123, "task_x": 131070, "task_y": 67904, "task_z": 18, "center_y": 65.182741870287401, "area_in_sqm": 4135.0877575874301, "perimeter_in_m": 257.218637374406, "length_x": 64.342111896174899, "length_y": 64.3435100133877 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.183030072913809, 0.0 ], [ -0.001373291015625, 65.183030072913809, 0.0 ], [ -0.001373291015625, 65.182453667660951, 0.0 ], [ -0.00274658203125, 65.182453667660951, 0.0 ], [ -0.00274658203125, 65.183030072913809, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2124, "task_x": 131070, "task_y": 67936, "task_z": 18, "center_y": 65.164290480702604, "area_in_sqm": 4140.8350180387497, "perimeter_in_m": 257.39732648480901, "length_x": 64.386863453286097, "length_y": 64.388262332186301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.164578884018979, 0.0 ], [ -0.001373291015625, 65.164578884018979, 0.0 ], [ -0.001373291015625, 65.164002077386215, 0.0 ], [ -0.00274658203125, 65.164002077386215, 0.0 ], [ -0.00274658203125, 65.164578884018979, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2125, "task_x": 131070, "task_y": 67968, "task_z": 18, "center_y": 65.145826243447601, "area_in_sqm": 4146.5893892049799, "perimeter_in_m": 257.57611246181699, "length_x": 64.431639383523901, "length_y": 64.433039024055006 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.146114847563723, 0.0 ], [ -0.001373291015625, 65.146114847563723, 0.0 ], [ -0.001373291015625, 65.145537639331479, 0.0 ], [ -0.00274658203125, 65.145537639331479, 0.0 ], [ -0.00274658203125, 65.146114847563723, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2126, "task_x": 131070, "task_y": 68000, "task_z": 18, "center_y": 65.127349151495494, "area_in_sqm": 4152.3508765697497, "perimeter_in_m": 257.75499531049098, "length_x": 64.476439685069494, "length_y": 64.4778400871743 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.127637956521141, 0.0 ], [ -0.001373291015625, 65.127637956521141, 0.0 ], [ -0.001373291015625, 65.127060346469818, 0.0 ], [ -0.00274658203125, 65.127060346469818, 0.0 ], [ -0.00274658203125, 65.127637956521141, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2127, "task_x": 131070, "task_y": 68032, "task_z": 18, "center_y": 65.108859197819697, "area_in_sqm": 4158.1194868087796, "perimeter_in_m": 257.933975019515, "length_x": 64.521264356064293, "length_y": 64.522665519684097 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.109148203864734, 0.0 ], [ -0.001373291015625, 65.109148203864734, 0.0 ], [ -0.001373291015625, 65.10857019177476, 0.0 ], [ -0.00274658203125, 65.10857019177476, 0.0 ], [ -0.00274658203125, 65.109148203864734, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2128, "task_x": 131070, "task_y": 68064, "task_z": 18, "center_y": 65.090356375394407, "area_in_sqm": 4163.8952258825302, "perimeter_in_m": 258.11305157750297, "length_x": 64.566113394609602, "length_y": 64.567515319684404 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.090645582568527, 0.0 ], [ -0.001373291015625, 65.090645582568527, 0.0 ], [ -0.001373291015625, 65.090067168220344, 0.0 ], [ -0.00274658203125, 65.090067168220344, 0.0 ], [ -0.00274658203125, 65.090645582568527, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2129, "task_x": 131070, "task_y": 68096, "task_z": 18, "center_y": 65.071840677194004, "area_in_sqm": 4169.6780997514697, "perimeter_in_m": 258.29222497227698, "length_x": 64.610986798766405, "length_y": 64.612389485234701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.072130085606958, 0.0 ], [ -0.001373291015625, 65.072130085606958, 0.0 ], [ -0.001373291015625, 65.07155126878105, 0.0 ], [ -0.00274658203125, 65.07155126878105, 0.0 ], [ -0.00274658203125, 65.072130085606958, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2130, "task_x": 131070, "task_y": 68128, "task_z": 18, "center_y": 65.053312096193395, "area_in_sqm": 4175.4681159257898, "perimeter_in_m": 258.47149520077602, "length_x": 64.655884566555102, "length_y": 64.657288014354506 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.053601705955003, 0.0 ], [ -0.001373291015625, 65.053601705955003, 0.0 ], [ -0.001373291015625, 65.053022486431828, 0.0 ], [ -0.00274658203125, 65.053022486431828, 0.0 ], [ -0.00274658203125, 65.053601705955003, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2131, "task_x": 131070, "task_y": 68160, "task_z": 18, "center_y": 65.034770625368196, "area_in_sqm": 4181.2652789354297, "perimeter_in_m": 258.65086225278901, "length_x": 64.700806695955805, "length_y": 64.702210905022696 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.03506043658814, 0.0 ], [ -0.001373291015625, 65.03506043658814, 0.0 ], [ -0.001373291015625, 65.034480814148196, 0.0 ], [ -0.00274658203125, 65.034480814148196, 0.0 ], [ -0.00274658203125, 65.03506043658814, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2132, "task_x": 131070, "task_y": 68192, "task_z": 18, "center_y": 65.016216257694197, "area_in_sqm": 4187.06959617138, "perimeter_in_m": 258.830326117303, "length_x": 64.745753184908395, "length_y": 64.747158155177601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 65.01650627048231, 0.0 ], [ -0.001373291015625, 65.01650627048231, 0.0 ], [ -0.001373291015625, 65.015926244906098, 0.0 ], [ -0.00274658203125, 65.015926244906098, 0.0 ], [ -0.00274658203125, 65.01650627048231, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2133, "task_x": 131070, "task_y": 68224, "task_z": 18, "center_y": 64.997648986148107, "area_in_sqm": 4192.8810734748804, "perimeter_in_m": 259.00988679596998, "length_x": 64.790724031311797, "length_y": 64.792129762717096 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.997939200614027, 0.0 ], [ -0.001373291015625, 64.997939200614027, 0.0 ], [ -0.001373291015625, 64.997358771682059, 0.0 ], [ -0.00274658203125, 64.997358771682059, 0.0 ], [ -0.00274658203125, 64.997939200614027, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2134, "task_x": 131070, "task_y": 68256, "task_z": 18, "center_y": 64.979068803706696, "area_in_sqm": 4198.6997168064099, "perimeter_in_m": 259.18954426205403, "length_x": 64.835719233024193, "length_y": 64.837125725497998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.979359219960287, 0.0 ], [ -0.001373291015625, 64.979359219960287, 0.0 ], [ -0.001373291015625, 64.978778387453133, 0.0 ], [ -0.00274658203125, 64.978778387453133, 0.0 ], [ -0.00274658203125, 64.979359219960287, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2135, "task_x": 131070, "task_y": 68288, "task_z": 18, "center_y": 64.960475703347797, "area_in_sqm": 4204.5255329608899, "perimeter_in_m": 259.36929851066901, "length_x": 64.880738787863294, "length_y": 64.882146041336696 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.960766321498696, 0.0 ], [ -0.001373291015625, 64.960766321498696, 0.0 ], [ -0.001373291015625, 64.960185085196883, 0.0 ], [ -0.00274658203125, 64.960185085196883, 0.0 ], [ -0.00274658203125, 64.960766321498696, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2136, "task_x": 131070, "task_y": 68320, "task_z": 18, "center_y": 64.9418696780494, "area_in_sqm": 4210.3585273027402, "perimeter_in_m": 259.54914953967398, "length_x": 64.925782693605598, "length_y": 64.927190708008496 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.942160498207357, 0.0 ], [ -0.001373291015625, 64.942160498207357, 0.0 ], [ -0.001373291015625, 64.941578857891471, 0.0 ], [ -0.00274658203125, 64.941578857891471, 0.0 ], [ -0.00274658203125, 64.942160498207357, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2137, "task_x": 131070, "task_y": 68352, "task_z": 18, "center_y": 64.923250720790307, "area_in_sqm": 4216.1987063884699, "perimeter_in_m": 259.72909732704898, "length_x": 64.970850947986904, "length_y": 64.972259723247802 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.923541743064959, 0.0 ], [ -0.001373291015625, 64.923541743064959, 0.0 ], [ -0.001373291015625, 64.922959698515612, 0.0 ], [ -0.00274658203125, 64.922959698515612, 0.0 ], [ -0.00274658203125, 64.923541743064959, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2138, "task_x": 131070, "task_y": 68384, "task_z": 18, "center_y": 64.904618824549701, "area_in_sqm": 4222.0460772514298, "perimeter_in_m": 259.90914187685399, "length_x": 65.0159435487015, "length_y": 65.017353084747697 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.904910049050812, 0.0 ], [ -0.001373291015625, 64.904910049050812, 0.0 ], [ -0.001373291015625, 64.904327600048589, 0.0 ], [ -0.00274658203125, 64.904327600048589, 0.0 ], [ -0.00274658203125, 64.904910049050812, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2139, "task_x": 131070, "task_y": 68416, "task_z": 18, "center_y": 64.885973982307505, "area_in_sqm": 4227.9006448984101, "perimeter_in_m": 260.08928316335403, "length_x": 65.061060493403104, "length_y": 65.062470790160603 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.886265409144755, 0.0 ], [ -0.001373291015625, 64.886265409144755, 0.0 ], [ -0.001373291015625, 64.885682555470311, 0.0 ], [ -0.00274658203125, 64.885682555470311, 0.0 ], [ -0.00274658203125, 64.886265409144755, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2140, "task_x": 131070, "task_y": 68448, "task_z": 18, "center_y": 64.867316187044295, "area_in_sqm": 4233.7624157667196, "perimeter_in_m": 260.269521187625, "length_x": 65.106201779703596, "length_y": 65.107612837097193 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.867607816327279, 0.0 ], [ -0.001373291015625, 64.867607816327279, 0.0 ], [ -0.001373291015625, 64.867024557761255, 0.0 ], [ -0.00274658203125, 64.867024557761255, 0.0 ], [ -0.00274658203125, 64.867607816327279, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2141, "task_x": 131070, "task_y": 68480, "task_z": 18, "center_y": 64.848645431741005, "area_in_sqm": 4239.6313970089004, "perimeter_in_m": 260.449855932248, "length_x": 65.151367405174, "length_y": 65.152779223126998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.848937263579458, 0.0 ], [ -0.001373291015625, 64.848937263579458, 0.0 ], [ -0.001373291015625, 64.848353599902509, 0.0 ], [ -0.00274658203125, 64.848353599902509, 0.0 ], [ -0.00274658203125, 64.848937263579458, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2142, "task_x": 131070, "task_y": 68512, "task_z": 18, "center_y": 64.829961709379404, "area_in_sqm": 4245.5075935125396, "perimeter_in_m": 260.63028738894099, "length_x": 65.196557367343502, "length_y": 65.197969945778098 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.830253743883006, 0.0 ], [ -0.001373291015625, 64.830253743883006, 0.0 ], [ -0.001373291015625, 64.829669674875845, 0.0 ], [ -0.00274658203125, 64.829669674875845, 0.0 ], [ -0.00274658203125, 64.830253743883006, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2143, "task_x": 131070, "task_y": 68544, "task_z": 18, "center_y": 64.811265012941902, "area_in_sqm": 4251.3910120725604, "perimeter_in_m": 260.81081555143498, "length_x": 65.241771663700106, "length_y": 65.243185002537103 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.811557250220289, 0.0 ], [ -0.001373291015625, 64.811557250220289, 0.0 ], [ -0.001373291015625, 64.8109727756636, 0.0 ], [ -0.00274658203125, 64.8109727756636, 0.0 ], [ -0.00274658203125, 64.811557250220289, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2144, "task_x": 131070, "task_y": 68576, "task_z": 18, "center_y": 64.792555335411606, "area_in_sqm": 4257.2816588878604, "perimeter_in_m": 260.991440396418, "length_x": 65.287010291689796, "length_y": 65.288424390848704 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.792847775574316, 0.0 ], [ -0.001373291015625, 64.792847775574316, 0.0 ], [ -0.001373291015625, 64.792262895248825, 0.0 ], [ -0.00274658203125, 64.792262895248825, 0.0 ], [ -0.00274658203125, 64.792847775574316, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2145, "task_x": 131070, "task_y": 68608, "task_z": 18, "center_y": 64.773832669772005, "area_in_sqm": 4263.1795401573199, "perimeter_in_m": 261.17216192595902, "length_x": 65.332273248717101, "length_y": 65.333688108116206 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.774125312928732, 0.0 ], [ -0.001373291015625, 64.774125312928732, 0.0 ], [ -0.001373291015625, 64.773540026615223, 0.0 ], [ -0.00274658203125, 64.773540026615223, 0.0 ], [ -0.00274658203125, 64.774125312928732, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2146, "task_x": 131070, "task_y": 68640, "task_z": 18, "center_y": 64.7550970090075, "area_in_sqm": 4269.0846616029703, "perimeter_in_m": 261.35298012010003, "length_x": 65.377560532144798, "length_y": 65.378976151700996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.755389855267893, 0.0 ], [ -0.001373291015625, 64.755389855267893, 0.0 ], [ -0.001373291015625, 64.754804162747121, 0.0 ], [ -0.00274658203125, 64.754804162747121, 0.0 ], [ -0.00274658203125, 64.755389855267893, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2147, "task_x": 131070, "task_y": 68672, "task_z": 18, "center_y": 64.736348346103199, "area_in_sqm": 4274.9970299005499, "perimeter_in_m": 261.533894965174, "length_x": 65.422872139293702, "length_y": 65.424288518922395 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.736641395576839, 0.0 ], [ -0.001373291015625, 64.736641395576839, 0.0 ], [ -0.001373291015625, 64.736055296629587, 0.0 ], [ -0.00274658203125, 64.736055296629587, 0.0 ], [ -0.00274658203125, 64.736641395576839, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2148, "task_x": 131070, "task_y": 68704, "task_z": 18, "center_y": 64.717586674044796, "area_in_sqm": 4280.91665065289, "perimeter_in_m": 261.71490646582703, "length_x": 65.468208067442305, "length_y": 65.469625207058101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.717879926841277, 0.0 ], [ -0.001373291015625, 64.717879926841277, 0.0 ], [ -0.001373291015625, 64.717293421248371, 0.0 ], [ -0.00274658203125, 64.717293421248371, 0.0 ], [ -0.00274658203125, 64.717879926841277, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2149, "task_x": 131070, "task_y": 68736, "task_z": 18, "center_y": 64.698811985818807, "area_in_sqm": 4286.84353125095, "perimeter_in_m": 261.896014582747, "length_x": 65.513568313827605, "length_y": 65.514986213343207 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.699105442047653, 0.0 ], [ -0.001373291015625, 64.699105442047653, 0.0 ], [ -0.001373291015625, 64.698518529589933, 0.0 ], [ -0.00274658203125, 64.698518529589933, 0.0 ], [ -0.00274658203125, 64.699105442047653, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2150, "task_x": 131070, "task_y": 68768, "task_z": 18, "center_y": 64.680024274412304, "area_in_sqm": 4292.7776763439197, "perimeter_in_m": 262.07721931758499, "length_x": 65.558952875643897, "length_y": 65.560371534970997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.680317934183137, 0.0 ], [ -0.001373291015625, 64.680317934183137, 0.0 ], [ -0.001373291015625, 64.679730614641471, 0.0 ], [ -0.00274658203125, 64.679730614641471, 0.0 ], [ -0.00274658203125, 64.680317934183137, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2151, "task_x": 131070, "task_y": 68800, "task_z": 18, "center_y": 64.661223532813196, "area_in_sqm": 4298.7190933227503, "perimeter_in_m": 262.25852067118899, "length_x": 65.604361750043296, "length_y": 65.605781169092396 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.66151739623561, 0.0 ], [ -0.001373291015625, 64.66151739623561, 0.0 ], [ -0.001373291015625, 64.660929669390868, 0.0 ], [ -0.00274658203125, 64.660929669390868, 0.0 ], [ -0.00274658203125, 64.66151739623561, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2152, "task_x": 131070, "task_y": 68832, "task_z": 18, "center_y": 64.642409754010302, "area_in_sqm": 4304.6677875518799, "perimeter_in_m": 262.43991860399001, "length_x": 65.649794934135997, "length_y": 65.651215112815805 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.642703821193734, 0.0 ], [ -0.001373291015625, 64.642703821193734, 0.0 ], [ -0.001373291015625, 64.642115686826827, 0.0 ], [ -0.00274658203125, 64.642115686826827, 0.0 ], [ -0.00274658203125, 64.642703821193734, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2153, "task_x": 131070, "task_y": 68864, "task_z": 18, "center_y": 64.623582930992796, "area_in_sqm": 4310.6237651109705, "perimeter_in_m": 262.62141313012302, "length_x": 65.695252424989107, "length_y": 65.696673363207694 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.623877202046884, 0.0 ], [ -0.001373291015625, 64.623877202046884, 0.0 ], [ -0.001373291015625, 64.623288659938737, 0.0 ], [ -0.00274658203125, 64.623288659938737, 0.0 ], [ -0.00274658203125, 64.623877202046884, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2154, "task_x": 131070, "task_y": 68896, "task_z": 18, "center_y": 64.604743056751104, "area_in_sqm": 4316.5870327949497, "perimeter_in_m": 262.80300421125401, "length_x": 65.740734219627697, "length_y": 65.742155917290901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.605037531785257, 0.0 ], [ -0.001373291015625, 64.605037531785257, 0.0 ], [ -0.001373291015625, 64.604448581716838, 0.0 ], [ -0.00274658203125, 64.604448581716838, 0.0 ], [ -0.00274658203125, 64.605037531785257, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2155, "task_x": 131070, "task_y": 68928, "task_z": 18, "center_y": 64.585890124275906, "area_in_sqm": 4322.5575966835004, "perimeter_in_m": 262.98469186630302, "length_x": 65.786240315033496, "length_y": 65.787662772046801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.586184803399789, 0.0 ], [ -0.001373291015625, 64.586184803399789, 0.0 ], [ -0.001373291015625, 64.585595445152066, 0.0 ], [ -0.00274658203125, 64.585595445152066, 0.0 ], [ -0.00274658203125, 64.586184803399789, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2156, "task_x": 131070, "task_y": 68960, "task_z": 18, "center_y": 64.567024126559204, "area_in_sqm": 4328.5354620218304, "perimeter_in_m": 263.16647604473701, "length_x": 65.831770708146493, "length_y": 65.833193924413294 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.56731900988224, 0.0 ], [ -0.001373291015625, 64.56731900988224, 0.0 ], [ -0.001373291015625, 64.566729243236225, 0.0 ], [ -0.00274658203125, 64.566729243236225, 0.0 ], [ -0.00274658203125, 64.56731900988224, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2157, "task_x": 131070, "task_y": 68992, "task_z": 18, "center_y": 64.548145056593498, "area_in_sqm": 4334.5206360817001, "perimeter_in_m": 263.34835676034498, "length_x": 65.877325395862997, "length_y": 65.878749371285707 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.548440144225168, 0.0 ], [ -0.001373291015625, 64.548440144225168, 0.0 ], [ -0.001373291015625, 64.547849968961884, 0.0 ], [ -0.00274658203125, 64.547849968961884, 0.0 ], [ -0.00274658203125, 64.548440144225168, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2158, "task_x": 131070, "task_y": 69024, "task_z": 18, "center_y": 64.529252907372197, "area_in_sqm": 4340.5131243467304, "perimeter_in_m": 263.53033398790001, "length_x": 65.922904375036694, "length_y": 65.924329109516293 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.529548199421939, 0.0 ], [ -0.001373291015625, 64.529548199421939, 0.0 ], [ -0.001373291015625, 64.52895761532244, 0.0 ], [ -0.00274658203125, 64.52895761532244, 0.0 ], [ -0.00274658203125, 64.529548199421939, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2159, "task_x": 131070, "task_y": 69056, "task_z": 18, "center_y": 64.510347671889505, "area_in_sqm": 4346.5129331350299, "perimeter_in_m": 263.71240771695398, "length_x": 65.968507642478201, "length_y": 65.969933135914303 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.510643168466771, 0.0 ], [ -0.001373291015625, 64.510643168466771, 0.0 ], [ -0.001373291015625, 64.51005217531214, 0.0 ], [ -0.00274658203125, 64.51005217531214, 0.0 ], [ -0.00274658203125, 64.510643168466771, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2160, "task_x": 131070, "task_y": 69088, "task_z": 18, "center_y": 64.491429343140396, "area_in_sqm": 4352.5200685262698, "perimeter_in_m": 263.894577929896, "length_x": 66.014135194955202, "length_y": 66.0155614472461 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.491725044354695, 0.0 ], [ -0.001373291015625, 64.491725044354695, 0.0 ], [ -0.001373291015625, 64.491133641926055, 0.0 ], [ -0.00274658203125, 64.491133641926055, 0.0 ], [ -0.00274658203125, 64.491725044354695, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2161, "task_x": 131070, "task_y": 69120, "task_z": 18, "center_y": 64.472497914120893, "area_in_sqm": 4358.5345364809, "perimeter_in_m": 264.07684461469199, "length_x": 66.059787029191895, "length_y": 66.061214040234503 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.472793820081648, 0.0 ], [ -0.001373291015625, 64.472793820081648, 0.0 ], [ -0.001373291015625, 64.472202008160139, 0.0 ], [ -0.00274658203125, 64.472202008160139, 0.0 ], [ -0.00274658203125, 64.472793820081648, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2162, "task_x": 131070, "task_y": 69152, "task_z": 18, "center_y": 64.453553377827802, "area_in_sqm": 4364.5563435554504, "perimeter_in_m": 264.25920776203401, "length_x": 66.105463141869194, "length_y": 66.106890911559205 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.453849488644394, 0.0 ], [ -0.001373291015625, 64.453849488644394, 0.0 ], [ -0.001373291015625, 64.453257267011153, 0.0 ], [ -0.00274658203125, 64.453257267011153, 0.0 ], [ -0.00274658203125, 64.453849488644394, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2163, "task_x": 131070, "task_y": 69184, "task_z": 18, "center_y": 64.434595727258696, "area_in_sqm": 4370.5854952335403, "perimeter_in_m": 264.44166734840098, "length_x": 66.151163529624796, "length_y": 66.152592057856296 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.434892043040591, 0.0 ], [ -0.001373291015625, 64.434892043040591, 0.0 ], [ -0.001373291015625, 64.434299411476829, 0.0 ], [ -0.00274658203125, 64.434299411476829, 0.0 ], [ -0.00274658203125, 64.434892043040591, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2164, "task_x": 131070, "task_y": 69216, "task_z": 18, "center_y": 64.415624955412298, "area_in_sqm": 4376.6219979524603, "perimeter_in_m": 264.62422336432201, "length_x": 66.196888189052899, "length_y": 66.198317475718795 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.415921476268792, 0.0 ], [ -0.001373291015625, 64.415921476268792, 0.0 ], [ -0.001373291015625, 64.415328434555732, 0.0 ], [ -0.00274658203125, 64.415328434555732, 0.0 ], [ -0.00274658203125, 64.415921476268792, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2165, "task_x": 131070, "task_y": 69248, "task_z": 18, "center_y": 64.396641055287901, "area_in_sqm": 4382.6658582687396, "perimeter_in_m": 264.80687579810598, "length_x": 66.242637116703904, "length_y": 66.244067161695696 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.396937781328447, 0.0 ], [ -0.001373291015625, 64.396937781328447, 0.0 ], [ -0.001373291015625, 64.396344329247313, 0.0 ], [ -0.00274658203125, 64.396344329247313, 0.0 ], [ -0.00274658203125, 64.396937781328447, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2166, "task_x": 131070, "task_y": 69280, "task_z": 18, "center_y": 64.377644019886006, "area_in_sqm": 4388.7170817852002, "perimeter_in_m": 264.98962462242702, "length_x": 66.288410309084597, "length_y": 66.289841112292393 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.377940951219955, 0.0 ], [ -0.001373291015625, 64.377940951219955, 0.0 ], [ -0.001373291015625, 64.377347088552042, 0.0 ], [ -0.00274658203125, 64.377347088552042, 0.0 ], [ -0.00274658203125, 64.377940951219955, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2167, "task_x": 131070, "task_y": 69312, "task_z": 18, "center_y": 64.358633842207894, "area_in_sqm": 4394.7756745815304, "perimeter_in_m": 265.17246983958302, "length_x": 66.334207762658096, "length_y": 66.335639323970696 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.358930978944585, 0.0 ], [ -0.001373291015625, 64.358930978944585, 0.0 ], [ -0.001373291015625, 64.358336705471203, 0.0 ], [ -0.00274658203125, 64.358336705471203, 0.0 ], [ -0.00274658203125, 64.358930978944585, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2168, "task_x": 131070, "task_y": 69344, "task_z": 18, "center_y": 64.339610515255899, "area_in_sqm": 4400.8416429758099, "perimeter_in_m": 265.35541141851201, "length_x": 66.380029473843507, "length_y": 66.381461793148304 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.339907857504613, 0.0 ], [ -0.001373291015625, 64.339907857504613, 0.0 ], [ -0.001373291015625, 64.339313173007085, 0.0 ], [ -0.00274658203125, 64.339313173007085, 0.0 ], [ -0.00274658203125, 64.339907857504613, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2169, "task_x": 131070, "task_y": 69376, "task_z": 18, "center_y": 64.320574032033093, "area_in_sqm": 4406.9149929285004, "perimeter_in_m": 265.53844934860302, "length_x": 66.425875439016096, "length_y": 66.427308516199105 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.32087157990324, 0.0 ], [ -0.001373291015625, 64.32087157990324, 0.0 ], [ -0.001373291015625, 64.320276484162946, 0.0 ], [ -0.00274658203125, 64.320276484162946, 0.0 ], [ -0.00274658203125, 64.32087157990324, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2170, "task_x": 131070, "task_y": 69408, "task_z": 18, "center_y": 64.3015243855438, "area_in_sqm": 4412.9957307577097, "perimeter_in_m": 265.72158362481503, "length_x": 66.471745654506805, "length_y": 66.473179489452704 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.301822139144633, 0.0 ], [ -0.001373291015625, 64.301822139144633, 0.0 ], [ -0.001373291015625, 64.301226631942953, 0.0 ], [ -0.00274658203125, 64.301226631942953, 0.0 ], [ -0.00274658203125, 64.301822139144633, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2171, "task_x": 131070, "task_y": 69440, "task_z": 18, "center_y": 64.282461568793096, "area_in_sqm": 4419.0838617086401, "perimeter_in_m": 265.90481421794499, "length_x": 66.517640116602905, "length_y": 66.519074709194896 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.282759528233939, 0.0 ], [ -0.001373291015625, 64.282759528233939, 0.0 ], [ -0.001373291015625, 64.28216360935231, 0.0 ], [ -0.00274658203125, 64.28216360935231, 0.0 ], [ -0.00274658203125, 64.282759528233939, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2172, "task_x": 131070, "task_y": 69472, "task_z": 18, "center_y": 64.263385574787307, "area_in_sqm": 4425.1793930530503, "perimeter_in_m": 266.08814111499601, "length_x": 66.563558821546806, "length_y": 66.564994171666797 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.263683740177328, 0.0 ], [ -0.001373291015625, 64.263683740177328, 0.0 ], [ -0.001373291015625, 64.263087409397201, 0.0 ], [ -0.00274658203125, 64.263087409397201, 0.0 ], [ -0.00274658203125, 64.263683740177328, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2173, "task_x": 131070, "task_y": 69504, "task_z": 18, "center_y": 64.244296396533301, "area_in_sqm": 4431.2823300361597, "perimeter_in_m": 266.27156429648898, "length_x": 66.609501765537104, "length_y": 66.610937873065495 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.244594767981923, 0.0 ], [ -0.001373291015625, 64.244594767981923, 0.0 ], [ -0.001373291015625, 64.243998025084792, 0.0 ], [ -0.00274658203125, 64.243998025084792, 0.0 ], [ -0.00274658203125, 64.244594767981923, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2174, "task_x": 131070, "task_y": 69536, "task_z": 18, "center_y": 64.225194027039606, "area_in_sqm": 4437.3926792144803, "perimeter_in_m": 266.45508375279002, "length_x": 66.655468944727502, "length_y": 66.656905809543403 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.225492604655912, 0.0 ], [ -0.001373291015625, 64.225492604655912, 0.0 ], [ -0.001373291015625, 64.224895449423315, 0.0 ], [ -0.00274658203125, 64.224895449423315, 0.0 ], [ -0.00274658203125, 64.225492604655912, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2175, "task_x": 131070, "task_y": 69568, "task_z": 18, "center_y": 64.206078459315293, "area_in_sqm": 4443.5104466676703, "perimeter_in_m": 266.63869946566302, "length_x": 66.701460355227397, "length_y": 66.702897977208593 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.206377243208507, 0.0 ], [ -0.001373291015625, 64.206377243208507, 0.0 ], [ -0.001373291015625, 64.205779675421979, 0.0 ], [ -0.00274658203125, 64.205779675421979, 0.0 ], [ -0.00274658203125, 64.206377243208507, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2176, "task_x": 131070, "task_y": 69600, "task_z": 18, "center_y": 64.186949686370497, "area_in_sqm": 4449.6356377601596, "perimeter_in_m": 266.82241141890898, "length_x": 66.747475993101602, "length_y": 66.748914372124304 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.187248676649943, 0.0 ], [ -0.001373291015625, 64.187248676649943, 0.0 ], [ -0.001373291015625, 64.186650696091078, 0.0 ], [ -0.00274658203125, 64.186650696091078, 0.0 ], [ -0.00274658203125, 64.187248676649943, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2177, "task_x": 131070, "task_y": 69632, "task_z": 18, "center_y": 64.167807701216702, "area_in_sqm": 4455.7682595253, "perimeter_in_m": 267.00621959342101, "length_x": 66.79351585437, "length_y": 66.794954990309094 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.168106897991521, 0.0 ], [ -0.001373291015625, 64.168106897991521, 0.0 ], [ -0.001373291015625, 64.167508504441926, 0.0 ], [ -0.00274658203125, 64.167508504441926, 0.0 ], [ -0.00274658203125, 64.168106897991521, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2178, "task_x": 131070, "task_y": 69664, "task_z": 18, "center_y": 64.148652496866305, "area_in_sqm": 4461.9083172082901, "perimeter_in_m": 267.19012397423199, "length_x": 66.839579935007706, "length_y": 66.841019827736801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.148951900245621, 0.0 ], [ -0.001373291015625, 64.148951900245621, 0.0 ], [ -0.001373291015625, 64.148353093486961, 0.0 ], [ -0.00274658203125, 64.148353093486961, 0.0 ], [ -0.00274658203125, 64.148951900245621, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2179, "task_x": 131070, "task_y": 69696, "task_z": 18, "center_y": 64.129484066332694, "area_in_sqm": 4468.0558174848602, "perimeter_in_m": 267.37412453284497, "length_x": 66.885668230945001, "length_y": 66.8871088803362 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.129783676425689, 0.0 ], [ -0.001373291015625, 64.129783676425689, 0.0 ], [ -0.001373291015625, 64.129184456239656, 0.0 ], [ -0.00274658203125, 64.129184456239656, 0.0 ], [ -0.00274658203125, 64.129783676425689, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2180, "task_x": 131070, "task_y": 69728, "task_z": 18, "center_y": 64.110302402630396, "area_in_sqm": 4474.2107665538797, "perimeter_in_m": 267.55822128029803, "length_x": 66.931780738067104, "length_y": 66.933222143991003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.110602219546294, 0.0 ], [ -0.001373291015625, 64.110602219546294, 0.0 ], [ -0.001373291015625, 64.110002585714597, 0.0 ], [ -0.00274658203125, 64.110002585714597, 0.0 ], [ -0.00274658203125, 64.110602219546294, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2181, "task_x": 131070, "task_y": 69760, "task_z": 18, "center_y": 64.091107498775301, "area_in_sqm": 4480.3731691837302, "perimeter_in_m": 267.74241416174198, "length_x": 66.977917452213902, "length_y": 66.979359614539902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.091407522623086, 0.0 ], [ -0.001373291015625, 64.091407522623086, 0.0 ], [ -0.001373291015625, 64.090807474927487, 0.0 ], [ -0.00274658203125, 64.090807474927487, 0.0 ], [ -0.00274658203125, 64.091407522623086, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2182, "task_x": 131070, "task_y": 69792, "task_z": 18, "center_y": 64.071899347783997, "area_in_sqm": 4486.5430326461801, "perimeter_in_m": 267.92670318307103, "length_x": 67.024078369180501, "length_y": 67.0255212877763 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.072199578672823, 0.0 ], [ -0.001373291015625, 64.072199578672823, 0.0 ], [ -0.001373291015625, 64.071599116895129, 0.0 ], [ -0.00274658203125, 64.071599116895129, 0.0 ], [ -0.00274658203125, 64.072199578672823, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2183, "task_x": 131070, "task_y": 69824, "task_z": 18, "center_y": 64.052677942674507, "area_in_sqm": 4492.72036266327, "perimeter_in_m": 268.11108832321003, "length_x": 67.070263484716193, "length_y": 67.071707159448295 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.052978380713455, 0.0 ], [ -0.001373291015625, 64.052978380713455, 0.0 ], [ -0.001373291015625, 64.052377504635473, 0.0 ], [ -0.00274658203125, 64.052377504635473, 0.0 ], [ -0.00274658203125, 64.052978380713455, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2184, "task_x": 131070, "task_y": 69856, "task_z": 18, "center_y": 64.033443276465803, "area_in_sqm": 4498.9051647186297, "perimeter_in_m": 268.29556955462601, "length_x": 67.116472794525293, "length_y": 67.117917225258694 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.033743921764, 0.0 ], [ -0.001373291015625, 64.033743921764, 0.0 ], [ -0.001373291015625, 64.033142631167621, 0.0 ], [ -0.00274658203125, 64.033142631167621, 0.0 ], [ -0.00274658203125, 64.033743921764, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2185, "task_x": 131070, "task_y": 69888, "task_z": 18, "center_y": 64.014195342178297, "area_in_sqm": 4505.0974460840198, "perimeter_in_m": 268.48014687304698, "length_x": 67.162706294266201, "length_y": 67.164151480864604 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 64.01449619484471, 0.0 ], [ -0.001373291015625, 64.01449619484471, 0.0 ], [ -0.001373291015625, 64.013894489511813, 0.0 ], [ -0.00274658203125, 64.013894489511813, 0.0 ], [ -0.00274658203125, 64.01449619484471, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2186, "task_x": 131070, "task_y": 69920, "task_z": 18, "center_y": 63.994934132833201, "area_in_sqm": 4511.2972112894104, "perimeter_in_m": 268.66482024509003, "length_x": 67.208963979552095, "length_y": 67.210409921877599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.995235192976978, 0.0 ], [ -0.001373291015625, 63.995235192976978, 0.0 ], [ -0.001373291015625, 63.99463307268951, 0.0 ], [ -0.00274658203125, 63.99463307268951, 0.0 ], [ -0.00274658203125, 63.995235192976978, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2187, "task_x": 131070, "task_y": 69952, "task_z": 18, "center_y": 63.975659641453298, "area_in_sqm": 4517.5044677257501, "perimeter_in_m": 268.84958965921197, "length_x": 67.255245845950199, "length_y": 67.256692543863394 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.975960909183357, 0.0 ], [ -0.001373291015625, 63.975960909183357, 0.0 ], [ -0.001373291015625, 63.975358373723296, 0.0 ], [ -0.00274658203125, 63.975358373723296, 0.0 ], [ -0.00274658203125, 63.975960909183357, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2188, "task_x": 131070, "task_y": 69984, "task_z": 18, "center_y": 63.956371861062301, "area_in_sqm": 4523.7192205190704, "perimeter_in_m": 269.03445510309001, "length_x": 67.301551888982004, "length_y": 67.302999342342403 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.956673336487647, 0.0 ], [ -0.001373291015625, 63.956673336487647, 0.0 ], [ -0.001373291015625, 63.956070385636991, 0.0 ], [ -0.00274658203125, 63.956070385636991, 0.0 ], [ -0.00274658203125, 63.956673336487647, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2189, "task_x": 131070, "task_y": 70016, "task_z": 18, "center_y": 63.937070784685197, "area_in_sqm": 4529.9414759874298, "perimeter_in_m": 269.21941654801202, "length_x": 67.347882104123002, "length_y": 67.349330312788496 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.937372467914827, 0.0 ], [ -0.001373291015625, 63.937372467914827, 0.0 ], [ -0.001373291015625, 63.936769101455631, 0.0 ], [ -0.00274658203125, 63.936769101455631, 0.0 ], [ -0.00274658203125, 63.937372467914827, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2190, "task_x": 131070, "task_y": 70048, "task_z": 18, "center_y": 63.9177564053483, "area_in_sqm": 4536.1712402105304, "perimeter_in_m": 269.40447397367598, "length_x": 67.394236486802996, "length_y": 67.395685450629898 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.918058296491097, 0.0 ], [ -0.001373291015625, 63.918058296491097, 0.0 ], [ -0.001373291015625, 63.917454514205453, 0.0 ], [ -0.00274658203125, 63.917454514205453, 0.0 ], [ -0.00274658203125, 63.918058296491097, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2191, "task_x": 131070, "task_y": 70080, "task_z": 18, "center_y": 63.898428716078897, "area_in_sqm": 4542.4085186719904, "perimeter_in_m": 269.58962736746997, "length_x": 67.440615032405404, "length_y": 67.442064751248793 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.898730815243923, 0.0 ], [ -0.001373291015625, 63.898730815243923, 0.0 ], [ -0.001373291015625, 63.898126616913956, 0.0 ], [ -0.00274658203125, 63.898126616913956, 0.0 ], [ -0.00274658203125, 63.898730815243923, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2192, "task_x": 131070, "task_y": 70112, "task_z": 18, "center_y": 63.879087709905903, "area_in_sqm": 4548.6533176899002, "perimeter_in_m": 269.774876703242, "length_x": 67.487017736267603, "length_y": 67.488468209980795 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.879390017202006, 0.0 ], [ -0.001373291015625, 63.879390017202006, 0.0 ], [ -0.001373291015625, 63.878785402609886, 0.0 ], [ -0.00274658203125, 63.878785402609886, 0.0 ], [ -0.00274658203125, 63.879390017202006, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2193, "task_x": 131070, "task_y": 70144, "task_z": 18, "center_y": 63.8597333798593, "area_in_sqm": 4554.9056438207599, "perimeter_in_m": 269.96022196536398, "length_x": 67.5334445936804, "length_y": 67.5348958221158 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.860035895395299, 0.0 ], [ -0.001373291015625, 63.860035895395299, 0.0 ], [ -0.001373291015625, 63.859430864323244, 0.0 ], [ -0.00274658203125, 63.859430864323244, 0.0 ], [ -0.00274658203125, 63.860035895395299, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2194, "task_x": 131070, "task_y": 70176, "task_z": 18, "center_y": 63.840365718970197, "area_in_sqm": 4561.1655024290103, "perimeter_in_m": 270.145663133867, "length_x": 67.579895599888701, "length_y": 67.581347582896797 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.840668442855069, 0.0 ], [ -0.001373291015625, 63.840668442855069, 0.0 ], [ -0.001373291015625, 63.840062995085304, 0.0 ], [ -0.00274658203125, 63.840062995085304, 0.0 ], [ -0.00274658203125, 63.840668442855069, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2195, "task_x": 131070, "task_y": 70208, "task_z": 18, "center_y": 63.820984720271198, "area_in_sqm": 4567.4328994751004, "perimeter_in_m": 270.33120018302498, "length_x": 67.626370750090501, "length_y": 67.627823487520502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.821287652613833, 0.0 ], [ -0.001373291015625, 63.821287652613833, 0.0 ], [ -0.001373291015625, 63.820681787928663, 0.0 ], [ -0.00274658203125, 63.820681787928663, 0.0 ], [ -0.00274658203125, 63.821287652613833, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2196, "task_x": 131070, "task_y": 70240, "task_z": 18, "center_y": 63.801590376796298, "area_in_sqm": 4573.7078416347504, "perimeter_in_m": 270.51683310118102, "length_x": 67.672870039437498, "length_y": 67.674323531137105 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.801893517705423, 0.0 ], [ -0.001373291015625, 63.801893517705423, 0.0 ], [ -0.001373291015625, 63.801287235887166, 0.0 ], [ -0.00274658203125, 63.801287235887166, 0.0 ], [ -0.00274658203125, 63.801893517705423, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2197, "task_x": 131070, "task_y": 70272, "task_z": 18, "center_y": 63.782182681580501, "area_in_sqm": 4579.9903333187103, "perimeter_in_m": 270.70256186099999, "length_x": 67.719393463034507, "length_y": 67.720847708850002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.782486031165007, 0.0 ], [ -0.001373291015625, 63.782486031165007, 0.0 ], [ -0.001373291015625, 63.781879331996045, 0.0 ], [ -0.00274658203125, 63.781879331996045, 0.0 ], [ -0.00274658203125, 63.782486031165007, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2198, "task_x": 131070, "task_y": 70304, "task_z": 18, "center_y": 63.762761627660403, "area_in_sqm": 4586.2803823947897, "perimeter_in_m": 270.88838644356002, "length_x": 67.765941015939603, "length_y": 67.767396015715903 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.763065186029067, 0.0 ], [ -0.001373291015625, 63.763065186029067, 0.0 ], [ -0.001373291015625, 63.762458069291803, 0.0 ], [ -0.00274658203125, 63.762458069291803, 0.0 ], [ -0.00274658203125, 63.763065186029067, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2199, "task_x": 131070, "task_y": 70336, "task_z": 18, "center_y": 63.7433272080739, "area_in_sqm": 4592.5779938697797, "perimeter_in_m": 271.07430682771098, "length_x": 67.812512693164095, "length_y": 67.813968446744397 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.743630975335435, 0.0 ], [ -0.001373291015625, 63.743630975335435, 0.0 ], [ -0.001373291015625, 63.74302344081233, 0.0 ], [ -0.00274658203125, 63.74302344081233, 0.0 ], [ -0.00274658203125, 63.743630975335435, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2200, "task_x": 131070, "task_y": 70368, "task_z": 18, "center_y": 63.723879415860097, "area_in_sqm": 4598.8831735849399, "perimeter_in_m": 271.26032299575598, "length_x": 67.859108489672096, "length_y": 67.860564996898503 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.724183392123308, 0.0 ], [ -0.001373291015625, 63.724183392123308, 0.0 ], [ -0.001373291015625, 63.723575439596843, 0.0 ], [ -0.00274658203125, 63.723575439596843, 0.0 ], [ -0.00274658203125, 63.724183392123308, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2201, "task_x": 131070, "task_y": 70400, "task_z": 18, "center_y": 63.704418244059603, "area_in_sqm": 4605.1959275007202, "perimeter_in_m": 271.44643491432998, "length_x": 67.905728400381093, "length_y": 67.907185661093806 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.704722429433218, 0.0 ], [ -0.001373291015625, 63.704722429433218, 0.0 ], [ -0.001373291015625, 63.704114058685946, 0.0 ], [ -0.00274658203125, 63.704114058685946, 0.0 ], [ -0.00274658203125, 63.704722429433218, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2202, "task_x": 131070, "task_y": 70432, "task_z": 18, "center_y": 63.684943685714401, "area_in_sqm": 4611.5162626504898, "perimeter_in_m": 271.632642571904, "length_x": 67.952372420160899, "length_y": 67.953830434198906 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.685248080307133, 0.0 ], [ -0.001373291015625, 63.685248080307133, 0.0 ], [ -0.001373291015625, 63.684639291121627, 0.0 ], [ -0.00274658203125, 63.684639291121627, 0.0 ], [ -0.00274658203125, 63.685248080307133, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2203, "task_x": 131070, "task_y": 70464, "task_z": 18, "center_y": 63.665455733867802, "area_in_sqm": 4617.8441830873498, "perimeter_in_m": 271.81894595686498, "length_x": 67.999040543834298, "length_y": 68.000499311035 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.665760337788385, 0.0 ], [ -0.001373291015625, 63.665760337788385, 0.0 ], [ -0.001373291015625, 63.665151129947283, 0.0 ], [ -0.00274658203125, 63.665151129947283, 0.0 ], [ -0.00274658203125, 63.665760337788385, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2204, "task_x": 131070, "task_y": 70496, "task_z": 18, "center_y": 63.6459543815647, "area_in_sqm": 4624.1796958446503, "perimeter_in_m": 272.00534501787399, "length_x": 68.045732766176599, "length_y": 68.047192286376102 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.646259194921711, 0.0 ], [ -0.001373291015625, 63.646259194921711, 0.0 ], [ -0.001373291015625, 63.645649568207688, 0.0 ], [ -0.00274658203125, 63.645649568207688, 0.0 ], [ -0.00274658203125, 63.646259194921711, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2205, "task_x": 131070, "task_y": 70528, "task_z": 18, "center_y": 63.626439621851198, "area_in_sqm": 4630.5228068828601, "perimeter_in_m": 272.19183976293402, "length_x": 68.092449081915802, "length_y": 68.093909354948494 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.626744644753302, 0.0 ], [ -0.001373291015625, 63.626744644753302, 0.0 ], [ -0.001373291015625, 63.626134598949058, 0.0 ], [ -0.00274658203125, 63.626134598949058, 0.0 ], [ -0.00274658203125, 63.626744644753302, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2206, "task_x": 131070, "task_y": 70560, "task_z": 18, "center_y": 63.606911447774898, "area_in_sqm": 4636.8735224008597, "perimeter_in_m": 272.378430151126, "length_x": 68.139189485732203, "length_y": 68.140650511431005 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.607216680330779, 0.0 ], [ -0.001373291015625, 63.607216680330779, 0.0 ], [ -0.001373291015625, 63.606606215219088, 0.0 ], [ -0.00274658203125, 63.606606215219088, 0.0 ], [ -0.00274658203125, 63.607216680330779, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2207, "task_x": 131070, "task_y": 70592, "task_z": 18, "center_y": 63.587369852385002, "area_in_sqm": 4643.2318475246402, "perimeter_in_m": 272.56511616620901, "length_x": 68.185953972258503, "length_y": 68.187415750455003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.587675294703182, 0.0 ], [ -0.001373291015625, 63.587675294703182, 0.0 ], [ -0.001373291015625, 63.587064410066844, 0.0 ], [ -0.00274658203125, 63.587064410066844, 0.0 ], [ -0.00274658203125, 63.587675294703182, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2208, "task_x": 131070, "task_y": 70624, "task_z": 18, "center_y": 63.567814828731997, "area_in_sqm": 4649.59778881073, "perimeter_in_m": 272.75189778405201, "length_x": 68.232742536079499, "length_y": 68.234205066603593 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.568120480921067, 0.0 ], [ -0.001373291015625, 63.568120480921067, 0.0 ], [ -0.001373291015625, 63.567509176542941, 0.0 ], [ -0.00274658203125, 63.567509176542941, 0.0 ], [ -0.00274658203125, 63.568120480921067, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2209, "task_x": 131070, "task_y": 70656, "task_z": 18, "center_y": 63.548246369867897, "area_in_sqm": 4655.9713518619501, "perimeter_in_m": 272.93877498680303, "length_x": 68.279555171732298, "length_y": 68.281018454412603 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.548552232036428, 0.0 ], [ -0.001373291015625, 63.548552232036428, 0.0 ], [ -0.001373291015625, 63.547940507699408, 0.0 ], [ -0.00274658203125, 63.547940507699408, 0.0 ], [ -0.00274658203125, 63.548552232036428, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2210, "task_x": 131070, "task_y": 70688, "task_z": 18, "center_y": 63.528664468846301, "area_in_sqm": 4662.3525424003601, "perimeter_in_m": 273.12574774732099, "length_x": 68.326391873706001, "length_y": 68.3278559083696 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.528970541102773, 0.0 ], [ -0.001373291015625, 63.528970541102773, 0.0 ], [ -0.001373291015625, 63.528358396589809, 0.0 ], [ -0.00274658203125, 63.528358396589809, 0.0 ], [ -0.00274658203125, 63.528970541102773, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2211, "task_x": 131070, "task_y": 70720, "task_z": 18, "center_y": 63.509069118722202, "area_in_sqm": 4668.74136698246, "perimeter_in_m": 273.31281603976697, "length_x": 68.373252636441507, "length_y": 68.374717422913804 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.50937540117512, 0.0 ], [ -0.001373291015625, 63.50937540117512, 0.0 ], [ -0.001373291015625, 63.508762836269199, 0.0 ], [ -0.00274658203125, 63.508762836269199, 0.0 ], [ -0.00274658203125, 63.50937540117512, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2212, "task_x": 131070, "task_y": 70752, "task_z": 18, "center_y": 63.489460312552097, "area_in_sqm": 4675.1378309726697, "perimeter_in_m": 273.49997984103902, "length_x": 68.420137454331694, "length_y": 68.421602992436704 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.489766805309984, 0.0 ], [ -0.001373291015625, 63.489766805309984, 0.0 ], [ -0.001373291015625, 63.489153819794147, 0.0 ], [ -0.00274658203125, 63.489153819794147, 0.0 ], [ -0.00274658203125, 63.489766805309984, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2213, "task_x": 131070, "task_y": 70784, "task_z": 18, "center_y": 63.469838043394098, "area_in_sqm": 4681.5419406890896, "perimeter_in_m": 273.68723913361902, "length_x": 68.467046321721199, "length_y": 68.468512611281398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.470144746565438, 0.0 ], [ -0.001373291015625, 63.470144746565438, 0.0 ], [ -0.001373291015625, 63.46953134022278, 0.0 ], [ -0.00274658203125, 63.46953134022278, 0.0 ], [ -0.00274658203125, 63.470144746565438, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2214, "task_x": 131070, "task_y": 70816, "task_z": 18, "center_y": 63.450202304307901, "area_in_sqm": 4687.9537013769204, "perimeter_in_m": 273.87459388996399, "length_x": 68.513979232906095, "length_y": 68.515446273742498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.450509218001088, 0.0 ], [ -0.001373291015625, 63.450509218001088, 0.0 ], [ -0.001373291015625, 63.449895390614742, 0.0 ], [ -0.00274658203125, 63.449895390614742, 0.0 ], [ -0.00274658203125, 63.450509218001088, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2215, "task_x": 131070, "task_y": 70848, "task_z": 18, "center_y": 63.430553088354699, "area_in_sqm": 4694.3731193542499, "perimeter_in_m": 274.06204407606799, "length_x": 68.560936182134299, "length_y": 68.562403974066299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.430860212678098, 0.0 ], [ -0.001373291015625, 63.430860212678098, 0.0 ], [ -0.001373291015625, 63.430245964031258, 0.0 ], [ -0.00274658203125, 63.430245964031258, 0.0 ], [ -0.00274658203125, 63.430860212678098, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2216, "task_x": 131070, "task_y": 70880, "task_z": 18, "center_y": 63.410890388597203, "area_in_sqm": 4700.8002003431302, "perimeter_in_m": 274.249589681185, "length_x": 68.607917163604796, "length_y": 68.609385706450297 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.411197723659242, 0.0 ], [ -0.001373291015625, 63.411197723659242, 0.0 ], [ -0.001373291015625, 63.410583053535134, 0.0 ], [ -0.00274658203125, 63.410583053535134, 0.0 ], [ -0.00274658203125, 63.411197723659242, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2217, "task_x": 131070, "task_y": 70912, "task_z": 18, "center_y": 63.391214198099803, "area_in_sqm": 4707.2349506616602, "perimeter_in_m": 274.43723067748903, "length_x": 68.654922171468201, "length_y": 68.656391465043697 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.39152174400882, 0.0 ], [ -0.001373291015625, 63.39152174400882, 0.0 ], [ -0.001373291015625, 63.39090665219075, 0.0 ], [ -0.00274658203125, 63.39090665219075, 0.0 ], [ -0.00274658203125, 63.39152174400882, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2218, "task_x": 131070, "task_y": 70944, "task_z": 18, "center_y": 63.371524509928499, "area_in_sqm": 4713.6773754358301, "perimeter_in_m": 274.62496704482601, "length_x": 68.701951199826198, "length_y": 68.703421243946707 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.371832266792801, 0.0 ], [ -0.001373291015625, 63.371832266792801, 0.0 ], [ -0.001373291015625, 63.37121675306409, 0.0 ], [ -0.00274658203125, 63.37121675306409, 0.0 ], [ -0.00274658203125, 63.371832266792801, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2219, "task_x": 131070, "task_y": 70976, "task_z": 18, "center_y": 63.351821317150801, "area_in_sqm": 4720.1274808645203, "perimeter_in_m": 274.812798741032, "length_x": 68.749004242731701, "length_y": 68.750475037210407 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.352129285078732, 0.0 ], [ -0.001373291015625, 63.352129285078732, 0.0 ], [ -0.001373291015625, 63.35151334922277, 0.0 ], [ -0.00274658203125, 63.35151334922277, 0.0 ], [ -0.00274658203125, 63.352129285078732, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2220, "task_x": 131070, "task_y": 71008, "task_z": 18, "center_y": 63.332104612835899, "area_in_sqm": 4726.5852731466302, "perimeter_in_m": 275.000725750708, "length_x": 68.796081294188596, "length_y": 68.797552838837305 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.332412791935795, 0.0 ], [ -0.001373291015625, 63.332412791935795, 0.0 ], [ -0.001373291015625, 63.331796433736031, 0.0 ], [ -0.00274658203125, 63.331796433736031, 0.0 ], [ -0.00274658203125, 63.332412791935795, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2221, "task_x": 131070, "task_y": 71040, "task_z": 18, "center_y": 63.312374390054799, "area_in_sqm": 4733.0507574081403, "perimeter_in_m": 275.18874806120499, "length_x": 68.843182348151799, "length_y": 68.844654642780895 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.312682780434841, 0.0 ], [ -0.001373291015625, 63.312682780434841, 0.0 ], [ -0.001373291015625, 63.312065999674743, 0.0 ], [ -0.00274658203125, 63.312065999674743, 0.0 ], [ -0.00274658203125, 63.312682780434841, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2222, "task_x": 131070, "task_y": 71072, "task_z": 18, "center_y": 63.292630641879903, "area_in_sqm": 4739.5239402055704, "perimeter_in_m": 275.37686563287701, "length_x": 68.8903073985269, "length_y": 68.891780442945105 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.292939243648334, 0.0 ], [ -0.001373291015625, 63.292939243648334, 0.0 ], [ -0.001373291015625, 63.292322040111458, 0.0 ], [ -0.00274658203125, 63.292322040111458, 0.0 ], [ -0.00274658203125, 63.292939243648334, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2223, "task_x": 131070, "task_y": 71104, "task_z": 18, "center_y": 63.2728733613854, "area_in_sqm": 4746.0048267841303, "perimeter_in_m": 275.56507844437999, "length_x": 68.937456439170205, "length_y": 68.938930233184806 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.273182174650458, 0.0 ], [ -0.001373291015625, 63.273182174650458, 0.0 ], [ -0.001373291015625, 63.2725645481204, 0.0 ], [ -0.00274658203125, 63.2725645481204, 0.0 ], [ -0.00274658203125, 63.273182174650458, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2224, "task_x": 131070, "task_y": 71136, "task_z": 18, "center_y": 63.253102541647301, "area_in_sqm": 4752.4934232235, "perimeter_in_m": 275.75338646577899, "length_x": 68.984629463888993, "length_y": 68.986104007305599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.253411566517059, 0.0 ], [ -0.001373291015625, 63.253411566517059, 0.0 ], [ -0.001373291015625, 63.252793516777459, 0.0 ], [ -0.00274658203125, 63.252793516777459, 0.0 ], [ -0.00274658203125, 63.253411566517059, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2225, "task_x": 131070, "task_y": 71168, "task_z": 18, "center_y": 63.233318175743001, "area_in_sqm": 4758.9897352457001, "perimeter_in_m": 275.94178967836098, "length_x": 69.031826466440506, "length_y": 69.033301759063306 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.233627412325689, 0.0 ], [ -0.001373291015625, 63.233627412325689, 0.0 ], [ -0.001373291015625, 63.233008939160257, 0.0 ], [ -0.00274658203125, 63.233008939160257, 0.0 ], [ -0.00274658203125, 63.233627412325689, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2226, "task_x": 131070, "task_y": 71200, "task_z": 18, "center_y": 63.213520256751799, "area_in_sqm": 4765.4937692880603, "perimeter_in_m": 276.13028804704498, "length_x": 69.079047440533103, "length_y": 69.080523482164594 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.213829705155604, 0.0 ], [ -0.001373291015625, 63.213829705155604, 0.0 ], [ -0.001373291015625, 63.213210808348094, 0.0 ], [ -0.00274658203125, 63.213210808348094, 0.0 ], [ -0.00274658203125, 63.213829705155604, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2227, "task_x": 131070, "task_y": 71232, "task_z": 18, "center_y": 63.1937087777549, "area_in_sqm": 4772.0055308341998, "perimeter_in_m": 276.31888155786203, "length_x": 69.126292379824804, "length_y": 69.127769170266106 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.194018438087831, 0.0 ], [ -0.001373291015625, 63.194018438087831, 0.0 ], [ -0.001373291015625, 63.19339911742204, 0.0 ], [ -0.00274658203125, 63.19339911742204, 0.0 ], [ -0.00274658203125, 63.194018438087831, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2228, "task_x": 131070, "task_y": 71264, "task_z": 18, "center_y": 63.173883731834998, "area_in_sqm": 4778.5250246524802, "perimeter_in_m": 276.50757016491099, "length_x": 69.173561277924307, "length_y": 69.175038816974805 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.17419360420508, 0.0 ], [ -0.001373291015625, 63.17419360420508, 0.0 ], [ -0.001373291015625, 63.173573859464888, 0.0 ], [ -0.00274658203125, 63.173573859464888, 0.0 ], [ -0.00274658203125, 63.17419360420508, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2229, "task_x": 131070, "task_y": 71296, "task_z": 18, "center_y": 63.154045112076503, "area_in_sqm": 4785.0522577762604, "perimeter_in_m": 276.69635386041199, "length_x": 69.220854128390201, "length_y": 69.222332415847802 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.154355196591865, 0.0 ], [ -0.001373291015625, 63.154355196591865, 0.0 ], [ -0.001373291015625, 63.153735027561183, 0.0 ], [ -0.00274658203125, 63.153735027561183, 0.0 ], [ -0.00274658203125, 63.154355196591865, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2230, "task_x": 131070, "task_y": 71328, "task_z": 18, "center_y": 63.134192911565798, "area_in_sqm": 4791.5872360467902, "perimeter_in_m": 276.88523260886899, "length_x": 69.268170924731194, "length_y": 69.269649960392201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.134503208334451, 0.0 ], [ -0.001373291015625, 63.134503208334451, 0.0 ], [ -0.001373291015625, 63.133882614797258, 0.0 ], [ -0.00274658203125, 63.133882614797258, 0.0 ], [ -0.00274658203125, 63.134503208334451, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2231, "task_x": 131070, "task_y": 71360, "task_z": 18, "center_y": 63.114327123391099, "area_in_sqm": 4798.1299644708597, "perimeter_in_m": 277.07420638035597, "length_x": 69.315511660405903, "length_y": 69.316991444065195 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.114637632520896, 0.0 ], [ -0.001373291015625, 63.114637632520896, 0.0 ], [ -0.001373291015625, 63.114016614261217, 0.0 ], [ -0.00274658203125, 63.114016614261217, 0.0 ], [ -0.00274658203125, 63.114637632520896, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2232, "task_x": 131070, "task_y": 71392, "task_z": 18, "center_y": 63.094447740642003, "area_in_sqm": 4804.68044912815, "perimeter_in_m": 277.26327514343001, "length_x": 69.362876328822693, "length_y": 69.364356860273404 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.09475846224106, 0.0 ], [ -0.001373291015625, 63.09475846224106, 0.0 ], [ -0.001373291015625, 63.094137019042989, 0.0 ], [ -0.00274658203125, 63.094137019042989, 0.0 ], [ -0.00274658203125, 63.09475846224106, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2233, "task_x": 131070, "task_y": 71424, "task_z": 18, "center_y": 63.0745547564105, "area_in_sqm": 4811.2386962175397, "perimeter_in_m": 277.452438893433, "length_x": 69.410264923339795, "length_y": 69.411746202373607 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.07486569058662, 0.0 ], [ -0.001373291015625, 63.07486569058662, 0.0 ], [ -0.001373291015625, 63.074243822234294, 0.0 ], [ -0.00274658203125, 63.074243822234294, 0.0 ], [ -0.00274658203125, 63.07486569058662, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2234, "task_x": 131070, "task_y": 71456, "task_z": 18, "center_y": 63.054648163789899, "area_in_sqm": 4817.8047112226504, "perimeter_in_m": 277.64169757961599, "length_x": 69.457677437264806, "length_y": 69.459159463671796 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.054959310651064, 0.0 ], [ -0.001373291015625, 63.054959310651064, 0.0 ], [ -0.001373291015625, 63.054337016928685, 0.0 ], [ -0.00274658203125, 63.054337016928685, 0.0 ], [ -0.00274658203125, 63.054959310651064, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2235, "task_x": 131070, "task_y": 71488, "task_z": 18, "center_y": 63.034727955875702, "area_in_sqm": 4824.3784995079004, "perimeter_in_m": 277.83105117801199, "length_x": 69.5051138638553, "length_y": 69.506596637423797 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.035039315529758, 0.0 ], [ -0.001373291015625, 63.035039315529758, 0.0 ], [ -0.001373291015625, 63.034416596221575, 0.0 ], [ -0.00274658203125, 63.034416596221575, 0.0 ], [ -0.00274658203125, 63.035039315529758, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2236, "task_x": 131070, "task_y": 71520, "task_z": 18, "center_y": 63.0147941257651, "area_in_sqm": 4830.9600666761398, "perimeter_in_m": 278.02049966172802, "length_x": 69.552574196317707, "length_y": 69.554057716834706 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 63.015105698319871, 0.0 ], [ -0.001373291015625, 63.015105698319871, 0.0 ], [ -0.001373291015625, 63.014482553210229, 0.0 ], [ -0.00274658203125, 63.014482553210229, 0.0 ], [ -0.00274658203125, 63.015105698319871, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2237, "task_x": 131070, "task_y": 71552, "task_z": 18, "center_y": 62.994846666557201, "area_in_sqm": 4837.5494198799097, "perimeter_in_m": 278.21004300447299, "length_x": 69.600058427808094, "length_y": 69.601542695058797 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.995158452120521, 0.0 ], [ -0.001373291015625, 62.995158452120521, 0.0 ], [ -0.001373291015625, 62.994534880993768, 0.0 ], [ -0.00274658203125, 62.994534880993768, 0.0 ], [ -0.00274658203125, 62.995158452120521, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2238, "task_x": 131070, "task_y": 71584, "task_z": 18, "center_y": 62.9748855713529, "area_in_sqm": 4844.1465635299701, "perimeter_in_m": 278.39968117702898, "length_x": 69.647566551431595, "length_y": 69.649051565199798 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.975197570032634, 0.0 ], [ -0.001373291015625, 62.975197570032634, 0.0 ], [ -0.001373291015625, 62.974573572673236, 0.0 ], [ -0.00274658203125, 62.974573572673236, 0.0 ], [ -0.00274658203125, 62.975197570032634, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2239, "task_x": 131070, "task_y": 71616, "task_z": 18, "center_y": 62.954910833255298, "area_in_sqm": 4850.7515039443997, "perimeter_in_m": 278.58941415785, "length_x": 69.695098560242499, "length_y": 69.696584320310507 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.955223045159109, 0.0 ], [ -0.001373291015625, 62.955223045159109, 0.0 ], [ -0.001373291015625, 62.954598621351529, 0.0 ], [ -0.00274658203125, 62.954598621351529, 0.0 ], [ -0.00274658203125, 62.955223045159109, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2240, "task_x": 131070, "task_y": 71648, "task_z": 18, "center_y": 62.934922445369097, "area_in_sqm": 4857.3642462491998, "perimeter_in_m": 278.77924189982002, "length_x": 69.742654447244306, "length_y": 69.744140953392304 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.935234870604688, 0.0 ], [ -0.001373291015625, 62.935234870604688, 0.0 ], [ -0.001373291015625, 62.934610020133512, 0.0 ], [ -0.00274658203125, 62.934610020133512, 0.0 ], [ -0.00274658203125, 62.935234870604688, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2241, "task_x": 131070, "task_y": 71680, "task_z": 18, "center_y": 62.914920400801002, "area_in_sqm": 4863.9847972393, "perimeter_in_m": 278.96916439038802, "length_x": 69.790234205388998, "length_y": 69.791721457396093 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.915233039476121, 0.0 ], [ -0.001373291015625, 62.915233039476121, 0.0 ], [ -0.001373291015625, 62.914607762125939, 0.0 ], [ -0.00274658203125, 62.914607762125939, 0.0 ], [ -0.00274658203125, 62.915233039476121, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2242, "task_x": 131070, "task_y": 71712, "task_z": 18, "center_y": 62.8949046926598, "area_in_sqm": 4870.6131616830799, "perimeter_in_m": 279.15918159285002, "length_x": 69.837837827577701, "length_y": 69.839325825221295 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.895217544882044, 0.0 ], [ -0.001373291015625, 62.895217544882044, 0.0 ], [ -0.001373291015625, 62.894591840437549, 0.0 ], [ -0.00274658203125, 62.894591840437549, 0.0 ], [ -0.00274658203125, 62.895217544882044, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2243, "task_x": 131070, "task_y": 71744, "task_z": 18, "center_y": 62.874875314055998, "area_in_sqm": 4877.2493451833698, "perimeter_in_m": 279.34929347393103, "length_x": 69.885465306659995, "length_y": 69.886954049715698 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.875188379933071, 0.0 ], [ -0.001373291015625, 62.875188379933071, 0.0 ], [ -0.001373291015625, 62.874562248179004, 0.0 ], [ -0.00274658203125, 62.874562248179004, 0.0 ], [ -0.00274658203125, 62.875188379933071, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2244, "task_x": 131070, "task_y": 71776, "task_z": 18, "center_y": 62.854832258102398, "area_in_sqm": 4883.8933541774804, "perimeter_in_m": 279.53950001369702, "length_x": 69.933116635434203, "length_y": 69.934606123676204 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.855145537741805, 0.0 ], [ -0.001373291015625, 62.855145537741805, 0.0 ], [ -0.001373291015625, 62.854518978462963, 0.0 ], [ -0.00274658203125, 62.854518978462963, 0.0 ], [ -0.00274658203125, 62.855145537741805, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2245, "task_x": 131070, "task_y": 71808, "task_z": 18, "center_y": 62.8347755179134, "area_in_sqm": 4890.5451941490201, "perimeter_in_m": 279.72980117371299, "length_x": 69.980791806647204, "length_y": 69.982282039847902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.835089011422824, 0.0 ], [ -0.001373291015625, 62.835089011422824, 0.0 ], [ -0.001373291015625, 62.834462024404054, 0.0 ], [ -0.00274658203125, 62.834462024404054, 0.0 ], [ -0.00274658203125, 62.835089011422824, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2246, "task_x": 131070, "task_y": 71840, "task_z": 18, "center_y": 62.814705086605798, "area_in_sqm": 4897.20487082005, "perimeter_in_m": 279.92019692322998, "length_x": 70.028490812993994, "length_y": 70.029981790924396 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.815018794092708, 0.0 ], [ -0.001373291015625, 62.815018794092708, 0.0 ], [ -0.001373291015625, 62.814391379118945, 0.0 ], [ -0.00274658203125, 62.814391379118945, 0.0 ], [ -0.00274658203125, 62.815018794092708, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2247, "task_x": 131070, "task_y": 71872, "task_z": 18, "center_y": 62.7946209572982, "area_in_sqm": 4903.8723896741903, "perimeter_in_m": 280.11068723563102, "length_x": 70.076213647117996, "length_y": 70.077705369547402 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.794934878870066, 0.0 ], [ -0.001373291015625, 62.794934878870066, 0.0 ], [ -0.001373291015625, 62.794307035726305, 0.0 ], [ -0.00274658203125, 62.794307035726305, 0.0 ], [ -0.00274658203125, 62.794934878870066, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2248, "task_x": 131070, "task_y": 71904, "task_z": 18, "center_y": 62.774523123111202, "area_in_sqm": 4910.5477561950702, "perimeter_in_m": 280.30127208845101, "length_x": 70.123960301611007, "length_y": 70.125452768306999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.774837258875529, 0.0 ], [ -0.001373291015625, 62.774837258875529, 0.0 ], [ -0.001373291015625, 62.77420898734681, 0.0 ], [ -0.00274658203125, 62.77420898734681, 0.0 ], [ -0.00274658203125, 62.774837258875529, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2249, "task_x": 131070, "task_y": 71936, "task_z": 18, "center_y": 62.754411577167502, "area_in_sqm": 4917.23097670078, "perimeter_in_m": 280.49195143009803, "length_x": 70.171730769012598, "length_y": 70.173223979741195 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.754725927231782, 0.0 ], [ -0.001373291015625, 62.754725927231782, 0.0 ], [ -0.001373291015625, 62.75409722710323, 0.0 ], [ -0.00274658203125, 62.75409722710323, 0.0 ], [ -0.00274658203125, 62.754725927231782, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2250, "task_x": 131070, "task_y": 71968, "task_z": 18, "center_y": 62.734286312591998, "area_in_sqm": 4923.9220561981201, "perimeter_in_m": 280.68272524355001, "length_x": 70.2195250418103, "length_y": 70.221018996335999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.734600877063571, 0.0 ], [ -0.001373291015625, 62.734600877063571, 0.0 ], [ -0.001373291015625, 62.733971748120382, 0.0 ], [ -0.00274658203125, 62.733971748120382, 0.0 ], [ -0.00274658203125, 62.734600877063571, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2251, "task_x": 131070, "task_y": 72000, "task_z": 18, "center_y": 62.714147322511401, "area_in_sqm": 4930.62100100517, "perimeter_in_m": 280.87359349682998, "length_x": 70.267343112439903, "length_y": 70.268837810525298 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.71446210149773, 0.0 ], [ -0.001373291015625, 62.71446210149773, 0.0 ], [ -0.001373291015625, 62.713832543525136, 0.0 ], [ -0.00274658203125, 62.713832543525136, 0.0 ], [ -0.00274658203125, 62.71446210149773, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2252, "task_x": 131070, "task_y": 72032, "task_z": 18, "center_y": 62.693994600054801, "area_in_sqm": 4937.32781565189, "perimeter_in_m": 281.06455615714299, "length_x": 70.315184973284502, "length_y": 70.316680414690893 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.694309593663178, 0.0 ], [ -0.001373291015625, 62.694309593663178, 0.0 ], [ -0.001373291015625, 62.693679606446494, 0.0 ], [ -0.00274658203125, 62.693679606446494, 0.0 ], [ -0.00274658203125, 62.694309593663178, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2253, "task_x": 131070, "task_y": 72064, "task_z": 18, "center_y": 62.673828138353201, "area_in_sqm": 4944.0425070524198, "perimeter_in_m": 281.25561318946501, "length_x": 70.363050616675096, "length_y": 70.364546801161893 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.67414334669094, 0.0 ], [ -0.001373291015625, 62.67414334669094, 0.0 ], [ -0.001373291015625, 62.673512930015534, 0.0 ], [ -0.00274658203125, 62.673512930015534, 0.0 ], [ -0.00274658203125, 62.67414334669094, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2254, "task_x": 131070, "task_y": 72096, "task_z": 18, "center_y": 62.653647930539798, "area_in_sqm": 4950.7650798559198, "perimeter_in_m": 281.44676455583402, "length_x": 70.410940034890302, "length_y": 70.412436962215295 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.653963353714147, 0.0 ], [ -0.001373291015625, 62.653963353714147, 0.0 ], [ -0.001373291015625, 62.653332507365491, 0.0 ], [ -0.00274658203125, 62.653332507365491, 0.0 ], [ -0.00274658203125, 62.653963353714147, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2255, "task_x": 131070, "task_y": 72128, "task_z": 18, "center_y": 62.633453969749901, "area_in_sqm": 4957.4955406189001, "perimeter_in_m": 281.638010239415, "length_x": 70.458853220155902, "length_y": 70.460350890075404 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.633769607868118, 0.0 ], [ -0.001373291015625, 62.633769607868118, 0.0 ], [ -0.001373291015625, 62.633138331631713, 0.0 ], [ -0.00274658203125, 62.633138331631713, 0.0 ], [ -0.00274658203125, 62.633769607868118, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2256, "task_x": 131070, "task_y": 72160, "task_z": 18, "center_y": 62.613246249120998, "area_in_sqm": 4964.2338942289398, "perimeter_in_m": 281.82935020274903, "length_x": 70.506790164645295, "length_y": 70.508288576913898 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.613562102290281, 0.0 ], [ -0.001373291015625, 62.613562102290281, 0.0 ], [ -0.001373291015625, 62.612930395951686, 0.0 ], [ -0.00274658203125, 62.612930395951686, 0.0 ], [ -0.00274658203125, 62.613562102290281, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2257, "task_x": 131070, "task_y": 72192, "task_z": 18, "center_y": 62.593024761792698, "area_in_sqm": 4970.9801466464996, "perimeter_in_m": 282.02078440967199, "length_x": 70.554750860479004, "length_y": 70.556250014849596 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.593340830120241, 0.0 ], [ -0.001373291015625, 62.593340830120241, 0.0 ], [ -0.001373291015625, 62.59270869346512, 0.0 ], [ -0.00274658203125, 62.59270869346512, 0.0 ], [ -0.00274658203125, 62.593340830120241, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2258, "task_x": 131070, "task_y": 72224, "task_z": 18, "center_y": 62.572789500906801, "area_in_sqm": 4977.7343032360104, "perimeter_in_m": 282.21231282676302, "length_x": 70.602735299724799, "length_y": 70.604235195948505 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.573105784499774, 0.0 ], [ -0.001373291015625, 62.573105784499774, 0.0 ], [ -0.001373291015625, 62.572473217313856, 0.0 ], [ -0.00274658203125, 62.572473217313856, 0.0 ], [ -0.00274658203125, 62.573105784499774, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2259, "task_x": 131070, "task_y": 72256, "task_z": 18, "center_y": 62.5525404596074, "area_in_sqm": 4984.4963698387101, "perimeter_in_m": 282.40393542402398, "length_x": 70.650743474397302, "length_y": 70.652244112223897 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.552856958572903, 0.0 ], [ -0.001373291015625, 62.552856958572903, 0.0 ], [ -0.001373291015625, 62.552223960641953, 0.0 ], [ -0.00274658203125, 62.552223960641953, 0.0 ], [ -0.00274658203125, 62.552856958572903, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2260, "task_x": 131070, "task_y": 72288, "task_z": 18, "center_y": 62.532277631040699, "area_in_sqm": 4991.2663521766699, "perimeter_in_m": 282.59565216639101, "length_x": 70.698775376458201, "length_y": 70.700276755635599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.532594345485805, 0.0 ], [ -0.001373291015625, 62.532594345485805, 0.0 ], [ -0.001373291015625, 62.531960916595679, 0.0 ], [ -0.00274658203125, 62.531960916595679, 0.0 ], [ -0.00274658203125, 62.532594345485805, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2261, "task_x": 131070, "task_y": 72320, "task_z": 18, "center_y": 62.512001008355199, "area_in_sqm": 4998.0442551374399, "perimeter_in_m": 282.78746301871001, "length_x": 70.746830997816005, "length_y": 70.7483331180904 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.512317938386914, 0.0 ], [ -0.001373291015625, 62.512317938386914, 0.0 ], [ -0.001373291015625, 62.511684078323555, 0.0 ], [ -0.00274658203125, 62.511684078323555, 0.0 ], [ -0.00274658203125, 62.512317938386914, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2262, "task_x": 131070, "task_y": 72352, "task_z": 18, "center_y": 62.4917105847016, "area_in_sqm": 5004.8300845622998, "perimeter_in_m": 282.97936795136502, "length_x": 70.794910330325905, "length_y": 70.796413191441999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.492027730426912, 0.0 ], [ -0.001373291015625, 62.492027730426912, 0.0 ], [ -0.001373291015625, 62.491393438976296, 0.0 ], [ -0.00274658203125, 62.491393438976296, 0.0 ], [ -0.00274658203125, 62.492027730426912, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2263, "task_x": 131070, "task_y": 72384, "task_z": 18, "center_y": 62.471406353232801, "area_in_sqm": 5011.6238467693302, "perimeter_in_m": 283.17136692755901, "length_x": 70.843013365789702, "length_y": 70.844516967490506 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.471723714758724, 0.0 ], [ -0.001373291015625, 62.471723714758724, 0.0 ], [ -0.001373291015625, 62.471088991706921, 0.0 ], [ -0.00274658203125, 62.471088991706921, 0.0 ], [ -0.00274658203125, 62.471723714758724, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2264, "task_x": 131070, "task_y": 72416, "task_z": 18, "center_y": 62.451088307104101, "area_in_sqm": 5018.4255467653302, "perimeter_in_m": 283.36345991322401, "length_x": 70.891140095955905, "length_y": 70.892644437982497 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.45140588453755, 0.0 ], [ -0.001373291015625, 62.45140588453755, 0.0 ], [ -0.001373291015625, 62.450770729670708, 0.0 ], [ -0.00274658203125, 62.450770729670708, 0.0 ], [ -0.00274658203125, 62.45140588453755, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2265, "task_x": 131070, "task_y": 72448, "task_z": 18, "center_y": 62.4307564394731, "area_in_sqm": 5025.2351900339099, "perimeter_in_m": 283.55564687560002, "length_x": 70.939290512518994, "length_y": 70.940795594611103 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.431074232920906, 0.0 ], [ -0.001373291015625, 62.431074232920906, 0.0 ], [ -0.001373291015625, 62.430438646025223, 0.0 ], [ -0.00274658203125, 62.430438646025223, 0.0 ], [ -0.00274658203125, 62.431074232920906, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2266, "task_x": 131070, "task_y": 72480, "task_z": 18, "center_y": 62.410410743499497, "area_in_sqm": 5032.0527820587204, "perimeter_in_m": 283.74792777969202, "length_x": 70.987464607120202, "length_y": 70.988970429015794 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.410728753068582, 0.0 ], [ -0.001373291015625, 62.410728753068582, 0.0 ], [ -0.001373291015625, 62.410092733930341, 0.0 ], [ -0.00274658203125, 62.410092733930341, 0.0 ], [ -0.00274658203125, 62.410728753068582, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2267, "task_x": 131070, "task_y": 72512, "task_z": 18, "center_y": 62.390051212345497, "area_in_sqm": 5038.8783285617801, "perimeter_in_m": 283.94030259181199, "length_x": 71.035662371346803, "length_y": 71.037168932781995 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.390369438142699, 0.0 ], [ -0.001373291015625, 62.390369438142699, 0.0 ], [ -0.001373291015625, 62.389732986548253, 0.0 ], [ -0.00274658203125, 62.389732986548253, 0.0 ], [ -0.00274658203125, 62.390369438142699, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2268, "task_x": 131070, "task_y": 72544, "task_z": 18, "center_y": 62.369677839175601, "area_in_sqm": 5045.7118350267401, "perimeter_in_m": 284.13277126967603, "length_x": 71.083883796732096, "length_y": 71.085391097441402 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.369996281307721, 0.0 ], [ -0.001373291015625, 62.369996281307721, 0.0 ], [ -0.001373291015625, 62.369359397043482, 0.0 ], [ -0.00274658203125, 62.369359397043482, 0.0 ], [ -0.00274658203125, 62.369996281307721, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2269, "task_x": 131070, "task_y": 72576, "task_z": 18, "center_y": 62.349290617156697, "area_in_sqm": 5052.5533068180102, "perimeter_in_m": 284.32533378645002, "length_x": 71.132128874755296, "length_y": 71.133636914471694 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.349609275730423, 0.0 ], [ -0.001373291015625, 62.349609275730423, 0.0 ], [ -0.001373291015625, 62.348971958582929, 0.0 ], [ -0.00274658203125, 62.348971958582929, 0.0 ], [ -0.00274658203125, 62.349609275730423, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2270, "task_x": 131070, "task_y": 72608, "task_z": 18, "center_y": 62.328889539457897, "area_in_sqm": 5059.4027498960504, "perimeter_in_m": 284.51799010388402, "length_x": 71.1803975968418, "length_y": 71.181906375296407 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.329208414580009, 0.0 ], [ -0.001373291015625, 62.329208414580009, 0.0 ], [ -0.001373291015625, 62.328570664335814, 0.0 ], [ -0.00274658203125, 62.328570664335814, 0.0 ], [ -0.00274658203125, 62.329208414580009, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2271, "task_x": 131070, "task_y": 72640, "task_z": 18, "center_y": 62.3084745992509, "area_in_sqm": 5066.2601697444898, "perimeter_in_m": 284.71074019139201, "length_x": 71.228689954362494, "length_y": 71.230199471284806 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.308793691028036, 0.0 ], [ -0.001373291015625, 62.308793691028036, 0.0 ], [ -0.001373291015625, 62.308155507473771, 0.0 ], [ -0.00274658203125, 62.308155507473771, 0.0 ], [ -0.00274658203125, 62.308793691028036, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2272, "task_x": 131070, "task_y": 72672, "task_z": 18, "center_y": 62.288045789709699, "area_in_sqm": 5073.1255705356598, "perimeter_in_m": 284.90358399776801, "length_x": 71.277005938634005, "length_y": 71.278516193751798 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.288365098248434, 0.0 ], [ -0.001373291015625, 62.288365098248434, 0.0 ], [ -0.001373291015625, 62.287726481170857, 0.0 ], [ -0.00274658203125, 62.287726481170857, 0.0 ], [ -0.00274658203125, 62.288365098248434, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2273, "task_x": 131070, "task_y": 72704, "task_z": 18, "center_y": 62.267603104010497, "area_in_sqm": 5079.9989597797403, "perimeter_in_m": 285.09652150776702, "length_x": 71.325345540918704, "length_y": 71.326856533957994 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.267922629417583, 0.0 ], [ -0.001373291015625, 62.267922629417583, 0.0 ], [ -0.001373291015625, 62.267283578603468, 0.0 ], [ -0.00274658203125, 62.267283578603468, 0.0 ], [ -0.00274658203125, 62.267922629417583, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2274, "task_x": 131070, "task_y": 72736, "task_z": 18, "center_y": 62.247146535332398, "area_in_sqm": 5086.8803418874704, "perimeter_in_m": 285.289552666433, "length_x": 71.373708752424093, "length_y": 71.375220483109402 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.247466277714267, 0.0 ], [ -0.001373291015625, 62.247466277714267, 0.0 ], [ -0.001373291015625, 62.246826792950515, 0.0 ], [ -0.00274658203125, 62.246826792950515, 0.0 ], [ -0.00274658203125, 62.247466277714267, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2275, "task_x": 131070, "task_y": 72768, "task_z": 18, "center_y": 62.226676076856499, "area_in_sqm": 5093.7697217464402, "perimeter_in_m": 285.48267744980899, "length_x": 71.422095564303504, "length_y": 71.423608032357194 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.226996036319726, 0.0 ], [ -0.001373291015625, 62.226996036319726, 0.0 ], [ -0.001373291015625, 62.22635611739328, 0.0 ], [ -0.00274658203125, 62.22635611739328, 0.0 ], [ -0.00274658203125, 62.226996036319726, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2276, "task_x": 131070, "task_y": 72800, "task_z": 18, "center_y": 62.206191721766601, "area_in_sqm": 5100.6671062707901, "perimeter_in_m": 285.67589581615903, "length_x": 71.470505967655001, "length_y": 71.472019172798198 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.206511898417659, 0.0 ], [ -0.001373291015625, 62.206511898417659, 0.0 ], [ -0.001373291015625, 62.205871545115542, 0.0 ], [ -0.00274658203125, 62.205871545115542, 0.0 ], [ -0.00274658203125, 62.206511898417659, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2277, "task_x": 131070, "task_y": 72832, "task_z": 18, "center_y": 62.185693463248903, "area_in_sqm": 5107.5724999904596, "perimeter_in_m": 285.86920772787602, "length_x": 71.518939953521993, "length_y": 71.520453895473906 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.186013857194233, 0.0 ], [ -0.001373291015625, 62.186013857194233, 0.0 ], [ -0.001373291015625, 62.185373069303552, 0.0 ], [ -0.00274658203125, 62.185373069303552, 0.0 ], [ -0.00274658203125, 62.186013857194233, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2278, "task_x": 131070, "task_y": 72864, "task_z": 18, "center_y": 62.165181294492101, "area_in_sqm": 5114.4859081506702, "perimeter_in_m": 286.06261314228198, "length_x": 71.567397512893194, "length_y": 71.568912191371197 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.165501905838099, 0.0 ], [ -0.001373291015625, 62.165501905838099, 0.0 ], [ -0.001373291015625, 62.16486068314606, 0.0 ], [ -0.00274658203125, 62.16486068314606, 0.0 ], [ -0.00274658203125, 62.165501905838099, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2279, "task_x": 131070, "task_y": 72896, "task_z": 18, "center_y": 62.144655208687396, "area_in_sqm": 5121.4073376655597, "perimeter_in_m": 286.256112044899, "length_x": 71.615878636701794, "length_y": 71.617394051421897 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.144976037540459, 0.0 ], [ -0.001373291015625, 62.144976037540459, 0.0 ], [ -0.001373291015625, 62.144334379834291, 0.0 ], [ -0.00274658203125, 62.144334379834291, 0.0 ], [ -0.00274658203125, 62.144976037540459, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2280, "task_x": 131070, "task_y": 72928, "task_z": 18, "center_y": 62.124115199028502, "area_in_sqm": 5128.3367919921902, "perimeter_in_m": 286.44970436877901, "length_x": 71.6643833158261, "length_y": 71.665899466502196 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.124436245494962, 0.0 ], [ -0.001373291015625, 62.124436245494962, 0.0 ], [ -0.001373291015625, 62.123794152562041, 0.0 ], [ -0.00274658203125, 62.123794152562041, 0.0 ], [ -0.00274658203125, 62.124436245494962, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2281, "task_x": 131070, "task_y": 72960, "task_z": 18, "center_y": 62.1035612587117, "area_in_sqm": 5135.2742770910299, "perimeter_in_m": 286.643390094263, "length_x": 71.712911541089198, "length_y": 71.714428427433603 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.103882522897855, 0.0 ], [ -0.001373291015625, 62.103882522897855, 0.0 ], [ -0.001373291015625, 62.103239994525588, 0.0 ], [ -0.00274658203125, 62.103239994525588, 0.0 ], [ -0.00274658203125, 62.103882522897855, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2282, "task_x": 131070, "task_y": 72992, "task_z": 18, "center_y": 62.082993380935903, "area_in_sqm": 5142.2197997570001, "perimeter_in_m": 286.83716917540897, "length_x": 71.761463303258495, "length_y": 71.762980924981903 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.08331486294793, 0.0 ], [ -0.001373291015625, 62.08331486294793, 0.0 ], [ -0.001373291015625, 62.08267189892382, 0.0 ], [ -0.00274658203125, 62.08267189892382, 0.0 ], [ -0.00274658203125, 62.08331486294793, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2283, "task_x": 131070, "task_y": 73024, "task_z": 18, "center_y": 62.062411558902397, "area_in_sqm": 5149.1733634471902, "perimeter_in_m": 287.031041578192, "length_x": 71.810038593045903, "length_y": 71.811556949857106 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.062733258846521, 0.0 ], [ -0.001373291015625, 62.062733258846521, 0.0 ], [ -0.001373291015625, 62.062089858958174, 0.0 ], [ -0.00274658203125, 62.062089858958174, 0.0 ], [ -0.00274658203125, 62.062733258846521, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2284, "task_x": 131070, "task_y": 73056, "task_z": 18, "center_y": 62.041815785815103, "area_in_sqm": 5156.1349754333496, "perimeter_in_m": 287.22500725855701, "length_x": 71.858637401108297, "length_y": 71.860156492714495 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.042137703797579, 0.0 ], [ -0.001373291015625, 62.042137703797579, 0.0 ], [ -0.001373291015625, 62.041493867832635, 0.0 ], [ -0.00274658203125, 62.041493867832635, 0.0 ], [ -0.00274658203125, 62.042137703797579, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2285, "task_x": 131070, "task_y": 73088, "task_z": 18, "center_y": 62.0212060548808, "area_in_sqm": 5163.1046397685996, "perimeter_in_m": 287.41906618650199, "length_x": 71.907259718046205, "length_y": 71.908779544152694 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.02152819100764, 0.0 ], [ -0.001373291015625, 62.02152819100764, 0.0 ], [ -0.001373291015625, 62.020883918753853, 0.0 ], [ -0.00274658203125, 62.020883918753853, 0.0 ], [ -0.00274658203125, 62.02152819100764, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2286, "task_x": 131070, "task_y": 73120, "task_z": 18, "center_y": 62.000582359308503, "area_in_sqm": 5170.0823620557803, "perimeter_in_m": 287.61321831493098, "length_x": 71.955905534404593, "length_y": 71.957426094715004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 62.000904713685856, 0.0 ], [ -0.001373291015625, 62.000904713685856, 0.0 ], [ -0.001373291015625, 62.00026000493105, 0.0 ], [ -0.00274658203125, 62.00026000493105, 0.0 ], [ -0.00274658203125, 62.000904713685856, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2287, "task_x": 131070, "task_y": 73152, "task_z": 18, "center_y": 61.979944692310099, "area_in_sqm": 5177.0681473016703, "perimeter_in_m": 287.807463606532, "length_x": 72.004574840672603, "length_y": 72.006096134888693 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.98026726504402, 0.0 ], [ -0.001373291015625, 61.98026726504402, 0.0 ], [ -0.001373291015625, 61.979622119576113, 0.0 ], [ -0.00274658203125, 61.979622119576113, 0.0 ], [ -0.00274658203125, 61.98026726504402, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2288, "task_x": 131070, "task_y": 73184, "task_z": 18, "center_y": 61.959293047100097, "area_in_sqm": 5184.06200242043, "perimeter_in_m": 288.001802022476, "length_x": 72.053267627283105, "length_y": 72.054789655105196 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.959615838296571, 0.0 ], [ -0.001373291015625, 61.959615838296571, 0.0 ], [ -0.001373291015625, 61.958970255903559, 0.0 ], [ -0.00274658203125, 61.958970255903559, 0.0 ], [ -0.00274658203125, 61.959615838296571, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2289, "task_x": 131070, "task_y": 73216, "task_z": 18, "center_y": 61.938627416895599, "area_in_sqm": 5191.0639311075201, "perimeter_in_m": 288.19623352806201, "length_x": 72.101983884613006, "length_y": 72.103506645739401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.938950426660611, 0.0 ], [ -0.001373291015625, 61.938950426660611, 0.0 ], [ -0.001373291015625, 61.938304407130566, 0.0 ], [ -0.00274658203125, 61.938304407130566, 0.0 ], [ -0.00274658203125, 61.938950426660611, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2290, "task_x": 131070, "task_y": 73248, "task_z": 18, "center_y": 61.9179477949165, "area_in_sqm": 5198.0739396810504, "perimeter_in_m": 288.390758079271, "length_x": 72.150723602982893, "length_y": 72.152247097110305 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.918271023355928, 0.0 ], [ -0.001373291015625, 61.918271023355928, 0.0 ], [ -0.001373291015625, 61.917624566477016, 0.0 ], [ -0.00274658203125, 61.917624566477016, 0.0 ], [ -0.00274658203125, 61.918271023355928, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2291, "task_x": 131070, "task_y": 73280, "task_z": 18, "center_y": 61.897254174385203, "area_in_sqm": 5205.0920335054398, "perimeter_in_m": 288.58537563268999, "length_x": 72.199486772657195, "length_y": 72.201010999480303 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.897577621605009, 0.0 ], [ -0.001373291015625, 61.897577621605009, 0.0 ], [ -0.001373291015625, 61.896930727165483, 0.0 ], [ -0.00274658203125, 61.896930727165483, 0.0 ], [ -0.00274658203125, 61.897577621605009, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2292, "task_x": 131070, "task_y": 73312, "task_z": 18, "center_y": 61.876546548527102, "area_in_sqm": 5212.1182172298404, "perimeter_in_m": 288.78008614903098, "length_x": 72.248273383843696, "length_y": 72.249798343055602 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.876870214633044, 0.0 ], [ -0.001373291015625, 61.876870214633044, 0.0 ], [ -0.001373291015625, 61.876222882421217, 0.0 ], [ -0.00274658203125, 61.876222882421217, 0.0 ], [ -0.00274658203125, 61.876870214633044, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2293, "task_x": 131070, "task_y": 73344, "task_z": 18, "center_y": 61.855824910570099, "area_in_sqm": 5219.1524962186804, "perimeter_in_m": 288.97488959597598, "length_x": 72.297083426693504, "length_y": 72.298609117985606 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.85614879566797, 0.0 ], [ -0.001373291015625, 61.85614879566797, 0.0 ], [ -0.001373291015625, 61.855501025472265, 0.0 ], [ -0.00274658203125, 61.855501025472265, 0.0 ], [ -0.00274658203125, 61.85614879566797, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2294, "task_x": 131070, "task_y": 73376, "task_z": 18, "center_y": 61.835089253744897, "area_in_sqm": 5226.1948764324197, "perimeter_in_m": 289.16978592409998, "length_x": 72.345916891301499, "length_y": 72.347443314363304 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.835413357940439, 0.0 ], [ -0.001373291015625, 61.835413357940439, 0.0 ], [ -0.001373291015625, 61.834765149549369, 0.0 ], [ -0.00274658203125, 61.834765149549369, 0.0 ], [ -0.00274658203125, 61.835413357940439, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2295, "task_x": 131070, "task_y": 73408, "task_z": 18, "center_y": 61.814339571284997, "area_in_sqm": 5233.2453631162598, "perimeter_in_m": 289.36477509236198, "length_x": 72.394773767705203, "length_y": 72.396300922224498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.814663894683903, 0.0 ], [ -0.001373291015625, 61.814663894683903, 0.0 ], [ -0.001373291015625, 61.814015247886047, 0.0 ], [ -0.00274658203125, 61.814015247886047, 0.0 ], [ -0.00274658203125, 61.814663894683903, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2296, "task_x": 131070, "task_y": 73440, "task_z": 18, "center_y": 61.7935758564266, "area_in_sqm": 5240.3039610385904, "perimeter_in_m": 289.55985706456102, "length_x": 72.443654045885793, "length_y": 72.445181931548504 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.793900399134579, 0.0 ], [ -0.001373291015625, 61.793900399134579, 0.0 ], [ -0.001373291015625, 61.793251313718613, 0.0 ], [ -0.00274658203125, 61.793251313718613, 0.0 ], [ -0.00274658203125, 61.793900399134579, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2297, "task_x": 131070, "task_y": 73472, "task_z": 18, "center_y": 61.7727981024088, "area_in_sqm": 5247.3706760406503, "perimeter_in_m": 289.755031796597, "length_x": 72.492557715767006, "length_y": 72.494086332257496 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.773122864531459, 0.0 ], [ -0.001373291015625, 61.773122864531459, 0.0 ], [ -0.001373291015625, 61.772473340286155, 0.0 ], [ -0.00274658203125, 61.772473340286155, 0.0 ], [ -0.00274658203125, 61.773122864531459, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2298, "task_x": 131070, "task_y": 73504, "task_z": 18, "center_y": 61.752006302473497, "area_in_sqm": 5254.4455126523999, "perimeter_in_m": 289.95029924708098, "length_x": 72.541484767215906, "length_y": 72.543014114216405 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.752331284116366, 0.0 ], [ -0.001373291015625, 61.752331284116366, 0.0 ], [ -0.001373291015625, 61.751681320830578, 0.0 ], [ -0.00274658203125, 61.751681320830578, 0.0 ], [ -0.00274658203125, 61.752331284116366, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2299, "task_x": 131070, "task_y": 73536, "task_z": 18, "center_y": 61.731200449865298, "area_in_sqm": 5261.5284768342999, "perimeter_in_m": 290.14565937239598, "length_x": 72.590435190042001, "length_y": 72.591965267233206 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.731525651133964, 0.0 ], [ -0.001373291015625, 61.731525651133964, 0.0 ], [ -0.001373291015625, 61.730875248596618, 0.0 ], [ -0.00274658203125, 61.730875248596618, 0.0 ], [ -0.00274658203125, 61.731525651133964, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2300, "task_x": 131070, "task_y": 73568, "task_z": 18, "center_y": 61.710380537831803, "area_in_sqm": 5268.61957323551, "perimeter_in_m": 290.34111213446101, "length_x": 72.639408973997604, "length_y": 72.640939781058407 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.710705958831724, 0.0 ], [ -0.001373291015625, 61.710705958831724, 0.0 ], [ -0.001373291015625, 61.71005511683186, 0.0 ], [ -0.00274658203125, 61.71005511683186, 0.0 ], [ -0.00274658203125, 61.710705958831724, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2301, "task_x": 131070, "task_y": 73600, "task_z": 18, "center_y": 61.689546559623402, "area_in_sqm": 5275.7188080549204, "perimeter_in_m": 290.53665748730202, "length_x": 72.688406108777599, "length_y": 72.689937645385001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.689872200460002, 0.0 ], [ -0.001373291015625, 61.689872200460002, 0.0 ], [ -0.001373291015625, 61.689220918786731, 0.0 ], [ -0.00274658203125, 61.689220918786731, 0.0 ], [ -0.00274658203125, 61.689872200460002, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2302, "task_x": 131070, "task_y": 73632, "task_z": 18, "center_y": 61.6686985084933, "area_in_sqm": 5282.8261854648599, "perimeter_in_m": 290.73229538553102, "length_x": 72.737426584019502, "length_y": 72.7389588498487 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.669024369272009, 0.0 ], [ -0.001373291015625, 61.669024369272009, 0.0 ], [ -0.001373291015625, 61.668372647714563, 0.0 ], [ -0.00274658203125, 61.668372647714563, 0.0 ], [ -0.00274658203125, 61.669024369272009, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2303, "task_x": 131070, "task_y": 73664, "task_z": 18, "center_y": 61.647836377697701, "area_in_sqm": 5289.9417110681497, "perimeter_in_m": 290.92802579356101, "length_x": 72.786470389302906, "length_y": 72.788003384027405 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.648162458523885, 0.0 ], [ -0.001373291015625, 61.648162458523885, 0.0 ], [ -0.001373291015625, 61.647510296871552, 0.0 ], [ -0.00274658203125, 61.647510296871552, 0.0 ], [ -0.00274658203125, 61.648162458523885, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2304, "task_x": 131070, "task_y": 73696, "task_z": 18, "center_y": 61.626960160495699, "area_in_sqm": 5297.0653905868503, "perimeter_in_m": 291.12384866506801, "length_x": 72.835537514149806, "length_y": 72.837071237441194 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.627286461474654, 0.0 ], [ -0.001373291015625, 61.627286461474654, 0.0 ], [ -0.001373291015625, 61.626633859516815, 0.0 ], [ -0.00274658203125, 61.626633859516815, 0.0 ], [ -0.00274658203125, 61.627286461474654, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2305, "task_x": 131070, "task_y": 73728, "task_z": 18, "center_y": 61.606069850149296, "area_in_sqm": 5304.1972291469601, "perimeter_in_m": 291.31976395503, "length_x": 72.884627948024402, "length_y": 72.886162399552404 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.606396371386268, 0.0 ], [ -0.001373291015625, 61.606396371386268, 0.0 ], [ -0.001373291015625, 61.605743328912418, 0.0 ], [ -0.00274658203125, 61.605743328912418, 0.0 ], [ -0.00274658203125, 61.606396371386268, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2306, "task_x": 131070, "task_y": 73760, "task_z": 18, "center_y": 61.5851654399235, "area_in_sqm": 5311.3372309207898, "perimeter_in_m": 291.51577162113801, "length_x": 72.933741680332801, "length_y": 72.935276859765594 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.58549218152362, 0.0 ], [ -0.001373291015625, 61.58549218152362, 0.0 ], [ -0.001373291015625, 61.584838698323331, 0.0 ], [ -0.00274658203125, 61.584838698323331, 0.0 ], [ -0.00274658203125, 61.58549218152362, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2307, "task_x": 131070, "task_y": 73792, "task_z": 18, "center_y": 61.564246923086003, "area_in_sqm": 5318.4854024648703, "perimeter_in_m": 291.71187162591201, "length_x": 72.982878700423001, "length_y": 72.9844146074268 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.564573885154573, 0.0 ], [ -0.001373291015625, 61.564573885154573, 0.0 ], [ -0.001373291015625, 61.563919961017518, 0.0 ], [ -0.00274658203125, 61.563919961017518, 0.0 ], [ -0.00274658203125, 61.564573885154573, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2308, "task_x": 131070, "task_y": 73824, "task_z": 18, "center_y": 61.543314292907901, "area_in_sqm": 5325.6417481899298, "perimeter_in_m": 291.90806391124801, "length_x": 73.032038997585204, "length_y": 73.033575631824107 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.543641475549954, 0.0 ], [ -0.001373291015625, 61.543641475549954, 0.0 ], [ -0.001373291015625, 61.542987110265884, 0.0 ], [ -0.00274658203125, 61.542987110265884, 0.0 ], [ -0.00274658203125, 61.543641475549954, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2309, "task_x": 131070, "task_y": 73856, "task_z": 18, "center_y": 61.522367542662998, "area_in_sqm": 5332.80627346039, "perimeter_in_m": 292.10434844015498, "length_x": 73.081222561050694, "length_y": 73.082759922187506 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.522694945983588, 0.0 ], [ -0.001373291015625, 61.522694945983588, 0.0 ], [ -0.001373291015625, 61.522040139342366, 0.0 ], [ -0.00274658203125, 61.522040139342366, 0.0 ], [ -0.00274658203125, 61.522694945983588, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2310, "task_x": 131070, "task_y": 73888, "task_z": 18, "center_y": 61.501406665628103, "area_in_sqm": 5339.9789830446198, "perimeter_in_m": 292.30072517479999, "length_x": 73.130429379992904, "length_y": 73.131967467688298 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.501734289732312, 0.0 ], [ -0.001373291015625, 61.501734289732312, 0.0 ], [ -0.001373291015625, 61.501079041523887, 0.0 ], [ -0.00274658203125, 61.501079041523887, 0.0 ], [ -0.00274658203125, 61.501734289732312, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2311, "task_x": 131070, "task_y": 73920, "task_z": 18, "center_y": 61.480431655083201, "area_in_sqm": 5347.1598825454703, "perimeter_in_m": 292.49719405742798, "length_x": 73.179659443526603, "length_y": 73.181198257439405 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.480759500075976, 0.0 ], [ -0.001373291015625, 61.480759500075976, 0.0 ], [ -0.001373291015625, 61.480103810090398, 0.0 ], [ -0.00274658203125, 61.480103810090398, 0.0 ], [ -0.00274658203125, 61.480759500075976, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2312, "task_x": 131070, "task_y": 73952, "task_z": 18, "center_y": 61.459442504311198, "area_in_sqm": 5354.3489768505096, "perimeter_in_m": 292.69375505918703, "length_x": 73.228912740707599, "length_y": 73.230452280495001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.459770570297493, 0.0 ], [ -0.001373291015625, 61.459770570297493, 0.0 ], [ -0.001373291015625, 61.459114438324889, 0.0 ], [ -0.00274658203125, 61.459114438324889, 0.0 ], [ -0.00274658203125, 61.459770570297493, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2313, "task_x": 131070, "task_y": 73984, "task_z": 18, "center_y": 61.438439206598098, "area_in_sqm": 5361.5462718009903, "perimeter_in_m": 292.89040811713102, "length_x": 73.278189260533694, "length_y": 73.279729525850698 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.438767493682811, 0.0 ], [ -0.001373291015625, 61.438767493682811, 0.0 ], [ -0.001373291015625, 61.438110919513434, 0.0 ], [ -0.00274658203125, 61.438110919513434, 0.0 ], [ -0.00274658203125, 61.438767493682811, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2314, "task_x": 131070, "task_y": 74016, "task_z": 18, "center_y": 61.4174217552331, "area_in_sqm": 5368.7517715692502, "perimeter_in_m": 293.08715320145899, "length_x": 73.327488991943099, "length_y": 73.329029982443302 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.417750263520986, 0.0 ], [ -0.001373291015625, 61.417750263520986, 0.0 ], [ -0.001373291015625, 61.417093246945143, 0.0 ], [ -0.00274658203125, 61.417093246945143, 0.0 ], [ -0.00274658203125, 61.417750263520986, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2315, "task_x": 131070, "task_y": 74048, "task_z": 18, "center_y": 61.396390143508199, "area_in_sqm": 5375.9654818773297, "perimeter_in_m": 293.28399025606802, "length_x": 73.376811923815595, "length_y": 73.378353639150305 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.39671887310412, 0.0 ], [ -0.001373291015625, 61.39671887310412, 0.0 ], [ -0.001373291015625, 61.396061413912264, 0.0 ], [ -0.00274658203125, 61.396061413912264, 0.0 ], [ -0.00274658203125, 61.39671887310412, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2316, "task_x": 131070, "task_y": 74080, "task_z": 18, "center_y": 61.375344364718799, "area_in_sqm": 5383.1874071359598, "perimeter_in_m": 293.48091923534901, "length_x": 73.4261580449717, "length_y": 73.427700484790805 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.375673315727468, 0.0 ], [ -0.001373291015625, 61.375673315727468, 0.0 ], [ -0.001373291015625, 61.375015413710116, 0.0 ], [ -0.00274658203125, 61.375015413710116, 0.0 ], [ -0.00274658203125, 61.375673315727468, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2317, "task_x": 131070, "task_y": 74112, "task_z": 18, "center_y": 61.354284412163302, "area_in_sqm": 5390.4175534248398, "perimeter_in_m": 293.67794010914798, "length_x": 73.475527344172704, "length_y": 73.4770705081241 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.354613584689403, 0.0 ], [ -0.001373291015625, 61.354613584689403, 0.0 ], [ -0.001373291015625, 61.353955239637173, 0.0 ], [ -0.00274658203125, 61.353955239637173, 0.0 ], [ -0.00274658203125, 61.354613584689403, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2318, "task_x": 131070, "task_y": 74144, "task_z": 18, "center_y": 61.333210279143202, "area_in_sqm": 5397.6559255123102, "perimeter_in_m": 293.87505280543797, "length_x": 73.524919810121006, "length_y": 73.526463697850403 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.333539673291426, 0.0 ], [ -0.001373291015625, 61.333539673291426, 0.0 ], [ -0.001373291015625, 61.332880884995056, 0.0 ], [ -0.00274658203125, 61.332880884995056, 0.0 ], [ -0.00274658203125, 61.333539673291426, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2319, "task_x": 131070, "task_y": 74176, "task_z": 18, "center_y": 61.312121958963402, "area_in_sqm": 5404.9025278091403, "perimeter_in_m": 294.07225729806999, "length_x": 73.574335431459104, "length_y": 73.575880042610905 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.312451574838207, 0.0 ], [ -0.001373291015625, 61.312451574838207, 0.0 ], [ -0.001373291015625, 61.311792343088506, 0.0 ], [ -0.00274658203125, 61.311792343088506, 0.0 ], [ -0.00274658203125, 61.312451574838207, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2320, "task_x": 131070, "task_y": 74208, "task_z": 18, "center_y": 61.2910194449315, "area_in_sqm": 5412.1573659181604, "perimeter_in_m": 294.26955352468599, "length_x": 73.623774196770398, "length_y": 73.625319530986701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.291349282637583, 0.0 ], [ -0.001373291015625, 61.291349282637583, 0.0 ], [ -0.001373291015625, 61.290689607225474, 0.0 ], [ -0.00274658203125, 61.290689607225474, 0.0 ], [ -0.00274658203125, 61.291349282637583, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2321, "task_x": 131070, "task_y": 74240, "task_z": 18, "center_y": 61.269902730358901, "area_in_sqm": 5419.4204444885299, "perimeter_in_m": 294.46694145323499, "length_x": 73.673236094578499, "length_y": 73.674782151499798 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.270232790000613, 0.0 ], [ -0.001373291015625, 61.270232790000613, 0.0 ], [ -0.001373291015625, 61.269572670717132, 0.0 ], [ -0.00274658203125, 61.269572670717132, 0.0 ], [ -0.00274658203125, 61.270232790000613, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2322, "task_x": 131070, "task_y": 74272, "task_z": 18, "center_y": 61.248771808559702, "area_in_sqm": 5426.6917700767499, "perimeter_in_m": 294.66442102537098, "length_x": 73.722721113347404, "length_y": 73.724267892612204 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.249102090241536, 0.0 ], [ -0.001373291015625, 61.249102090241536, 0.0 ], [ -0.001373291015625, 61.248441526877798, 0.0 ], [ -0.00274658203125, 61.248441526877798, 0.0 ], [ -0.00274658203125, 61.249102090241536, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2323, "task_x": 131070, "task_y": 74304, "task_z": 18, "center_y": 61.2276266728515, "area_in_sqm": 5433.9713459014902, "perimeter_in_m": 294.86199220101003, "length_x": 73.772229241481298, "length_y": 73.773776742726199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.227957176677862, 0.0 ], [ -0.001373291015625, 61.227957176677862, 0.0 ], [ -0.001373291015625, 61.227296169025081, 0.0 ], [ -0.00274658203125, 61.227296169025081, 0.0 ], [ -0.00274658203125, 61.227957176677862, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2324, "task_x": 131070, "task_y": 74336, "task_z": 18, "center_y": 61.206467316554999, "area_in_sqm": 5441.2591773271597, "perimeter_in_m": 295.059654924401, "length_x": 73.821760467324395, "length_y": 73.823308690184206 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.20679804263029, 0.0 ], [ -0.001373291015625, 61.20679804263029, 0.0 ], [ -0.001373291015625, 61.206136590479801, 0.0 ], [ -0.00274658203125, 61.206136590479801, 0.0 ], [ -0.00274658203125, 61.20679804263029, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2325, "task_x": 131070, "task_y": 74368, "task_z": 18, "center_y": 61.185293732994403, "area_in_sqm": 5448.5552701950101, "perimeter_in_m": 295.25740915239999, "length_x": 73.871314779160798, "length_y": 73.872863723268495 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.185624681422816, 0.0 ], [ -0.001373291015625, 61.185624681422816, 0.0 ], [ -0.001373291015625, 61.184962784566054, 0.0 ], [ -0.00274658203125, 61.184962784566054, 0.0 ], [ -0.00274658203125, 61.185624681422816, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2326, "task_x": 131070, "task_y": 74400, "task_z": 18, "center_y": 61.164105915496997, "area_in_sqm": 5455.8596285581598, "perimeter_in_m": 295.45525484103001, "length_x": 73.920892165214596, "length_y": 73.922441830201194 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.164437086382726, 0.0 ], [ -0.001373291015625, 61.164437086382726, 0.0 ], [ -0.001373291015625, 61.163774744611203, 0.0 ], [ -0.00274658203125, 61.163774744611203, 0.0 ], [ -0.00274658203125, 61.164437086382726, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2327, "task_x": 131070, "task_y": 74432, "task_z": 18, "center_y": 61.1429038573933, "area_in_sqm": 5463.1722579002399, "perimeter_in_m": 295.65319193134297, "length_x": 73.970492613649597, "length_y": 73.972042999144193 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.143235250840569, 0.0 ], [ -0.001373291015625, 61.143235250840569, 0.0 ], [ -0.001373291015625, 61.142572463945939, 0.0 ], [ -0.00274658203125, 61.142572463945939, 0.0 ], [ -0.00274658203125, 61.143235250840569, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2328, "task_x": 131070, "task_y": 74464, "task_z": 18, "center_y": 61.1216875520172, "area_in_sqm": 5470.4931635856601, "perimeter_in_m": 295.85122038831997, "length_x": 74.020116112569298, "length_y": 74.021667218199198 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.122019168130251, 0.0 ], [ -0.001373291015625, 61.122019168130251, 0.0 ], [ -0.001373291015625, 61.121355935904219, 0.0 ], [ -0.00274658203125, 61.121355935904219, 0.0 ], [ -0.00274658203125, 61.122019168130251, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2329, "task_x": 131070, "task_y": 74496, "task_z": 18, "center_y": 61.100456992706199, "area_in_sqm": 5477.8223493099204, "perimeter_in_m": 296.04934014568897, "length_x": 74.0697626500166, "length_y": 74.071314475406993 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.100788831588972, 0.0 ], [ -0.001373291015625, 61.100788831588972, 0.0 ], [ -0.001373291015625, 61.100125153823413, 0.0 ], [ -0.00274658203125, 61.100125153823413, 0.0 ], [ -0.00274658203125, 61.100788831588972, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2330, "task_x": 131070, "task_y": 74528, "task_z": 18, "center_y": 61.079212172800702, "area_in_sqm": 5485.1598221063596, "perimeter_in_m": 296.24755116890498, "length_x": 74.119432213973795, "length_y": 74.120984758748406 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.079544234557289, 0.0 ], [ -0.001373291015625, 61.079544234557289, 0.0 ], [ -0.001373291015625, 61.078880111044128, 0.0 ], [ -0.00274658203125, 61.078880111044128, 0.0 ], [ -0.00274658203125, 61.079544234557289, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2331, "task_x": 131070, "task_y": 74560, "task_z": 18, "center_y": 61.057953085644797, "area_in_sqm": 5492.5055845975903, "perimeter_in_m": 296.445853404893, "length_x": 74.169124792362595, "length_y": 74.170678056142904 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.058285370379153, 0.0 ], [ -0.001373291015625, 61.058285370379153, 0.0 ], [ -0.001373291015625, 61.057620800910456, 0.0 ], [ -0.00274658203125, 61.057620800910456, 0.0 ], [ -0.00274658203125, 61.058285370379153, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2332, "task_x": 131070, "task_y": 74592, "task_z": 18, "center_y": 61.036679724585802, "area_in_sqm": 5499.8596435785303, "perimeter_in_m": 296.64424679409899, "length_x": 74.218840373043903, "length_y": 74.220394355449699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.037012232401878, 0.0 ], [ -0.001373291015625, 61.037012232401878, 0.0 ], [ -0.001373291015625, 61.036347216769791, 0.0 ], [ -0.00274658203125, 61.036347216769791, 0.0 ], [ -0.00274658203125, 61.037012232401878, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2333, "task_x": 131070, "task_y": 74624, "task_z": 18, "center_y": 61.0153920829745, "area_in_sqm": 5507.2220029830896, "perimeter_in_m": 296.84273130301301, "length_x": 74.268578943817701, "length_y": 74.270133644466696 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 61.015724813976156, 0.0 ], [ -0.001373291015625, 61.015724813976156, 0.0 ], [ -0.001373291015625, 61.015059351972951, 0.0 ], [ -0.00274658203125, 61.015059351972951, 0.0 ], [ -0.00274658203125, 61.015724813976156, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2334, "task_x": 131070, "task_y": 74656, "task_z": 18, "center_y": 60.9940901541652, "area_in_sqm": 5514.59266757965, "perimeter_in_m": 297.04130686193503, "length_x": 74.318340492423005, "length_y": 74.319895910930896 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.994423108456147, 0.0 ], [ -0.001373291015625, 60.994423108456147, 0.0 ], [ -0.001373291015625, 60.993757199874196, 0.0 ], [ -0.00274658203125, 60.993757199874196, 0.0 ], [ -0.00274658203125, 60.994423108456147, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2335, "task_x": 131070, "task_y": 74688, "task_z": 18, "center_y": 60.972773931515299, "area_in_sqm": 5521.97164261341, "perimeter_in_m": 297.23997344064998, "length_x": 74.368125006537497, "length_y": 74.369681142518303 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.973107109199404, 0.0 ], [ -0.001373291015625, 60.973107109199404, 0.0 ], [ -0.001373291015625, 60.972440753831194, 0.0 ], [ -0.00274658203125, 60.972440753831194, 0.0 ], [ -0.00274658203125, 60.973107109199404, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2336, "task_x": 131070, "task_y": 74720, "task_z": 18, "center_y": 60.951443408385998, "area_in_sqm": 5529.3589333295804, "perimeter_in_m": 297.43873097840202, "length_x": 74.417932473777697, "length_y": 74.419489326843504 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.951776809566972, 0.0 ], [ -0.001373291015625, 60.951776809566972, 0.0 ], [ -0.001373291015625, 60.951110007205074, 0.0 ], [ -0.00274658203125, 60.951110007205074, 0.0 ], [ -0.00274658203125, 60.951776809566972, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2337, "task_x": 131070, "task_y": 74752, "task_z": 18, "center_y": 60.930098578141902, "area_in_sqm": 5536.7545442581204, "perimeter_in_m": 297.63757941997699, "length_x": 74.467762881698803, "length_y": 74.469320451459694 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.930432202923328, 0.0 ], [ -0.001373291015625, 60.930432202923328, 0.0 ], [ -0.001373291015625, 60.929764953360461, 0.0 ], [ -0.00274658203125, 60.929764953360461, 0.0 ], [ -0.00274658203125, 60.930432202923328, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2338, "task_x": 131070, "task_y": 74784, "task_z": 18, "center_y": 60.908739434150903, "area_in_sqm": 5544.1584800481796, "perimeter_in_m": 297.83651872205297, "length_x": 74.517616217794696, "length_y": 74.519174503858807 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.90907328263647, 0.0 ], [ -0.001373291015625, 60.90907328263647, 0.0 ], [ -0.001373291015625, 60.90840558566542, 0.0 ], [ -0.00274658203125, 60.90840558566542, 0.0 ], [ -0.00274658203125, 60.90907328263647, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2339, "task_x": 131070, "task_y": 74816, "task_z": 18, "center_y": 60.887365969784703, "area_in_sqm": 5551.5707460641897, "perimeter_in_m": 298.03554882987697, "length_x": 74.567492469497395, "length_y": 74.569051471471099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.887700042077881, 0.0 ], [ -0.001373291015625, 60.887700042077881, 0.0 ], [ -0.001373291015625, 60.887031897491568, 0.0 ], [ -0.00274658203125, 60.887031897491568, 0.0 ], [ -0.00274658203125, 60.887700042077881, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2340, "task_x": 131070, "task_y": 74848, "task_z": 18, "center_y": 60.865978178418302, "area_in_sqm": 5558.9913468360901, "perimeter_in_m": 298.23466969422202, "length_x": 74.617391624177401, "length_y": 74.618951341664996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.866312474622589, 0.0 ], [ -0.001373291015625, 60.866312474622589, 0.0 ], [ -0.001373291015625, 60.865643882214044, 0.0 ], [ -0.00274658203125, 60.865643882214044, 0.0 ], [ -0.00274658203125, 60.866312474622589, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2341, "task_x": 131070, "task_y": 74880, "task_z": 18, "center_y": 60.844576053430302, "area_in_sqm": 5566.4202874898901, "perimeter_in_m": 298.43388125726102, "length_x": 74.667313669143397, "length_y": 74.668874101747207 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.84491057364913, 0.0 ], [ -0.001373291015625, 60.84491057364913, 0.0 ], [ -0.001373291015625, 60.844241533211495, 0.0 ], [ -0.00274658203125, 60.844241533211495, 0.0 ], [ -0.00274658203125, 60.84491057364913, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2342, "task_x": 131070, "task_y": 74912, "task_z": 18, "center_y": 60.823159588202898, "area_in_sqm": 5573.8575726747504, "perimeter_in_m": 298.63318347305102, "length_x": 74.717258591642207, "length_y": 74.718819738962793 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.823494332539646, 0.0 ], [ -0.001373291015625, 60.823494332539646, 0.0 ], [ -0.001373291015625, 60.822824843866158, 0.0 ], [ -0.00274658203125, 60.822824843866158, 0.0 ], [ -0.00274658203125, 60.823494332539646, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2343, "task_x": 131070, "task_y": 74944, "task_z": 18, "center_y": 60.801728776121799, "area_in_sqm": 5581.3032070398303, "perimeter_in_m": 298.83257628564002, "length_x": 74.767226378858496, "length_y": 74.768788240494302 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.80206374467982, 0.0 ], [ -0.001373291015625, 60.80206374467982, 0.0 ], [ -0.001373291015625, 60.801393807563841, 0.0 ], [ -0.00274658203125, 60.801393807563841, 0.0 ], [ -0.00274658203125, 60.80206374467982, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2344, "task_x": 131070, "task_y": 74976, "task_z": 18, "center_y": 60.780283610576397, "area_in_sqm": 5588.7571948766699, "perimeter_in_m": 299.032059646015, "length_x": 74.8172170179148, "length_y": 74.818779593462494 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.780618803458928, 0.0 ], [ -0.001373291015625, 60.780618803458928, 0.0 ], [ -0.001373291015625, 60.779948417693944, 0.0 ], [ -0.00274658203125, 60.779948417693944, 0.0 ], [ -0.00274658203125, 60.780618803458928, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2345, "task_x": 131070, "task_y": 75008, "task_z": 18, "center_y": 60.758824084959699, "area_in_sqm": 5596.2195427417801, "perimeter_in_m": 299.23163349018103, "length_x": 74.867230495871695, "length_y": 74.868793784925799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.759159502269895, 0.0 ], [ -0.001373291015625, 60.759159502269895, 0.0 ], [ -0.001373291015625, 60.758488667649473, 0.0 ], [ -0.00274658203125, 60.758488667649473, 0.0 ], [ -0.00274658203125, 60.759159502269895, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2346, "task_x": 131070, "task_y": 75040, "task_z": 18, "center_y": 60.737350192668202, "area_in_sqm": 5603.6902536153802, "perimeter_in_m": 299.43129778020199, "length_x": 74.917266799727003, "length_y": 74.918830801880304 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.737685834509236, 0.0 ], [ -0.001373291015625, 60.737685834509236, 0.0 ], [ -0.001373291015625, 60.737014550827098, 0.0 ], [ -0.00274658203125, 60.737014550827098, 0.0 ], [ -0.00274658203125, 60.737685834509236, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2347, "task_x": 131070, "task_y": 75072, "task_z": 18, "center_y": 60.715861927102097, "area_in_sqm": 5611.1693329811096, "perimeter_in_m": 299.63105245818798, "length_x": 74.967325916416399, "length_y": 74.968890631259598 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.716197793577145, 0.0 ], [ -0.001373291015625, 60.716197793577145, 0.0 ], [ -0.001373291015625, 60.715526060627084, 0.0 ], [ -0.00274658203125, 60.715526060627084, 0.0 ], [ -0.00274658203125, 60.716197793577145, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2348, "task_x": 131070, "task_y": 75104, "task_z": 18, "center_y": 60.694359281665399, "area_in_sqm": 5618.6567856073398, "perimeter_in_m": 299.83089745836998, "length_x": 75.017407832812907, "length_y": 75.018973259934597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.694695372877455, 0.0 ], [ -0.001373291015625, 60.694695372877455, 0.0 ], [ -0.001373291015625, 60.694023190453422, 0.0 ], [ -0.00274658203125, 60.694023190453422, 0.0 ], [ -0.00274658203125, 60.694695372877455, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2349, "task_x": 131070, "task_y": 75136, "task_z": 18, "center_y": 60.672842249765701, "area_in_sqm": 5626.1526162624396, "perimeter_in_m": 300.03083274738202, "length_x": 75.067512535726493, "length_y": 75.069078674713694 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.673178565817707, 0.0 ], [ -0.001373291015625, 60.673178565817707, 0.0 ], [ -0.001373291015625, 60.672505933713737, 0.0 ], [ -0.00274658203125, 60.672505933713737, 0.0 ], [ -0.00274658203125, 60.673178565817707, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2350, "task_x": 131070, "task_y": 75168, "task_z": 18, "center_y": 60.651310824814303, "area_in_sqm": 5633.6568297147796, "perimeter_in_m": 300.23085824785898, "length_x": 75.117640011905095, "length_y": 75.119206862342594 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.651647365809126, 0.0 ], [ -0.001373291015625, 60.651647365809126, 0.0 ], [ -0.001373291015625, 60.65097428381938, 0.0 ], [ -0.00274658203125, 60.65097428381938, 0.0 ], [ -0.00274658203125, 60.651647365809126, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2351, "task_x": 131070, "task_y": 75200, "task_z": 18, "center_y": 60.629765000226101, "area_in_sqm": 5641.1694306135196, "perimeter_in_m": 300.430973931854, "length_x": 75.167790248033, "length_y": 75.169357809503694 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.630101766266691, 0.0 ], [ -0.001373291015625, 60.630101766266691, 0.0 ], [ -0.001373291015625, 60.629428234185426, 0.0 ], [ -0.00274658203125, 60.629428234185426, 0.0 ], [ -0.00274658203125, 60.630101766266691, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2352, "task_x": 131070, "task_y": 75232, "task_z": 18, "center_y": 60.608204769419899, "area_in_sqm": 5648.69042313099, "perimeter_in_m": 300.63117971397298, "length_x": 75.217963230731897, "length_y": 75.219531502816594 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.608541760609043, 0.0 ], [ -0.001373291015625, 60.608541760609043, 0.0 ], [ -0.001373291015625, 60.607867778230691, 0.0 ], [ -0.00274658203125, 60.607867778230691, 0.0 ], [ -0.00274658203125, 60.608541760609043, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2353, "task_x": 131070, "task_y": 75264, "task_z": 18, "center_y": 60.586630125818203, "area_in_sqm": 5656.2198132276499, "perimeter_in_m": 300.83147556883802, "length_x": 75.268158946560206, "length_y": 75.269727928837995 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.586967342258674, 0.0 ], [ -0.001373291015625, 60.586967342258674, 0.0 ], [ -0.001373291015625, 60.586292909377718, 0.0 ], [ -0.00274658203125, 60.586292909377718, 0.0 ], [ -0.00274658203125, 60.586967342258674, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2354, "task_x": 131070, "task_y": 75296, "task_z": 18, "center_y": 60.5650410628473, "area_in_sqm": 5663.7576045989999, "perimeter_in_m": 301.03186142071098, "length_x": 75.318377382013097, "length_y": 75.319947074060806 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.565378504641799, 0.0 ], [ -0.001373291015625, 60.565378504641799, 0.0 ], [ -0.001373291015625, 60.564703621052885, 0.0 ], [ -0.00274658203125, 60.564703621052885, 0.0 ], [ -0.00274658203125, 60.565378504641799, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2355, "task_x": 131070, "task_y": 75328, "task_z": 18, "center_y": 60.543437573937403, "area_in_sqm": 5671.3038015365601, "perimeter_in_m": 301.23233722414898, "length_x": 75.3686185235224, "length_y": 75.370188924915098 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.54377524118842, 0.0 ], [ -0.001373291015625, 60.54377524118842, 0.0 ], [ -0.001373291015625, 60.543099906686294, 0.0 ], [ -0.00274658203125, 60.543099906686294, 0.0 ], [ -0.00274658203125, 60.54377524118842, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2356, "task_x": 131070, "task_y": 75360, "task_z": 18, "center_y": 60.521819652522097, "area_in_sqm": 5678.8584100008002, "perimeter_in_m": 301.43290292084703, "length_x": 75.418882357456496, "length_y": 75.420453467767103 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.522157545332369, 0.0 ], [ -0.001373291015625, 60.522157545332369, 0.0 ], [ -0.001373291015625, 60.521481759711889, 0.0 ], [ -0.00274658203125, 60.521481759711889, 0.0 ], [ -0.00274658203125, 60.522157545332369, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2357, "task_x": 131070, "task_y": 75392, "task_z": 18, "center_y": 60.500187292039399, "area_in_sqm": 5686.4214339256296, "perimeter_in_m": 301.63355844671099, "length_x": 75.4691688701202, "length_y": 75.470740688919605 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.500525410511287, 0.0 ], [ -0.001373291015625, 60.500525410511287, 0.0 ], [ -0.001373291015625, 60.499849173567469, 0.0 ], [ -0.00274658203125, 60.499849173567469, 0.0 ], [ -0.00274658203125, 60.500525410511287, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2358, "task_x": 131070, "task_y": 75424, "task_z": 18, "center_y": 60.478540485930701, "area_in_sqm": 5693.9928776025799, "perimeter_in_m": 301.83430376652802, "length_x": 75.519478047754504, "length_y": 75.521050574612005 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.478878830166707, 0.0 ], [ -0.001373291015625, 60.478878830166707, 0.0 ], [ -0.001373291015625, 60.478202141694624, 0.0 ], [ -0.00274658203125, 60.478202141694624, 0.0 ], [ -0.00274658203125, 60.478878830166707, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2359, "task_x": 131070, "task_y": 75456, "task_z": 18, "center_y": 60.456879227641402, "area_in_sqm": 5701.5727463960602, "perimeter_in_m": 302.03513880251001, "length_x": 75.569809876536794, "length_y": 75.571383111019202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.457217797743958, 0.0 ], [ -0.001373291015625, 60.457217797743958, 0.0 ], [ -0.001373291015625, 60.456540657538866, 0.0 ], [ -0.00274658203125, 60.456540657538866, 0.0 ], [ -0.00274658203125, 60.457217797743958, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2360, "task_x": 131070, "task_y": 75488, "task_z": 18, "center_y": 60.435203510620902, "area_in_sqm": 5709.16104388237, "perimeter_in_m": 302.23606350857801, "length_x": 75.620164342580594, "length_y": 75.621738284252899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.435542306692312, 0.0 ], [ -0.001373291015625, 60.435542306692312, 0.0 ], [ -0.001373291015625, 60.434864714549555, 0.0 ], [ -0.00274658203125, 60.434864714549555, 0.0 ], [ -0.00274658203125, 60.435542306692312, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2361, "task_x": 131070, "task_y": 75520, "task_z": 18, "center_y": 60.413513328322402, "area_in_sqm": 5716.7577763795898, "perimeter_in_m": 302.43707782790602, "length_x": 75.670541431935007, "length_y": 75.672116080360396 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.413852350464914, 0.0 ], [ -0.001373291015625, 60.413852350464914, 0.0 ], [ -0.001373291015625, 60.413174306179968, 0.0 ], [ -0.00274658203125, 60.413174306179968, 0.0 ], [ -0.00274658203125, 60.413852350464914, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2362, "task_x": 131070, "task_y": 75552, "task_z": 18, "center_y": 60.391808674203098, "area_in_sqm": 5724.3629469871503, "perimeter_in_m": 302.63818169717501, "length_x": 75.720941130585402, "length_y": 75.722516485324704 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.392147922518831, 0.0 ], [ -0.001373291015625, 60.392147922518831, 0.0 ], [ -0.001373291015625, 60.391469425887294, 0.0 ], [ -0.00274658203125, 60.391469425887294, 0.0 ], [ -0.00274658203125, 60.392147922518831, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2363, "task_x": 131070, "task_y": 75584, "task_z": 18, "center_y": 60.3700895417239, "area_in_sqm": 5731.9765605926495, "perimeter_in_m": 302.83937506284798, "length_x": 75.771363424452801, "length_y": 75.772939485064995 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.370429016315072, 0.0 ], [ -0.001373291015625, 60.370429016315072, 0.0 ], [ -0.001373291015625, 60.369750067132664, 0.0 ], [ -0.00274658203125, 60.369750067132664, 0.0 ], [ -0.00274658203125, 60.370429016315072, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2364, "task_x": 131070, "task_y": 75616, "task_z": 18, "center_y": 60.348355924349903, "area_in_sqm": 5739.5986220836603, "perimeter_in_m": 303.04065786630201, "length_x": 75.821808299393595, "length_y": 75.8233850654359 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.348695625318612, 0.0 ], [ -0.001373291015625, 60.348695625318612, 0.0 ], [ -0.001373291015625, 60.348016223381173, 0.0 ], [ -0.00274658203125, 60.348016223381173, 0.0 ], [ -0.00274658203125, 60.348695625318612, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2365, "task_x": 131070, "task_y": 75648, "task_z": 18, "center_y": 60.326607815550098, "area_in_sqm": 5747.2291359901401, "perimeter_in_m": 303.24203005019598, "length_x": 75.872275741200298, "length_y": 75.873853212227402 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.326947742998399, 0.0 ], [ -0.001373291015625, 60.326947742998399, 0.0 ], [ -0.001373291015625, 60.326267888101896, 0.0 ], [ -0.00274658203125, 60.326267888101896, 0.0 ], [ -0.00274658203125, 60.326947742998399, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2366, "task_x": 131070, "task_y": 75680, "task_z": 18, "center_y": 60.304845208797602, "area_in_sqm": 5754.8681063652002, "perimeter_in_m": 303.44349155848698, "length_x": 75.922765735599995, "length_y": 75.924343911165096 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.305185362827359, 0.0 ], [ -0.001373291015625, 60.305185362827359, 0.0 ], [ -0.001373291015625, 60.304505054767887, 0.0 ], [ -0.00274658203125, 60.304505054767887, 0.0 ], [ -0.00274658203125, 60.305185362827359, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2367, "task_x": 131070, "task_y": 75712, "task_z": 18, "center_y": 60.283068097569299, "area_in_sqm": 5762.5155383348501, "perimeter_in_m": 303.64504232295701, "length_x": 75.973278268255896, "length_y": 75.974857147909702 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.283408478282439, 0.0 ], [ -0.001373291015625, 60.283408478282439, 0.0 ], [ -0.001373291015625, 60.282727716856215, 0.0 ], [ -0.00274658203125, 60.282727716856215, 0.0 ], [ -0.00274658203125, 60.283408478282439, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2368, "task_x": 131070, "task_y": 75744, "task_z": 18, "center_y": 60.2612764753463, "area_in_sqm": 5770.1714355945596, "perimeter_in_m": 303.84668229649702, "length_x": 76.023813324765996, "length_y": 76.025392908057498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.261617082844609, 0.0 ], [ -0.001373291015625, 60.261617082844609, 0.0 ], [ -0.001373291015625, 60.260935867847991, 0.0 ], [ -0.00274658203125, 60.260935867847991, 0.0 ], [ -0.00274658203125, 60.261617082844609, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2369, "task_x": 131070, "task_y": 75776, "task_z": 18, "center_y": 60.239470335613603, "area_in_sqm": 5777.8358037471799, "perimeter_in_m": 304.04841141700501, "length_x": 76.074370890663303, "length_y": 76.075951177139302 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.239811169998916, 0.0 ], [ -0.001373291015625, 60.239811169998916, 0.0 ], [ -0.001373291015625, 60.239129501228362, 0.0 ], [ -0.00274658203125, 60.239129501228362, 0.0 ], [ -0.00274658203125, 60.239811169998916, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2370, "task_x": 131070, "task_y": 75808, "task_z": 18, "center_y": 60.217649671860499, "area_in_sqm": 5785.5086468458203, "perimeter_in_m": 304.250229624371, "length_x": 76.124950951415997, "length_y": 76.126531940621405 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.217990733234444, 0.0 ], [ -0.001373291015625, 60.217990733234444, 0.0 ], [ -0.001373291015625, 60.217308610486569, 0.0 ], [ -0.00274658203125, 60.217308610486569, 0.0 ], [ -0.00274658203125, 60.217990733234444, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2371, "task_x": 131070, "task_y": 75840, "task_z": 18, "center_y": 60.1958144775801, "area_in_sqm": 5793.1899688243902, "perimeter_in_m": 304.45213685199599, "length_x": 76.175553492426999, "length_y": 76.177135183904596 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.196155766044384, 0.0 ], [ -0.001373291015625, 60.196155766044384, 0.0 ], [ -0.001373291015625, 60.195473189115901, 0.0 ], [ -0.00274658203125, 60.195473189115901, 0.0 ], [ -0.00274658203125, 60.196155766044384, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2372, "task_x": 131070, "task_y": 75872, "task_z": 18, "center_y": 60.173964746269903, "area_in_sqm": 5800.87977480888, "perimeter_in_m": 304.654133050822, "length_x": 76.226178499034006, "length_y": 76.227760892324497 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.17430626192602, 0.0 ], [ -0.001373291015625, 60.17430626192602, 0.0 ], [ -0.001373291015625, 60.173623230613799, 0.0 ], [ -0.00274658203125, 60.173623230613799, 0.0 ], [ -0.00274658203125, 60.17430626192602, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2373, "task_x": 131070, "task_y": 75904, "task_z": 18, "center_y": 60.152100471431297, "area_in_sqm": 5808.5780686140097, "perimeter_in_m": 304.85621815680997, "length_x": 76.276825956509299, "length_y": 76.2784090511513 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.15244221438077, 0.0 ], [ -0.001373291015625, 60.15244221438077, 0.0 ], [ -0.001373291015625, 60.151758728481795, 0.0 ], [ -0.00274658203125, 60.151758728481795, 0.0 ], [ -0.00274658203125, 60.15244221438077, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2374, "task_x": 131070, "task_y": 75936, "task_z": 18, "center_y": 60.1302216465699, "area_in_sqm": 5816.2848553657504, "perimeter_in_m": 305.05839211075102, "length_x": 76.327495850059705, "length_y": 76.329079645589999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.130563616914188, 0.0 ], [ -0.001373291015625, 60.130563616914188, 0.0 ], [ -0.001373291015625, 60.129879676225556, 0.0 ], [ -0.00274658203125, 60.129879676225556, 0.0 ], [ -0.00274658203125, 60.130563616914188, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2375, "task_x": 131070, "task_y": 75968, "task_z": 18, "center_y": 60.108328265195503, "area_in_sqm": 5824.0001393556604, "perimeter_in_m": 305.26065484338699, "length_x": 76.378188164826398, "length_y": 76.379772660779594 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.108670463035978, 0.0 ], [ -0.001373291015625, 60.108670463035978, 0.0 ], [ -0.001373291015625, 60.107986067354958, 0.0 ], [ -0.00274658203125, 60.107986067354958, 0.0 ], [ -0.00274658203125, 60.108670463035978, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2376, "task_x": 131070, "task_y": 76000, "task_z": 18, "center_y": 60.086420320822, "area_in_sqm": 5831.7239246368399, "perimeter_in_m": 305.46300630585, "length_x": 76.428902885884995, "length_y": 76.430488081793698 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.08676274626005, 0.0 ], [ -0.001373291015625, 60.08676274626005, 0.0 ], [ -0.001373291015625, 60.086077895384008, 0.0 ], [ -0.00274658203125, 60.086077895384008, 0.0 ], [ -0.00274658203125, 60.08676274626005, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2377, "task_x": 131070, "task_y": 76032, "task_z": 18, "center_y": 60.064497806967701, "area_in_sqm": 5839.4562159776697, "perimeter_in_m": 305.66544642862101, "length_x": 76.479639998245204, "length_y": 76.481225893639703 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.064840460104506, 0.0 ], [ -0.001373291015625, 60.064840460104506, 0.0 ], [ -0.001373291015625, 60.064155153830946, 0.0 ], [ -0.00274658203125, 60.064155153830946, 0.0 ], [ -0.00274658203125, 60.064840460104506, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2378, "task_x": 131070, "task_y": 76064, "task_z": 18, "center_y": 60.042560717154899, "area_in_sqm": 5847.1970170736304, "perimeter_in_m": 305.86797515833001, "length_x": 76.530399486850698, "length_y": 76.531986081259603 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.042903598091641, 0.0 ], [ -0.001373291015625, 60.042903598091641, 0.0 ], [ -0.001373291015625, 60.042217836218207, 0.0 ], [ -0.00274658203125, 60.042217836218207, 0.0 ], [ -0.00274658203125, 60.042903598091641, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2379, "task_x": 131070, "task_y": 76096, "task_z": 18, "center_y": 60.020609044910302, "area_in_sqm": 5854.9463334083603, "perimeter_in_m": 306.070592423074, "length_x": 76.581181336579206, "length_y": 76.5827686295288 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 60.02095215374802, 0.0 ], [ -0.001373291015625, 60.02095215374802, 0.0 ], [ -0.001373291015625, 60.020265936072491, 0.0 ], [ -0.00274658203125, 60.020265936072491, 0.0 ], [ -0.00274658203125, 60.02095215374802, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2380, "task_x": 131070, "task_y": 76128, "task_z": 18, "center_y": 59.998642783764602, "area_in_sqm": 5862.7041683197003, "perimeter_in_m": 306.27329816778803, "length_x": 76.631985532242297, "length_y": 76.633573523256899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.998986120604442, 0.0 ], [ -0.001373291015625, 59.998986120604442, 0.0 ], [ -0.001373291015625, 59.998299446924726, 0.0 ], [ -0.00274658203125, 59.998299446924726, 0.0 ], [ -0.00274658203125, 59.998986120604442, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2381, "task_x": 131070, "task_y": 76160, "task_z": 18, "center_y": 59.976661927253097, "area_in_sqm": 5870.4705268144598, "perimeter_in_m": 306.47609232950799, "length_x": 76.682812058585299, "length_y": 76.684400747187098 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.977005492196, 0.0 ], [ -0.001373291015625, 59.977005492196, 0.0 ], [ -0.001373291015625, 59.976318362310124, 0.0 ], [ -0.00274658203125, 59.976318362310124, 0.0 ], [ -0.00274658203125, 59.977005492196, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2382, "task_x": 131070, "task_y": 76192, "task_z": 18, "center_y": 59.9546664689151, "area_in_sqm": 5878.2454130649603, "perimeter_in_m": 306.67897484229701, "length_x": 76.733660900287006, "length_y": 76.735250285996202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.955010262062061, 0.0 ], [ -0.001373291015625, 59.955010262062061, 0.0 ], [ -0.001373291015625, 59.954322675768211, 0.0 ], [ -0.00274658203125, 59.954322675768211, 0.0 ], [ -0.00274658203125, 59.955010262062061, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2383, "task_x": 131070, "task_y": 76224, "task_z": 18, "center_y": 59.932656402294597, "area_in_sqm": 5886.0288306474704, "perimeter_in_m": 306.881945645749, "length_x": 76.784532041959906, "length_y": 76.786122124294494 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.933000423746307, 0.0 ], [ -0.001373291015625, 59.933000423746307, 0.0 ], [ -0.001373291015625, 59.932312380842802, 0.0 ], [ -0.00274658203125, 59.932312380842802, 0.0 ], [ -0.00274658203125, 59.933000423746307, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2384, "task_x": 131070, "task_y": 76256, "task_z": 18, "center_y": 59.910631720939399, "area_in_sqm": 5893.8207848072097, "perimeter_in_m": 307.08500467578699, "length_x": 76.835425468149694, "length_y": 76.837016246625495 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.910975970796784, 0.0 ], [ -0.001373291015625, 59.910975970796784, 0.0 ], [ -0.001373291015625, 59.91028747108205, 0.0 ], [ -0.00274658203125, 59.91028747108205, 0.0 ], [ -0.00274658203125, 59.910975970796784, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2385, "task_x": 131070, "task_y": 76288, "task_z": 18, "center_y": 59.888592418402098, "area_in_sqm": 5901.6212799549103, "perimeter_in_m": 307.28815188093, "length_x": 76.886341163335402, "length_y": 76.887932637466605 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.888936896765827, 0.0 ], [ -0.001373291015625, 59.888936896765827, 0.0 ], [ -0.001373291015625, 59.888247940038461, 0.0 ], [ -0.00274658203125, 59.888247940038461, 0.0 ], [ -0.00274658203125, 59.888936896765827, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2386, "task_x": 131070, "task_y": 76320, "task_z": 18, "center_y": 59.866538488239598, "area_in_sqm": 5909.43031978607, "perimeter_in_m": 307.49138718127, "length_x": 76.9372791119293, "length_y": 76.938871281227705 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.866883195210207, 0.0 ], [ -0.001373291015625, 59.866883195210207, 0.0 ], [ -0.001373291015625, 59.866193781268919, 0.0 ], [ -0.00274658203125, 59.866193781268919, 0.0 ], [ -0.00274658203125, 59.866883195210207, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2387, "task_x": 131070, "task_y": 76352, "task_z": 18, "center_y": 59.844469924012898, "area_in_sqm": 5917.2479081153897, "perimeter_in_m": 307.69471051445203, "length_x": 76.988239298276596, "length_y": 76.989832162251801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.844814859691056, 0.0 ], [ -0.001373291015625, 59.844814859691056, 0.0 ], [ -0.001373291015625, 59.844124988334698, 0.0 ], [ -0.00274658203125, 59.844124988334698, 0.0 ], [ -0.00274658203125, 59.844814859691056, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2388, "task_x": 131070, "task_y": 76384, "task_z": 18, "center_y": 59.822386719287699, "area_in_sqm": 5925.0740503072702, "perimeter_in_m": 307.89812182434702, "length_x": 77.039221706655596, "length_y": 77.040815264815095 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.822731883773891, 0.0 ], [ -0.001373291015625, 59.822731883773891, 0.0 ], [ -0.001373291015625, 59.822041554801466, 0.0 ], [ -0.00274658203125, 59.822041554801466, 0.0 ], [ -0.00274658203125, 59.822731883773891, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2389, "task_x": 131070, "task_y": 76416, "task_z": 18, "center_y": 59.800288867634002, "area_in_sqm": 5932.9087498188001, "perimeter_in_m": 308.10162104479701, "length_x": 77.0902263212771, "length_y": 77.091820573126597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.800634261028691, 0.0 ], [ -0.001373291015625, 59.800634261028691, 0.0 ], [ -0.001373291015625, 59.799943474239321, 0.0 ], [ -0.00274658203125, 59.799943474239321, 0.0 ], [ -0.00274658203125, 59.800634261028691, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2390, "task_x": 131070, "task_y": 76448, "task_z": 18, "center_y": 59.778176362626297, "area_in_sqm": 5940.75201094151, "perimeter_in_m": 308.30520809888498, "length_x": 77.141253126285093, "length_y": 77.142848071327904 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.778521985029855, 0.0 ], [ -0.001373291015625, 59.778521985029855, 0.0 ], [ -0.001373291015625, 59.777830740222839, 0.0 ], [ -0.00274658203125, 59.777830740222839, 0.0 ], [ -0.00274658203125, 59.778521985029855, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2391, "task_x": 131070, "task_y": 76480, "task_z": 18, "center_y": 59.756049197843701, "area_in_sqm": 5948.6038383245505, "perimeter_in_m": 308.50888294848602, "length_x": 77.192302105755601, "length_y": 77.193897743493196 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.7563950493563, 0.0 ], [ -0.001373291015625, 59.7563950493563, 0.0 ], [ -0.001373291015625, 59.755703346331018, 0.0 ], [ -0.00274658203125, 59.755703346331018, 0.0 ], [ -0.00274658203125, 59.7563950493563, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2392, "task_x": 131070, "task_y": 76512, "task_z": 18, "center_y": 59.733907366869403, "area_in_sqm": 5956.4642360210401, "perimeter_in_m": 308.712645506505, "length_x": 77.243373243697704, "length_y": 77.244969573629106 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.734253447591357, 0.0 ], [ -0.001373291015625, 59.734253447591357, 0.0 ], [ -0.001373291015625, 59.733561286147378, 0.0 ], [ -0.00274658203125, 59.733561286147378, 0.0 ], [ -0.00274658203125, 59.734253447591357, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2393, "task_x": 131070, "task_y": 76544, "task_z": 18, "center_y": 59.7117508632914, "area_in_sqm": 5964.3332080841101, "perimeter_in_m": 308.91649571261303, "length_x": 77.294466524052396, "length_y": 77.296063545674599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.712097173322903, 0.0 ], [ -0.001373291015625, 59.712097173322903, 0.0 ], [ -0.001373291015625, 59.711404553259925, 0.0 ], [ -0.00274658203125, 59.711404553259925, 0.0 ], [ -0.00274658203125, 59.712097173322903, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2394, "task_x": 131070, "task_y": 76576, "task_z": 18, "center_y": 59.689579680702302, "area_in_sqm": 5972.2107580900201, "perimeter_in_m": 309.12043349643301, "length_x": 77.3455819306932, "length_y": 77.347179643501207 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.689926220143334, 0.0 ], [ -0.001373291015625, 59.689926220143334, 0.0 ], [ -0.001373291015625, 59.689233141261198, 0.0 ], [ -0.00274658203125, 59.689233141261198, 0.0 ], [ -0.00274658203125, 59.689926220143334, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2395, "task_x": 131070, "task_y": 76608, "task_z": 18, "center_y": 59.667393812698897, "area_in_sqm": 5980.0968914032001, "perimeter_in_m": 309.3244588023, "length_x": 77.396719447425497, "length_y": 77.398317850912207 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.667740581649618, 0.0 ], [ -0.001373291015625, 59.667740581649618, 0.0 ], [ -0.001373291015625, 59.667047043748276, 0.0 ], [ -0.00274658203125, 59.667047043748276, 0.0 ], [ -0.00274658203125, 59.667740581649618, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2396, "task_x": 131070, "task_y": 76640, "task_z": 18, "center_y": 59.645193252882997, "area_in_sqm": 5987.9916112422898, "perimeter_in_m": 309.528571558164, "length_x": 77.447879057987095, "length_y": 77.449478151643206 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.645540251443222, 0.0 ], [ -0.001373291015625, 59.645540251443222, 0.0 ], [ -0.001373291015625, 59.6448462543228, 0.0 ], [ -0.00274658203125, 59.6448462543228, 0.0 ], [ -0.00274658203125, 59.645540251443222, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2397, "task_x": 131070, "task_y": 76672, "task_z": 18, "center_y": 59.622977994860598, "area_in_sqm": 5995.8949221372604, "perimeter_in_m": 309.732771698183, "length_x": 77.499060746047306, "length_y": 77.500660529361397 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.623325223130223, 0.0 ], [ -0.001373291015625, 59.623325223130223, 0.0 ], [ -0.001373291015625, 59.622630766591001, 0.0 ], [ -0.00274658203125, 59.622630766591001, 0.0 ], [ -0.00274658203125, 59.623325223130223, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2398, "task_x": 131070, "task_y": 76704, "task_z": 18, "center_y": 59.6007480322425, "area_in_sqm": 6003.8068276643799, "perimeter_in_m": 309.93705915993002, "length_x": 77.5502644952075, "length_y": 77.551864967666106 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.601095490321342, 0.0 ], [ -0.001373291015625, 59.601095490321342, 0.0 ], [ -0.001373291015625, 59.600400574163714, 0.0 ], [ -0.00274658203125, 59.600400574163714, 0.0 ], [ -0.00274658203125, 59.601095490321342, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2399, "task_x": 131070, "task_y": 76736, "task_z": 18, "center_y": 59.578503358644099, "area_in_sqm": 6011.7273325920096, "perimeter_in_m": 310.14143386527201, "length_x": 77.601490289000793, "length_y": 77.603091450087902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.578851046631861, 0.0 ], [ -0.001373291015625, 59.578851046631861, 0.0 ], [ -0.001373291015625, 59.5781556706564, 0.0 ], [ -0.00274658203125, 59.5781556706564, 0.0 ], [ -0.00274658203125, 59.578851046631861, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2400, "task_x": 131070, "task_y": 76768, "task_z": 18, "center_y": 59.556243967685397, "area_in_sqm": 6019.6564408540698, "perimeter_in_m": 310.345895762113, "length_x": 77.652738110891605, "length_y": 77.654339960089601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.556591885681748, 0.0 ], [ -0.001373291015625, 59.556591885681748, 0.0 ], [ -0.001373291015625, 59.55589604968911, 0.0 ], [ -0.00274658203125, 59.55589604968911, 0.0 ], [ -0.00274658203125, 59.556591885681748, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2401, "task_x": 131070, "task_y": 76800, "task_z": 18, "center_y": 59.533969852991099, "area_in_sqm": 6027.59415590763, "perimeter_in_m": 310.55044476496801, "length_x": 77.704007944275901, "length_y": 77.705610481064795 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.534318001095599, 0.0 ], [ -0.001373291015625, 59.534318001095599, 0.0 ], [ -0.001373291015625, 59.533621704886677, 0.0 ], [ -0.00274658203125, 59.533621704886677, 0.0 ], [ -0.00274658203125, 59.534318001095599, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2402, "task_x": 131070, "task_y": 76832, "task_z": 18, "center_y": 59.5116810081906, "area_in_sqm": 6035.5404821634302, "perimeter_in_m": 310.75508082360602, "length_x": 77.755299772481195, "length_y": 77.756902996338894 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.512029386502704, 0.0 ], [ -0.001373291015625, 59.512029386502704, 0.0 ], [ -0.001373291015625, 59.511332629878467, 0.0 ], [ -0.00274658203125, 59.511332629878467, 0.0 ], [ -0.00274658203125, 59.512029386502704, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2403, "task_x": 131070, "task_y": 76864, "task_z": 18, "center_y": 59.489377426917898, "area_in_sqm": 6043.4954242706299, "perimeter_in_m": 310.95980385933001, "length_x": 77.806613578766004, "length_y": 77.8082174891682 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.489726035537075, 0.0 ], [ -0.001373291015625, 59.489726035537075, 0.0 ], [ -0.001373291015625, 59.489028818298657, 0.0 ], [ -0.00274658203125, 59.489028818298657, 0.0 ], [ -0.00274658203125, 59.489726035537075, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2404, "task_x": 131070, "task_y": 76896, "task_z": 18, "center_y": 59.467059102811703, "area_in_sqm": 6051.4589858055097, "perimeter_in_m": 311.164613800398, "length_x": 77.857949346320098, "length_y": 77.859553942740305 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.467407941837394, 0.0 ], [ -0.001373291015625, 59.467407941837394, 0.0 ], [ -0.001373291015625, 59.466710263786098, 0.0 ], [ -0.00274658203125, 59.466710263786098, 0.0 ], [ -0.00274658203125, 59.467407941837394, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2405, "task_x": 131070, "task_y": 76928, "task_z": 18, "center_y": 59.444726029515799, "area_in_sqm": 6059.4311698675201, "perimeter_in_m": 311.36951058624697, "length_x": 77.909307058264105, "length_y": 77.910912340173795 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.445075099047138, 0.0 ], [ -0.001373291015625, 59.445075099047138, 0.0 ], [ -0.001373291015625, 59.444376959984389, 0.0 ], [ -0.00274658203125, 59.444376959984389, 0.0 ], [ -0.00274658203125, 59.445075099047138, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2406, "task_x": 131070, "task_y": 76960, "task_z": 18, "center_y": 59.422378200678203, "area_in_sqm": 6067.4119819402704, "perimeter_in_m": 311.57449415264199, "length_x": 77.960686697649706, "length_y": 77.962292664518003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.422727500814517, 0.0 ], [ -0.001373291015625, 59.422727500814517, 0.0 ], [ -0.001373291015625, 59.422028900541889, 0.0 ], [ -0.00274658203125, 59.422028900541889, 0.0 ], [ -0.00274658203125, 59.422727500814517, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2407, "task_x": 131070, "task_y": 76992, "task_z": 18, "center_y": 59.400015609952099, "area_in_sqm": 6075.4014247655896, "perimeter_in_m": 311.77956441610098, "length_x": 78.012088247459204, "length_y": 78.0136948987534 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.400365140792502, 0.0 ], [ -0.001373291015625, 59.400365140792502, 0.0 ], [ -0.001373291015625, 59.399666079111739, 0.0 ], [ -0.00274658203125, 59.399666079111739, 0.0 ], [ -0.00274658203125, 59.400365140792502, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2408, "task_x": 131070, "task_y": 77024, "task_z": 18, "center_y": 59.377638250995403, "area_in_sqm": 6083.3995033502597, "perimeter_in_m": 311.98472131281102, "length_x": 78.063511690605793, "length_y": 78.065119025790594 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.377988012638895, 0.0 ], [ -0.001373291015625, 59.377988012638895, 0.0 ], [ -0.001373291015625, 59.377288489351884, 0.0 ], [ -0.00274658203125, 59.377288489351884, 0.0 ], [ -0.00274658203125, 59.377988012638895, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2409, "task_x": 131070, "task_y": 77056, "task_z": 18, "center_y": 59.355246117470699, "area_in_sqm": 6091.4062204360998, "perimeter_in_m": 312.18996477387401, "length_x": 78.114957009932894, "length_y": 78.1165650284712 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.355596110016307, 0.0 ], [ -0.001373291015625, 59.355596110016307, 0.0 ], [ -0.001373291015625, 59.354896124925077, 0.0 ], [ -0.00274658203125, 59.354896124925077, 0.0 ], [ -0.00274658203125, 59.355596110016307, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2410, "task_x": 131070, "task_y": 77088, "task_z": 18, "center_y": 59.332839203045602, "area_in_sqm": 6099.4215813875198, "perimeter_in_m": 312.39529473591301, "length_x": 78.166424188214705, "length_y": 78.168032889567002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.333189426592185, 0.0 ], [ -0.001373291015625, 59.333189426592185, 0.0 ], [ -0.001373291015625, 59.332488979498919, 0.0 ], [ -0.00274658203125, 59.332488979498919, 0.0 ], [ -0.00274658203125, 59.333189426592185, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2411, "task_x": 131070, "task_y": 77120, "task_z": 18, "center_y": 59.310417501392301, "area_in_sqm": 6107.4455889463397, "perimeter_in_m": 312.60071111842899, "length_x": 78.217913208155494, "length_y": 78.219522591780205 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.310767956038831, 0.0 ], [ -0.001373291015625, 59.310767956038831, 0.0 ], [ -0.001373291015625, 59.310067046745857, 0.0 ], [ -0.00274658203125, 59.310067046745857, 0.0 ], [ -0.00274658203125, 59.310767956038831, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2412, "task_x": 131070, "task_y": 77152, "task_z": 18, "center_y": 59.287981006188403, "area_in_sqm": 6115.4782478809402, "perimeter_in_m": 312.80621385421898, "length_x": 78.269424052389795, "length_y": 78.271034117743099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.288331692033438, 0.0 ], [ -0.001373291015625, 59.288331692033438, 0.0 ], [ -0.001373291015625, 59.287630320343276, 0.0 ], [ -0.00274658203125, 59.287630320343276, 0.0 ], [ -0.00274658203125, 59.288331692033438, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2413, "task_x": 131070, "task_y": 77184, "task_z": 18, "center_y": 59.265529711115697, "area_in_sqm": 6123.5195609331104, "perimeter_in_m": 313.01180286958498, "length_x": 78.320956703482295, "length_y": 78.322567450018198 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.265880628258081, 0.0 ], [ -0.001373291015625, 59.265880628258081, 0.0 ], [ -0.001373291015625, 59.265178793973355, 0.0 ], [ -0.00274658203125, 59.265178793973355, 0.0 ], [ -0.00274658203125, 59.265880628258081, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2414, "task_x": 131070, "task_y": 77216, "task_z": 18, "center_y": 59.243063609861501, "area_in_sqm": 6131.56953287125, "perimeter_in_m": 313.21747810341799, "length_x": 78.372511143927696, "length_y": 78.374122571097999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.243414758399773, 0.0 ], [ -0.001373291015625, 59.243414758399773, 0.0 ], [ -0.001373291015625, 59.242712461323279, 0.0 ], [ -0.00274658203125, 59.242712461323279, 0.0 ], [ -0.00274658203125, 59.243414758399773, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2415, "task_x": 131070, "task_y": 77248, "task_z": 18, "center_y": 59.220582696117802, "area_in_sqm": 6139.6281672716104, "perimeter_in_m": 313.42323946616898, "length_x": 78.424087356150295, "length_y": 78.425699463404698 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.220934076150442, 0.0 ], [ -0.001373291015625, 59.220934076150442, 0.0 ], [ -0.001373291015625, 59.220231316085155, 0.0 ], [ -0.00274658203125, 59.220231316085155, 0.0 ], [ -0.00274658203125, 59.220934076150442, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2416, "task_x": 131070, "task_y": 77280, "task_z": 18, "center_y": 59.198086963581503, "area_in_sqm": 6147.6954679489099, "perimeter_in_m": 313.62908690281398, "length_x": 78.475685322504603, "length_y": 78.477298109290501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.198438575207007, 0.0 ], [ -0.001373291015625, 59.198438575207007, 0.0 ], [ -0.001373291015625, 59.197735351956027, 0.0 ], [ -0.00274658203125, 59.197735351956027, 0.0 ], [ -0.00274658203125, 59.198438575207007, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2417, "task_x": 131070, "task_y": 77312, "task_z": 18, "center_y": 59.175576405954601, "area_in_sqm": 6155.7714388370496, "perimeter_in_m": 313.83502034192099, "length_x": 78.527305025274202, "length_y": 78.528918491036904 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.175928249271351, 0.0 ], [ -0.001373291015625, 59.175928249271351, 0.0 ], [ -0.001373291015625, 59.175224562637922, 0.0 ], [ -0.00274658203125, 59.175224562637922, 0.0 ], [ -0.00274658203125, 59.175928249271351, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2418, "task_x": 131070, "task_y": 77344, "task_z": 18, "center_y": 59.153051016944097, "area_in_sqm": 6163.8560841083499, "perimeter_in_m": 314.04103970200299, "length_x": 78.578946446672802, "length_y": 78.5805605908552 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.153403092050354, 0.0 ], [ -0.001373291015625, 59.153403092050354, 0.0 ], [ -0.001373291015625, 59.152698941837905, 0.0 ], [ -0.00274658203125, 59.152698941837905, 0.0 ], [ -0.00274658203125, 59.153403092050354, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2419, "task_x": 131070, "task_y": 77376, "task_z": 18, "center_y": 59.130510790262001, "area_in_sqm": 6171.9494065046301, "perimeter_in_m": 314.24714491063799, "length_x": 78.6306095688429, "length_y": 78.632224390886094 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.130863097255897, 0.0 ], [ -0.001373291015625, 59.130863097255897, 0.0 ], [ -0.001373291015625, 59.130158483268019, 0.0 ], [ -0.00274658203125, 59.130158483268019, 0.0 ], [ -0.00274658203125, 59.130863097255897, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2420, "task_x": 131070, "task_y": 77408, "task_z": 18, "center_y": 59.107955719625203, "area_in_sqm": 6180.0514104366302, "perimeter_in_m": 314.45333589313702, "length_x": 78.682294373856905, "length_y": 78.683909873199198 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.10830825860495, 0.0 ], [ -0.001373291015625, 59.10830825860495, 0.0 ], [ -0.001373291015625, 59.10760318064537, 0.0 ], [ -0.00274658203125, 59.10760318064537, 0.0 ], [ -0.00274658203125, 59.10830825860495, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2421, "task_x": 131070, "task_y": 77440, "task_z": 18, "center_y": 59.085385798755802, "area_in_sqm": 6188.16210007668, "perimeter_in_m": 314.65961258387102, "length_x": 78.734000843715904, "length_y": 78.735617019793807 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.085738569819497, 0.0 ], [ -0.001373291015625, 59.085738569819497, 0.0 ], [ -0.001373291015625, 59.085033027692106, 0.0 ], [ -0.00274658203125, 59.085033027692106, 0.0 ], [ -0.00274658203125, 59.085738569819497, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2422, "task_x": 131070, "task_y": 77472, "task_z": 18, "center_y": 59.062801021381098, "area_in_sqm": 6196.2814785242099, "perimeter_in_m": 314.86597491351802, "length_x": 78.785728960350198, "length_y": 78.787345812597906 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.063154024626627, 0.0 ], [ -0.001373291015625, 59.063154024626627, 0.0 ], [ -0.001373291015625, 59.06244801813547, 0.0 ], [ -0.00274658203125, 59.06244801813547, 0.0 ], [ -0.00274658203125, 59.063154024626627, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2423, "task_x": 131070, "task_y": 77504, "task_z": 18, "center_y": 59.040201381233203, "area_in_sqm": 6204.4095493555096, "perimeter_in_m": 315.07242279140701, "length_x": 78.837478705619205, "length_y": 78.839096233468695 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.040554616758506, 0.0 ], [ -0.001373291015625, 59.040554616758506, 0.0 ], [ -0.001373291015625, 59.039848145707822, 0.0 ], [ -0.00274658203125, 59.039848145707822, 0.0 ], [ -0.00274658203125, 59.040554616758506, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2424, "task_x": 131070, "task_y": 77536, "task_z": 18, "center_y": 59.017586872049499, "area_in_sqm": 6212.5463169813202, "perimeter_in_m": 315.27895615218199, "length_x": 78.889250061311103, "length_y": 78.890868264191994 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 59.01794033995246, 0.0 ], [ -0.001373291015625, 59.01794033995246, 0.0 ], [ -0.001373291015625, 59.017233404146609, 0.0 ], [ -0.00274658203125, 59.017233404146609, 0.0 ], [ -0.00274658203125, 59.01794033995246, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2425, "task_x": 131070, "task_y": 77568, "task_z": 18, "center_y": 58.994957487572698, "area_in_sqm": 6220.6917847394898, "perimeter_in_m": 315.48557493176401, "length_x": 78.941043009142604, "length_y": 78.942661886482597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.995311187950932, 0.0 ], [ -0.001373291015625, 58.995311187950932, 0.0 ], [ -0.001373291015625, 58.994603787194443, 0.0 ], [ -0.00274658203125, 58.994603787194443, 0.0 ], [ -0.00274658203125, 58.995311187950932, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2426, "task_x": 131070, "task_y": 77600, "task_z": 18, "center_y": 58.972313221550301, "area_in_sqm": 6228.8459560871097, "perimeter_in_m": 315.69227903197202, "length_x": 78.992857530759395, "length_y": 78.994477081983504 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.972667154501522, 0.0 ], [ -0.001373291015625, 58.972667154501522, 0.0 ], [ -0.001373291015625, 58.971959288599109, 0.0 ], [ -0.00274658203125, 58.971959288599109, 0.0 ], [ -0.00274658203125, 58.972667154501522, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2427, "task_x": 131070, "task_y": 77632, "task_z": 18, "center_y": 58.949654067735302, "area_in_sqm": 6237.0088348388699, "perimeter_in_m": 315.89906840329598, "length_x": 79.044693607735098, "length_y": 79.046313832266506 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.950008233357025, 0.0 ], [ -0.001373291015625, 58.950008233357025, 0.0 ], [ -0.001373291015625, 58.949299902113523, 0.0 ], [ -0.00274658203125, 58.949299902113523, 0.0 ], [ -0.00274658203125, 58.950008233357025, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2428, "task_x": 131070, "task_y": 77664, "task_z": 18, "center_y": 58.926980019885697, "area_in_sqm": 6245.1804244518298, "perimeter_in_m": 316.10594295434299, "length_x": 79.096551221572298, "length_y": 79.098172118831798 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.92733441827545, 0.0 ], [ -0.001373291015625, 58.92733441827545, 0.0 ], [ -0.001373291015625, 58.926625621495894, 0.0 ], [ -0.00274658203125, 58.926625621495894, 0.0 ], [ -0.00274658203125, 58.92733441827545, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2429, "task_x": 131070, "task_y": 77696, "task_z": 18, "center_y": 58.904291071764803, "area_in_sqm": 6253.3607292175302, "perimeter_in_m": 316.31290261762598, "length_x": 79.148430353701499, "length_y": 79.150051923107597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.904645703019987, 0.0 ], [ -0.001373291015625, 58.904645703019987, 0.0 ], [ -0.001373291015625, 58.903936440509568, 0.0 ], [ -0.00274658203125, 58.903936440509568, 0.0 ], [ -0.00274658203125, 58.904645703019987, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2430, "task_x": 131070, "task_y": 77728, "task_z": 18, "center_y": 58.881587217141103, "area_in_sqm": 6261.54975175858, "perimeter_in_m": 316.51994731067202, "length_x": 79.2003309854815, "length_y": 79.201953226450598 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.881942081359114, 0.0 ], [ -0.001373291015625, 58.881942081359114, 0.0 ], [ -0.001373291015625, 58.881232352923178, 0.0 ], [ -0.00274658203125, 58.881232352923178, 0.0 ], [ -0.00274658203125, 58.881942081359114, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2431, "task_x": 131070, "task_y": 77760, "task_z": 18, "center_y": 58.858868449788602, "area_in_sqm": 6269.7474966049203, "perimeter_in_m": 316.72707696640902, "length_x": 79.252253098199006, "length_y": 79.253876010145106 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.859223547066577, 0.0 ], [ -0.001373291015625, 58.859223547066577, 0.0 ], [ -0.001373291015625, 58.858513352510627, 0.0 ], [ -0.00274658203125, 58.858513352510627, 0.0 ], [ -0.00274658203125, 58.859223547066577, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2432, "task_x": 131070, "task_y": 77792, "task_z": 18, "center_y": 58.8361347634862, "area_in_sqm": 6277.9539669752103, "perimeter_in_m": 316.93429149146101, "length_x": 79.304196673068901, "length_y": 79.305820255403702 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.836490093921356, 0.0 ], [ -0.001373291015625, 58.836490093921356, 0.0 ], [ -0.001373291015625, 58.83577943305108, 0.0 ], [ -0.00274658203125, 58.83577943305108, 0.0 ], [ -0.00274658203125, 58.836490093921356, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2433, "task_x": 131070, "task_y": 77824, "task_z": 18, "center_y": 58.813386152018403, "area_in_sqm": 6286.1691663265201, "perimeter_in_m": 317.14159083757198, "length_x": 79.356161691233496, "length_y": 79.357785943366594 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.813741715707806, 0.0 ], [ -0.001373291015625, 58.813741715707806, 0.0 ], [ -0.001373291015625, 58.813030588329042, 0.0 ], [ -0.00274658203125, 58.813030588329042, 0.0 ], [ -0.00274658203125, 58.813741715707806, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2434, "task_x": 131070, "task_y": 77856, "task_z": 18, "center_y": 58.790622609174903, "area_in_sqm": 6294.39309859276, "perimeter_in_m": 317.348974901877, "length_x": 79.408148133763106, "length_y": 79.409773055101795 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.790978406215544, 0.0 ], [ -0.001373291015625, 58.790978406215544, 0.0 ], [ -0.001373291015625, 58.790266812134305, 0.0 ], [ -0.00274658203125, 58.790266812134305, 0.0 ], [ -0.00274658203125, 58.790978406215544, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2435, "task_x": 131070, "task_y": 77888, "task_z": 18, "center_y": 58.767844128750802, "area_in_sqm": 6302.6257662773096, "perimeter_in_m": 317.556443616021, "length_x": 79.460155981655404, "length_y": 79.461781571604703 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.768200159239569, 0.0 ], [ -0.001373291015625, 58.768200159239569, 0.0 ], [ -0.001373291015625, 58.767488098262049, 0.0 ], [ -0.00274658203125, 58.767488098262049, 0.0 ], [ -0.00274658203125, 58.768200159239569, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2436, "task_x": 131070, "task_y": 77920, "task_z": 18, "center_y": 58.7450507045465, "area_in_sqm": 6310.8671742677698, "perimeter_in_m": 317.76399690657098, "length_x": 79.5121852158357, "length_y": 79.513811473798498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.745406968580276, 0.0 ], [ -0.001373291015625, 58.745406968580276, 0.0 ], [ -0.001373291015625, 58.744694440512802, 0.0 ], [ -0.00274658203125, 58.744694440512802, 0.0 ], [ -0.00274658203125, 58.745406968580276, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2437, "task_x": 131070, "task_y": 77952, "task_z": 18, "center_y": 58.722242330367898, "area_in_sqm": 6319.1173247098905, "perimeter_in_m": 317.97163468223999, "length_x": 79.5642358171567, "length_y": 79.565862742533199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.722598828043374, 0.0 ], [ -0.001373291015625, 58.722598828043374, 0.0 ], [ -0.001373291015625, 58.721885832692486, 0.0 ], [ -0.00274658203125, 58.721885832692486, 0.0 ], [ -0.00274658203125, 58.722598828043374, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2438, "task_x": 131070, "task_y": 77984, "task_z": 18, "center_y": 58.699419000026197, "area_in_sqm": 6327.3762221336401, "perimeter_in_m": 318.17935689051399, "length_x": 79.616307766398094, "length_y": 79.617935358586607 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.699775731440056, 0.0 ], [ -0.001373291015625, 58.699775731440056, 0.0 ], [ -0.001373291015625, 58.699062268612423, 0.0 ], [ -0.00274658203125, 58.699062268612423, 0.0 ], [ -0.00274658203125, 58.699775731440056, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2439, "task_x": 131070, "task_y": 78016, "task_z": 18, "center_y": 58.676580707338204, "area_in_sqm": 6335.6438690424002, "perimeter_in_m": 318.38716343487999, "length_x": 79.668401044266801, "length_y": 79.670029302663295 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.676937672586917, 0.0 ], [ -0.001373291015625, 58.676937672586917, 0.0 ], [ -0.001373291015625, 58.676223742089391, 0.0 ], [ -0.00274658203125, 58.676223742089391, 0.0 ], [ -0.00274658203125, 58.676937672586917, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2440, "task_x": 131070, "task_y": 78048, "task_z": 18, "center_y": 58.653727446125799, "area_in_sqm": 6343.9202703237497, "perimeter_in_m": 318.59505423352198, "length_x": 79.720515631396793, "length_y": 79.722144555394905 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.654084645305979, 0.0 ], [ -0.001373291015625, 58.654084645305979, 0.0 ], [ -0.001373291015625, 58.653370246945599, 0.0 ], [ -0.00274658203125, 58.653370246945599, 0.0 ], [ -0.00274658203125, 58.654084645305979, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2441, "task_x": 131070, "task_y": 78080, "task_z": 18, "center_y": 58.630859210216798, "area_in_sqm": 6352.2054277658499, "perimeter_in_m": 318.80302921156402, "length_x": 79.772651508349, "length_y": 79.774281097340094 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.631216643424771, 0.0 ], [ -0.001373291015625, 58.631216643424771, 0.0 ], [ -0.001373291015625, 58.630501777008746, 0.0 ], [ -0.00274658203125, 58.630501777008746, 0.0 ], [ -0.00274658203125, 58.631216643424771, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2442, "task_x": 131070, "task_y": 78112, "task_z": 18, "center_y": 58.6079759934442, "area_in_sqm": 6360.4993458986301, "perimeter_in_m": 319.01108829397202, "length_x": 79.824808655611093, "length_y": 79.826438908984002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.608333660776339, 0.0 ], [ -0.001373291015625, 58.608333660776339, 0.0 ], [ -0.001373291015625, 58.607618326112018, 0.0 ], [ -0.00274658203125, 58.607618326112018, 0.0 ], [ -0.00274658203125, 58.608333660776339, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2443, "task_x": 131070, "task_y": 78144, "task_z": 18, "center_y": 58.585077789646597, "area_in_sqm": 6368.8020271062896, "perimeter_in_m": 319.21923139495601, "length_x": 79.876987053597205, "length_y": 79.878617970738802 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.585435691199159, 0.0 ], [ -0.001373291015625, 58.585435691199159, 0.0 ], [ -0.001373291015625, 58.584719888094099, 0.0 ], [ -0.00274658203125, 58.584719888094099, 0.0 ], [ -0.00274658203125, 58.585435691199159, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2444, "task_x": 131070, "task_y": 78176, "task_z": 18, "center_y": 58.562164592668303, "area_in_sqm": 6377.1134759187698, "perimeter_in_m": 319.42745843638198, "length_x": 79.929186682648094, "length_y": 79.930818262943006 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.562522728537331, 0.0 ], [ -0.001373291015625, 58.562522728537331, 0.0 ], [ -0.001373291015625, 58.561806456799253, 0.0 ], [ -0.00274658203125, 58.561806456799253, 0.0 ], [ -0.00274658203125, 58.562522728537331, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2445, "task_x": 131070, "task_y": 78208, "task_z": 18, "center_y": 58.539236396358902, "area_in_sqm": 6385.4336954355203, "perimeter_in_m": 319.63576934770902, "length_x": 79.981407523031194, "length_y": 79.983039765861406 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.539594766640484, 0.0 ], [ -0.001373291015625, 58.539594766640484, 0.0 ], [ -0.001373291015625, 58.538878026077256, 0.0 ], [ -0.00274658203125, 58.538878026077256, 0.0 ], [ -0.00274658203125, 58.539594766640484, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2446, "task_x": 131070, "task_y": 78240, "task_z": 18, "center_y": 58.516293194573599, "area_in_sqm": 6393.7626879215204, "perimeter_in_m": 319.844164037067, "length_x": 80.033649554939998, "length_y": 80.035282459685405 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.516651799363785, 0.0 ], [ -0.001373291015625, 58.516651799363785, 0.0 ], [ -0.001373291015625, 58.515934589783484, 0.0 ], [ -0.00274658203125, 58.515934589783484, 0.0 ], [ -0.00274658203125, 58.516651799363785, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2447, "task_x": 131070, "task_y": 78272, "task_z": 18, "center_y": 58.493334981173497, "area_in_sqm": 6402.1004577875101, "perimeter_in_m": 320.052642430106, "length_x": 80.085912758494302, "length_y": 80.087546324532497 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.493693820568062, 0.0 ], [ -0.001373291015625, 58.493693820568062, 0.0 ], [ -0.001373291015625, 58.492976141778925, 0.0 ], [ -0.00274658203125, 58.492976141778925, 0.0 ], [ -0.00274658203125, 58.493693820568062, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2448, "task_x": 131070, "task_y": 78304, "task_z": 18, "center_y": 58.470361750024999, "area_in_sqm": 6410.4470078945196, "perimeter_in_m": 320.26120444241599, "length_x": 80.138197113739807, "length_y": 80.139831340446094 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.470720824119724, 0.0 ], [ -0.001373291015625, 58.470720824119724, 0.0 ], [ -0.001373291015625, 58.470002675930175, 0.0 ], [ -0.00274658203125, 58.470002675930175, 0.0 ], [ -0.00274658203125, 58.470720824119724, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2449, "task_x": 131070, "task_y": 78336, "task_z": 18, "center_y": 58.4473734950002, "area_in_sqm": 6418.8023420572299, "perimeter_in_m": 320.46984999511602, "length_x": 80.1905026006486, "length_y": 80.192137487395897 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.44773280389083, 0.0 ], [ -0.001373291015625, 58.44773280389083, 0.0 ], [ -0.001373291015625, 58.447014186109456, 0.0 ], [ -0.00274658203125, 58.447014186109456, 0.0 ], [ -0.00274658203125, 58.44773280389083, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2450, "task_x": 131070, "task_y": 78368, "task_z": 18, "center_y": 58.4243702099769, "area_in_sqm": 6427.16646301746, "perimeter_in_m": 320.67857900067298, "length_x": 80.242829199118304, "length_y": 80.244464745277099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.424729753759109, 0.0 ], [ -0.001373291015625, 58.424729753759109, 0.0 ], [ -0.001373291015625, 58.42401066619469, 0.0 ], [ -0.00274658203125, 58.42401066619469, 0.0 ], [ -0.00274658203125, 58.424729753759109, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2451, "task_x": 131070, "task_y": 78400, "task_z": 18, "center_y": 58.401351888838697, "area_in_sqm": 6435.5393737554596, "perimeter_in_m": 320.887391388401, "length_x": 80.295176888972307, "length_y": 80.296813093910899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.401711667607977, 0.0 ], [ -0.001373291015625, 58.401711667607977, 0.0 ], [ -0.001373291015625, 58.40099211006946, 0.0 ], [ -0.00274658203125, 58.40099211006946, 0.0 ], [ -0.00274658203125, 58.401711667607977, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2452, "task_x": 131070, "task_y": 78432, "task_z": 18, "center_y": 58.378318525474803, "area_in_sqm": 6443.9210780859003, "perimeter_in_m": 321.09628705772701, "length_x": 80.347545649959699, "length_y": 80.349182513044099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.378678539326543, 0.0 ], [ -0.001373291015625, 58.378678539326543, 0.0 ], [ -0.001373291015625, 58.377958511623049, 0.0 ], [ -0.00274658203125, 58.377958511623049, 0.0 ], [ -0.00274658203125, 58.378678539326543, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2453, "task_x": 131070, "task_y": 78464, "task_z": 18, "center_y": 58.355270113780101, "area_in_sqm": 6452.3115787506104, "perimeter_in_m": 321.30526593908701, "length_x": 80.399935461755007, "length_y": 80.401572982348696 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.355630362809649, 0.0 ], [ -0.001373291015625, 58.355630362809649, 0.0 ], [ -0.001373291015625, 58.354909864750489, 0.0 ], [ -0.00274658203125, 58.354909864750489, 0.0 ], [ -0.00274658203125, 58.355630362809649, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2454, "task_x": 131070, "task_y": 78496, "task_z": 18, "center_y": 58.332206647655198, "area_in_sqm": 6460.7108800411197, "perimeter_in_m": 321.51432796344699, "length_x": 80.452346303958294, "length_y": 80.453984481422793 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.332567131957894, 0.0 ], [ -0.001373291015625, 58.332567131957894, 0.0 ], [ -0.001373291015625, 58.331846163352544, 0.0 ], [ -0.00274658203125, 58.331846163352544, 0.0 ], [ -0.00274658203125, 58.332567131957894, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2455, "task_x": 131070, "task_y": 78528, "task_z": 18, "center_y": 58.309128121006701, "area_in_sqm": 6469.1189837455804, "perimeter_in_m": 321.72347301920303, "length_x": 80.504778156094702, "length_y": 80.506416989789003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.309488840677631, 0.0 ], [ -0.001373291015625, 58.309488840677631, 0.0 ], [ -0.001373291015625, 58.308767401335764, 0.0 ], [ -0.00274658203125, 58.308767401335764, 0.0 ], [ -0.00274658203125, 58.309488840677631, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2456, "task_x": 131070, "task_y": 78560, "task_z": 18, "center_y": 58.2860345277468, "area_in_sqm": 6477.5358937978699, "perimeter_in_m": 321.932701039856, "length_x": 80.557230997614795, "length_y": 80.558870486895401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.286395482881019, 0.0 ], [ -0.001373291015625, 58.286395482881019, 0.0 ], [ -0.001373291015625, 58.285673572612488, 0.0 ], [ -0.00274658203125, 58.285673572612488, 0.0 ], [ -0.00274658203125, 58.286395482881019, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2457, "task_x": 131070, "task_y": 78592, "task_z": 18, "center_y": 58.262925861793398, "area_in_sqm": 6485.9616122245798, "perimeter_in_m": 322.14201193896099, "length_x": 80.609704807894104, "length_y": 80.611344952115203 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.263287052486007, 0.0 ], [ -0.001373291015625, 58.263287052486007, 0.0 ], [ -0.001373291015625, 58.26256467110084, 0.0 ], [ -0.00274658203125, 58.26256467110084, 0.0 ], [ -0.00274658203125, 58.263287052486007, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2458, "task_x": 131070, "task_y": 78624, "task_z": 18, "center_y": 58.239802117070603, "area_in_sqm": 6494.3961441516904, "perimeter_in_m": 322.35140562920799, "length_x": 80.662199566232999, "length_y": 80.663840364746605 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.240163543416422, 0.0 ], [ -0.001373291015625, 58.240163543416422, 0.0 ], [ -0.001373291015625, 58.239440690724827, 0.0 ], [ -0.00274658203125, 58.239440690724827, 0.0 ], [ -0.00274658203125, 58.240163543416422, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2459, "task_x": 131070, "task_y": 78656, "task_z": 18, "center_y": 58.216663287508098, "area_in_sqm": 6502.8394908905002, "perimeter_in_m": 322.56088203517402, "length_x": 80.714715251856603, "length_y": 80.716356704012298 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.2170249496019, 0.0 ], [ -0.001373291015625, 58.2170249496019, 0.0 ], [ -0.001373291015625, 58.216301625414282, 0.0 ], [ -0.00274658203125, 58.216301625414282, 0.0 ], [ -0.00274658203125, 58.2170249496019, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2460, "task_x": 131070, "task_y": 78688, "task_z": 18, "center_y": 58.193509367041401, "area_in_sqm": 6511.2916564941397, "perimeter_in_m": 322.77044105933999, "length_x": 80.767251843915204, "length_y": 80.7688939490601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.193871264977972, 0.0 ], [ -0.001373291015625, 58.193871264977972, 0.0 ], [ -0.001373291015625, 58.1931474691049, 0.0 ], [ -0.00274658203125, 58.1931474691049, 0.0 ], [ -0.00274658203125, 58.193871264977972, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2461, "task_x": 131070, "task_y": 78720, "task_z": 18, "center_y": 58.170340349612196, "area_in_sqm": 6519.7526440620404, "perimeter_in_m": 322.98008262598103, "length_x": 80.819809321483007, "length_y": 80.821452078962196 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.170702483486089, 0.0 ], [ -0.001373291015625, 58.170702483486089, 0.0 ], [ -0.001373291015625, 58.169978215738325, 0.0 ], [ -0.00274658203125, 58.169978215738325, 0.0 ], [ -0.00274658203125, 58.170702483486089, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2462, "task_x": 131070, "task_y": 78752, "task_z": 18, "center_y": 58.147156229167798, "area_in_sqm": 6528.2224553823498, "perimeter_in_m": 323.18980664436799, "length_x": 80.872387663559394, "length_y": 80.874031072715198 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.147518599073571, 0.0 ], [ -0.001373291015625, 58.147518599073571, 0.0 ], [ -0.001373291015625, 58.14679385926209, 0.0 ], [ -0.00274658203125, 58.14679385926209, 0.0 ], [ -0.00274658203125, 58.147518599073571, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2463, "task_x": 131070, "task_y": 78784, "task_z": 18, "center_y": 58.123956999661701, "area_in_sqm": 6536.7010952234295, "perimeter_in_m": 323.39961303067099, "length_x": 80.924986849067494, "length_y": 80.926630909240203 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.124319605693749, 0.0 ], [ -0.001373291015625, 58.124319605693749, 0.0 ], [ -0.001373291015625, 58.123594393629674, 0.0 ], [ -0.00274658203125, 58.123594393629674, 0.0 ], [ -0.00274658203125, 58.124319605693749, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2464, "task_x": 131070, "task_y": 78816, "task_z": 18, "center_y": 58.100742655053203, "area_in_sqm": 6545.1885657310504, "perimeter_in_m": 323.609501705176, "length_x": 80.977606856855303, "length_y": 80.979251567382505 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.101105497305866, 0.0 ], [ -0.001373291015625, 58.101105497305866, 0.0 ], [ -0.001373291015625, 58.100379812800526, 0.0 ], [ -0.00274658203125, 58.100379812800526, 0.0 ], [ -0.00274658203125, 58.101105497305866, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2465, "task_x": 131070, "task_y": 78848, "task_z": 18, "center_y": 58.077513189307602, "area_in_sqm": 6553.6848696470297, "perimeter_in_m": 323.81947258305598, "length_x": 81.030247665694304, "length_y": 81.031893025911501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.077876267875169, 0.0 ], [ -0.001373291015625, 58.077876267875169, 0.0 ], [ -0.001373291015625, 58.07715011074005, 0.0 ], [ -0.00274658203125, 58.07715011074005, 0.0 ], [ -0.00274658203125, 58.077876267875169, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2466, "task_x": 131070, "task_y": 78880, "task_z": 18, "center_y": 58.054268596396298, "area_in_sqm": 6562.1900104284296, "perimeter_in_m": 324.02952556731299, "length_x": 81.082909254280594, "length_y": 81.084555263520798 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.054631911372908, 0.0 ], [ -0.001373291015625, 58.054631911372908, 0.0 ], [ -0.001373291015625, 58.053905281419716, 0.0 ], [ -0.00274658203125, 58.053905281419716, 0.0 ], [ -0.00274658203125, 58.054631911372908, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2467, "task_x": 131070, "task_y": 78912, "task_z": 18, "center_y": 58.031008870296702, "area_in_sqm": 6570.7039904594403, "perimeter_in_m": 324.23966056574, "length_x": 81.135591601233799, "length_y": 81.137238258827594 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.031372421776368, 0.0 ], [ -0.001373291015625, 58.031372421776368, 0.0 ], [ -0.001373291015625, 58.030645318817008, 0.0 ], [ -0.00274658203125, 58.030645318817008, 0.0 ], [ -0.00274658203125, 58.031372421776368, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2468, "task_x": 131070, "task_y": 78944, "task_z": 18, "center_y": 58.007734004992201, "area_in_sqm": 6579.2268133163498, "perimeter_in_m": 324.44987751357002, "length_x": 81.188294685097503, "length_y": 81.1899419903732 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 58.008097793068877, 0.0 ], [ -0.001373291015625, 58.008097793068877, 0.0 ], [ -0.001373291015625, 58.007370216915426, 0.0 ], [ -0.00274658203125, 58.007370216915426, 0.0 ], [ -0.00274658203125, 58.008097793068877, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2469, "task_x": 131070, "task_y": 78976, "task_z": 18, "center_y": 57.984443994472201, "area_in_sqm": 6587.7584820985803, "perimeter_in_m": 324.66017631121798, "length_x": 81.241018484338895, "length_y": 81.2426664366224 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.984808019239857, 0.0 ], [ -0.001373291015625, 57.984808019239857, 0.0 ], [ -0.001373291015625, 57.984079969704567, 0.0 ], [ -0.00274658203125, 57.984079969704567, 0.0 ], [ -0.00274658203125, 57.984808019239857, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2470, "task_x": 131070, "task_y": 79008, "task_z": 18, "center_y": 57.961138832732502, "area_in_sqm": 6596.2989987134897, "perimeter_in_m": 324.87055686462099, "length_x": 81.293762977348806, "length_y": 81.295411575963499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.961503094284794, 0.0 ], [ -0.001373291015625, 57.961503094284794, 0.0 ], [ -0.001373291015625, 57.960774571180131, 0.0 ], [ -0.00274658203125, 57.960774571180131, 0.0 ], [ -0.00274658203125, 57.961503094284794, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2471, "task_x": 131070, "task_y": 79040, "task_z": 18, "center_y": 57.937818513774602, "area_in_sqm": 6604.8483668565796, "perimeter_in_m": 325.08101908943701, "length_x": 81.3465281424415, "length_y": 81.3481773867084 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.938183012205315, 0.0 ], [ -0.001373291015625, 57.938183012205315, 0.0 ], [ -0.001373291015625, 57.937454015343938, 0.0 ], [ -0.00274658203125, 57.937454015343938, 0.0 ], [ -0.00274658203125, 57.938183012205315, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2472, "task_x": 131070, "task_y": 79072, "task_z": 18, "center_y": 57.914483031606601, "area_in_sqm": 6613.4065889120102, "perimeter_in_m": 325.29156291252798, "length_x": 81.399313957854304, "length_y": 81.400963847092399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.914847767009185, 0.0 ], [ -0.001373291015625, 57.914847767009185, 0.0 ], [ -0.001373291015625, 57.914118296203917, 0.0 ], [ -0.00274658203125, 57.914118296203917, 0.0 ], [ -0.00274658203125, 57.914847767009185, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2473, "task_x": 131070, "task_y": 79104, "task_z": 18, "center_y": 57.891132380242297, "area_in_sqm": 6621.9736679792404, "perimeter_in_m": 325.50218822519798, "length_x": 81.452120401748402, "length_y": 81.453770935273695 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.89149735271031, 0.0 ], [ -0.001373291015625, 57.89149735271031, 0.0 ], [ -0.001373291015625, 57.890767407774199, 0.0 ], [ -0.00274658203125, 57.890767407774199, 0.0 ], [ -0.00274658203125, 57.89149735271031, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2474, "task_x": 131070, "task_y": 79136, "task_z": 18, "center_y": 57.867766553701898, "area_in_sqm": 6630.5496070384997, "perimeter_in_m": 325.71289495114399, "length_x": 81.504947452207503, "length_y": 81.506598629333993 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.868131763328805, 0.0 ], [ -0.001373291015625, 57.868131763328805, 0.0 ], [ -0.001373291015625, 57.867401344075077, 0.0 ], [ -0.00274658203125, 57.867401344075077, 0.0 ], [ -0.00274658203125, 57.868131763328805, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2475, "task_x": 131070, "task_y": 79168, "task_z": 18, "center_y": 57.844385546011999, "area_in_sqm": 6639.1344084739703, "perimeter_in_m": 325.92368299058501, "length_x": 81.557795087238404, "length_y": 81.559446907277504 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.844750992890987, 0.0 ], [ -0.001373291015625, 57.844750992890987, 0.0 ], [ -0.001373291015625, 57.844020099133054, 0.0 ], [ -0.00274658203125, 57.844020099133054, 0.0 ], [ -0.00274658203125, 57.844750992890987, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2476, "task_x": 131070, "task_y": 79200, "task_z": 18, "center_y": 57.8209893512051, "area_in_sqm": 6647.7280752658799, "perimeter_in_m": 326.13455226762397, "length_x": 81.610663284771206, "length_y": 81.612315747032 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.821355035429363, 0.0 ], [ -0.001373291015625, 57.821355035429363, 0.0 ], [ -0.001373291015625, 57.82062366698085, 0.0 ], [ -0.00274658203125, 57.82062366698085, 0.0 ], [ -0.00274658203125, 57.821355035429363, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2477, "task_x": 131070, "task_y": 79232, "task_z": 18, "center_y": 57.797577963320101, "area_in_sqm": 6656.3306103944797, "perimeter_in_m": 326.34550268639401, "length_x": 81.663552022657996, "length_y": 81.665205126447304 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.797943884982743, 0.0 ], [ -0.001373291015625, 57.797943884982743, 0.0 ], [ -0.001373291015625, 57.79721204165746, 0.0 ], [ -0.00274658203125, 57.79721204165746, 0.0 ], [ -0.00274658203125, 57.797943884982743, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2478, "task_x": 131070, "task_y": 79264, "task_z": 18, "center_y": 57.774151376402202, "area_in_sqm": 6664.9420160055197, "perimeter_in_m": 326.55653414381902, "length_x": 81.716461278674402, "length_y": 81.718115023296207 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.774517535596182, 0.0 ], [ -0.001373291015625, 57.774517535596182, 0.0 ], [ -0.001373291015625, 57.773785217208143, 0.0 ], [ -0.00274658203125, 57.773785217208143, 0.0 ], [ -0.00274658203125, 57.774517535596182, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2479, "task_x": 131070, "task_y": 79296, "task_z": 18, "center_y": 57.750709584502701, "area_in_sqm": 6673.5622961521103, "perimeter_in_m": 326.76764657413997, "length_x": 81.769391030517895, "length_y": 81.771045415274102 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.751075981321009, 0.0 ], [ -0.001373291015625, 57.751075981321009, 0.0 ], [ -0.001373291015625, 57.750343187684422, 0.0 ], [ -0.00274658203125, 57.750343187684422, 0.0 ], [ -0.00274658203125, 57.751075981321009, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2480, "task_x": 131070, "task_y": 79328, "task_z": 18, "center_y": 57.727252581679501, "area_in_sqm": 6682.19145154953, "perimeter_in_m": 326.97883986760201, "length_x": 81.822341255808794, "length_y": 81.823996279998696 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.727619216214926, 0.0 ], [ -0.001373291015625, 57.727619216214926, 0.0 ], [ -0.001373291015625, 57.726885947144176, 0.0 ], [ -0.00274658203125, 57.726885947144176, 0.0 ], [ -0.00274658203125, 57.727619216214926, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2481, "task_x": 131070, "task_y": 79360, "task_z": 18, "center_y": 57.703780361996799, "area_in_sqm": 6690.8294862508801, "perimeter_in_m": 327.19011394328697, "length_x": 81.875311932089303, "length_y": 81.876967595010001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.70414723434191, 0.0 ], [ -0.001373291015625, 57.70414723434191, 0.0 ], [ -0.001373291015625, 57.703413489651631, 0.0 ], [ -0.00274658203125, 57.703413489651631, 0.0 ], [ -0.00274658203125, 57.70414723434191, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2482, "task_x": 131070, "task_y": 79392, "task_z": 18, "center_y": 57.680292919524803, "area_in_sqm": 6699.4764027595502, "perimeter_in_m": 327.40146869890202, "length_x": 81.928303036824403, "length_y": 81.929959337770299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.680660029772348, 0.0 ], [ -0.001373291015625, 57.680660029772348, 0.0 ], [ -0.001373291015625, 57.679925809277314, 0.0 ], [ -0.00274658203125, 57.679925809277314, 0.0 ], [ -0.00274658203125, 57.680660029772348, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2483, "task_x": 131070, "task_y": 79424, "task_z": 18, "center_y": 57.656790248340599, "area_in_sqm": 6708.1322034597397, "perimeter_in_m": 327.61290405888701, "length_x": 81.981314547400501, "length_y": 81.982971485663796 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.657157596582977, 0.0 ], [ -0.001373291015625, 57.657157596582977, 0.0 ], [ -0.001373291015625, 57.656422900098192, 0.0 ], [ -0.00274658203125, 57.656422900098192, 0.0 ], [ -0.00274658203125, 57.657157596582977, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2484, "task_x": 131070, "task_y": 79456, "task_z": 18, "center_y": 57.633272342527299, "area_in_sqm": 6716.7968907356299, "perimeter_in_m": 327.82441991213801, "length_x": 82.034346441126502, "length_y": 82.036004015996596 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.633639928856958, 0.0 ], [ -0.001373291015625, 57.633639928856958, 0.0 ], [ -0.001373291015625, 57.632904756197647, 0.0 ], [ -0.00274658203125, 57.632904756197647, 0.0 ], [ -0.00274658203125, 57.633639928856958, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2485, "task_x": 131070, "task_y": 79488, "task_z": 18, "center_y": 57.609739196174601, "area_in_sqm": 6725.4704681634903, "perimeter_in_m": 328.03601618066199, "length_x": 82.087398695232906, "length_y": 82.089056905997097 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.61010702068387, 0.0 ], [ -0.001373291015625, 57.61010702068387, 0.0 ], [ -0.001373291015625, 57.609371371665425, 0.0 ], [ -0.00274658203125, 57.609371371665425, 0.0 ], [ -0.00274658203125, 57.61010702068387, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2486, "task_x": 131070, "task_y": 79520, "task_z": 18, "center_y": 57.586190803378798, "area_in_sqm": 6734.1529372930499, "perimeter_in_m": 328.24769277073898, "length_x": 82.140471286871801, "length_y": 82.142130132814998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.58655886615977, 0.0 ], [ -0.001373291015625, 57.58655886615977, 0.0 ], [ -0.001373291015625, 57.585822740597784, 0.0 ], [ -0.00274658203125, 57.585822740597784, 0.0 ], [ -0.00274658203125, 57.58655886615977, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2487, "task_x": 131070, "task_y": 79552, "task_z": 18, "center_y": 57.5626271582423, "area_in_sqm": 6742.8443006277103, "perimeter_in_m": 328.45944958141899, "length_x": 82.193564193117297, "length_y": 82.195223673521596 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.562995459387125, 0.0 ], [ -0.001373291015625, 57.562995459387125, 0.0 ], [ -0.001373291015625, 57.562258857097426, 0.0 ], [ -0.00274658203125, 57.562258857097426, 0.0 ], [ -0.00274658203125, 57.562995459387125, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2488, "task_x": 131070, "task_y": 79584, "task_z": 18, "center_y": 57.539048254874302, "area_in_sqm": 6751.5445618629501, "perimeter_in_m": 328.67128652928, "length_x": 82.246677390964607, "length_y": 82.248337505110001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.539416794474974, 0.0 ], [ -0.001373291015625, 57.539416794474974, 0.0 ], [ -0.001373291015625, 57.538679715273553, 0.0 ], [ -0.00274658203125, 57.538679715273553, 0.0 ], [ -0.00274658203125, 57.539416794474974, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2489, "task_x": 131070, "task_y": 79616, "task_z": 18, "center_y": 57.515454087390403, "area_in_sqm": 6760.2537226676905, "perimeter_in_m": 328.88320351093199, "length_x": 82.299810857330797, "length_y": 82.301471604494495 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.515822865538816, 0.0 ], [ -0.001373291015625, 57.515822865538816, 0.0 ], [ -0.001373291015625, 57.515085309241911, 0.0 ], [ -0.00274658203125, 57.515085309241911, 0.0 ], [ -0.00274658203125, 57.515822865538816, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2490, "task_x": 131070, "task_y": 79648, "task_z": 18, "center_y": 57.4918446499127, "area_in_sqm": 6768.9717851877203, "perimeter_in_m": 329.09520044688497, "length_x": 82.352964569053597, "length_y": 82.354625948510702 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.492213666700728, 0.0 ], [ -0.001373291015625, 57.492213666700728, 0.0 ], [ -0.001373291015625, 57.491475633124743, 0.0 ], [ -0.00274658203125, 57.491475633124743, 0.0 ], [ -0.00274658203125, 57.492213666700728, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2491, "task_x": 131070, "task_y": 79680, "task_z": 18, "center_y": 57.468219936570101, "area_in_sqm": 6777.6987529993103, "perimeter_in_m": 329.30727723202801, "length_x": 82.406138502892404, "length_y": 82.407800513915305 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.468589192089333, 0.0 ], [ -0.001373291015625, 57.468589192089333, 0.0 ], [ -0.001373291015625, 57.467850681050884, 0.0 ], [ -0.00274658203125, 57.467850681050884, 0.0 ], [ -0.00274658203125, 57.468589192089333, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2492, "task_x": 131070, "task_y": 79712, "task_z": 18, "center_y": 57.4445799414978, "area_in_sqm": 6786.4346276521701, "perimeter_in_m": 329.51943377027499, "length_x": 82.459332635527602, "length_y": 82.460995277386303 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.444949435839831, 0.0 ], [ -0.001373291015625, 57.444949435839831, 0.0 ], [ -0.001373291015625, 57.444210447155776, 0.0 ], [ -0.00274658203125, 57.444210447155776, 0.0 ], [ -0.00274658203125, 57.444949435839831, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2493, "task_x": 131070, "task_y": 79744, "task_z": 18, "center_y": 57.420924658837698, "area_in_sqm": 6795.1794123649597, "perimeter_in_m": 329.73166997388302, "length_x": 82.512546943560196, "length_y": 82.514210215522098 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.421294392094048, 0.0 ], [ -0.001373291015625, 57.421294392094048, 0.0 ], [ -0.001373291015625, 57.420554925581399, 0.0 ], [ -0.00274658203125, 57.420554925581399, 0.0 ], [ -0.00274658203125, 57.421294392094048, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2494, "task_x": 131070, "task_y": 79776, "task_z": 18, "center_y": 57.397254082738399, "area_in_sqm": 6803.9331088066101, "perimeter_in_m": 329.94398574222299, "length_x": 82.565781403512304, "length_y": 82.567445304842593 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.397624055000442, 0.0 ], [ -0.001373291015625, 57.397624055000442, 0.0 ], [ -0.001373291015625, 57.396884110476456, 0.0 ], [ -0.00274658203125, 57.396884110476456, 0.0 ], [ -0.00274658203125, 57.397624055000442, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2495, "task_x": 131070, "task_y": 79808, "task_z": 18, "center_y": 57.373568207355198, "area_in_sqm": 6812.69571948051, "perimeter_in_m": 330.15638097872397, "length_x": 82.619035991826706, "length_y": 82.620700521787896 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.373938418714097, 0.0 ], [ -0.001373291015625, 57.373938418714097, 0.0 ], [ -0.001373291015625, 57.373197995996243, 0.0 ], [ -0.00274658203125, 57.373197995996243, 0.0 ], [ -0.00274658203125, 57.373938418714097, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2496, "task_x": 131070, "task_y": 79840, "task_z": 18, "center_y": 57.3498670268498, "area_in_sqm": 6821.4672471284903, "perimeter_in_m": 330.368855593771, "length_x": 82.672310684866702, "length_y": 82.673975842718804 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.350237477396817, 0.0 ], [ -0.001373291015625, 57.350237477396817, 0.0 ], [ -0.001373291015625, 57.349496576302741, 0.0 ], [ -0.00274658203125, 57.349496576302741, 0.0 ], [ -0.00274658203125, 57.350237477396817, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2497, "task_x": 131070, "task_y": 79872, "task_z": 18, "center_y": 57.326150535390902, "area_in_sqm": 6830.2476936578796, "perimeter_in_m": 330.58140948977501, "length_x": 82.725605458916107, "length_y": 82.727271243916704 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.326521225217078, 0.0 ], [ -0.001373291015625, 57.326521225217078, 0.0 ], [ -0.001373291015625, 57.325779845564661, 0.0 ], [ -0.00274658203125, 57.325779845564661, 0.0 ], [ -0.00274658203125, 57.326521225217078, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2498, "task_x": 131070, "task_y": 79904, "task_z": 18, "center_y": 57.3024187271537, "area_in_sqm": 6839.0370619297, "perimeter_in_m": 330.79404256689003, "length_x": 82.778920290179101, "length_y": 82.780586701583303 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.302789656350079, 0.0 ], [ -0.001373291015625, 57.302789656350079, 0.0 ], [ -0.001373291015625, 57.3020477979574, 0.0 ], [ -0.00274658203125, 57.3020477979574, 0.0 ], [ -0.00274658203125, 57.302789656350079, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2499, "task_x": 131070, "task_y": 79936, "task_z": 18, "center_y": 57.2786715963205, "area_in_sqm": 6847.8353538513202, "perimeter_in_m": 331.00675473498501, "length_x": 82.83225515478, "length_y": 82.8339221918405 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.279042764977774, 0.0 ], [ -0.001373291015625, 57.279042764977774, 0.0 ], [ -0.001373291015625, 57.278300427663126, 0.0 ], [ -0.00274658203125, 57.278300427663126, 0.0 ], [ -0.00274658203125, 57.279042764977774, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2500, "task_x": 131070, "task_y": 79968, "task_z": 18, "center_y": 57.2549091370798, "area_in_sqm": 6856.6425718069104, "perimeter_in_m": 331.21954588611902, "length_x": 82.885610028763594, "length_y": 82.8872776907304 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.255280545288883, 0.0 ], [ -0.001373291015625, 57.255280545288883, 0.0 ], [ -0.001373291015625, 57.254537728870787, 0.0 ], [ -0.00274658203125, 57.254537728870787, 0.0 ], [ -0.00274658203125, 57.255280545288883, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2501, "task_x": 131070, "task_y": 80000, "task_z": 18, "center_y": 57.231131343627503, "area_in_sqm": 6865.4587184190796, "perimeter_in_m": 331.43241593409499, "length_x": 82.938984888094296, "length_y": 82.940653174215001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.231502991478912, 0.0 ], [ -0.001373291015625, 57.231502991478912, 0.0 ], [ -0.001373291015625, 57.230759695776079, 0.0 ], [ -0.00274658203125, 57.230759695776079, 0.0 ], [ -0.00274658203125, 57.231502991478912, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2502, "task_x": 131070, "task_y": 80032, "task_z": 18, "center_y": 57.207338210165901, "area_in_sqm": 6874.28379559517, "perimeter_in_m": 331.64536478054498, "length_x": 82.992379708656699, "length_y": 82.994048618176507 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.20771009775018, 0.0 ], [ -0.001373291015625, 57.20771009775018, 0.0 ], [ -0.001373291015625, 57.206966322581536, 0.0 ], [ -0.00274658203125, 57.206966322581536, 0.0 ], [ -0.00274658203125, 57.20771009775018, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2503, "task_x": 131070, "task_y": 80064, "task_z": 18, "center_y": 57.183529730904198, "area_in_sqm": 6883.1178052425403, "perimeter_in_m": 331.85839231561499, "length_x": 83.045794466254904, "length_y": 83.047463998416305 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.183901858311863, 0.0 ], [ -0.001373291015625, 57.183901858311863, 0.0 ], [ -0.001373291015625, 57.183157603496568, 0.0 ], [ -0.00274658203125, 57.183157603496568, 0.0 ], [ -0.00274658203125, 57.183901858311863, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2504, "task_x": 131070, "task_y": 80096, "task_z": 18, "center_y": 57.159705900058697, "area_in_sqm": 6891.9607502222098, "perimeter_in_m": 332.071498458289, "length_x": 83.099229136613104, "length_y": 83.100899290656201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.160078267379973, 0.0 ], [ -0.001373291015625, 57.160078267379973, 0.0 ], [ -0.001373291015625, 57.159333532737371, 0.0 ], [ -0.00274658203125, 57.159333532737371, 0.0 ], [ -0.00274658203125, 57.160078267379973, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2505, "task_x": 131070, "task_y": 80128, "task_z": 18, "center_y": 57.135866711852302, "area_in_sqm": 6900.8126324415198, "perimeter_in_m": 332.284683096283, "length_x": 83.152683695374805, "length_y": 83.1543544705371 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.13623931917742, 0.0 ], [ -0.001373291015625, 57.13623931917742, 0.0 ], [ -0.001373291015625, 57.135494104527091, 0.0 ], [ -0.00274658203125, 57.135494104527091, 0.0 ], [ -0.00274658203125, 57.13623931917742, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2506, "task_x": 131070, "task_y": 80160, "task_z": 18, "center_y": 57.112012160514901, "area_in_sqm": 6909.6734538078299, "perimeter_in_m": 332.49794613835701, "length_x": 83.206158118102806, "length_y": 83.207829513619501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.112385007934009, 0.0 ], [ -0.001373291015625, 57.112385007934009, 0.0 ], [ -0.001373291015625, 57.111639313095765, 0.0 ], [ -0.00274658203125, 57.111639313095765, 0.0 ], [ -0.00274658203125, 57.112385007934009, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2507, "task_x": 131070, "task_y": 80192, "task_z": 18, "center_y": 57.088142240283403, "area_in_sqm": 6918.5432168245297, "perimeter_in_m": 332.71128747613898, "length_x": 83.259652380279704, "length_y": 83.261324395383198 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.088515327886483, 0.0 ], [ -0.001373291015625, 57.088515327886483, 0.0 ], [ -0.001373291015625, 57.087769152680323, 0.0 ], [ -0.00274658203125, 57.087769152680323, 0.0 ], [ -0.00274658203125, 57.088515327886483, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2508, "task_x": 131070, "task_y": 80224, "task_z": 18, "center_y": 57.064256945401603, "area_in_sqm": 6927.4219237566003, "perimeter_in_m": 332.92470702231901, "length_x": 83.313166457306806, "length_y": 83.3148390912271 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.06463027327856, 0.0 ], [ -0.001373291015625, 57.06463027327856, 0.0 ], [ -0.001373291015625, 57.063883617524702, 0.0 ], [ -0.00274658203125, 57.063883617524702, 0.0 ], [ -0.00274658203125, 57.06463027327856, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2509, "task_x": 131070, "task_y": 80256, "task_z": 18, "center_y": 57.040356270120299, "area_in_sqm": 6936.3095762729599, "perimeter_in_m": 333.13820466607899, "length_x": 83.366700324505103, "length_y": 83.368373576469594 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.040729838360868, 0.0 ], [ -0.001373291015625, 57.040729838360868, 0.0 ], [ -0.001373291015625, 57.039982701879772, 0.0 ], [ -0.00274658203125, 57.039982701879772, 0.0 ], [ -0.00274658203125, 57.040729838360868, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2510, "task_x": 131070, "task_y": 80288, "task_z": 18, "center_y": 57.016440208697297, "area_in_sqm": 6945.2061766385996, "perimeter_in_m": 333.35178031695699, "length_x": 83.4202539571139, "length_y": 83.421927826347698 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 57.016814017391113, 0.0 ], [ -0.001373291015625, 57.016814017391113, 0.0 ], [ -0.001373291015625, 57.016066400003432, 0.0 ], [ -0.00274658203125, 57.016066400003432, 0.0 ], [ -0.00274658203125, 57.016814017391113, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2511, "task_x": 131070, "task_y": 80320, "task_z": 18, "center_y": 56.992508755397303, "area_in_sqm": 6954.1117268800699, "perimeter_in_m": 333.56543387158399, "length_x": 83.473827330291897, "length_y": 83.475501816017399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.992882804633979, 0.0 ], [ -0.001373291015625, 56.992882804633979, 0.0 ], [ -0.001373291015625, 56.992134706160606, 0.0 ], [ -0.00274658203125, 56.992134706160606, 0.0 ], [ -0.00274658203125, 56.992882804633979, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2512, "task_x": 131070, "task_y": 80352, "task_z": 18, "center_y": 56.968561904492198, "area_in_sqm": 6963.0262292623502, "perimeter_in_m": 333.779165225741, "length_x": 83.527420419116496, "length_y": 83.529095520553497 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.968936194361206, 0.0 ], [ -0.001373291015625, 56.968936194361206, 0.0 ], [ -0.001373291015625, 56.96818761462324, 0.0 ], [ -0.00274658203125, 56.96818761462324, 0.0 ], [ -0.00274658203125, 56.968936194361206, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2513, "task_x": 131070, "task_y": 80384, "task_z": 18, "center_y": 56.944599650260997, "area_in_sqm": 6971.9496854543704, "perimeter_in_m": 333.99297427644302, "length_x": 83.581033198583697, "length_y": 83.582708914949507 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.944974180851595, 0.0 ], [ -0.001373291015625, 56.944974180851595, 0.0 ], [ -0.001373291015625, 56.944225119670364, 0.0 ], [ -0.00274658203125, 56.944225119670364, 0.0 ], [ -0.00274658203125, 56.944974180851595, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2514, "task_x": 131070, "task_y": 80416, "task_z": 18, "center_y": 56.920621986989602, "area_in_sqm": 6980.8820973634702, "perimeter_in_m": 334.20686092409801, "length_x": 83.634665643608002, "length_y": 83.636341974117201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.920996758391055, 0.0 ], [ -0.001373291015625, 56.920996758391055, 0.0 ], [ -0.001373291015625, 56.920247215588113, 0.0 ], [ -0.00274658203125, 56.920247215588113, 0.0 ], [ -0.00274658203125, 56.920996758391055, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2515, "task_x": 131070, "task_y": 80448, "task_z": 18, "center_y": 56.896628908971202, "area_in_sqm": 6989.82346749306, "perimeter_in_m": 334.420825073174, "length_x": 83.688317729022202, "length_y": 83.689994672887295 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.897003921272599, 0.0 ], [ -0.001373291015625, 56.897003921272599, 0.0 ], [ -0.001373291015625, 56.896253896669727, 0.0 ], [ -0.00274658203125, 56.896253896669727, 0.0 ], [ -0.00274658203125, 56.897003921272599, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2516, "task_x": 131070, "task_y": 80480, "task_z": 18, "center_y": 56.872620410506002, "area_in_sqm": 6998.7737971544302, "perimeter_in_m": 334.63486661597602, "length_x": 83.741989429577799, "length_y": 83.743666986008407 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.872995663796395, 0.0 ], [ -0.001373291015625, 56.872995663796395, 0.0 ], [ -0.001373291015625, 56.872245157215573, 0.0 ], [ -0.00274658203125, 56.872245157215573, 0.0 ], [ -0.00274658203125, 56.872995663796395, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2517, "task_x": 131070, "task_y": 80512, "task_z": 18, "center_y": 56.848596485901503, "area_in_sqm": 7007.7330887317703, "perimeter_in_m": 334.84898544885903, "length_x": 83.795680719944301, "length_y": 83.797358888147301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.848971980269752, 0.0 ], [ -0.001373291015625, 56.848971980269752, 0.0 ], [ -0.001373291015625, 56.848220991533211, 0.0 ], [ -0.00274658203125, 56.848220991533211, 0.0 ], [ -0.00274658203125, 56.848971980269752, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2518, "task_x": 131070, "task_y": 80544, "task_z": 18, "center_y": 56.824557129472304, "area_in_sqm": 7016.7013441324198, "perimeter_in_m": 335.063181471581, "length_x": 83.849391574709003, "length_y": 83.851070353889199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.824932865007192, 0.0 ], [ -0.001373291015625, 56.824932865007192, 0.0 ], [ -0.001373291015625, 56.824181393937373, 0.0 ], [ -0.00274658203125, 56.824181393937373, 0.0 ], [ -0.00274658203125, 56.824932865007192, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2519, "task_x": 131070, "task_y": 80576, "task_z": 18, "center_y": 56.800502335540202, "area_in_sqm": 7025.6785649061203, "perimeter_in_m": 335.27745458018001, "length_x": 83.903121968377803, "length_y": 83.904801357736901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.800878312330433, 0.0 ], [ -0.001373291015625, 56.800878312330433, 0.0 ], [ -0.001373291015625, 56.800126358749999, 0.0 ], [ -0.00274658203125, 56.800126358749999, 0.0 ], [ -0.00274658203125, 56.800878312330433, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2520, "task_x": 131070, "task_y": 80608, "task_z": 18, "center_y": 56.776432098434299, "area_in_sqm": 7034.66475319862, "perimeter_in_m": 335.49180467124199, "length_x": 83.956871875374006, "length_y": 83.958551874111606 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.776808316568413, 0.0 ], [ -0.001373291015625, 56.776808316568413, 0.0 ], [ -0.001373291015625, 56.776055880300262, 0.0 ], [ -0.00274658203125, 56.776055880300262, 0.0 ], [ -0.00274658203125, 56.776808316568413, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2521, "task_x": 131070, "task_y": 80640, "task_z": 18, "center_y": 56.752346412491001, "area_in_sqm": 7043.6599107980701, "perimeter_in_m": 335.70623164898302, "length_x": 84.010641270038604, "length_y": 84.012321877351596 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.752722872057348, 0.0 ], [ -0.001373291015625, 56.752722872057348, 0.0 ], [ -0.001373291015625, 56.751969952924597, 0.0 ], [ -0.00274658203125, 56.751969952924597, 0.0 ], [ -0.00274658203125, 56.752722872057348, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2522, "task_x": 131070, "task_y": 80672, "task_z": 18, "center_y": 56.728245272053698, "area_in_sqm": 7052.66403901577, "perimeter_in_m": 335.92073538842999, "length_x": 84.064430126630796, "length_y": 84.066111341713295 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.728621973140733, 0.0 ], [ -0.001373291015625, 56.728621973140733, 0.0 ], [ -0.001373291015625, 56.727868570966763, 0.0 ], [ -0.00274658203125, 56.727868570966763, 0.0 ], [ -0.00274658203125, 56.728621973140733, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2523, "task_x": 131070, "task_y": 80704, "task_z": 18, "center_y": 56.704128671473498, "area_in_sqm": 7061.6771403551102, "perimeter_in_m": 336.13531580407499, "length_x": 84.118238419326602, "length_y": 84.119920241370394 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.704505614169356, 0.0 ], [ -0.001373291015625, 56.704505614169356, 0.0 ], [ -0.001373291015625, 56.703751728777725, 0.0 ], [ -0.00274658203125, 56.703751728777725, 0.0 ], [ -0.00274658203125, 56.704505614169356, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2524, "task_x": 131070, "task_y": 80736, "task_z": 18, "center_y": 56.679996605108599, "area_in_sqm": 7070.6992163658097, "perimeter_in_m": 336.34997279185001, "length_x": 84.172066122219903, "length_y": 84.173748550414004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.680373789501367, 0.0 ], [ -0.001373291015625, 56.680373789501367, 0.0 ], [ -0.001373291015625, 56.679619420715873, 0.0 ], [ -0.00274658203125, 56.679619420715873, 0.0 ], [ -0.00274658203125, 56.680373789501367, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2525, "task_x": 131070, "task_y": 80768, "task_z": 18, "center_y": 56.655849067324503, "area_in_sqm": 7079.7302688360196, "perimeter_in_m": 336.56470622912502, "length_x": 84.225913209321803, "length_y": 84.227596242852698 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.656226493502203, 0.0 ], [ -0.001373291015625, 56.656226493502203, 0.0 ], [ -0.001373291015625, 56.65547164114691, 0.0 ], [ -0.00274658203125, 56.65547164114691, 0.0 ], [ -0.00274658203125, 56.656226493502203, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2526, "task_x": 131070, "task_y": 80800, "task_z": 18, "center_y": 56.631686052494302, "area_in_sqm": 7088.7702990770304, "perimeter_in_m": 336.77951602635801, "length_x": 84.2797796545605, "length_y": 84.281463292612301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.632063720544743, 0.0 ], [ -0.001373291015625, 56.632063720544743, 0.0 ], [ -0.001373291015625, 56.631308384443905, 0.0 ], [ -0.00274658203125, 56.631308384443905, 0.0 ], [ -0.00274658203125, 56.632063720544743, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2527, "task_x": 131070, "task_y": 80832, "task_z": 18, "center_y": 56.6075075549983, "area_in_sqm": 7097.8193093538302, "perimeter_in_m": 336.994402074736, "length_x": 84.333665431781398, "length_y": 84.335349673535205 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.60788546500924, 0.0 ], [ -0.001373291015625, 56.60788546500924, 0.0 ], [ -0.001373291015625, 56.607129644987367, 0.0 ], [ -0.00274658203125, 56.607129644987367, 0.0 ], [ -0.00274658203125, 56.60788546500924, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2528, "task_x": 131070, "task_y": 80864, "task_z": 18, "center_y": 56.583313569224302, "area_in_sqm": 7106.8773005008698, "perimeter_in_m": 337.20936426386902, "length_x": 84.387570514746699, "length_y": 84.389255359381295 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.583691721283358, 0.0 ], [ -0.001373291015625, 56.583691721283358, 0.0 ], [ -0.001373291015625, 56.582935417165196, 0.0 ], [ -0.00274658203125, 56.582935417165196, 0.0 ], [ -0.00274658203125, 56.583691721283358, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2529, "task_x": 131070, "task_y": 80896, "task_z": 18, "center_y": 56.559104089567498, "area_in_sqm": 7115.9442750215503, "perimeter_in_m": 337.42440249098399, "length_x": 84.441494877135497, "length_y": 84.443180323827093 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.559482483762231, 0.0 ], [ -0.001373291015625, 56.559482483762231, 0.0 ], [ -0.001373291015625, 56.558725695372736, 0.0 ], [ -0.00274658203125, 56.558725695372736, 0.0 ], [ -0.00274658203125, 56.559482483762231, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2530, "task_x": 131070, "task_y": 80928, "task_z": 18, "center_y": 56.534879110430602, "area_in_sqm": 7125.0202344656, "perimeter_in_m": 337.63951664818899, "length_x": 84.495438492543798, "length_y": 84.497124540465904 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.535257746848465, 0.0 ], [ -0.001373291015625, 56.535257746848465, 0.0 ], [ -0.001373291015625, 56.53450047401283, 0.0 ], [ -0.00274658203125, 56.53450047401283, 0.0 ], [ -0.00274658203125, 56.535257746848465, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2531, "task_x": 131070, "task_y": 80960, "task_z": 18, "center_y": 56.510638626224001, "area_in_sqm": 7134.10518014431, "perimeter_in_m": 337.854706628847, "length_x": 84.549401334484003, "length_y": 84.551087982807601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.511017504952136, 0.0 ], [ -0.001373291015625, 56.511017504952136, 0.0 ], [ -0.001373291015625, 56.510259747495809, 0.0 ], [ -0.00274658203125, 56.510259747495809, 0.0 ], [ -0.00274658203125, 56.511017504952136, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2532, "task_x": 131070, "task_y": 80992, "task_z": 18, "center_y": 56.486382631365203, "area_in_sqm": 7143.1991138458297, "perimeter_in_m": 338.06997232683898, "length_x": 84.603383376385295, "length_y": 84.605070624278497 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.486761752490857, 0.0 ], [ -0.001373291015625, 56.486761752490857, 0.0 ], [ -0.001373291015625, 56.486003510239499, 0.0 ], [ -0.00274658203125, 56.486003510239499, 0.0 ], [ -0.00274658203125, 56.486761752490857, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2533, "task_x": 131070, "task_y": 81024, "task_z": 18, "center_y": 56.462111120279602, "area_in_sqm": 7152.3020366430301, "perimeter_in_m": 338.28531362741103, "length_x": 84.657384591592901, "length_y": 84.6590724382215 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.462490483889788, 0.0 ], [ -0.001373291015625, 56.462490483889788, 0.0 ], [ -0.001373291015625, 56.461731756669323, 0.0 ], [ -0.00274658203125, 56.461731756669323, 0.0 ], [ -0.00274658203125, 56.462490483889788, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2534, "task_x": 131070, "task_y": 81056, "task_z": 18, "center_y": 56.437824087399903, "area_in_sqm": 7161.41395068169, "perimeter_in_m": 338.50073043191702, "length_x": 84.7114049533686, "length_y": 84.713093397895804 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.438203693581649, 0.0 ], [ -0.001373291015625, 56.438203693581649, 0.0 ], [ -0.001373291015625, 56.437444481218215, 0.0 ], [ -0.00274658203125, 56.437444481218215, 0.0 ], [ -0.00274658203125, 56.438203693581649, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2535, "task_x": 131070, "task_y": 81088, "task_z": 18, "center_y": 56.4135215271668, "area_in_sqm": 7170.5348573923102, "perimeter_in_m": 338.71622262950302, "length_x": 84.765444434890298, "length_y": 84.767133476476502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.413901376006763, 0.0 ], [ -0.001373291015625, 56.413901376006763, 0.0 ], [ -0.001373291015625, 56.413141678326731, 0.0 ], [ -0.00274658203125, 56.413141678326731, 0.0 ], [ -0.00274658203125, 56.413901376006763, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2536, "task_x": 131070, "task_y": 81120, "task_z": 18, "center_y": 56.389203434027998, "area_in_sqm": 7179.6647576093701, "perimeter_in_m": 338.93179010702602, "length_x": 84.819503009252003, "length_y": 84.8211926470549 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.389583525613048, 0.0 ], [ -0.001373291015625, 56.389583525613048, 0.0 ], [ -0.001373291015625, 56.388823342443054, 0.0 ], [ -0.00274658203125, 56.388823342443054, 0.0 ], [ -0.00274658203125, 56.389583525613048, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2537, "task_x": 131070, "task_y": 81152, "task_z": 18, "center_y": 56.3648698024395, "area_in_sqm": 7188.8036535978299, "perimeter_in_m": 339.14743275825901, "length_x": 84.873580649463506, "length_y": 84.875270882638404 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.365250136856069, 0.0 ], [ -0.001373291015625, 56.365250136856069, 0.0 ], [ -0.001373291015625, 56.364489468022967, 0.0 ], [ -0.00274658203125, 56.364489468022967, 0.0 ], [ -0.00274658203125, 56.365250136856069, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2538, "task_x": 131070, "task_y": 81184, "task_z": 18, "center_y": 56.340520626864503, "area_in_sqm": 7197.9515460729599, "perimeter_in_m": 339.36315047680398, "length_x": 84.927677328450599, "length_y": 84.929368156150005 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.340901204199085, 0.0 ], [ -0.001373291015625, 56.340901204199085, 0.0 ], [ -0.001373291015625, 56.340140049529971, 0.0 ], [ -0.00274658203125, 56.340140049529971, 0.0 ], [ -0.00274658203125, 56.340901204199085, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2539, "task_x": 131070, "task_y": 81216, "task_z": 18, "center_y": 56.316155901774103, "area_in_sqm": 7207.10843718052, "perimeter_in_m": 339.57894314406798, "length_x": 84.981793019054706, "length_y": 84.983484440428597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.316536722113, 0.0 ], [ -0.001373291015625, 56.316536722113, 0.0 ], [ -0.001373291015625, 56.315775081435227, 0.0 ], [ -0.00274658203125, 56.315775081435227, 0.0 ], [ -0.00274658203125, 56.316536722113, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2540, "task_x": 131070, "task_y": 81248, "task_z": 18, "center_y": 56.291775621646998, "area_in_sqm": 7216.2743276357696, "perimeter_in_m": 339.794810659674, "length_x": 85.035927694032907, "length_y": 85.037619708228704 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.292156685076449, 0.0 ], [ -0.001373291015625, 56.292156685076449, 0.0 ], [ -0.001373291015625, 56.29139455821759, 0.0 ], [ -0.00274658203125, 56.29139455821759, 0.0 ], [ -0.00274658203125, 56.292156685076449, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2541, "task_x": 131070, "task_y": 81280, "task_z": 18, "center_y": 56.267379780969797, "area_in_sqm": 7225.4492192268399, "perimeter_in_m": 340.010752903992, "length_x": 85.090081326057899, "length_y": 85.091773932219994 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.267761087575821, 0.0 ], [ -0.001373291015625, 56.267761087575821, 0.0 ], [ -0.001373291015625, 56.26699847436371, 0.0 ], [ -0.00274658203125, 56.26699847436371, 0.0 ], [ -0.00274658203125, 56.267761087575821, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2542, "task_x": 131070, "task_y": 81312, "task_z": 18, "center_y": 56.242968374236597, "area_in_sqm": 7234.6331132650403, "perimeter_in_m": 340.22676977560701, "length_x": 85.144253887717596, "length_y": 85.145947084988194 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.243349924105239, 0.0 ], [ -0.001373291015625, 56.243349924105239, 0.0 ], [ -0.001373291015625, 56.242586824367926, 0.0 ], [ -0.00274658203125, 56.242586824367926, 0.0 ], [ -0.00274658203125, 56.243349924105239, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2543, "task_x": 131070, "task_y": 81344, "task_z": 18, "center_y": 56.218541395949501, "area_in_sqm": 7243.8260113000897, "perimeter_in_m": 340.44286116161101, "length_x": 85.198445351515204, "length_y": 85.200139139033595 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.218923189166624, 0.0 ], [ -0.001373291015625, 56.218923189166624, 0.0 ], [ -0.001373291015625, 56.218159602732428, 0.0 ], [ -0.00274658203125, 56.218159602732428, 0.0 ], [ -0.00274658203125, 56.218923189166624, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2544, "task_x": 131070, "task_y": 81376, "task_z": 18, "center_y": 56.194098840618402, "area_in_sqm": 7253.0279140472403, "perimeter_in_m": 340.65902694399, "length_x": 85.252655689869201, "length_y": 85.254350066772105 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.194480877269704, 0.0 ], [ -0.001373291015625, 56.194480877269704, 0.0 ], [ -0.001373291015625, 56.193716803967185, 0.0 ], [ -0.00274658203125, 56.193716803967185, 0.0 ], [ -0.00274658203125, 56.194480877269704, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2545, "task_x": 131070, "task_y": 81408, "task_z": 18, "center_y": 56.169640702761001, "area_in_sqm": 7262.2388231754303, "perimeter_in_m": 340.875267020818, "length_x": 85.306884875112999, "length_y": 85.308579840534605 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.170022982932046, 0.0 ], [ -0.001373291015625, 56.170022982932046, 0.0 ], [ -0.001373291015625, 56.169258422589991, 0.0 ], [ -0.00274658203125, 56.169258422589991, 0.0 ], [ -0.00274658203125, 56.170022982932046, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2546, "task_x": 131070, "task_y": 81440, "task_z": 18, "center_y": 56.1451669769028, "area_in_sqm": 7271.4587398767499, "perimeter_in_m": 341.09158127232001, "length_x": 85.361132879495202, "length_y": 85.362828432566701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.145549500679074, 0.0 ], [ -0.001373291015625, 56.145549500679074, 0.0 ], [ -0.001373291015625, 56.144784453126533, 0.0 ], [ -0.00274658203125, 56.144784453126533, 0.0 ], [ -0.00274658203125, 56.145549500679074, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2547, "task_x": 131070, "task_y": 81472, "task_z": 18, "center_y": 56.120677657577197, "area_in_sqm": 7280.6876646280298, "perimeter_in_m": 341.30796958420899, "length_x": 85.415399675178904, "length_y": 85.417095815029199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.121060425044078, 0.0 ], [ -0.001373291015625, 56.121060425044078, 0.0 ], [ -0.001373291015625, 56.120294890110365, 0.0 ], [ -0.00274658203125, 56.120294890110365, 0.0 ], [ -0.00274658203125, 56.121060425044078, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2548, "task_x": 131070, "task_y": 81504, "task_z": 18, "center_y": 56.096172739325603, "area_in_sqm": 7289.9255999326697, "perimeter_in_m": 341.52443184698302, "length_x": 85.469685234242306, "length_y": 85.471381959997302 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.096555750568292, 0.0 ], [ -0.001373291015625, 56.096555750568292, 0.0 ], [ -0.001373291015625, 56.095789728082927, 0.0 ], [ -0.00274658203125, 56.095789728082927, 0.0 ], [ -0.00274658203125, 56.096555750568292, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2549, "task_x": 131070, "task_y": 81536, "task_z": 18, "center_y": 56.071652216697203, "area_in_sqm": 7299.1725461483002, "perimeter_in_m": 341.74096795874402, "length_x": 85.523989528677703, "length_y": 85.525686839460903 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.072035471800866, 0.0 ], [ -0.001373291015625, 56.072035471800866, 0.0 ], [ -0.001373291015625, 56.071268961593631, 0.0 ], [ -0.00274658203125, 56.071268961593631, 0.0 ], [ -0.00274658203125, 56.072035471800866, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2550, "task_x": 131070, "task_y": 81568, "task_z": 18, "center_y": 56.047116084249403, "area_in_sqm": 7308.4285043478003, "perimeter_in_m": 341.957577782057, "length_x": 85.578312530392594, "length_y": 85.580010425324602 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.04749958329888, 0.0 ], [ -0.001373291015625, 56.04749958329888, 0.0 ], [ -0.001373291015625, 56.046732585199841, 0.0 ], [ -0.00274658203125, 56.046732585199841, 0.0 ], [ -0.00274658203125, 56.04749958329888, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2551, "task_x": 131070, "task_y": 81600, "task_z": 18, "center_y": 56.022564336547198, "area_in_sqm": 7317.6934764385196, "perimeter_in_m": 342.17426122459602, "length_x": 85.632654211208006, "length_y": 85.634352689406995 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 56.02294807962744, 0.0 ], [ -0.001373291015625, 56.02294807962744, 0.0 ], [ -0.001373291015625, 56.022180593466864, 0.0 ], [ -0.00274658203125, 56.022180593466864, 0.0 ], [ -0.00274658203125, 56.02294807962744, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2552, "task_x": 131070, "task_y": 81632, "task_z": 18, "center_y": 55.997996968163797, "area_in_sqm": 7326.9674624204599, "perimeter_in_m": 342.39101816202202, "length_x": 85.687014542860098, "length_y": 85.6887136034413 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.998380955359629, 0.0 ], [ -0.001373291015625, 55.998380955359629, 0.0 ], [ -0.001373291015625, 55.997612980968064, 0.0 ], [ -0.00274658203125, 55.997612980968064, 0.0 ], [ -0.00274658203125, 55.998380955359629, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2553, "task_x": 131070, "task_y": 81664, "task_z": 18, "center_y": 55.973413973680699, "area_in_sqm": 7336.2504638433502, "perimeter_in_m": 342.60784848256498, "length_x": 85.741393496998597, "length_y": 85.743093139074801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.973798205076577, 0.0 ], [ -0.001373291015625, 55.973798205076577, 0.0 ], [ -0.001373291015625, 55.973029742284794, 0.0 ], [ -0.00274658203125, 55.973029742284794, 0.0 ], [ -0.00274658203125, 55.973798205076577, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2554, "task_x": 131070, "task_y": 81696, "task_z": 18, "center_y": 55.948815347687002, "area_in_sqm": 7345.5424824953097, "perimeter_in_m": 342.82475207073998, "length_x": 85.795791045187599, "length_y": 85.797491267868807 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.949199823367444, 0.0 ], [ -0.001373291015625, 55.949199823367444, 0.0 ], [ -0.001373291015625, 55.948430872006497, 0.0 ], [ -0.00274658203125, 55.948430872006497, 0.0 ], [ -0.00274658203125, 55.949199823367444, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2555, "task_x": 131070, "task_y": 81728, "task_z": 18, "center_y": 55.924201084780101, "area_in_sqm": 7354.8435184955597, "perimeter_in_m": 343.04172880735598, "length_x": 85.850207158905107, "length_y": 85.851907961298394 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.924585804829505, 0.0 ], [ -0.001373291015625, 55.924585804829505, 0.0 ], [ -0.001373291015625, 55.923816364730698, 0.0 ], [ -0.00274658203125, 55.923816364730698, 0.0 ], [ -0.00274658203125, 55.924585804829505, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2556, "task_x": 131070, "task_y": 81760, "task_z": 18, "center_y": 55.899571179565598, "area_in_sqm": 7364.1535725593603, "perimeter_in_m": 343.25877858508301, "length_x": 85.904641809542696, "length_y": 85.906343190752906 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.899956144068113, 0.0 ], [ -0.001373291015625, 55.899956144068113, 0.0 ], [ -0.001373291015625, 55.899186215062997, 0.0 ], [ -0.00274658203125, 55.899186215062997, 0.0 ], [ -0.00274658203125, 55.899956144068113, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2557, "task_x": 131070, "task_y": 81792, "task_z": 18, "center_y": 55.874925626657003, "area_in_sqm": 7373.47264754772, "perimeter_in_m": 343.47590128933598, "length_x": 85.959094968405907, "length_y": 85.960796927534901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.875310835696787, 0.0 ], [ -0.001373291015625, 55.875310835696787, 0.0 ], [ -0.001373291015625, 55.874540417617133, 0.0 ], [ -0.00274658203125, 55.874540417617133, 0.0 ], [ -0.00274658203125, 55.875310835696787, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2558, "task_x": 131070, "task_y": 81824, "task_z": 18, "center_y": 55.850264420676098, "area_in_sqm": 7382.8007415533102, "perimeter_in_m": 343.69309678979403, "length_x": 86.013566606713994, "length_y": 86.015269142861001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.850649874337137, 0.0 ], [ -0.001373291015625, 55.850649874337137, 0.0 ], [ -0.001373291015625, 55.84987896701503, 0.0 ], [ -0.00274658203125, 55.84987896701503, 0.0 ], [ -0.00274658203125, 55.850649874337137, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2559, "task_x": 131070, "task_y": 81856, "task_z": 18, "center_y": 55.825587556252898, "area_in_sqm": 7392.1378575563404, "perimeter_in_m": 343.91036498214601, "length_x": 86.068056695599594, "length_y": 86.069759807861004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.825973254619008, 0.0 ], [ -0.001373291015625, 55.825973254619008, 0.0 ], [ -0.001373291015625, 55.825201857886753, 0.0 ], [ -0.00274658203125, 55.825201857886753, 0.0 ], [ -0.00274658203125, 55.825973254619008, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2560, "task_x": 131070, "task_y": 81888, "task_z": 18, "center_y": 55.800895028025501, "area_in_sqm": 7401.4839956760397, "perimeter_in_m": 344.12770574280501, "length_x": 86.122565206108604, "length_y": 86.124268893578204 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.801280971180446, 0.0 ], [ -0.001373291015625, 55.801280971180446, 0.0 ], [ -0.001373291015625, 55.800509084870619, 0.0 ], [ -0.00274658203125, 55.800509084870619, 0.0 ], [ -0.00274658203125, 55.801280971180446, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2561, "task_x": 131070, "task_y": 81920, "task_z": 18, "center_y": 55.776186830640398, "area_in_sqm": 7410.83915686607, "perimeter_in_m": 344.34511896002903, "length_x": 86.177092109200203, "length_y": 86.178796370969195 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.77657301866769, 0.0 ], [ -0.001373291015625, 55.77657301866769, 0.0 ], [ -0.001373291015625, 55.775800642613127, 0.0 ], [ -0.00274658203125, 55.775800642613127, 0.0 ], [ -0.00274658203125, 55.77657301866769, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2562, "task_x": 131070, "task_y": 81952, "task_z": 18, "center_y": 55.751462958752199, "area_in_sqm": 7420.2033421993301, "perimeter_in_m": 344.56260451343098, "length_x": 86.231637375747198, "length_y": 86.2333422109038 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.751849391735263, 0.0 ], [ -0.001373291015625, 55.751849391735263, 0.0 ], [ -0.001373291015625, 55.751076525769044, 0.0 ], [ -0.00274658203125, 55.751076525769044, 0.0 ], [ -0.00274658203125, 55.751849391735263, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2563, "task_x": 131070, "task_y": 81984, "task_z": 18, "center_y": 55.726723407023698, "area_in_sqm": 7429.5765523910504, "perimeter_in_m": 344.78016227960899, "length_x": 86.286200976534801, "length_y": 86.287906384164799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.727110085045972, 0.0 ], [ -0.001373291015625, 55.727110085045972, 0.0 ], [ -0.001373291015625, 55.726336729001453, 0.0 ], [ -0.00274658203125, 55.726336729001453, 0.0 ], [ -0.00274658203125, 55.727110085045972, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2564, "task_x": 131070, "task_y": 82016, "task_z": 18, "center_y": 55.7019681701263, "area_in_sqm": 7438.9587882757196, "perimeter_in_m": 344.99779215761799, "length_x": 86.340782882261706, "length_y": 86.342488861447904 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.702355093270917, 0.0 ], [ -0.001373291015625, 55.702355093270917, 0.0 ], [ -0.001373291015625, 55.701581246981682, 0.0 ], [ -0.00274658203125, 55.701581246981682, 0.0 ], [ -0.00274658203125, 55.702355093270917, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2565, "task_x": 131070, "task_y": 82048, "task_z": 18, "center_y": 55.677197242739503, "area_in_sqm": 7448.3500508070001, "perimeter_in_m": 345.215494015231, "length_x": 86.3953830635391, "length_y": 86.3970896133618 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.677584411089512, 0.0 ], [ -0.001373291015625, 55.677584411089512, 0.0 ], [ -0.001373291015625, 55.676810074389429, 0.0 ], [ -0.00274658203125, 55.676810074389429, 0.0 ], [ -0.00274658203125, 55.677584411089512, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2566, "task_x": 131070, "task_y": 82080, "task_z": 18, "center_y": 55.652410619551198, "area_in_sqm": 7457.7503402233096, "perimeter_in_m": 345.433267731353, "length_x": 86.450001490891097, "length_y": 86.451708610427701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.652798033189562, 0.0 ], [ -0.001373291015625, 55.652798033189562, 0.0 ], [ -0.001373291015625, 55.652023205912769, 0.0 ], [ -0.00274658203125, 55.652023205912769, 0.0 ], [ -0.00274658203125, 55.652798033189562, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2567, "task_x": 131070, "task_y": 82112, "task_z": 18, "center_y": 55.627608295257701, "area_in_sqm": 7467.1596572399103, "perimeter_in_m": 345.651113191798, "length_x": 86.504638134754401, "length_y": 86.506345823079599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.627995954267213, 0.0 ], [ -0.001373291015625, 55.627995954267213, 0.0 ], [ -0.001373291015625, 55.627220636248097, 0.0 ], [ -0.00274658203125, 55.627220636248097, 0.0 ], [ -0.00274658203125, 55.627995954267213, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2568, "task_x": 131070, "task_y": 82144, "task_z": 18, "center_y": 55.602790264563701, "area_in_sqm": 7476.5780029296902, "perimeter_in_m": 345.86903027653301, "length_x": 86.559292965478207, "length_y": 86.5610012216641 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.603178169027046, 0.0 ], [ -0.001373291015625, 55.603178169027046, 0.0 ], [ -0.001373291015625, 55.602402360100264, 0.0 ], [ -0.00274658203125, 55.602402360100264, 0.0 ], [ -0.00274658203125, 55.603178169027046, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2569, "task_x": 131070, "task_y": 82176, "task_z": 18, "center_y": 55.577956522182298, "area_in_sqm": 7486.0053775310498, "perimeter_in_m": 346.08701886465599, "length_x": 86.613965953323998, "length_y": 86.615674776439903 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.578344672182055, 0.0 ], [ -0.001373291015625, 55.578344672182055, 0.0 ], [ -0.001373291015625, 55.577568372182526, 0.0 ], [ -0.00274658203125, 55.577568372182526, 0.0 ], [ -0.00274658203125, 55.578344672182055, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2570, "task_x": 131070, "task_y": 82208, "task_z": 18, "center_y": 55.553107062835103, "area_in_sqm": 7495.4417824745196, "perimeter_in_m": 346.30507883296201, "length_x": 86.668657068465905, "length_y": 86.670366457578197 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.553495458453689, 0.0 ], [ -0.001373291015625, 55.553495458453689, 0.0 ], [ -0.001373291015625, 55.552718667216595, 0.0 ], [ -0.00274658203125, 55.552718667216595, 0.0 ], [ -0.00274658203125, 55.553495458453689, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2571, "task_x": 131070, "task_y": 82240, "task_z": 18, "center_y": 55.528241881252299, "area_in_sqm": 7504.8872172832498, "perimeter_in_m": 346.52321006939798, "length_x": 86.723366280989794, "length_y": 86.725076235162206 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.528630522571902, 0.0 ], [ -0.001373291015625, 55.528630522571902, 0.0 ], [ -0.001373291015625, 55.527853239932689, 0.0 ], [ -0.00274658203125, 55.527853239932689, 0.0 ], [ -0.00274658203125, 55.528630522571902, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2572, "task_x": 131070, "task_y": 82272, "task_z": 18, "center_y": 55.503360972172302, "area_in_sqm": 7514.34168338776, "perimeter_in_m": 346.74141243978403, "length_x": 86.778093560893893, "length_y": 86.779804079187599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.503749859275125, 0.0 ], [ -0.001373291015625, 55.503749859275125, 0.0 ], [ -0.001373291015625, 55.502972085069516, 0.0 ], [ -0.00274658203125, 55.502972085069516, 0.0 ], [ -0.00274658203125, 55.503749859275125, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2573, "task_x": 131070, "task_y": 82304, "task_z": 18, "center_y": 55.478464330342298, "area_in_sqm": 7523.8051811456698, "perimeter_in_m": 346.95968584091599, "length_x": 86.832838878088296, "length_y": 86.834549959561599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.478853463310337, 0.0 ], [ -0.001373291015625, 55.478853463310337, 0.0 ], [ -0.001373291015625, 55.478075197374288, 0.0 ], [ -0.00274658203125, 55.478075197374288, 0.0 ], [ -0.00274658203125, 55.478853463310337, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2574, "task_x": 131070, "task_y": 82336, "task_z": 18, "center_y": 55.453551950517898, "area_in_sqm": 7533.2777110338202, "perimeter_in_m": 347.17803013262102, "length_x": 86.887602202395101, "length_y": 86.889313846103406 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.453941329433057, 0.0 ], [ -0.001373291015625, 55.453941329433057, 0.0 ], [ -0.001373291015625, 55.453162571602832, 0.0 ], [ -0.00274658203125, 55.453162571602832, 0.0 ], [ -0.00274658203125, 55.453941329433057, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2575, "task_x": 131070, "task_y": 82368, "task_z": 18, "center_y": 55.428623827463497, "area_in_sqm": 7542.7592734098398, "perimeter_in_m": 347.39644520283002, "length_x": 86.942383503548001, "length_y": 86.944095708543998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.429013452407403, 0.0 ], [ -0.001373291015625, 55.429013452407403, 0.0 ], [ -0.001373291015625, 55.428234202519519, 0.0 ], [ -0.00274658203125, 55.428234202519519, 0.0 ], [ -0.00274658203125, 55.429013452407403, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2576, "task_x": 131070, "task_y": 82400, "task_z": 18, "center_y": 55.403679955951702, "area_in_sqm": 7552.2498686313602, "perimeter_in_m": 347.61493092376401, "length_x": 86.997182751192199, "length_y": 86.998895516526005 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.40406982700609, 0.0 ], [ -0.001373291015625, 55.40406982700609, 0.0 ], [ -0.001373291015625, 55.403290084897336, 0.0 ], [ -0.00274658203125, 55.403290084897336, 0.0 ], [ -0.00274658203125, 55.40406982700609, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2577, "task_x": 131070, "task_y": 82432, "task_z": 18, "center_y": 55.378720330764203, "area_in_sqm": 7561.7494978904697, "perimeter_in_m": 347.83348718089297, "length_x": 87.051999914884703, "length_y": 87.053713239603596 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.379110448010479, 0.0 ], [ -0.001373291015625, 55.379110448010479, 0.0 ], [ -0.001373291015625, 55.378330213517913, 0.0 ], [ -0.00274658203125, 55.378330213517913, 0.0 ], [ -0.00274658203125, 55.379110448010479, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2578, "task_x": 131070, "task_y": 82464, "task_z": 18, "center_y": 55.353744946691002, "area_in_sqm": 7571.2581607103302, "perimeter_in_m": 348.05211384252101, "length_x": 87.106834964094006, "length_y": 87.108548847242204 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.354135310210573, 0.0 ], [ -0.001373291015625, 55.354135310210573, 0.0 ], [ -0.001373291015625, 55.353354583171509, 0.0 ], [ -0.00274658203125, 55.353354583171509, 0.0 ], [ -0.00274658203125, 55.354135310210573, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2579, "task_x": 131070, "task_y": 82496, "task_z": 18, "center_y": 55.328753798531103, "area_in_sqm": 7580.7758578062103, "perimeter_in_m": 348.27081078882799, "length_x": 87.161687868199394, "length_y": 87.163402308818902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.329144408405071, 0.0 ], [ -0.001373291015625, 55.329144408405071, 0.0 ], [ -0.001373291015625, 55.328363188657114, 0.0 ], [ -0.00274658203125, 55.328363188657114, 0.0 ], [ -0.00274658203125, 55.329144408405071, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2580, "task_x": 131070, "task_y": 82528, "task_z": 18, "center_y": 55.303746881091897, "area_in_sqm": 7590.3025901317596, "perimeter_in_m": 348.48957789908599, "length_x": 87.216558596492106, "length_y": 87.218273593621504 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.304137737401369, 0.0 ], [ -0.001373291015625, 55.304137737401369, 0.0 ], [ -0.001373291015625, 55.303356024782403, 0.0 ], [ -0.00274658203125, 55.303356024782403, 0.0 ], [ -0.00274658203125, 55.304137737401369, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2581, "task_x": 131070, "task_y": 82560, "task_z": 18, "center_y": 55.278724189189703, "area_in_sqm": 7599.8383568525296, "perimeter_in_m": 348.70841504249597, "length_x": 87.271447118173697, "length_y": 87.273162670849402 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.279115292015611, 0.0 ], [ -0.001373291015625, 55.279115292015611, 0.0 ], [ -0.001373291015625, 55.278333086363773, 0.0 ], [ -0.00274658203125, 55.278333086363773, 0.0 ], [ -0.00274658203125, 55.279115292015611, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2582, "task_x": 131070, "task_y": 82592, "task_z": 18, "center_y": 55.253685717649603, "area_in_sqm": 7609.3831586837796, "perimeter_in_m": 348.92732209516203, "length_x": 87.326353402357398, "length_y": 87.328069509612604 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.254077067072714, 0.0 ], [ -0.001373291015625, 55.254077067072714, 0.0 ], [ -0.001373291015625, 55.253294368226413, 0.0 ], [ -0.00274658203125, 55.253294368226413, 0.0 ], [ -0.00274658203125, 55.254077067072714, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2583, "task_x": 131070, "task_y": 82624, "task_z": 18, "center_y": 55.228631461305298, "area_in_sqm": 7618.9369966983804, "perimeter_in_m": 349.14629893370602, "length_x": 87.381277418066801, "length_y": 87.3829940789321 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.229023057406323, 0.0 ], [ -0.001373291015625, 55.229023057406323, 0.0 ], [ -0.001373291015625, 55.228239865204273, 0.0 ], [ -0.00274658203125, 55.228239865204273, 0.0 ], [ -0.00274658203125, 55.229023057406323, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2584, "task_x": 131070, "task_y": 82656, "task_z": 18, "center_y": 55.203561414999598, "area_in_sqm": 7628.4998704195004, "perimeter_in_m": 349.36534543670302, "length_x": 87.436219134236694, "length_y": 87.437936347739793 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.20395325785897, 0.0 ], [ -0.001373291015625, 55.20395325785897, 0.0 ], [ -0.001373291015625, 55.203169572140141, 0.0 ], [ -0.00274658203125, 55.203169572140141, 0.0 ], [ -0.00274658203125, 55.20395325785897, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2585, "task_x": 131070, "task_y": 82688, "task_z": 18, "center_y": 55.178475573583803, "area_in_sqm": 7638.0717804431897, "perimeter_in_m": 349.58446147758798, "length_x": 87.491178519712193, "length_y": 87.4928962848781 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.178867663281991, 0.0 ], [ -0.001373291015625, 55.178867663281991, 0.0 ], [ -0.001373291015625, 55.178083483885608, 0.0 ], [ -0.00274658203125, 55.178083483885608, 0.0 ], [ -0.00274658203125, 55.178867663281991, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2586, "task_x": 131070, "task_y": 82720, "task_z": 18, "center_y": 55.153373931918402, "area_in_sqm": 7647.6527268886603, "perimeter_in_m": 349.80364692680098, "length_x": 87.5461555432491, "length_y": 87.547873859100093 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.153766268535556, 0.0 ], [ -0.001373291015625, 55.153766268535556, 0.0 ], [ -0.001373291015625, 55.152981595301156, 0.0 ], [ -0.00274658203125, 55.152981595301156, 0.0 ], [ -0.00274658203125, 55.153766268535556, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2587, "task_x": 131070, "task_y": 82752, "task_z": 18, "center_y": 55.128256484872502, "area_in_sqm": 7657.2427093982697, "perimeter_in_m": 350.02290165176998, "length_x": 87.601150173513801, "length_y": 87.602869039069105 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.12864906848877, 0.0 ], [ -0.001373291015625, 55.12864906848877, 0.0 ], [ -0.001373291015625, 55.127863901256163, 0.0 ], [ -0.00274658203125, 55.127863901256163, 0.0 ], [ -0.00274658203125, 55.12864906848877, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2588, "task_x": 131070, "task_y": 82784, "task_z": 18, "center_y": 55.103123227324303, "area_in_sqm": 7666.8417288065002, "perimeter_in_m": 350.24222554167301, "length_x": 87.656162379082801, "length_y": 87.657881793358996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.103516058019657, 0.0 ], [ -0.001373291015625, 55.103516058019657, 0.0 ], [ -0.001373291015625, 55.102730396628914, 0.0 ], [ -0.00274658203125, 55.102730396628914, 0.0 ], [ -0.00274658203125, 55.103516058019657, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2589, "task_x": 131070, "task_y": 82816, "task_z": 18, "center_y": 55.077974154160898, "area_in_sqm": 7676.4497848749197, "perimeter_in_m": 350.46161846003702, "length_x": 87.711192128442804, "length_y": 87.712912090453898 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.078367232015133, 0.0 ], [ -0.001373291015625, 55.078367232015133, 0.0 ], [ -0.001373291015625, 55.077581076306615, 0.0 ], [ -0.00274658203125, 55.077581076306615, 0.0 ], [ -0.00274658203125, 55.078367232015133, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2590, "task_x": 131070, "task_y": 82848, "task_z": 18, "center_y": 55.052809260278302, "area_in_sqm": 7686.0668783187903, "perimeter_in_m": 350.68108027940798, "length_x": 87.766239389991, "length_y": 87.767959898747705 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.053202585371118, 0.0 ], [ -0.001373291015625, 55.053202585371118, 0.0 ], [ -0.001373291015625, 55.052415935185458, 0.0 ], [ -0.00274658203125, 55.052415935185458, 0.0 ], [ -0.00274658203125, 55.053202585371118, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2591, "task_x": 131070, "task_y": 82880, "task_z": 18, "center_y": 55.027628540581603, "area_in_sqm": 7695.6930079460099, "perimeter_in_m": 350.90061086579902, "length_x": 87.8213041320343, "length_y": 87.823025186544797 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.028022112992502, 0.0 ], [ -0.001373291015625, 55.028022112992502, 0.0 ], [ -0.001373291015625, 55.027234968170653, 0.0 ], [ -0.00274658203125, 55.027234968170653, 0.0 ], [ -0.00274658203125, 55.028022112992502, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2592, "task_x": 131070, "task_y": 82912, "task_z": 18, "center_y": 55.0024319899848, "area_in_sqm": 7705.3281748294803, "perimeter_in_m": 351.12021010766699, "length_x": 87.8763863227895, "length_y": 87.878107922059201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 55.002825809793229, 0.0 ], [ -0.001373291015625, 55.002825809793229, 0.0 ], [ -0.001373291015625, 55.002038170176377, 0.0 ], [ -0.00274658203125, 55.002038170176377, 0.0 ], [ -0.00274658203125, 55.002825809793229, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2593, "task_x": 131070, "task_y": 82944, "task_z": 18, "center_y": 54.9772196034111, "area_in_sqm": 7714.9723784923599, "perimeter_in_m": 351.33987786711498, "length_x": 87.931485930383502, "length_y": 87.933208073414804 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.97761367069625, 0.0 ], [ -0.001373291015625, 54.97761367069625, 0.0 ], [ -0.001373291015625, 54.97682553612588, 0.0 ], [ -0.00274658203125, 54.97682553612588, 0.0 ], [ -0.00274658203125, 54.97761367069625, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2594, "task_x": 131070, "task_y": 82976, "task_z": 18, "center_y": 54.951991375792602, "area_in_sqm": 7724.6256192922601, "perimeter_in_m": 351.55961400536802, "length_x": 87.986602922852498, "length_y": 87.988325608644999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.952385690633612, 0.0 ], [ -0.001373291015625, 54.952385690633612, 0.0 ], [ -0.001373291015625, 54.951597060951514, 0.0 ], [ -0.00274658203125, 54.951597060951514, 0.0 ], [ -0.00274658203125, 54.952385690633612, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2595, "task_x": 131070, "task_y": 83008, "task_z": 18, "center_y": 54.926747302070503, "area_in_sqm": 7734.2878973484003, "perimeter_in_m": 351.77941841105502, "length_x": 88.041737268142597, "length_y": 88.043460495693296 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.927141864546435, 0.0 ], [ -0.001373291015625, 54.927141864546435, 0.0 ], [ -0.001373291015625, 54.926352739594648, 0.0 ], [ -0.00274658203125, 54.926352739594648, 0.0 ], [ -0.00274658203125, 54.927141864546435, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2596, "task_x": 131070, "task_y": 83040, "task_z": 18, "center_y": 54.901487377195402, "area_in_sqm": 7743.9592117071197, "perimeter_in_m": 351.99929094787097, "length_x": 88.096888934109202, "length_y": 88.098612702412197 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.901882187384999, 0.0 ], [ -0.001373291015625, 54.901882187384999, 0.0 ], [ -0.001373291015625, 54.901092567005868, 0.0 ], [ -0.00274658203125, 54.901092567005868, 0.0 ], [ -0.00274658203125, 54.901882187384999, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2597, "task_x": 131070, "task_y": 83072, "task_z": 18, "center_y": 54.876211596126801, "area_in_sqm": 7753.6395629644403, "perimeter_in_m": 352.21923147436399, "length_x": 88.152057888517305, "length_y": 88.153782196563597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.876606654108684, 0.0 ], [ -0.001373291015625, 54.876606654108684, 0.0 ], [ -0.001373291015625, 54.875816538144846, 0.0 ], [ -0.00274658203125, 54.875816538144846, 0.0 ], [ -0.00274658203125, 54.876606654108684, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2598, "task_x": 131070, "task_y": 83104, "task_z": 18, "center_y": 54.850919953833298, "area_in_sqm": 7763.3289506435403, "perimeter_in_m": 352.43923988215698, "length_x": 88.207244099040906, "length_y": 88.208968945818995 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.851315259686075, 0.0 ], [ -0.001373291015625, 54.851315259686075, 0.0 ], [ -0.001373291015625, 54.850524647980436, 0.0 ], [ -0.00274658203125, 54.850524647980436, 0.0 ], [ -0.00274658203125, 54.851315259686075, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2599, "task_x": 131070, "task_y": 83136, "task_z": 18, "center_y": 54.825612445292798, "area_in_sqm": 7773.02737486362, "perimeter_in_m": 352.65931601884199, "length_x": 88.262447533263398, "length_y": 88.2641729177587 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.826007999094955, 0.0 ], [ -0.001373291015625, 54.826007999094955, 0.0 ], [ -0.001373291015625, 54.82521689149074, 0.0 ], [ -0.00274658203125, 54.82521689149074, 0.0 ], [ -0.00274658203125, 54.826007999094955, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2600, "task_x": 131070, "task_y": 83168, "task_z": 18, "center_y": 54.800289065492699, "area_in_sqm": 7782.7348355054901, "perimeter_in_m": 352.87945977497299, "length_x": 88.317668158677094, "length_y": 88.319394079872396 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.800684867322332, 0.0 ], [ -0.001373291015625, 54.800684867322332, 0.0 ], [ -0.001373291015625, 54.799893263663009, 0.0 ], [ -0.00274658203125, 54.799893263663009, 0.0 ], [ -0.00274658203125, 54.800684867322332, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2601, "task_x": 131070, "task_y": 83200, "task_z": 18, "center_y": 54.774949809429103, "area_in_sqm": 7792.4513320922897, "perimeter_in_m": 353.09967100060101, "length_x": 88.372905942683303, "length_y": 88.374632399558294 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.775345859364478, 0.0 ], [ -0.001373291015625, 54.775345859364478, 0.0 ], [ -0.001373291015625, 54.774553759493827, 0.0 ], [ -0.00274658203125, 54.774553759493827, 0.0 ], [ -0.00274658203125, 54.775345859364478, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2602, "task_x": 131070, "task_y": 83232, "task_z": 18, "center_y": 54.749594672108003, "area_in_sqm": 7802.1768642664001, "perimeter_in_m": 353.31994956398898, "length_x": 88.4281608525922, "length_y": 88.429887844123996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.749990970226904, 0.0 ], [ -0.001373291015625, 54.749990970226904, 0.0 ], [ -0.001373291015625, 54.749198373989032, 0.0 ], [ -0.00274658203125, 54.749198373989032, 0.0 ], [ -0.00274658203125, 54.749990970226904, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2603, "task_x": 131070, "task_y": 83264, "task_z": 18, "center_y": 54.724223648544097, "area_in_sqm": 7811.9114319086102, "perimeter_in_m": 353.54029534878202, "length_x": 88.483432855622794, "length_y": 88.485160380785402 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.724620194924476, 0.0 ], [ -0.001373291015625, 54.724620194924476, 0.0 ], [ -0.001373291015625, 54.723827102163732, 0.0 ], [ -0.00274658203125, 54.723827102163732, 0.0 ], [ -0.00274658203125, 54.724620194924476, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2604, "task_x": 131070, "task_y": 83296, "task_z": 18, "center_y": 54.698836733761901, "area_in_sqm": 7821.6550351381302, "perimeter_in_m": 353.76070821651098, "length_x": 88.538721918902496, "length_y": 88.540449976667205 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.699233528481379, 0.0 ], [ -0.001373291015625, 54.699233528481379, 0.0 ], [ -0.001373291015625, 54.698439939042402, 0.0 ], [ -0.00274658203125, 54.698439939042402, 0.0 ], [ -0.00274658203125, 54.699233528481379, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2605, "task_x": 131070, "task_y": 83328, "task_z": 18, "center_y": 54.673433922794999, "area_in_sqm": 7831.4076726436597, "perimeter_in_m": 353.98118802217101, "length_x": 88.594028009467493, "length_y": 88.595756598802794 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.673830965931138, 0.0 ], [ -0.001373291015625, 54.673830965931138, 0.0 ], [ -0.001373291015625, 54.673036879658895, 0.0 ], [ -0.00274658203125, 54.673036879658895, 0.0 ], [ -0.00274658203125, 54.673830965931138, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2606, "task_x": 131070, "task_y": 83360, "task_z": 18, "center_y": 54.648015210686602, "area_in_sqm": 7841.1693450212497, "perimeter_in_m": 354.201734647428, "length_x": 88.6493510942623, "length_y": 88.6510802141336 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.648412502316681, 0.0 ], [ -0.001373291015625, 54.648412502316681, 0.0 ], [ -0.001373291015625, 54.647617919056401, 0.0 ], [ -0.00274658203125, 54.647617919056401, 0.0 ], [ -0.00274658203125, 54.648412502316681, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2607, "task_x": 131070, "task_y": 83392, "task_z": 18, "center_y": 54.622580592488902, "area_in_sqm": 7850.9400514364197, "perimeter_in_m": 354.422347948327, "length_x": 88.704691140139701, "length_y": 88.706420789509593 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.622978132690328, 0.0 ], [ -0.001373291015625, 54.622978132690328, 0.0 ], [ -0.001373291015625, 54.622183052287561, 0.0 ], [ -0.00274658203125, 54.622183052287561, 0.0 ], [ -0.00274658203125, 54.622978132690328, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2608, "task_x": 131070, "task_y": 83424, "task_z": 18, "center_y": 54.597130063264203, "area_in_sqm": 7860.7197914123499, "perimeter_in_m": 354.64302779840398, "length_x": 88.760048113860705, "length_y": 88.761778291689197 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.597527852113863, 0.0 ], [ -0.001373291015625, 54.597527852113863, 0.0 ], [ -0.001373291015625, 54.596732274414435, 0.0 ], [ -0.00274658203125, 54.596732274414435, 0.0 ], [ -0.00274658203125, 54.597527852113863, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2609, "task_x": 131070, "task_y": 83456, "task_z": 18, "center_y": 54.571663618083498, "area_in_sqm": 7870.5085649490402, "perimeter_in_m": 354.86377405828102, "length_x": 88.815421982094605, "length_y": 88.817152687338506 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.572061655658516, 0.0 ], [ -0.001373291015625, 54.572061655658516, 0.0 ], [ -0.001373291015625, 54.571265580508559, 0.0 ], [ -0.00274658203125, 54.571265580508559, 0.0 ], [ -0.00274658203125, 54.572061655658516, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2610, "task_x": 131070, "task_y": 83488, "task_z": 18, "center_y": 54.546181252027999, "area_in_sqm": 7880.3063706159601, "perimeter_in_m": 355.08458659687801, "length_x": 88.870812711418395, "length_y": 88.8725439430319 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.546579538405012, 0.0 ], [ -0.001373291015625, 54.546579538405012, 0.0 ], [ -0.001373291015625, 54.545782965650957, 0.0 ], [ -0.00274658203125, 54.545782965650957, 0.0 ], [ -0.00274658203125, 54.546579538405012, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2611, "task_x": 131070, "task_y": 83520, "task_z": 18, "center_y": 54.520682960187898, "area_in_sqm": 7890.1132091283798, "perimeter_in_m": 355.30546528011803, "length_x": 88.926220268317394, "length_y": 88.9279520252515 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.521081495443603, 0.0 ], [ -0.001373291015625, 54.521081495443603, 0.0 ], [ -0.001373291015625, 54.520284424932157, 0.0 ], [ -0.00274658203125, 54.520284424932157, 0.0 ], [ -0.00274658203125, 54.521081495443603, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2612, "task_x": 131070, "task_y": 83552, "task_z": 18, "center_y": 54.495168737663199, "area_in_sqm": 7899.9290788173703, "perimeter_in_m": 355.52640996664798, "length_x": 88.981644619184294, "length_y": 88.983376900387398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.495567521874065, 0.0 ], [ -0.001373291015625, 54.495567521874065, 0.0 ], [ -0.001373291015625, 54.494769953452256, 0.0 ], [ -0.00274658203125, 54.494769953452256, 0.0 ], [ -0.00274658203125, 54.495567521874065, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2613, "task_x": 131070, "task_y": 83584, "task_z": 18, "center_y": 54.469638579563302, "area_in_sqm": 7909.7539798021298, "perimeter_in_m": 355.747420525557, "length_x": 89.037085730319703, "length_y": 89.038818534737203 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.470037612805754, 0.0 ], [ -0.001373291015625, 54.470037612805754, 0.0 ], [ -0.001373291015625, 54.469239546320914, 0.0 ], [ -0.00274658203125, 54.469239546320914, 0.0 ], [ -0.00274658203125, 54.470037612805754, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2614, "task_x": 131070, "task_y": 83616, "task_z": 18, "center_y": 54.444092481007502, "area_in_sqm": 7919.5879117250397, "perimeter_in_m": 355.96849681866797, "length_x": 89.092543567931898, "length_y": 89.094276894506194 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.444491763357618, 0.0 ], [ -0.001373291015625, 54.444491763357618, 0.0 ], [ -0.001373291015625, 54.443693198657371, 0.0 ], [ -0.00274658203125, 54.443693198657371, 0.0 ], [ -0.00274658203125, 54.444491763357618, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2615, "task_x": 131070, "task_y": 83648, "task_z": 18, "center_y": 54.418530437124403, "area_in_sqm": 7929.4308725595502, "perimeter_in_m": 356.189638709745, "length_x": 89.148018098136305, "length_y": 89.149751945807196 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.418929968658254, 0.0 ], [ -0.001373291015625, 54.418929968658254, 0.0 ], [ -0.001373291015625, 54.418130905590509, 0.0 ], [ -0.00274658203125, 54.418130905590509, 0.0 ], [ -0.00274658203125, 54.418929968658254, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2616, "task_x": 131070, "task_y": 83680, "task_z": 18, "center_y": 54.392952443052401, "area_in_sqm": 7939.2828637361499, "perimeter_in_m": 356.41084606590499, "length_x": 89.203509286956105, "length_y": 89.205243654660194 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.393352223845874, 0.0 ], [ -0.001373291015625, 54.393352223845874, 0.0 ], [ -0.001373291015625, 54.392552662258872, 0.0 ], [ -0.00274658203125, 54.392552662258872, 0.0 ], [ -0.00274658203125, 54.393352223845874, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2617, "task_x": 131070, "task_y": 83712, "task_z": 18, "center_y": 54.367358493939498, "area_in_sqm": 7949.1438829898798, "perimeter_in_m": 356.63211874629798, "length_x": 89.2590171003216, "length_y": 89.260751986992801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.367758524068392, 0.0 ], [ -0.001373291015625, 54.367758524068392, 0.0 ], [ -0.001373291015625, 54.36695846381064, 0.0 ], [ -0.00274658203125, 54.36695846381064, 0.0 ], [ -0.00274658203125, 54.367758524068392, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2618, "task_x": 131070, "task_y": 83744, "task_z": 18, "center_y": 54.341748584943602, "area_in_sqm": 7959.0139299631101, "perimeter_in_m": 356.853456607064, "length_x": 89.314541504070306, "length_y": 89.316276908639495 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.342148864483406, 0.0 ], [ -0.001373291015625, 54.342148864483406, 0.0 ], [ -0.001373291015625, 54.341348305403763, 0.0 ], [ -0.00274658203125, 54.341348305403763, 0.0 ], [ -0.00274658203125, 54.342148864483406, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2619, "task_x": 131070, "task_y": 83776, "task_z": 18, "center_y": 54.316122711231998, "area_in_sqm": 7968.8930040597897, "perimeter_in_m": 357.07485951970801, "length_x": 89.370082463946801, "length_y": 89.371818385341896 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.316523240258256, 0.0 ], [ -0.001373291015625, 54.316523240258256, 0.0 ], [ -0.001373291015625, 54.315722182205839, 0.0 ], [ -0.00274658203125, 54.315722182205839, 0.0 ], [ -0.00274658203125, 54.316523240258256, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2620, "task_x": 131070, "task_y": 83808, "task_z": 18, "center_y": 54.290480867982197, "area_in_sqm": 7978.7811046838797, "perimeter_in_m": 357.29632734354499, "length_x": 89.425639945602398, "length_y": 89.427376382748704 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.290881646570043, 0.0 ], [ -0.001373291015625, 54.290881646570043, 0.0 ], [ -0.001373291015625, 54.290080089394301, 0.0 ], [ -0.00274658203125, 54.290080089394301, 0.0 ], [ -0.00274658203125, 54.290881646570043, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2621, "task_x": 131070, "task_y": 83840, "task_z": 18, "center_y": 54.264823050380997, "area_in_sqm": 7988.6782305240604, "perimeter_in_m": 357.51785993414597, "length_x": 89.481213914595799, "length_y": 89.482950866415393 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.265224078605655, 0.0 ], [ -0.001373291015625, 54.265224078605655, 0.0 ], [ -0.001373291015625, 54.264422022156339, 0.0 ], [ -0.00274658203125, 54.264422022156339, 0.0 ], [ -0.00274658203125, 54.265224078605655, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2622, "task_x": 131070, "task_y": 83872, "task_z": 18, "center_y": 54.2391492536253, "area_in_sqm": 7998.58438098431, "perimeter_in_m": 357.73945716742401, "length_x": 89.536804336391896, "length_y": 89.538541801804101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.239550531561775, 0.0 ], [ -0.001373291015625, 54.239550531561775, 0.0 ], [ -0.001373291015625, 54.238747975688923, 0.0 ], [ -0.00274658203125, 54.238747975688923, 0.0 ], [ -0.00274658203125, 54.239550531561775, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2623, "task_x": 131070, "task_y": 83904, "task_z": 18, "center_y": 54.213459472921897, "area_in_sqm": 8008.4995552301398, "perimeter_in_m": 357.96111888302198, "length_x": 89.592411176362702, "length_y": 89.594149154283897 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.213861000644926, 0.0 ], [ -0.001373291015625, 54.213861000644926, 0.0 ], [ -0.001373291015625, 54.213057945198919, 0.0 ], [ -0.00274658203125, 54.213057945198919, 0.0 ], [ -0.00274658203125, 54.213861000644926, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2624, "task_x": 131070, "task_y": 83936, "task_z": 18, "center_y": 54.187753703487303, "area_in_sqm": 8018.4237527847299, "perimeter_in_m": 358.18284496285202, "length_x": 89.648034399786496, "length_y": 89.649772889130105 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.188155481071497, 0.0 ], [ -0.001373291015625, 54.188155481071497, 0.0 ], [ -0.001373291015625, 54.187351925903002, 0.0 ], [ -0.00274658203125, 54.187351925903002, 0.0 ], [ -0.00274658203125, 54.188155481071497, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2625, "task_x": 131070, "task_y": 83968, "task_z": 18, "center_y": 54.162031940547799, "area_in_sqm": 8028.3569718599301, "perimeter_in_m": 358.40463524406903, "length_x": 89.703673971848005, "length_y": 89.705412971524595 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.162433968067795, 0.0 ], [ -0.001373291015625, 54.162433968067795, 0.0 ], [ -0.001373291015625, 54.161629913027795, 0.0 ], [ -0.00274658203125, 54.161629913027795, 0.0 ], [ -0.00274658203125, 54.162433968067795, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2626, "task_x": 131070, "task_y": 84000, "task_z": 18, "center_y": 54.136294179339899, "area_in_sqm": 8038.2992118597003, "perimeter_in_m": 358.62648960182702, "length_x": 89.759329857638704, "length_y": 89.761069366555702 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.136696456870013, 0.0 ], [ -0.001373291015625, 54.136696456870013, 0.0 ], [ -0.001373291015625, 54.135891901809792, 0.0 ], [ -0.00274658203125, 54.135891901809792, 0.0 ], [ -0.00274658203125, 54.136696456870013, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2627, "task_x": 131070, "task_y": 84032, "task_z": 18, "center_y": 54.110540415109902, "area_in_sqm": 8048.2504718303699, "perimeter_in_m": 358.84840788706299, "length_x": 89.815002022155895, "length_y": 89.816742039217999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.110942942724293, 0.0 ], [ -0.001373291015625, 54.110942942724293, 0.0 ], [ -0.001373291015625, 54.110137887495469, 0.0 ], [ -0.00274658203125, 54.110137887495469, 0.0 ], [ -0.00274658203125, 54.110942942724293, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2628, "task_x": 131070, "task_y": 84064, "task_z": 18, "center_y": 54.084770643113998, "area_in_sqm": 8058.2107512950897, "perimeter_in_m": 359.07038997102802, "length_x": 89.870690430303, "length_y": 89.872430954411996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.085173420886775, 0.0 ], [ -0.001373291015625, 54.085173420886775, 0.0 ], [ -0.001373291015625, 54.084367865341235, 0.0 ], [ -0.00274658203125, 54.084367865341235, 0.0 ], [ -0.00274658203125, 54.085173420886775, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2629, "task_x": 131070, "task_y": 84096, "task_z": 18, "center_y": 54.058984858618601, "area_in_sqm": 8068.1800481081, "perimeter_in_m": 359.29243570074698, "length_x": 89.926395046889695, "length_y": 89.928136076944497 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.059387886623583, 0.0 ], [ -0.001373291015625, 54.059387886623583, 0.0 ], [ -0.001373291015625, 54.058581830613569, 0.0 ], [ -0.00274658203125, 54.058581830613569, 0.0 ], [ -0.00274658203125, 54.059387886623583, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2630, "task_x": 131070, "task_y": 84128, "task_z": 18, "center_y": 54.033183056899901, "area_in_sqm": 8078.1583621501904, "perimeter_in_m": 359.51454493365202, "length_x": 89.982115836631806, "length_y": 89.983857371528103 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.033586335210828, 0.0 ], [ -0.001373291015625, 54.033586335210828, 0.0 ], [ -0.001373291015625, 54.032779778588896, 0.0 ], [ -0.00274658203125, 54.032779778588896, 0.0 ], [ -0.00274658203125, 54.033586335210828, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2631, "task_x": 131070, "task_y": 84160, "task_z": 18, "center_y": 54.0073652332443, "area_in_sqm": 8088.1456913948095, "perimeter_in_m": 359.73671752982801, "length_x": 90.0378527641505, "length_y": 90.039594802781195 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 54.007768761934763, 0.0 ], [ -0.001373291015625, 54.007768761934763, 0.0 ], [ -0.001373291015625, 54.006961704553753, 0.0 ], [ -0.00274658203125, 54.006961704553753, 0.0 ], [ -0.00274658203125, 54.007768761934763, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2632, "task_x": 131070, "task_y": 84192, "task_z": 18, "center_y": 53.981531382948198, "area_in_sqm": 8098.1420359611502, "perimeter_in_m": 359.958953350591, "length_x": 90.093605793972998, "length_y": 90.095348335228095 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.981935162091659, 0.0 ], [ -0.001373291015625, 53.981935162091659, 0.0 ], [ -0.001373291015625, 53.981127603804744, 0.0 ], [ -0.00274658203125, 53.981127603804744, 0.0 ], [ -0.00274658203125, 53.981935162091659, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2633, "task_x": 131070, "task_y": 84224, "task_z": 18, "center_y": 53.955681501318203, "area_in_sqm": 8108.1473932266199, "perimeter_in_m": 360.18125224645303, "length_x": 90.149374890532101, "length_y": 90.151117933298707 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.956085530987885, 0.0 ], [ -0.001373291015625, 53.956085530987885, 0.0 ], [ -0.001373291015625, 53.955277471648557, 0.0 ], [ -0.00274658203125, 53.955277471648557, 0.0 ], [ -0.00274658203125, 53.956085530987885, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2634, "task_x": 131070, "task_y": 84256, "task_z": 18, "center_y": 53.929815583671001, "area_in_sqm": 8118.1617631912204, "perimeter_in_m": 360.40361407693598, "length_x": 90.205160018166197, "length_y": 90.206903561328105 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.930219863940003, 0.0 ], [ -0.001373291015625, 53.930219863940003, 0.0 ], [ -0.001373291015625, 53.929411303402055, 0.0 ], [ -0.00274658203125, 53.929411303402055, 0.0 ], [ -0.00274658203125, 53.930219863940003, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2635, "task_x": 131070, "task_y": 84288, "task_z": 18, "center_y": 53.903933625333501, "area_in_sqm": 8128.1851438283902, "perimeter_in_m": 360.626038697117, "length_x": 90.260961141119097, "length_y": 90.2627051835575 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.90433815627469, 0.0 ], [ -0.001373291015625, 53.90433815627469, 0.0 ], [ -0.001373291015625, 53.903529094392262, 0.0 ], [ -0.00274658203125, 53.903529094392262, 0.0 ], [ -0.00274658203125, 53.90433815627469, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2636, "task_x": 131070, "task_y": 84320, "task_z": 18, "center_y": 53.878035621642603, "area_in_sqm": 8138.2175338268298, "perimeter_in_m": 360.84852596331899, "length_x": 90.3167782235397, "length_y": 90.318522764132894 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.878440403328824, 0.0 ], [ -0.001373291015625, 53.878440403328824, 0.0 ], [ -0.001373291015625, 53.87763083995636, 0.0 ], [ -0.00274658203125, 53.87763083995636, 0.0 ], [ -0.00274658203125, 53.878440403328824, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2637, "task_x": 131070, "task_y": 84352, "task_z": 18, "center_y": 53.852121567945602, "area_in_sqm": 8148.2589323520697, "perimeter_in_m": 361.07107573450003, "length_x": 90.372611229482601, "length_y": 90.374356267105597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.852526600449529, 0.0 ], [ -0.001373291015625, 53.852526600449529, 0.0 ], [ -0.001373291015625, 53.85171653544176, 0.0 ], [ -0.00274658203125, 53.85171653544176, 0.0 ], [ -0.00274658203125, 53.852526600449529, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2638, "task_x": 131070, "task_y": 84384, "task_z": 18, "center_y": 53.826191459600103, "area_in_sqm": 8158.3093377351797, "perimeter_in_m": 361.29368785315398, "length_x": 90.428460122907296, "length_y": 90.430205656432193 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.826596742994113, 0.0 ], [ -0.001373291015625, 53.826596742994113, 0.0 ], [ -0.001373291015625, 53.825786176206165, 0.0 ], [ -0.00274658203125, 53.825786176206165, 0.0 ], [ -0.00274658203125, 53.826596742994113, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2639, "task_x": 131070, "task_y": 84416, "task_z": 18, "center_y": 53.800245291973802, "area_in_sqm": 8168.3687491416904, "perimeter_in_m": 361.51636218351501, "length_x": 90.484324867678097, "length_y": 90.486070895974393 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.800650826330212, 0.0 ], [ -0.001373291015625, 53.800650826330212, 0.0 ], [ -0.001373291015625, 53.799839757617477, 0.0 ], [ -0.00274658203125, 53.799839757617477, 0.0 ], [ -0.00274658203125, 53.800650826330212, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2640, "task_x": 131070, "task_y": 84448, "task_z": 18, "center_y": 53.774283060444901, "area_in_sqm": 8178.4371649026898, "perimeter_in_m": 361.73909858751898, "length_x": 90.5402054275647, "length_y": 90.541951949498497 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.774688845835762, 0.0 ], [ -0.001373291015625, 53.774688845835762, 0.0 ], [ -0.001373291015625, 53.773877275053941, 0.0 ], [ -0.00274658203125, 53.773877275053941, 0.0 ], [ -0.00274658203125, 53.774688845835762, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2641, "task_x": 131070, "task_y": 84480, "task_z": 18, "center_y": 53.748304760401602, "area_in_sqm": 8188.5145829916, "perimeter_in_m": 361.96189690426002, "length_x": 90.596101766241304, "length_y": 90.597848780675903 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.748710796898976, 0.0 ], [ -0.001373291015625, 53.748710796898976, 0.0 ], [ -0.001373291015625, 53.747898723904143, 0.0 ], [ -0.00274658203125, 53.747898723904143, 0.0 ], [ -0.00274658203125, 53.748710796898976, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2642, "task_x": 131070, "task_y": 84512, "task_z": 18, "center_y": 53.7223103872427, "area_in_sqm": 8198.6010028123892, "perimeter_in_m": 362.184756988213, "length_x": 90.652013847286995, "length_y": 90.6537613530827 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.722716674918466, 0.0 ], [ -0.001373291015625, 53.722716674918466, 0.0 ], [ -0.001373291015625, 53.721904099566991, 0.0 ], [ -0.00274658203125, 53.721904099566991, 0.0 ], [ -0.00274658203125, 53.722716674918466, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2643, "task_x": 131070, "task_y": 84544, "task_z": 18, "center_y": 53.6962999363775, "area_in_sqm": 8208.6964223384894, "perimeter_in_m": 362.40767870639002, "length_x": 90.707941634185303, "length_y": 90.709689630199506 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.69670647530323, 0.0 ], [ -0.001373291015625, 53.69670647530323, 0.0 ], [ -0.001373291015625, 53.695893397451798, 0.0 ], [ -0.00274658203125, 53.695893397451798, 0.0 ], [ -0.00274658203125, 53.69670647530323, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2644, "task_x": 131070, "task_y": 84576, "task_z": 18, "center_y": 53.670273403225501, "area_in_sqm": 8218.8008402586001, "perimeter_in_m": 362.63066189803601, "length_x": 90.763885090324706, "length_y": 90.765633575411798 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.670680193472627, 0.0 ], [ -0.001373291015625, 53.670680193472627, 0.0 ], [ -0.001373291015625, 53.669866612978275, 0.0 ], [ -0.00274658203125, 53.669866612978275, 0.0 ], [ -0.00274658203125, 53.670680193472627, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2645, "task_x": 131070, "task_y": 84608, "task_z": 18, "center_y": 53.644230783216599, "area_in_sqm": 8228.9142546653693, "perimeter_in_m": 362.85370642413199, "length_x": 90.819844178997698, "length_y": 90.821593152008901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.644637824856524, 0.0 ], [ -0.001373291015625, 53.644637824856524, 0.0 ], [ -0.001373291015625, 53.643823741576583, 0.0 ], [ -0.00274658203125, 53.643823741576583, 0.0 ], [ -0.00274658203125, 53.644637824856524, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2646, "task_x": 131070, "task_y": 84640, "task_z": 18, "center_y": 53.6181720717912, "area_in_sqm": 8239.03666472435, "perimeter_in_m": 363.07681212282199, "length_x": 90.875818863401406, "length_y": 90.877568323185102 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.618579364895162, 0.0 ], [ -0.001373291015625, 53.618579364895162, 0.0 ], [ -0.001373291015625, 53.617764778687338, 0.0 ], [ -0.00274658203125, 53.617764778687338, 0.0 ], [ -0.00274658203125, 53.618579364895162, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2647, "task_x": 131070, "task_y": 84672, "task_z": 18, "center_y": 53.5920972644005, "area_in_sqm": 8249.1680674552899, "perimeter_in_m": 363.29997885683503, "length_x": 90.931809106636905, "length_y": 90.933559052038504 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.592504809039362, 0.0 ], [ -0.001373291015625, 53.592504809039362, 0.0 ], [ -0.001373291015625, 53.591689719761654, 0.0 ], [ -0.00274658203125, 53.591689719761654, 0.0 ], [ -0.00274658203125, 53.592504809039362, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2648, "task_x": 131070, "task_y": 84704, "task_z": 18, "center_y": 53.566006356505802, "area_in_sqm": 8259.3084630966205, "perimeter_in_m": 363.523206482322, "length_x": 90.987814871709801, "length_y": 90.989565301571702 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.566414152750433, 0.0 ], [ -0.001373291015625, 53.566414152750433, 0.0 ], [ -0.001373291015625, 53.565598560261158, 0.0 ], [ -0.00274658203125, 53.565598560261158, 0.0 ], [ -0.00274658203125, 53.566414152750433, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2649, "task_x": 131070, "task_y": 84736, "task_z": 18, "center_y": 53.539899343579101, "area_in_sqm": 8269.4578484296799, "perimeter_in_m": 363.74649483192297, "length_x": 91.043836121529296, "length_y": 91.045587034690797 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.5403073915002, 0.0 ], [ -0.001373291015625, 53.5403073915002, 0.0 ], [ -0.001373291015625, 53.539491295658046, 0.0 ], [ -0.00274658203125, 53.539491295658046, 0.0 ], [ -0.00274658203125, 53.5403073915002, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2650, "task_x": 131070, "task_y": 84768, "task_z": 18, "center_y": 53.5137762211031, "area_in_sqm": 8279.6162221431696, "perimeter_in_m": 363.96984377272901, "length_x": 91.099872818909006, "length_y": 91.101624214206495 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.514184520771117, 0.0 ], [ -0.001373291015625, 53.514184520771117, 0.0 ], [ -0.001373291015625, 53.513367921435076, 0.0 ], [ -0.00274658203125, 53.513367921435076, 0.0 ], [ -0.00274658203125, 53.514184520771117, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2651, "task_x": 131070, "task_y": 84800, "task_z": 18, "center_y": 53.487636984570898, "area_in_sqm": 8289.7835830450094, "perimeter_in_m": 364.19325315184801, "length_x": 91.155924926566001, "length_y": 91.157676802832896 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.488045536056205, 0.0 ], [ -0.001373291015625, 53.488045536056205, 0.0 ], [ -0.001373291015625, 53.487228433085598, 0.0 ], [ -0.00274658203125, 53.487228433085598, 0.0 ], [ -0.00274658203125, 53.488045536056205, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2652, "task_x": 131070, "task_y": 84832, "task_z": 18, "center_y": 53.4614816294864, "area_in_sqm": 8299.9599281549508, "perimeter_in_m": 364.416722811233, "length_x": 91.211992407121301, "length_y": 91.213744763187904 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.461890432859121, 0.0 ], [ -0.001373291015625, 53.461890432859121, 0.0 ], [ -0.001373291015625, 53.461072826113607, 0.0 ], [ -0.00274658203125, 53.461072826113607, 0.0 ], [ -0.00274658203125, 53.461890432859121, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2653, "task_x": 131070, "task_y": 84864, "task_z": 18, "center_y": 53.435310151364, "area_in_sqm": 8310.1452572345697, "perimeter_in_m": 364.64025260750901, "length_x": 91.268075223099601, "length_y": 91.269828057793205 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.435719206694195, 0.0 ], [ -0.001373291015625, 53.435719206694195, 0.0 ], [ -0.001373291015625, 53.434901096033776, 0.0 ], [ -0.00274658203125, 53.434901096033776, 0.0 ], [ -0.00274658203125, 53.435719206694195, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2654, "task_x": 131070, "task_y": 84896, "task_z": 18, "center_y": 53.409122545728899, "area_in_sqm": 8320.3395669460297, "perimeter_in_m": 364.86384238790401, "length_x": 91.324173336928993, "length_y": 91.325926649074006 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.409531853086435, 0.0 ], [ -0.001373291015625, 53.409531853086435, 0.0 ], [ -0.001373291015625, 53.408713238371433, 0.0 ], [ -0.00274658203125, 53.408713238371433, 0.0 ], [ -0.00274658203125, 53.409531853086435, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2655, "task_x": 131070, "task_y": 84928, "task_z": 18, "center_y": 53.382918808117097, "area_in_sqm": 8330.5428560972196, "perimeter_in_m": 365.08749199239901, "length_x": 91.380286710941306, "length_y": 91.382040499358993 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.383328367571544, 0.0 ], [ -0.001373291015625, 53.383328367571544, 0.0 ], [ -0.001373291015625, 53.382509248662636, 0.0 ], [ -0.00274658203125, 53.382509248662636, 0.0 ], [ -0.00274658203125, 53.383328367571544, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2656, "task_x": 131070, "task_y": 84960, "task_z": 18, "center_y": 53.356698934075098, "area_in_sqm": 8340.7551225423795, "perimeter_in_m": 365.31120128622899, "length_x": 91.436415307371405, "length_y": 91.438169570880206 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.35710874569601, 0.0 ], [ -0.001373291015625, 53.35710874569601, 0.0 ], [ -0.001373291015625, 53.356289122454179, 0.0 ], [ -0.00274658203125, 53.356289122454179, 0.0 ], [ -0.00274658203125, 53.35710874569601, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2657, "task_x": 131070, "task_y": 84992, "task_z": 18, "center_y": 53.330462919160297, "area_in_sqm": 8350.9763652086294, "perimeter_in_m": 365.53497009836798, "length_x": 91.492559088357694, "length_y": 91.494313825772593 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.330872983017045, 0.0 ], [ -0.001373291015625, 53.330872983017045, 0.0 ], [ -0.001373291015625, 53.330052855303641, 0.0 ], [ -0.00274658203125, 53.330052855303641, 0.0 ], [ -0.00274658203125, 53.330872983017045, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2658, "task_x": 131070, "task_y": 85024, "task_z": 18, "center_y": 53.304210758941103, "area_in_sqm": 8361.2065806388891, "perimeter_in_m": 365.75879829367, "length_x": 91.548718015941404, "length_y": 91.550473226074899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.304621075102702, 0.0 ], [ -0.001373291015625, 53.304621075102702, 0.0 ], [ -0.001373291015625, 53.303800442779391, 0.0 ], [ -0.00274658203125, 53.303800442779391, 0.0 ], [ -0.00274658203125, 53.304621075102702, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2659, "task_x": 131070, "task_y": 85056, "task_z": 18, "center_y": 53.2779424489962, "area_in_sqm": 8371.4457678794897, "perimeter_in_m": 365.98268570709598, "length_x": 91.604892052067299, "length_y": 91.606647733728593 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.278353017531821, 0.0 ], [ -0.001373291015625, 53.278353017531821, 0.0 ], [ -0.001373291015625, 53.277531880460621, 0.0 ], [ -0.00274658203125, 53.277531880460621, 0.0 ], [ -0.00274658203125, 53.278353017531821, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2660, "task_x": 131070, "task_y": 85088, "task_z": 18, "center_y": 53.251657984915802, "area_in_sqm": 8381.6939241886103, "perimeter_in_m": 366.20663218331202, "length_x": 91.661081158582903, "length_y": 91.662837310577899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.252068805894119, 0.0 ], [ -0.001373291015625, 53.252068805894119, 0.0 ], [ -0.001373291015625, 53.2512471639374, 0.0 ], [ -0.00274658203125, 53.2512471639374, 0.0 ], [ -0.00274658203125, 53.252068805894119, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2661, "task_x": 131070, "task_y": 85120, "task_z": 18, "center_y": 53.2253573623004, "area_in_sqm": 8391.9510486125891, "perimeter_in_m": 366.43063758022299, "length_x": 91.717285297238405, "length_y": 91.719041918370394 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.225768435790201, 0.0 ], [ -0.001373291015625, 53.225768435790201, 0.0 ], [ -0.001373291015625, 53.224946288810628, 0.0 ], [ -0.00274658203125, 53.224946288810628, 0.0 ], [ -0.00274658203125, 53.225768435790201, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2662, "task_x": 131070, "task_y": 85152, "task_z": 18, "center_y": 53.199040576761902, "area_in_sqm": 8402.2171375751495, "perimeter_in_m": 366.65470173433403, "length_x": 91.773504429687094, "length_y": 91.775261518756196 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.199451902831555, 0.0 ], [ -0.001373291015625, 53.199451902831555, 0.0 ], [ -0.001373291015625, 53.198629250692186, 0.0 ], [ -0.00274658203125, 53.198629250692186, 0.0 ], [ -0.00274658203125, 53.199451902831555, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2663, "task_x": 131070, "task_y": 85184, "task_z": 18, "center_y": 53.172707623922697, "area_in_sqm": 8412.4921896457708, "perimeter_in_m": 366.878824494681, "length_x": 91.829738517484898, "length_y": 91.831496073288093 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.173119202640628, 0.0 ], [ -0.001373291015625, 53.173119202640628, 0.0 ], [ -0.001373291015625, 53.172296045204831, 0.0 ], [ -0.00274658203125, 53.172296045204831, 0.0 ], [ -0.00274658203125, 53.173119202640628, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2664, "task_x": 131070, "task_y": 85216, "task_z": 18, "center_y": 53.1463584994166, "area_in_sqm": 8422.7762030363101, "perimeter_in_m": 367.103005701624, "length_x": 91.885987522090105, "length_y": 91.887745543421403 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.146770330850828, 0.0 ], [ -0.001373291015625, 53.146770330850828, 0.0 ], [ -0.001373291015625, 53.145946667982322, 0.0 ], [ -0.00274658203125, 53.145946667982322, 0.0 ], [ -0.00274658203125, 53.146770330850828, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2665, "task_x": 131070, "task_y": 85248, "task_z": 18, "center_y": 53.119993198887997, "area_in_sqm": 8433.0691748857498, "perimeter_in_m": 367.32724520663498, "length_x": 91.942251404863697, "length_y": 91.944009890514096 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.120405283106564, 0.0 ], [ -0.001373291015625, 53.120405283106564, 0.0 ], [ -0.001373291015625, 53.119581114669423, 0.0 ], [ -0.00274658203125, 53.119581114669423, 0.0 ], [ -0.00274658203125, 53.120405283106564, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2666, "task_x": 131070, "task_y": 85280, "task_z": 18, "center_y": 53.093611717992601, "area_in_sqm": 8443.3711031675302, "perimeter_in_m": 367.55154285038998, "length_x": 91.998530127069102, "length_y": 92.000289075826501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.094024055063244, 0.0 ], [ -0.001373291015625, 53.094024055063244, 0.0 ], [ -0.001373291015625, 53.093199380921874, 0.0 ], [ -0.00274658203125, 53.093199380921874, 0.0 ], [ -0.00274658203125, 53.094024055063244, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2667, "task_x": 131070, "task_y": 85312, "task_z": 18, "center_y": 53.067214052396899, "area_in_sqm": 8453.6819853782708, "perimeter_in_m": 367.77589847549899, "length_x": 92.054823649871906, "length_y": 92.056583060521206 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.067626642387367, 0.0 ], [ -0.001373291015625, 53.067626642387367, 0.0 ], [ -0.001373291015625, 53.066801462406524, 0.0 ], [ -0.00274658203125, 53.066801462406524, 0.0 ], [ -0.00274658203125, 53.067626642387367, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2668, "task_x": 131070, "task_y": 85344, "task_z": 18, "center_y": 53.0408001977789, "area_in_sqm": 8464.0018197298104, "perimeter_in_m": 368.00031192790402, "length_x": 92.111131934340094, "length_y": 92.112891805662997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.041213040756475, 0.0 ], [ -0.001373291015625, 53.041213040756475, 0.0 ], [ -0.001373291015625, 53.040387354801254, 0.0 ], [ -0.00274658203125, 53.040387354801254, 0.0 ], [ -0.00274658203125, 53.041213040756475, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2669, "task_x": 131070, "task_y": 85376, "task_z": 18, "center_y": 53.014370149827101, "area_in_sqm": 8474.3306026458704, "perimeter_in_m": 368.22478304840899, "length_x": 92.167454941443594, "length_y": 92.169215272218906 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 53.014783245859213, 0.0 ], [ -0.001373291015625, 53.014783245859213, 0.0 ], [ -0.001373291015625, 53.013957053795082, 0.0 ], [ -0.00274658203125, 53.013957053795082, 0.0 ], [ -0.00274658203125, 53.014783245859213, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2670, "task_x": 131070, "task_y": 85408, "task_z": 18, "center_y": 52.987923904241804, "area_in_sqm": 8484.6683332920093, "perimeter_in_m": 368.44931168468401, "length_x": 92.223792632054398, "length_y": 92.225553421057796 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.988337253395414, 0.0 ], [ -0.001373291015625, 52.988337253395414, 0.0 ], [ -0.001373291015625, 52.987510555088143, 0.0 ], [ -0.00274658203125, 52.987510555088143, 0.0 ], [ -0.00274658203125, 52.988337253395414, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2671, "task_x": 131070, "task_y": 85440, "task_z": 18, "center_y": 52.9614614567339, "area_in_sqm": 8495.0150089263898, "perimeter_in_m": 368.673897671487, "length_x": 92.280144966946494, "length_y": 92.281906212950503 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.961875059076014, 0.0 ], [ -0.001373291015625, 52.961875059076014, 0.0 ], [ -0.001373291015625, 52.961047854391779, 0.0 ], [ -0.00274658203125, 52.961047854391779, 0.0 ], [ -0.00274658203125, 52.961875059076014, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2672, "task_x": 131070, "task_y": 85472, "task_z": 18, "center_y": 52.934982803025797, "area_in_sqm": 8505.3706260919607, "perimeter_in_m": 368.89854085610602, "length_x": 92.336511906795707, "length_y": 92.338273608569907 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.935396658623169, 0.0 ], [ -0.001373291015625, 52.935396658623169, 0.0 ], [ -0.001373291015625, 52.934568947428453, 0.0 ], [ -0.00274658203125, 52.934568947428453, 0.0 ], [ -0.00274658203125, 52.935396658623169, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2673, "task_x": 131070, "task_y": 85504, "task_z": 18, "center_y": 52.908487938851103, "area_in_sqm": 8515.7351830005591, "perimeter_in_m": 369.12324107502201, "length_x": 92.392893412179404, "length_y": 92.394655568490293 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.908902047770255, 0.0 ], [ -0.001373291015625, 52.908902047770255, 0.0 ], [ -0.001373291015625, 52.908073829931915, 0.0 ], [ -0.00274658203125, 52.908073829931915, 0.0 ], [ -0.00274658203125, 52.908902047770255, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2674, "task_x": 131070, "task_y": 85536, "task_z": 18, "center_y": 52.881976859954499, "area_in_sqm": 8526.1086772680301, "perimeter_in_m": 369.34799817443798, "length_x": 92.449289443577101, "length_y": 92.451052053187993 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.882391222261887, 0.0 ], [ -0.001373291015625, 52.882391222261887, 0.0 ], [ -0.001373291015625, 52.881562497647117, 0.0 ], [ -0.00274658203125, 52.881562497647117, 0.0 ], [ -0.00274658203125, 52.882391222261887, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2675, "task_x": 131070, "task_y": 85568, "task_z": 18, "center_y": 52.855449562092197, "area_in_sqm": 8536.4911055564899, "perimeter_in_m": 369.572811993968, "length_x": 92.505699961369203, "length_y": 92.507463023040501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.855864177853981, 0.0 ], [ -0.001373291015625, 52.855864177853981, 0.0 ], [ -0.001373291015625, 52.855034946330335, 0.0 ], [ -0.00274658203125, 52.855034946330335, 0.0 ], [ -0.00274658203125, 52.855864177853981, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2676, "task_x": 131070, "task_y": 85600, "task_z": 18, "center_y": 52.828906041031402, "area_in_sqm": 8546.8824664354306, "perimeter_in_m": 369.79768237658601, "length_x": 92.562124925838006, "length_y": 92.563888438326899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.829320910313733, 0.0 ], [ -0.001373291015625, 52.829320910313733, 0.0 ], [ -0.001373291015625, 52.828491171749114, 0.0 ], [ -0.00274658203125, 52.828491171749114, 0.0 ], [ -0.00274658203125, 52.829320910313733, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2677, "task_x": 131070, "task_y": 85632, "task_z": 18, "center_y": 52.802346292551, "area_in_sqm": 8557.2827563285791, "perimeter_in_m": 370.02260915093098, "length_x": 92.618564297167296, "length_y": 92.620328259227904 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.802761415419667, 0.0 ], [ -0.001373291015625, 52.802761415419667, 0.0 ], [ -0.001373291015625, 52.801931169682355, 0.0 ], [ -0.00274658203125, 52.801931169682355, 0.0 ], [ -0.00274658203125, 52.802761415419667, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2678, "task_x": 131070, "task_y": 85664, "task_z": 18, "center_y": 52.775770312440997, "area_in_sqm": 8567.6919727325403, "perimeter_in_m": 370.247592173714, "length_x": 92.675018035441596, "length_y": 92.676782445825097 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.776185688961718, 0.0 ], [ -0.001373291015625, 52.776185688961718, 0.0 ], [ -0.001373291015625, 52.775354935920312, 0.0 ], [ -0.00274658203125, 52.775354935920312, 0.0 ], [ -0.00274658203125, 52.776185688961718, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2679, "task_x": 131070, "task_y": 85696, "task_z": 18, "center_y": 52.749178096502902, "area_in_sqm": 8578.1101132631302, "perimeter_in_m": 370.47263126964299, "length_x": 92.731486100647302, "length_y": 92.733250958101493 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.749593726741146, 0.0 ], [ -0.001373291015625, 52.749593726741146, 0.0 ], [ -0.001373291015625, 52.74876246626463, 0.0 ], [ -0.00274658203125, 52.74876246626463, 0.0 ], [ -0.00274658203125, 52.749593726741146, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2680, "task_x": 131070, "task_y": 85728, "task_z": 18, "center_y": 52.722569640549501, "area_in_sqm": 8588.5371750593204, "perimeter_in_m": 370.69772628160803, "length_x": 92.787968452671294, "length_y": 92.7897337559411 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.722985524570682, 0.0 ], [ -0.001373291015625, 52.722985524570682, 0.0 ], [ -0.001373291015625, 52.722153756528378, 0.0 ], [ -0.00274658203125, 52.722153756528378, 0.0 ], [ -0.00274658203125, 52.722985524570682, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2681, "task_x": 131070, "task_y": 85760, "task_z": 18, "center_y": 52.695944940405298, "area_in_sqm": 8598.9731550216693, "perimeter_in_m": 370.92287704876799, "length_x": 92.844465051301896, "length_y": 92.846230799129103 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.696361078274478, 0.0 ], [ -0.001373291015625, 52.696361078274478, 0.0 ], [ -0.001373291015625, 52.695528802536082, 0.0 ], [ -0.00274658203125, 52.695528802536082, 0.0 ], [ -0.00274658203125, 52.696361078274478, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2682, "task_x": 131070, "task_y": 85792, "task_z": 18, "center_y": 52.669303991905998, "area_in_sqm": 8609.4180506467801, "perimeter_in_m": 371.148083405139, "length_x": 92.900975856228001, "length_y": 92.902742047351396 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.669720383688166, 0.0 ], [ -0.001373291015625, 52.669720383688166, 0.0 ], [ -0.001373291015625, 52.668887600123746, 0.0 ], [ -0.00274658203125, 52.668887600123746, 0.0 ], [ -0.00274658203125, 52.669720383688166, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2683, "task_x": 131070, "task_y": 85824, "task_z": 18, "center_y": 52.642646790898901, "area_in_sqm": 8619.8718588352203, "perimeter_in_m": 371.37334520150398, "length_x": 92.957500827039695, "length_y": 92.959267460194795 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.643063436658906, 0.0 ], [ -0.001373291015625, 52.643063436658906, 0.0 ], [ -0.001373291015625, 52.642230145138846, 0.0 ], [ -0.00274658203125, 52.642230145138846, 0.0 ], [ -0.00274658203125, 52.643063436658906, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2684, "task_x": 131070, "task_y": 85856, "task_z": 18, "center_y": 52.615973333242898, "area_in_sqm": 8630.3345776796305, "perimeter_in_m": 371.59866225946598, "length_x": 93.014039923227401, "length_y": 93.015806997146598 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.616390233045379, 0.0 ], [ -0.001373291015625, 52.616390233045379, 0.0 ], [ -0.001373291015625, 52.615556433440446, 0.0 ], [ -0.00274658203125, 52.615556433440446, 0.0 ], [ -0.00274658203125, 52.616390233045379, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2685, "task_x": 131070, "task_y": 85888, "task_z": 18, "center_y": 52.589283614808501, "area_in_sqm": 8640.8062032461203, "perimeter_in_m": 371.82403442446298, "length_x": 93.070593104182507, "length_y": 93.072360617595294 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.58970076871779, 0.0 ], [ -0.001373291015625, 52.58970076871779, 0.0 ], [ -0.001373291015625, 52.588866460899141, 0.0 ], [ -0.00274658203125, 52.588866460899141, 0.0 ], [ -0.00274658203125, 52.58970076871779, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2686, "task_x": 131070, "task_y": 85920, "task_z": 18, "center_y": 52.562577631477602, "area_in_sqm": 8651.2867325544394, "perimeter_in_m": 372.049461530428, "length_x": 93.127160329196698, "length_y": 93.1289282808293 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.562995039558004, 0.0 ], [ -0.001373291015625, 52.562995039558004, 0.0 ], [ -0.001373291015625, 52.562160223397115, 0.0 ], [ -0.00274658203125, 52.562160223397115, 0.0 ], [ -0.00274658203125, 52.562995039558004, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2687, "task_x": 131070, "task_y": 85952, "task_z": 18, "center_y": 52.535855379143797, "area_in_sqm": 8661.7761628627795, "perimeter_in_m": 372.27494341179801, "length_x": 93.183741557462298, "length_y": 93.185509946037897 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.536273041459467, 0.0 ], [ -0.001373291015625, 52.536273041459467, 0.0 ], [ -0.001373291015625, 52.535437716828199, 0.0 ], [ -0.00274658203125, 52.535437716828199, 0.0 ], [ -0.00274658203125, 52.536273041459467, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2688, "task_x": 131070, "task_y": 85984, "task_z": 18, "center_y": 52.509116853712598, "area_in_sqm": 8672.27449154854, "perimeter_in_m": 372.50047991130702, "length_x": 93.240336748071996, "length_y": 93.242105572310507 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.509534770327278, 0.0 ], [ -0.001373291015625, 52.509534770327278, 0.0 ], [ -0.001373291015625, 52.508698937097847, 0.0 ], [ -0.00274658203125, 52.508698937097847, 0.0 ], [ -0.00274658203125, 52.509534770327278, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2689, "task_x": 131070, "task_y": 86016, "task_z": 18, "center_y": 52.482362051100701, "area_in_sqm": 8682.7817144393903, "perimeter_in_m": 372.72607085451102, "length_x": 93.296945860018596, "length_y": 93.298715118637105 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.482780222078205, 0.0 ], [ -0.001373291015625, 52.482780222078205, 0.0 ], [ -0.001373291015625, 52.481943880123211, 0.0 ], [ -0.00274658203125, 52.481943880123211, 0.0 ], [ -0.00274658203125, 52.482780222078205, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2690, "task_x": 131070, "task_y": 86048, "task_z": 18, "center_y": 52.455590967236901, "area_in_sqm": 8693.2978299856204, "perimeter_in_m": 372.95171608162002, "length_x": 93.353568852195195, "length_y": 93.355338543907493 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.456009392640745, 0.0 ], [ -0.001373291015625, 52.456009392640745, 0.0 ], [ -0.001373291015625, 52.455172541833136, 0.0 ], [ -0.00274658203125, 52.455172541833136, 0.0 ], [ -0.00274658203125, 52.456009392640745, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2691, "task_x": 131070, "task_y": 86080, "task_z": 18, "center_y": 52.428803598061698, "area_in_sqm": 8703.8228338956797, "perimeter_in_m": 373.17741542416201, "length_x": 93.410205683395105, "length_y": 93.411975806911698 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.42922227795512, 0.0 ], [ -0.001373291015625, 52.42922227795512, 0.0 ], [ -0.001373291015625, 52.42838491816822, 0.0 ], [ -0.00274658203125, 52.42838491816822, 0.0 ], [ -0.00274658203125, 52.42922227795512, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2692, "task_x": 131070, "task_y": 86112, "task_z": 18, "center_y": 52.401999939527101, "area_in_sqm": 8714.3567237854004, "perimeter_in_m": 373.40316872336001, "length_x": 93.466856312311407, "length_y": 93.468626866340003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.402418873973318, 0.0 ], [ -0.001373291015625, 52.402418873973318, 0.0 ], [ -0.001373291015625, 52.4015810050808, 0.0 ], [ -0.00274658203125, 52.4015810050808, 0.0 ], [ -0.00274658203125, 52.402418873973318, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2693, "task_x": 131070, "task_y": 86144, "task_z": 18, "center_y": 52.3751799875971, "area_in_sqm": 8724.8994954824393, "perimeter_in_m": 373.62897580115902, "length_x": 93.523520697537293, "length_y": 93.525291680782303 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.375599176659101, 0.0 ], [ -0.001373291015625, 52.375599176659101, 0.0 ], [ -0.001373291015625, 52.374760798535043, 0.0 ], [ -0.00274658203125, 52.374760798535043, 0.0 ], [ -0.00274658203125, 52.375599176659101, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2694, "task_x": 131070, "task_y": 86176, "task_z": 18, "center_y": 52.3483437382475, "area_in_sqm": 8735.4511462449991, "perimeter_in_m": 373.85483649484303, "length_x": 93.5801987975657, "length_y": 93.581970208728293 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.348763181988076, 0.0 ], [ -0.001373291015625, 52.348763181988076, 0.0 ], [ -0.001373291015625, 52.34792429450691, 0.0 ], [ -0.00274658203125, 52.34792429450691, 0.0 ], [ -0.00274658203125, 52.348763181988076, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2695, "task_x": 131070, "task_y": 86208, "task_z": 18, "center_y": 52.321491187466002, "area_in_sqm": 8746.0116730928403, "perimeter_in_m": 374.080750645053, "length_x": 93.636890570789404, "length_y": 93.638662408567797 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.321910885947716, 0.0 ], [ -0.001373291015625, 52.321910885947716, 0.0 ], [ -0.001373291015625, 52.321071488984231, 0.0 ], [ -0.00274658203125, 52.321071488984231, 0.0 ], [ -0.00274658203125, 52.321910885947716, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2696, "task_x": 131070, "task_y": 86240, "task_z": 18, "center_y": 52.294622331252, "area_in_sqm": 8756.5810723304694, "perimeter_in_m": 374.306718080199, "length_x": 93.6935959755006, "length_y": 93.695368238589893 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.295042284537331, 0.0 ], [ -0.001373291015625, 52.295042284537331, 0.0 ], [ -0.001373291015625, 52.294202377966691, 0.0 ], [ -0.00274658203125, 52.294202377966691, 0.0 ], [ -0.00274658203125, 52.295042284537331, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2697, "task_x": 131070, "task_y": 86272, "task_z": 18, "center_y": 52.267737165617, "area_in_sqm": 8767.1593409776706, "perimeter_in_m": 374.53273862282998, "length_x": 93.750314969891306, "length_y": 93.752087656983406 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.268157373768169, 0.0 ], [ -0.001373291015625, 52.268157373768169, 0.0 ], [ -0.001373291015625, 52.26731695746593, 0.0 ], [ -0.00274658203125, 52.26731695746593, 0.0 ], [ -0.00274658203125, 52.268157373768169, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2698, "task_x": 131070, "task_y": 86304, "task_z": 18, "center_y": 52.240835686584497, "area_in_sqm": 8777.7464752197302, "perimeter_in_m": 374.75881211863498, "length_x": 93.807047512053003, "length_y": 93.808820621836503 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.241256149663414, 0.0 ], [ -0.001373291015625, 52.241256149663414, 0.0 ], [ -0.001373291015625, 52.240415223505487, 0.0 ], [ -0.00274658203125, 52.240415223505487, 0.0 ], [ -0.00274658203125, 52.241256149663414, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2699, "task_x": 131070, "task_y": 86336, "task_z": 18, "center_y": 52.213917890189499, "area_in_sqm": 8788.34247171879, "perimeter_in_m": 374.98493839260499, "length_x": 93.863793559976401, "length_y": 93.865567091136995 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.214338608258203, 0.0 ], [ -0.001373291015625, 52.214338608258203, 0.0 ], [ -0.001373291015625, 52.213497172120888, 0.0 ], [ -0.00274658203125, 52.213497172120888, 0.0 ], [ -0.00274658203125, 52.214338608258203, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2700, "task_x": 131070, "task_y": 86368, "task_z": 18, "center_y": 52.186983772479699, "area_in_sqm": 8798.9473274946195, "perimeter_in_m": 375.211117273752, "length_x": 93.920553071551694, "length_y": 93.922327022771796 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.187404745599679, 0.0 ], [ -0.001373291015625, 52.187404745599679, 0.0 ], [ -0.001373291015625, 52.186562799359635, 0.0 ], [ -0.00274658203125, 52.186562799359635, 0.0 ], [ -0.00274658203125, 52.187404745599679, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2701, "task_x": 131070, "task_y": 86400, "task_z": 18, "center_y": 52.160033329514199, "area_in_sqm": 8809.5610380172693, "perimeter_in_m": 375.43734858879799, "length_x": 93.977326004568098, "length_y": 93.979100374526993 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.160454557747038, 0.0 ], [ -0.001373291015625, 52.160454557747038, 0.0 ], [ -0.001373291015625, 52.159612101281311, 0.0 ], [ -0.00274658203125, 52.159612101281311, 0.0 ], [ -0.00274658203125, 52.160454557747038, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2702, "task_x": 131070, "task_y": 86432, "task_z": 18, "center_y": 52.133066557364501, "area_in_sqm": 8820.1836006641406, "perimeter_in_m": 375.66363218050498, "length_x": 94.0341123167142, "length_y": 94.035887104088005 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.133488040771475, 0.0 ], [ -0.001373291015625, 52.133488040771475, 0.0 ], [ -0.001373291015625, 52.132645073957477, 0.0 ], [ -0.00274658203125, 52.132645073957477, 0.0 ], [ -0.00274658203125, 52.133488040771475, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2703, "task_x": 131070, "task_y": 86464, "task_z": 18, "center_y": 52.106083452114099, "area_in_sqm": 8830.8150119781494, "perimeter_in_m": 375.88996787022302, "length_x": 94.090911965577405, "length_y": 94.092687169039095 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.106505190756316, 0.0 ], [ -0.001373291015625, 52.106505190756316, 0.0 ], [ -0.001373291015625, 52.105661713471846, 0.0 ], [ -0.00274658203125, 52.105661713471846, 0.0 ], [ -0.00274658203125, 52.106505190756316, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2704, "task_x": 131070, "task_y": 86496, "task_z": 18, "center_y": 52.079084009858597, "area_in_sqm": 8841.4552679061908, "perimeter_in_m": 376.11635548759602, "length_x": 94.147724908644307, "length_y": 94.149500526863704 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.079506003796965, 0.0 ], [ -0.001373291015625, 52.079506003796965, 0.0 ], [ -0.001373291015625, 52.078662015920209, 0.0 ], [ -0.00274658203125, 52.078662015920209, 0.0 ], [ -0.00274658203125, 52.079506003796965, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2705, "task_x": 131070, "task_y": 86528, "task_z": 18, "center_y": 52.052068226705799, "area_in_sqm": 8852.1043648719806, "perimeter_in_m": 376.34279486206299, "length_x": 94.204551103300105, "length_y": 94.206327134943905 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.052490476000983, 0.0 ], [ -0.001373291015625, 52.052490476000983, 0.0 ], [ -0.001373291015625, 52.051645977410502, 0.0 ], [ -0.00274658203125, 52.051645977410502, 0.0 ], [ -0.00274658203125, 52.052490476000983, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2706, "task_x": 131070, "task_y": 86560, "task_z": 18, "center_y": 52.025036098775502, "area_in_sqm": 8862.7622990608197, "perimeter_in_m": 376.56928582214698, "length_x": 94.261390506828903, "length_y": 94.263166950560603 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 52.025458603488133, 0.0 ], [ -0.001373291015625, 52.025458603488133, 0.0 ], [ -0.001373291015625, 52.024613594062842, 0.0 ], [ -0.00274658203125, 52.024613594062842, 0.0 ], [ -0.00274658203125, 52.025458603488133, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2707, "task_x": 131070, "task_y": 86592, "task_z": 18, "center_y": 51.997987622199901, "area_in_sqm": 8873.4290671348608, "perimeter_in_m": 376.79582819335599, "length_x": 94.318243076413694, "length_y": 94.320019930893594 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.998410382390318, 0.0 ], [ -0.001373291015625, 51.998410382390318, 0.0 ], [ -0.001373291015625, 51.997564862009568, 0.0 ], [ -0.00274658203125, 51.997564862009568, 0.0 ], [ -0.00274658203125, 51.998410382390318, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2708, "task_x": 131070, "task_y": 86624, "task_z": 18, "center_y": 51.970922793123499, "area_in_sqm": 8884.1046649217606, "perimeter_in_m": 377.02242180452799, "length_x": 94.375108769135906, "length_y": 94.376886033021194 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.971345808851716, 0.0 ], [ -0.001373291015625, 51.971345808851716, 0.0 ], [ -0.001373291015625, 51.970499777395197, 0.0 ], [ -0.00274658203125, 51.970499777395197, 0.0 ], [ -0.00274658203125, 51.971345808851716, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2709, "task_x": 131070, "task_y": 86656, "task_z": 18, "center_y": 51.943841607702701, "area_in_sqm": 8894.7890884876306, "perimeter_in_m": 377.249066486412, "length_x": 94.431987541975303, "length_y": 94.433765213919997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.944264879028758, 0.0 ], [ -0.001373291015625, 51.944264879028758, 0.0 ], [ -0.001373291015625, 51.943418336376553, 0.0 ], [ -0.00274658203125, 51.943418336376553, 0.0 ], [ -0.00274658203125, 51.944264879028758, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2710, "task_x": 131070, "task_y": 86688, "task_z": 18, "center_y": 51.916744062106403, "area_in_sqm": 8905.4823347330093, "perimeter_in_m": 377.47576206673898, "length_x": 94.488879351810596, "length_y": 94.490657430465504 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.917167589090141, 0.0 ], [ -0.001373291015625, 51.917167589090141, 0.0 ], [ -0.001373291015625, 51.916320535122715, 0.0 ], [ -0.00274658203125, 51.916320535122715, 0.0 ], [ -0.00274658203125, 51.917167589090141, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2711, "task_x": 131070, "task_y": 86720, "task_z": 18, "center_y": 51.889630152515998, "area_in_sqm": 8916.1843992471695, "perimeter_in_m": 377.70250836171101, "length_x": 94.545784155418602, "length_y": 94.547562639431206 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.890053935216905, 0.0 ], [ -0.001373291015625, 51.890053935216905, 0.0 ], [ -0.001373291015625, 51.889206369815128, 0.0 ], [ -0.00274658203125, 51.889206369815128, 0.0 ], [ -0.00274658203125, 51.890053935216905, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2712, "task_x": 131070, "task_y": 86752, "task_z": 18, "center_y": 51.862499875125003, "area_in_sqm": 8926.8952782154101, "perimeter_in_m": 377.92930520996902, "length_x": 94.602701909474106, "length_y": 94.604480797489003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.862923913602444, 0.0 ], [ -0.001373291015625, 51.862923913602444, 0.0 ], [ -0.001373291015625, 51.862075836647541, 0.0 ], [ -0.00274658203125, 51.862075836647541, 0.0 ], [ -0.00274658203125, 51.862923913602444, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2713, "task_x": 131070, "task_y": 86784, "task_z": 18, "center_y": 51.835353226139297, "area_in_sqm": 8937.6149677038193, "perimeter_in_m": 378.15615243156702, "length_x": 94.6596325705505, "length_y": 94.661411861209004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.835777520452481, 0.0 ], [ -0.001373291015625, 51.835777520452481, 0.0 ], [ -0.001373291015625, 51.834928931826092, 0.0 ], [ -0.00274658203125, 51.834928931826092, 0.0 ], [ -0.00274658203125, 51.835777520452481, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2714, "task_x": 131070, "task_y": 86816, "task_z": 18, "center_y": 51.8081902017773, "area_in_sqm": 8948.3434638977105, "perimeter_in_m": 378.38304984704803, "length_x": 94.716576095119294, "length_y": 94.718355787059394 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.808614751985203, 0.0 ], [ -0.001373291015625, 51.808614751985203, 0.0 ], [ -0.001373291015625, 51.807765651569341, 0.0 ], [ -0.00274658203125, 51.807765651569341, 0.0 ], [ -0.00274658203125, 51.808614751985203, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2715, "task_x": 131070, "task_y": 86848, "task_z": 18, "center_y": 51.781010798269698, "area_in_sqm": 8959.0807627439499, "perimeter_in_m": 378.60999728242098, "length_x": 94.773532439549797, "length_y": 94.775312531406399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.781435604431188, 0.0 ], [ -0.001373291015625, 51.781435604431188, 0.0 ], [ -0.001373291015625, 51.780585992108279, 0.0 ], [ -0.00274658203125, 51.780585992108279, 0.0 ], [ -0.00274658203125, 51.781435604431188, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2716, "task_x": 131070, "task_y": 86880, "task_z": 18, "center_y": 51.753815011859899, "area_in_sqm": 8969.8268600702304, "perimeter_in_m": 378.836994575522, "length_x": 94.830501560109397, "length_y": 94.832282050514294 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.754240074033518, 0.0 ], [ -0.001373291015625, 51.754240074033518, 0.0 ], [ -0.001373291015625, 51.753389949686337, 0.0 ], [ -0.00274658203125, 51.753389949686337, 0.0 ], [ -0.00274658203125, 51.754240074033518, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2717, "task_x": 131070, "task_y": 86912, "task_z": 18, "center_y": 51.726602838803601, "area_in_sqm": 8980.58175134659, "perimeter_in_m": 379.06404153709701, "length_x": 94.887483412963405, "length_y": 94.889264300545094 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.727028157047748, 0.0 ], [ -0.001373291015625, 51.727028157047748, 0.0 ], [ -0.001373291015625, 51.726177520559474, 0.0 ], [ -0.00274658203125, 51.726177520559474, 0.0 ], [ -0.00274658203125, 51.727028157047748, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2718, "task_x": 131070, "task_y": 86944, "task_z": 18, "center_y": 51.699374275369102, "area_in_sqm": 8991.3454333543796, "perimeter_in_m": 379.291137992546, "length_x": 94.944477954174701, "length_y": 94.946259237558394 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.699799849741943, 0.0 ], [ -0.001373291015625, 51.699799849741943, 0.0 ], [ -0.001373291015625, 51.698948700996183, 0.0 ], [ -0.00274658203125, 51.698948700996183, 0.0 ], [ -0.00274658203125, 51.699799849741943, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2719, "task_x": 131070, "task_y": 86976, "task_z": 18, "center_y": 51.672129317837097, "area_in_sqm": 9002.1179006099701, "perimeter_in_m": 379.51828376141702, "length_x": 95.001485139704101, "length_y": 95.003266817511999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.672555148396739, 0.0 ], [ -0.001373291015625, 51.672555148396739, 0.0 ], [ -0.001373291015625, 51.671703487277476, 0.0 ], [ -0.00274658203125, 51.671703487277476, 0.0 ], [ -0.00274658203125, 51.672555148396739, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2720, "task_x": 131070, "task_y": 87008, "task_z": 18, "center_y": 51.644867962501202, "area_in_sqm": 9012.8991506099701, "perimeter_in_m": 379.74547867505299, "length_x": 95.058504925409807, "length_y": 95.0602869962608 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.645294049305399, 0.0 ], [ -0.001373291015625, 51.645294049305399, 0.0 ], [ -0.001373291015625, 51.644441875696955, 0.0 ], [ -0.00274658203125, 51.644441875696955, 0.0 ], [ -0.00274658203125, 51.645294049305399, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2721, "task_x": 131070, "task_y": 87040, "task_z": 18, "center_y": 51.617590205667298, "area_in_sqm": 9023.6891775131207, "perimeter_in_m": 379.972722550485, "length_x": 95.115537267047799, "length_y": 95.117319729557707 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.618016548773696, 0.0 ], [ -0.001373291015625, 51.618016548773696, 0.0 ], [ -0.001373291015625, 51.617163862560865, 0.0 ], [ -0.00274658203125, 51.617163862560865, 0.0 ], [ -0.00274658203125, 51.618016548773696, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2722, "task_x": 131070, "task_y": 87072, "task_z": 18, "center_y": 51.590296043654099, "area_in_sqm": 9034.4879781007803, "perimeter_in_m": 380.200015215115, "length_x": 95.1725821202714, "length_y": 95.174364973052604 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.590722643120138, 0.0 ], [ -0.001373291015625, 51.590722643120138, 0.0 ], [ -0.001373291015625, 51.589869444188061, 0.0 ], [ -0.00274658203125, 51.589869444188061, 0.0 ], [ -0.00274658203125, 51.590722643120138, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2723, "task_x": 131070, "task_y": 87104, "task_z": 18, "center_y": 51.562985472793002, "area_in_sqm": 9045.2955478429794, "perimeter_in_m": 380.42735648201602, "length_x": 95.229639440631203, "length_y": 95.2314226822931 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.563412328675874, 0.0 ], [ -0.001373291015625, 51.563412328675874, 0.0 ], [ -0.001373291015625, 51.56255861691011, 0.0 ], [ -0.00274658203125, 51.56255861691011, 0.0 ], [ -0.00274658203125, 51.563412328675874, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2724, "task_x": 131070, "task_y": 87136, "task_z": 18, "center_y": 51.535658489428002, "area_in_sqm": 9056.1118817329407, "perimeter_in_m": 380.65474617678802, "length_x": 95.286709183575198, "length_y": 95.288492812723902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.536085601784741, 0.0 ], [ -0.001373291015625, 51.536085601784741, 0.0 ], [ -0.001373291015625, 51.535231377071241, 0.0 ], [ -0.00274658203125, 51.535231377071241, 0.0 ], [ -0.00274658203125, 51.536085601784741, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2725, "task_x": 131070, "task_y": 87168, "task_z": 18, "center_y": 51.508315089915897, "area_in_sqm": 9066.9369761943799, "perimeter_in_m": 380.88218412835403, "length_x": 95.3437913044488, "length_y": 95.3455753196871 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.508742458803326, 0.0 ], [ -0.001373291015625, 51.508742458803326, 0.0 ], [ -0.001373291015625, 51.507887721028432, 0.0 ], [ -0.00274658203125, 51.507887721028432, 0.0 ], [ -0.00274658203125, 51.508742458803326, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2726, "task_x": 131070, "task_y": 87200, "task_z": 18, "center_y": 51.480955270626197, "area_in_sqm": 9077.7708266973495, "perimeter_in_m": 381.10967014068399, "length_x": 95.400885758494198, "length_y": 95.402670158421799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.481382896100975, 0.0 ], [ -0.001373291015625, 51.481382896100975, 0.0 ], [ -0.001373291015625, 51.48052764515144, 0.0 ], [ -0.00274658203125, 51.48052764515144, 0.0 ], [ -0.00274658203125, 51.481382896100975, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2727, "task_x": 131070, "task_y": 87232, "task_z": 18, "center_y": 51.453579027941302, "area_in_sqm": 9088.6134282350504, "perimeter_in_m": 381.33720404795798, "length_x": 95.457992500850594, "length_y": 95.459777284064003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.454006910059817, 0.0 ], [ -0.001373291015625, 51.454006910059817, 0.0 ], [ -0.001373291015625, 51.453151145822794, 0.0 ], [ -0.00274658203125, 51.453151145822794, 0.0 ], [ -0.00274658203125, 51.454006910059817, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2728, "task_x": 131070, "task_y": 87264, "task_z": 18, "center_y": 51.426186358256302, "area_in_sqm": 9099.4647767543793, "perimeter_in_m": 381.56478566080102, "length_x": 95.515111486554702, "length_y": 95.516896651647102 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.426614497074816, 0.0 ], [ -0.001373291015625, 51.426614497074816, 0.0 ], [ -0.001373291015625, 51.425758219437839, 0.0 ], [ -0.00274658203125, 51.425758219437839, 0.0 ], [ -0.00274658203125, 51.426614497074816, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2729, "task_x": 131070, "task_y": 87296, "task_z": 18, "center_y": 51.398777257979297, "area_in_sqm": 9110.3248671293295, "perimeter_in_m": 381.79241480096999, "length_x": 95.572242670539495, "length_y": 95.574028216100899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.399205653553771, 0.0 ], [ -0.001373291015625, 51.399205653553771, 0.0 ], [ -0.001373291015625, 51.398348862404802, 0.0 ], [ -0.00274658203125, 51.398348862404802, 0.0 ], [ -0.00274658203125, 51.399205653553771, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2730, "task_x": 131070, "task_y": 87328, "task_z": 18, "center_y": 51.371351723531099, "area_in_sqm": 9121.1936949491501, "perimeter_in_m": 382.02009128434298, "length_x": 95.629386007635304, "length_y": 95.6311719322523 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.371780375917368, 0.0 ], [ -0.001373291015625, 51.371780375917368, 0.0 ], [ -0.001373291015625, 51.370923071144773, 0.0 ], [ -0.00274658203125, 51.370923071144773, 0.0 ], [ -0.00274658203125, 51.371780375917368, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2731, "task_x": 131070, "task_y": 87360, "task_z": 18, "center_y": 51.3439097513455, "area_in_sqm": 9132.0712562799508, "perimeter_in_m": 382.24781493791198, "length_x": 95.686541452568704, "length_y": 95.688327754825096 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.344338660599227, 0.0 ], [ -0.001373291015625, 51.344338660599227, 0.0 ], [ -0.001373291015625, 51.343480842091743, 0.0 ], [ -0.00274658203125, 51.343480842091743, 0.0 ], [ -0.00274658203125, 51.344338660599227, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2732, "task_x": 131070, "task_y": 87392, "task_z": 18, "center_y": 51.316451337869303, "area_in_sqm": 9142.9575455188806, "perimeter_in_m": 382.47558557291001, "length_x": 95.7437089599632, "length_y": 95.745495638439294 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.316880504045862, 0.0 ], [ -0.001373291015625, 51.316880504045862, 0.0 ], [ -0.001373291015625, 51.316022171692651, 0.0 ], [ -0.00274658203125, 51.316022171692651, 0.0 ], [ -0.00274658203125, 51.316880504045862, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2733, "task_x": 131070, "task_y": 87424, "task_z": 18, "center_y": 51.288976479562102, "area_in_sqm": 9153.8525578975696, "perimeter_in_m": 382.70340300460202, "length_x": 95.800888484339097, "length_y": 95.802675537611705 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.289405902716773, 0.0 ], [ -0.001373291015625, 51.289405902716773, 0.0 ], [ -0.001373291015625, 51.288547056407431, 0.0 ], [ -0.00274658203125, 51.288547056407431, 0.0 ], [ -0.00274658203125, 51.289405902716773, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2734, "task_x": 131070, "task_y": 87456, "task_z": 18, "center_y": 51.261485172896798, "area_in_sqm": 9164.7562898397391, "perimeter_in_m": 382.931267055832, "length_x": 95.858079980112606, "length_y": 95.859867406755797 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.261914853084512, 0.0 ], [ -0.001373291015625, 51.261914853084512, 0.0 ], [ -0.001373291015625, 51.261055492708998, 0.0 ], [ -0.00274658203125, 51.261055492708998, 0.0 ], [ -0.00274658203125, 51.261914853084512, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2735, "task_x": 131070, "task_y": 87488, "task_z": 18, "center_y": 51.233977414358897, "area_in_sqm": 9175.6687356233597, "perimeter_in_m": 383.15917754075502, "length_x": 95.915283401596795, "length_y": 95.917071200181198 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.23440735163458, 0.0 ], [ -0.001373291015625, 51.23440735163458, 0.0 ], [ -0.001373291015625, 51.233547477083277, 0.0 ], [ -0.00274658203125, 51.233547477083277, 0.0 ], [ -0.00274658203125, 51.23440735163458, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2736, "task_x": 131070, "task_y": 87520, "task_z": 18, "center_y": 51.206453200447498, "area_in_sqm": 9186.5898905992508, "perimeter_in_m": 383.38713427684502, "length_x": 95.972498703001193, "length_y": 95.974286872094197 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.206883394865613, 0.0 ], [ -0.001373291015625, 51.206883394865613, 0.0 ], [ -0.001373291015625, 51.206023006029298, 0.0 ], [ -0.00274658203125, 51.206023006029298, 0.0 ], [ -0.00274658203125, 51.206883394865613, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2737, "task_x": 131070, "task_y": 87552, "task_z": 18, "center_y": 51.1789125276742, "area_in_sqm": 9197.5197497606296, "perimeter_in_m": 383.61513707713402, "length_x": 96.029725838431204, "length_y": 96.031514376596803 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.179342979289267, 0.0 ], [ -0.001373291015625, 51.179342979289267, 0.0 ], [ -0.001373291015625, 51.178482076059161, 0.0 ], [ -0.00274658203125, 51.178482076059161, 0.0 ], [ -0.00274658203125, 51.179342979289267, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2738, "task_x": 131070, "task_y": 87584, "task_z": 18, "center_y": 51.151355392564199, "area_in_sqm": 9208.4583084583301, "perimeter_in_m": 383.84318575728298, "length_x": 96.086964761888694, "length_y": 96.088753667687797 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.151786101430361, 0.0 ], [ -0.001373291015625, 51.151786101430361, 0.0 ], [ -0.001373291015625, 51.150924683698079, 0.0 ], [ -0.00274658203125, 51.150924683698079, 0.0 ], [ -0.00274658203125, 51.151786101430361, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2739, "task_x": 131070, "task_y": 87616, "task_z": 18, "center_y": 51.123781791655603, "area_in_sqm": 9219.4055612087304, "perimeter_in_m": 384.07128013769301, "length_x": 96.144215427271405, "length_y": 96.146004699261795 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.124212757826882, 0.0 ], [ -0.001373291015625, 51.124212757826882, 0.0 ], [ -0.001373291015625, 51.123350825484422, 0.0 ], [ -0.00274658203125, 51.123350825484422, 0.0 ], [ -0.00274658203125, 51.124212757826882, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2740, "task_x": 131070, "task_y": 87648, "task_z": 18, "center_y": 51.0961917214998, "area_in_sqm": 9230.3615034818595, "perimeter_in_m": 384.29942002439901, "length_x": 96.201477788373595, "length_y": 96.203267425109502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.096622945029935, 0.0 ], [ -0.001373291015625, 51.096622945029935, 0.0 ], [ -0.001373291015625, 51.095760497969763, 0.0 ], [ -0.00274658203125, 51.095760497969763, 0.0 ], [ -0.00274658203125, 51.096622945029935, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2741, "task_x": 131070, "task_y": 87680, "task_z": 18, "center_y": 51.068585178661401, "area_in_sqm": 9241.3261303901709, "perimeter_in_m": 384.52760523881801, "length_x": 96.258751798885001, "length_y": 96.2605417989176 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.069016659603903, 0.0 ], [ -0.001373291015625, 51.069016659603903, 0.0 ], [ -0.001373291015625, 51.068153697718856, 0.0 ], [ -0.00274658203125, 51.068153697718856, 0.0 ], [ -0.00274658203125, 51.069016659603903, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2742, "task_x": 131070, "task_y": 87712, "task_z": 18, "center_y": 51.040962159717999, "area_in_sqm": 9252.2994364499991, "perimeter_in_m": 384.75583558799701, "length_x": 96.316037412391395, "length_y": 96.317827774268594 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.041393898126366, 0.0 ], [ -0.001373291015625, 51.041393898126366, 0.0 ], [ -0.001373291015625, 51.040530421309718, 0.0 ], [ -0.00274658203125, 51.040530421309718, 0.0 ], [ -0.00274658203125, 51.041393898126366, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2743, "task_x": 131070, "task_y": 87744, "task_z": 18, "center_y": 51.013322661260901, "area_in_sqm": 9263.2814165353793, "perimeter_in_m": 384.98411089151102, "length_x": 96.373334582374596, "length_y": 96.375125304640903 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 51.013754657188194, 0.0 ], [ -0.001373291015625, 51.013754657188194, 0.0 ], [ -0.001373291015625, 51.012890665333607, 0.0 ], [ -0.00274658203125, 51.012890665333607, 0.0 ], [ -0.00274658203125, 51.013754657188194, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2744, "task_x": 131070, "task_y": 87776, "task_z": 18, "center_y": 50.985666679894301, "area_in_sqm": 9274.2720658779108, "perimeter_in_m": 385.21243095953002, "length_x": 96.430643262211802, "length_y": 96.432434343408701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.986098933393542, 0.0 ], [ -0.001373291015625, 50.986098933393542, 0.0 ], [ -0.001373291015625, 50.985234426395117, 0.0 ], [ -0.00274658203125, 50.985234426395117, 0.0 ], [ -0.00274658203125, 50.986098933393542, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2745, "task_x": 131070, "task_y": 87808, "task_z": 18, "center_y": 50.957994212236002, "area_in_sqm": 9285.2713788747806, "perimeter_in_m": 385.44079560909302, "length_x": 96.487963405176203, "length_y": 96.489754843841695 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.958426723359921, 0.0 ], [ -0.001373291015625, 50.958426723359921, 0.0 ], [ -0.001373291015625, 50.957561701112169, 0.0 ], [ -0.00274658203125, 50.957561701112169, 0.0 ], [ -0.00274658203125, 50.958426723359921, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2746, "task_x": 131070, "task_y": 87840, "task_z": 18, "center_y": 50.930305254917101, "area_in_sqm": 9296.2793505191803, "perimeter_in_m": 385.66920464289802, "length_x": 96.545294964436295, "length_y": 96.547086759105397 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.93073802371817, 0.0 ], [ -0.001373291015625, 50.93073802371817, 0.0 ], [ -0.001373291015625, 50.929872486116025, 0.0 ], [ -0.00274658203125, 50.929872486116025, 0.0 ], [ -0.00274658203125, 50.93073802371817, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2747, "task_x": 131070, "task_y": 87872, "task_z": 18, "center_y": 50.902599804582003, "area_in_sqm": 9307.2959758043307, "perimeter_in_m": 385.89765788251401, "length_x": 96.602637893056297, "length_y": 96.604430042260503 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.903032831112569, 0.0 ], [ -0.001373291015625, 50.903032831112569, 0.0 ], [ -0.001373291015625, 50.902166778051374, 0.0 ], [ -0.00274658203125, 50.902166778051374, 0.0 ], [ -0.00274658203125, 50.903032831112569, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2748, "task_x": 131070, "task_y": 87904, "task_z": 18, "center_y": 50.874877857888499, "area_in_sqm": 9318.3212486505508, "perimeter_in_m": 386.12615512950299, "length_x": 96.659992143995893, "length_y": 96.661784646263399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.875311142200758, 0.0 ], [ -0.001373291015625, 50.875311142200758, 0.0 ], [ -0.001373291015625, 50.874444573576291, 0.0 ], [ -0.00274658203125, 50.874444573576291, 0.0 ], [ -0.00274658203125, 50.875311142200758, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2749, "task_x": 131070, "task_y": 87936, "task_z": 18, "center_y": 50.847139411508103, "area_in_sqm": 9329.3551638126391, "perimeter_in_m": 386.35469620291502, "length_x": 96.717357670110005, "length_y": 96.719150523965894 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.847572953653881, 0.0 ], [ -0.001373291015625, 50.847572953653881, 0.0 ], [ -0.001373291015625, 50.846705869362324, 0.0 ], [ -0.00274658203125, 50.846705869362324, 0.0 ], [ -0.00274658203125, 50.847572953653881, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2750, "task_x": 131070, "task_y": 87968, "task_z": 18, "center_y": 50.819384462125498, "area_in_sqm": 9340.3977167606408, "perimeter_in_m": 386.58328091662599, "length_x": 96.774734424148804, "length_y": 96.776527628114906 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.819818262156538, 0.0 ], [ -0.001373291015625, 50.819818262156538, 0.0 ], [ -0.001373291015625, 50.818950662094494, 0.0 ], [ -0.00274658203125, 50.818950662094494, 0.0 ], [ -0.00274658203125, 50.819818262156538, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2751, "task_x": 131070, "task_y": 88000, "task_z": 18, "center_y": 50.7916130064391, "area_in_sqm": 9351.4489010572397, "perimeter_in_m": 386.81190906451201, "length_x": 96.832122358757999, "length_y": 96.833915911352705 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.792047064406852, 0.0 ], [ -0.001373291015625, 50.792047064406852, 0.0 ], [ -0.001373291015625, 50.791178948471369, 0.0 ], [ -0.00274658203125, 50.791178948471369, 0.0 ], [ -0.00274658203125, 50.792047064406852, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2752, "task_x": 131070, "task_y": 88032, "task_z": 18, "center_y": 50.7638250411607, "area_in_sqm": 9362.5087118148804, "perimeter_in_m": 387.04058046923302, "length_x": 96.889521426478197, "length_y": 96.891315326216699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.764259357116465, 0.0 ], [ -0.001373291015625, 50.764259357116465, 0.0 ], [ -0.001373291015625, 50.763390725205007, 0.0 ], [ -0.00274658203125, 50.763390725205007, 0.0 ], [ -0.00274658203125, 50.764259357116465, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2753, "task_x": 131070, "task_y": 88064, "task_z": 18, "center_y": 50.736020563015899, "area_in_sqm": 9373.5771435499191, "perimeter_in_m": 387.26929493767199, "length_x": 96.946931579744998, "length_y": 96.948725825139405 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.736455137010644, 0.0 ], [ -0.001373291015625, 50.736455137010644, 0.0 ], [ -0.001373291015625, 50.735585989021082, 0.0 ], [ -0.00274658203125, 50.735585989021082, 0.0 ], [ -0.00274658203125, 50.736455137010644, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2754, "task_x": 131070, "task_y": 88096, "task_z": 18, "center_y": 50.708199568743503, "area_in_sqm": 9384.6541900634802, "perimeter_in_m": 387.49805227229001, "length_x": 97.004352770889398, "length_y": 97.006147360448196 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.70863440082821, 0.0 ], [ -0.001373291015625, 50.70863440082821, 0.0 ], [ -0.001373291015625, 50.707764736658859, 0.0 ], [ -0.00274658203125, 50.707764736658859, 0.0 ], [ -0.00274658203125, 50.70863440082821, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2755, "task_x": 131070, "task_y": 88128, "task_z": 18, "center_y": 50.680362055096403, "area_in_sqm": 9395.7398463487607, "perimeter_in_m": 387.72685229864697, "length_x": 97.061784952137003, "length_y": 97.063579884365595 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.680797145321641, 0.0 ], [ -0.001373291015625, 50.680797145321641, 0.0 ], [ -0.001373291015625, 50.679926964871228, 0.0 ], [ -0.00274658203125, 50.679926964871228, 0.0 ], [ -0.00274658203125, 50.680797145321641, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2756, "task_x": 131070, "task_y": 88160, "task_z": 18, "center_y": 50.652508018840898, "area_in_sqm": 9406.8341066837293, "perimeter_in_m": 387.95569480674601, "length_x": 97.119228075608405, "length_y": 97.121023349008794 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.65294336725708, 0.0 ], [ -0.001373291015625, 50.65294336725708, 0.0 ], [ -0.001373291015625, 50.652072670424772, 0.0 ], [ -0.00274658203125, 50.652072670424772, 0.0 ], [ -0.00274658203125, 50.65294336725708, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2757, "task_x": 131070, "task_y": 88192, "task_z": 18, "center_y": 50.624637456757, "area_in_sqm": 9417.9369652271307, "perimeter_in_m": 388.184579606895, "length_x": 97.176682093319002, "length_y": 97.178477706389998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.625073063414355, 0.0 ], [ -0.001373291015625, 50.625073063414355, 0.0 ], [ -0.001373291015625, 50.624201850099737, 0.0 ], [ -0.00274658203125, 50.624201850099737, 0.0 ], [ -0.00274658203125, 50.625073063414355, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2758, "task_x": 131070, "task_y": 88224, "task_z": 18, "center_y": 50.596750365638599, "area_in_sqm": 9429.0484164953195, "perimeter_in_m": 388.413506518384, "length_x": 97.234146957178893, "length_y": 97.235942908416106 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.597186230587027, 0.0 ], [ -0.001373291015625, 50.597186230587027, 0.0 ], [ -0.001373291015625, 50.59631450069012, 0.0 ], [ -0.00274658203125, 50.59631450069012, 0.0 ], [ -0.00274658203125, 50.597186230587027, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2759, "task_x": 131070, "task_y": 88256, "task_z": 18, "center_y": 50.568846742292997, "area_in_sqm": 9440.1684538125992, "perimeter_in_m": 388.642475331296, "length_x": 97.291622618992903, "length_y": 97.293418906888405 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.569282865582409, 0.0 ], [ -0.001373291015625, 50.569282865582409, 0.0 ], [ -0.001373291015625, 50.568410619003679, 0.0 ], [ -0.00274658203125, 50.568410619003679, 0.0 ], [ -0.00274658203125, 50.569282865582409, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2760, "task_x": 131070, "task_y": 88288, "task_z": 18, "center_y": 50.540926583541797, "area_in_sqm": 9451.2970721721595, "perimeter_in_m": 388.87148586168001, "length_x": 97.349109030460397, "length_y": 97.350905653503105 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.541362965221609, 0.0 ], [ -0.001373291015625, 50.541362965221609, 0.0 ], [ -0.001373291015625, 50.540490201861921, 0.0 ], [ -0.00274658203125, 50.540490201861921, 0.0 ], [ -0.00274658203125, 50.541362965221609, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2761, "task_x": 131070, "task_y": 88320, "task_z": 18, "center_y": 50.512989886219898, "area_in_sqm": 9462.4342657327707, "perimeter_in_m": 389.10053791475502, "length_x": 97.406606143175196, "length_y": 97.408403099850801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.513426526339551, 0.0 ], [ -0.001373291015625, 50.513426526339551, 0.0 ], [ -0.001373291015625, 50.512553246100218, 0.0 ], [ -0.00274658203125, 50.512553246100218, 0.0 ], [ -0.00274658203125, 50.513426526339551, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2762, "task_x": 131070, "task_y": 88352, "task_z": 18, "center_y": 50.4850366471764, "area_in_sqm": 9473.5800287723505, "perimeter_in_m": 389.32963129341198, "length_x": 97.464113908625706, "length_y": 97.465911197416403 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.485473545784984, 0.0 ], [ -0.001373291015625, 50.485473545784984, 0.0 ], [ -0.001373291015625, 50.484599748567767, 0.0 ], [ -0.00274658203125, 50.484599748567767, 0.0 ], [ -0.00274658203125, 50.485473545784984, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2763, "task_x": 131070, "task_y": 88384, "task_z": 18, "center_y": 50.4570668632741, "area_in_sqm": 9484.7343546152097, "perimeter_in_m": 389.55876580459199, "length_x": 97.521632278194801, "length_y": 97.523429897579604 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.457504020420565, 0.0 ], [ -0.001373291015625, 50.457504020420565, 0.0 ], [ -0.001373291015625, 50.45662970612765, 0.0 ], [ -0.00274658203125, 50.45662970612765, 0.0 ], [ -0.00274658203125, 50.457504020420565, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2764, "task_x": 131070, "task_y": 88416, "task_z": 18, "center_y": 50.4290805313899, "area_in_sqm": 9495.8972376585007, "perimeter_in_m": 389.78794125500701, "length_x": 97.579161203159302, "length_y": 97.580959151613996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.429517947122868, 0.0 ], [ -0.001373291015625, 50.429517947122868, 0.0 ], [ -0.001373291015625, 50.428643115656847, 0.0 ], [ -0.00274658203125, 50.428643115656847, 0.0 ], [ -0.00274658203125, 50.429517947122868, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2765, "task_x": 131070, "task_y": 88448, "task_z": 18, "center_y": 50.401077648414301, "area_in_sqm": 9507.0686721801794, "perimeter_in_m": 390.01715744480998, "length_x": 97.636700634690598, "length_y": 97.638498910687701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.401515322782352, 0.0 ], [ -0.001373291015625, 50.401515322782352, 0.0 ], [ -0.001373291015625, 50.4006399740463, 0.0 ], [ -0.00274658203125, 50.4006399740463, 0.0 ], [ -0.00274658203125, 50.401515322782352, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2766, "task_x": 131070, "task_y": 88480, "task_z": 18, "center_y": 50.3730582112522, "area_in_sqm": 9518.2486515045202, "perimeter_in_m": 390.24641417746801, "length_x": 97.694250523854393, "length_y": 97.6960491258627 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.373496144303495, 0.0 ], [ -0.001373291015625, 50.373496144303495, 0.0 ], [ -0.001373291015625, 50.372620278200891, 0.0 ], [ -0.00274658203125, 50.372620278200891, 0.0 ], [ -0.00274658203125, 50.373496144303495, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2767, "task_x": 131070, "task_y": 88512, "task_z": 18, "center_y": 50.345022216822201, "area_in_sqm": 9529.4371700286902, "perimeter_in_m": 390.47571126331599, "length_x": 97.751810821609993, "length_y": 97.7536097480954 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.345460408604787, 0.0 ], [ -0.001373291015625, 50.345460408604787, 0.0 ], [ -0.001373291015625, 50.344584025039559, 0.0 ], [ -0.00274658203125, 50.344584025039559, 0.0 ], [ -0.00274658203125, 50.345460408604787, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2768, "task_x": 131070, "task_y": 88544, "task_z": 18, "center_y": 50.316969662056898, "area_in_sqm": 9540.6342215538007, "perimeter_in_m": 390.70504849762699, "length_x": 97.809381478811204, "length_y": 97.811180728236295 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.317408112618693, 0.0 ], [ -0.001373291015625, 50.317408112618693, 0.0 ], [ -0.001373291015625, 50.316531211495203, 0.0 ], [ -0.00274658203125, 50.316531211495203, 0.0 ], [ -0.00274658203125, 50.317408112618693, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2769, "task_x": 131070, "task_y": 88576, "task_z": 18, "center_y": 50.288900543903303, "area_in_sqm": 9551.8397997617703, "perimeter_in_m": 390.93442568890498, "length_x": 97.866962446205605, "length_y": 97.868762017029496 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.289339253291786, 0.0 ], [ -0.001373291015625, 50.289339253291786, 0.0 ], [ -0.001373291015625, 50.288461834514841, 0.0 ], [ -0.00274658203125, 50.288461834514841, 0.0 ], [ -0.00274658203125, 50.289339253291786, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2770, "task_x": 131070, "task_y": 88608, "task_z": 18, "center_y": 50.260814859322103, "area_in_sqm": 9563.0538979768808, "perimeter_in_m": 391.163842628461, "length_x": 97.924553674435003, "length_y": 97.926353565113502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.261253827584703, 0.0 ], [ -0.001373291015625, 50.261253827584703, 0.0 ], [ -0.001373291015625, 50.260375891059567, 0.0 ], [ -0.00274658203125, 50.260375891059567, 0.0 ], [ -0.00274658203125, 50.261253827584703, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2771, "task_x": 131070, "task_y": 88640, "task_z": 18, "center_y": 50.232712605288398, "area_in_sqm": 9574.2765107154792, "perimeter_in_m": 391.39329913145099, "length_x": 97.982155114034498, "length_y": 97.983955323020098 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.233151832472238, 0.0 ], [ -0.001373291015625, 50.233151832472238, 0.0 ], [ -0.001373291015625, 50.232273378104594, 0.0 ], [ -0.00274658203125, 50.232273378104594, 0.0 ], [ -0.00274658203125, 50.233151832472238, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2772, "task_x": 131070, "task_y": 88672, "task_z": 18, "center_y": 50.204593778791299, "area_in_sqm": 9585.5076305866205, "perimeter_in_m": 391.62279499089902, "length_x": 98.039766715433501, "length_y": 98.0415672411755 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.205033264943317, 0.0 ], [ -0.001373291015625, 50.205033264943317, 0.0 ], [ -0.001373291015625, 50.204154292639288, 0.0 ], [ -0.00274658203125, 50.204154292639288, 0.0 ], [ -0.00274658203125, 50.205033264943317, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2773, "task_x": 131070, "task_y": 88704, "task_z": 18, "center_y": 50.176458376834098, "area_in_sqm": 9596.7472528219205, "perimeter_in_m": 391.85233000950399, "length_x": 98.097388428954901, "length_y": 98.099189269899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.176898122001049, 0.0 ], [ -0.001373291015625, 50.176898122001049, 0.0 ], [ -0.001373291015625, 50.176018631667226, 0.0 ], [ -0.00274658203125, 50.176018631667226, 0.0 ], [ -0.00274658203125, 50.176898122001049, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2774, "task_x": 131070, "task_y": 88736, "task_z": 18, "center_y": 50.148306396434499, "area_in_sqm": 9607.9953693151492, "perimeter_in_m": 392.08190398764998, "length_x": 98.155020204815202, "length_y": 98.156821359404105 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.148746400662773, 0.0 ], [ -0.001373291015625, 50.148746400662773, 0.0 ], [ -0.001373291015625, 50.147866392206168, 0.0 ], [ -0.00274658203125, 50.147866392206168, 0.0 ], [ -0.00274658203125, 50.148746400662773, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2775, "task_x": 131070, "task_y": 88768, "task_z": 18, "center_y": 50.120137834624103, "area_in_sqm": 9619.2519749403, "perimeter_in_m": 392.31151672762098, "length_x": 98.212661993124698, "length_y": 98.214463459797599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.12057809796007, 0.0 ], [ -0.001373291015625, 50.12057809796007, 0.0 ], [ -0.001373291015625, 50.119697571288157, 0.0 ], [ -0.00274658203125, 50.119697571288157, 0.0 ], [ -0.00274658203125, 50.12057809796007, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2776, "task_x": 131070, "task_y": 88800, "task_z": 18, "center_y": 50.091952688449098, "area_in_sqm": 9630.5170620679892, "perimeter_in_m": 392.54116802584002, "length_x": 98.270313743887002, "length_y": 98.272115521079797 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.092393210938788, 0.0 ], [ -0.001373291015625, 50.092393210938788, 0.0 ], [ -0.001373291015625, 50.091512165959472, 0.0 ], [ -0.00274658203125, 50.091512165959472, 0.0 ], [ -0.00274658203125, 50.092393210938788, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2777, "task_x": 131070, "task_y": 88832, "task_z": 18, "center_y": 50.063750954969898, "area_in_sqm": 9641.7906250953693, "perimeter_in_m": 392.77085768417101, "length_x": 98.3279754069994, "length_y": 98.329777493144604 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.06419173665909, 0.0 ], [ -0.001373291015625, 50.06419173665909, 0.0 ], [ -0.001373291015625, 50.063310173280733, 0.0 ], [ -0.00274658203125, 50.063310173280733, 0.0 ], [ -0.00274658203125, 50.06419173665909, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2778, "task_x": 131070, "task_y": 88864, "task_z": 18, "center_y": 50.035532631261198, "area_in_sqm": 9653.0726571083105, "perimeter_in_m": 393.00058550002399, "length_x": 98.385646932252499, "length_y": 98.3874493257794 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.035973672195496, 0.0 ], [ -0.001373291015625, 50.035973672195496, 0.0 ], [ -0.001373291015625, 50.035091590326907, 0.0 ], [ -0.00274658203125, 50.035091590326907, 0.0 ], [ -0.00274658203125, 50.035973672195496, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2779, "task_x": 131070, "task_y": 88896, "task_z": 18, "center_y": 50.007297714412097, "area_in_sqm": 9664.36315143108, "perimeter_in_m": 393.23035127201899, "length_x": 98.443328269329996, "length_y": 98.4451309686645 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 50.007739014636861, 0.0 ], [ -0.001373291015625, 50.007739014636861, 0.0 ], [ -0.001373291015625, 50.006856414187304, 0.0 ], [ -0.00274658203125, 50.006856414187304, 0.0 ], [ -0.00274658203125, 50.007739014636861, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2780, "task_x": 131070, "task_y": 88928, "task_z": 18, "center_y": 49.979046201526103, "area_in_sqm": 9675.6621016263998, "perimeter_in_m": 393.46015479714299, "length_x": 98.501019367809306, "length_y": 98.502822371373995 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.979487761086475, 0.0 ], [ -0.001373291015625, 49.979487761086475, 0.0 ], [ -0.001373291015625, 49.978604641965653, 0.0 ], [ -0.00274658203125, 49.978604641965653, 0.0 ], [ -0.00274658203125, 49.979487761086475, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2781, "task_x": 131070, "task_y": 88960, "task_z": 18, "center_y": 49.950778089721098, "area_in_sqm": 9686.9695007801092, "perimeter_in_m": 393.68999587287999, "length_x": 98.558720177160794, "length_y": 98.560523483374894 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.95121990866204, 0.0 ], [ -0.001373291015625, 49.95121990866204, 0.0 ], [ -0.001373291015625, 49.950336270780127, 0.0 ], [ -0.00274658203125, 49.950336270780127, 0.0 ], [ -0.00274658203125, 49.95121990866204, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2782, "task_x": 131070, "task_y": 88992, "task_z": 18, "center_y": 49.922493376129502, "area_in_sqm": 9698.2853413820303, "perimeter_in_m": 393.91987429155398, "length_x": 98.6164306467481, "length_y": 98.618234254027399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.922935454495715, 0.0 ], [ -0.001373291015625, 49.922935454495715, 0.0 ], [ -0.001373291015625, 49.922051297763325, 0.0 ], [ -0.00274658203125, 49.922051297763325, 0.0 ], [ -0.00274658203125, 49.922935454495715, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2783, "task_x": 131070, "task_y": 89024, "task_z": 18, "center_y": 49.894192057898302, "area_in_sqm": 9709.6096181869507, "perimeter_in_m": 394.14978986861502, "length_x": 98.674150725827801, "length_y": 98.675954632585004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.894634395734208, 0.0 ], [ -0.001373291015625, 49.894634395734208, 0.0 ], [ -0.001373291015625, 49.893749720062381, 0.0 ], [ -0.00274658203125, 49.893749720062381, 0.0 ], [ -0.00274658203125, 49.894634395734208, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2784, "task_x": 131070, "task_y": 89056, "task_z": 18, "center_y": 49.8658741321888, "area_in_sqm": 9720.9423232078607, "perimeter_in_m": 394.37974237757697, "length_x": 98.731880363549706, "length_y": 98.733684568193894 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.86631672953866, 0.0 ], [ -0.001373291015625, 49.86631672953866, 0.0 ], [ -0.001373291015625, 49.86543153483894, 0.0 ], [ -0.00274658203125, 49.86543153483894, 0.0 ], [ -0.00274658203125, 49.86631672953866, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2785, "task_x": 131070, "task_y": 89088, "task_z": 18, "center_y": 49.837539596177002, "area_in_sqm": 9732.2834500074405, "perimeter_in_m": 394.609731627104, "length_x": 98.789619508956406, "length_y": 98.791424009893504 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.837982453084841, 0.0 ], [ -0.001373291015625, 49.837982453084841, 0.0 ], [ -0.001373291015625, 49.837096739269207, 0.0 ], [ -0.00274658203125, 49.837096739269207, 0.0 ], [ -0.00274658203125, 49.837982453084841, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2786, "task_x": 131070, "task_y": 89120, "task_z": 18, "center_y": 49.809188447053501, "area_in_sqm": 9743.6329915523493, "perimeter_in_m": 394.83975740866401, "length_x": 98.847368110983595, "length_y": 98.849172906616104 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.809631563563087, 0.0 ], [ -0.001373291015625, 49.809631563563087, 0.0 ], [ -0.001373291015625, 49.808745330543964, 0.0 ], [ -0.00274658203125, 49.808745330543964, 0.0 ], [ -0.00274658203125, 49.809631563563087, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2787, "task_x": 131070, "task_y": 89152, "task_z": 18, "center_y": 49.780820682023503, "area_in_sqm": 9754.9909406900406, "perimeter_in_m": 395.06981951353498, "length_x": 98.905126118459705, "length_y": 98.906931207186801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.781264058178344, 0.0 ], [ -0.001373291015625, 49.781264058178344, 0.0 ], [ -0.001373291015625, 49.780377305868626, 0.0 ], [ -0.00274658203125, 49.780377305868626, 0.0 ], [ -0.00274658203125, 49.781264058178344, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2788, "task_x": 131070, "task_y": 89184, "task_z": 18, "center_y": 49.752436298306698, "area_in_sqm": 9766.3572906255704, "perimeter_in_m": 395.29991774406398, "length_x": 98.962893480105905, "length_y": 98.964698860323395 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.752879934150215, 0.0 ], [ -0.001373291015625, 49.752879934150215, 0.0 ], [ -0.001373291015625, 49.751992662463245, 0.0 ], [ -0.00274658203125, 49.751992662463245, 0.0 ], [ -0.00274658203125, 49.752879934150215, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2789, "task_x": 131070, "task_y": 89216, "task_z": 18, "center_y": 49.724035293137803, "area_in_sqm": 9777.7320340871793, "perimeter_in_m": 395.53005188898999, "length_x": 99.020670144536197, "length_y": 99.022475814636607 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.724479188712984, 0.0 ], [ -0.001373291015625, 49.724479188712984, 0.0 ], [ -0.001373291015625, 49.723591397562579, 0.0 ], [ -0.00274658203125, 49.723591397562579, 0.0 ], [ -0.00274658203125, 49.724479188712984, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2790, "task_x": 131070, "task_y": 89248, "task_z": 18, "center_y": 49.695617663765901, "area_in_sqm": 9789.1151642799396, "perimeter_in_m": 395.76022174458598, "length_x": 99.078456060257395, "length_y": 99.080262018629597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.696061819115641, 0.0 ], [ -0.001373291015625, 49.696061819115641, 0.0 ], [ -0.001373291015625, 49.695173508416069, 0.0 ], [ -0.00274658203125, 49.695173508416069, 0.0 ], [ -0.00274658203125, 49.696061819115641, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2791, "task_x": 131070, "task_y": 89280, "task_z": 18, "center_y": 49.6671834074549, "area_in_sqm": 9800.5066738128698, "perimeter_in_m": 395.99042710622302, "length_x": 99.136251175668605, "length_y": 99.138057420698601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.667627822621931, 0.0 ], [ -0.001373291015625, 49.667627822621931, 0.0 ], [ -0.001373291015625, 49.666738992287904, 0.0 ], [ -0.00274658203125, 49.666738992287904, 0.0 ], [ -0.00274658203125, 49.667627822621931, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2792, "task_x": 131070, "task_y": 89312, "task_z": 18, "center_y": 49.638732521483703, "area_in_sqm": 9811.9065556526202, "perimeter_in_m": 396.220667757733, "length_x": 99.194055439061799, "length_y": 99.195861969131798 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.639177196510346, 0.0 ], [ -0.001373291015625, 49.639177196510346, 0.0 ], [ -0.001373291015625, 49.638287846457082, 0.0 ], [ -0.00274658203125, 49.638287846457082, 0.0 ], [ -0.00274658203125, 49.639177196510346, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2793, "task_x": 131070, "task_y": 89344, "task_z": 18, "center_y": 49.610265003145798, "area_in_sqm": 9823.3148024082202, "perimeter_in_m": 396.45094350113698, "length_x": 99.251868798621203, "length_y": 99.253675612110399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.610709938074216, 0.0 ], [ -0.001373291015625, 49.610709938074216, 0.0 ], [ -0.001373291015625, 49.60982006821736, 0.0 ], [ -0.00274658203125, 49.60982006821736, 0.0 ], [ -0.00274658203125, 49.610709938074216, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2794, "task_x": 131070, "task_y": 89376, "task_z": 18, "center_y": 49.581780849749499, "area_in_sqm": 9834.7314071655292, "perimeter_in_m": 396.68125412478901, "length_x": 99.309691202423807, "length_y": 99.311498297707701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.582226044621684, 0.0 ], [ -0.001373291015625, 49.582226044621684, 0.0 ], [ -0.001373291015625, 49.581335654877357, 0.0 ], [ -0.00274658203125, 49.581335654877357, 0.0 ], [ -0.00274658203125, 49.582226044621684, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2795, "task_x": 131070, "task_y": 89408, "task_z": 18, "center_y": 49.553280058618199, "area_in_sqm": 9846.1563616991007, "perimeter_in_m": 396.911599414725, "length_x": 99.367522598438697, "length_y": 99.369329973889606 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.553725513475783, 0.0 ], [ -0.001373291015625, 49.553725513475783, 0.0 ], [ -0.001373291015625, 49.552834603760559, 0.0 ], [ -0.00274658203125, 49.552834603760559, 0.0 ], [ -0.00274658203125, 49.553725513475783, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2796, "task_x": 131070, "task_y": 89440, "task_z": 18, "center_y": 49.524762627089899, "area_in_sqm": 9857.5896595716495, "perimeter_in_m": 397.14197917019197, "length_x": 99.4253629345273, "length_y": 99.427170588514201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.525208341974412, 0.0 ], [ -0.001373291015625, 49.525208341974412, 0.0 ], [ -0.001373291015625, 49.52431691220535, 0.0 ], [ -0.00274658203125, 49.52431691220535, 0.0 ], [ -0.00274658203125, 49.525208341974412, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2797, "task_x": 131070, "task_y": 89472, "task_z": 18, "center_y": 49.496228552517699, "area_in_sqm": 9869.0312931537592, "perimeter_in_m": 397.37239318386798, "length_x": 99.483212158443393, "length_y": 99.485020089332096 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.496674527470432, 0.0 ], [ -0.001373291015625, 49.496674527470432, 0.0 ], [ -0.001373291015625, 49.495782577565045, 0.0 ], [ -0.00274658203125, 49.495782577565045, 0.0 ], [ -0.00274658203125, 49.496674527470432, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2798, "task_x": 131070, "task_y": 89504, "task_z": 18, "center_y": 49.4676778322698, "area_in_sqm": 9880.4812544584292, "perimeter_in_m": 397.60284123548098, "length_x": 99.541070217833493, "length_y": 99.542878423985698 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.46812406733163, 0.0 ], [ -0.001373291015625, 49.46812406733163, 0.0 ], [ -0.001373291015625, 49.467231597207913, 0.0 ], [ -0.00274658203125, 49.467231597207913, 0.0 ], [ -0.00274658203125, 49.46812406733163, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2799, "task_x": 131070, "task_y": 89536, "task_z": 18, "center_y": 49.439110463729001, "area_in_sqm": 9891.9395362138694, "perimeter_in_m": 397.83332312506201, "length_x": 99.598937060235201, "length_y": 99.600745540010095 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.439556958940834, 0.0 ], [ -0.001373291015625, 49.439556958940834, 0.0 ], [ -0.001373291015625, 49.438663968517226, 0.0 ], [ -0.00274658203125, 49.438663968517226, 0.0 ], [ -0.00274658203125, 49.439556958940834, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2800, "task_x": 131070, "task_y": 89568, "task_z": 18, "center_y": 49.410526444293602, "area_in_sqm": 9903.4061316251791, "perimeter_in_m": 398.06383863403403, "length_x": 99.656812633079099, "length_y": 99.658621384832102 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.410973199695839, 0.0 ], [ -0.001373291015625, 49.410973199695839, 0.0 ], [ -0.001373291015625, 49.41007968889128, 0.0 ], [ -0.00274658203125, 49.41007968889128, 0.0 ], [ -0.00274658203125, 49.410973199695839, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2801, "task_x": 131070, "task_y": 89600, "task_z": 18, "center_y": 49.381925771376501, "area_in_sqm": 9914.8810322284698, "perimeter_in_m": 398.29438755846098, "length_x": 99.714696883687594, "length_y": 99.716505905770802 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.382372787009544, 0.0 ], [ -0.001373291015625, 49.382372787009544, 0.0 ], [ -0.001373291015625, 49.381478755743416, 0.0 ], [ -0.00274658203125, 49.381478755743416, 0.0 ], [ -0.00274658203125, 49.382372787009544, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2802, "task_x": 131070, "task_y": 89632, "task_z": 18, "center_y": 49.353308442405996, "area_in_sqm": 9926.3642307519895, "perimeter_in_m": 398.52496968217201, "length_x": 99.772589759275107, "length_y": 99.774399050037104 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.353755718309905, 0.0 ], [ -0.001373291015625, 49.353755718309905, 0.0 ], [ -0.001373291015625, 49.35286116650208, 0.0 ], [ -0.00274658203125, 49.35286116650208, 0.0 ], [ -0.00274658203125, 49.353755718309905, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2803, "task_x": 131070, "task_y": 89664, "task_z": 18, "center_y": 49.324674454825399, "area_in_sqm": 9937.8557190895099, "perimeter_in_m": 398.75558479090103, "length_x": 99.830491206947897, "length_y": 99.8323007647341 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.325121991040007, 0.0 ], [ -0.001373291015625, 49.325121991040007, 0.0 ], [ -0.001373291015625, 49.324226918610826, 0.0 ], [ -0.00274658203125, 49.324226918610826, 0.0 ], [ -0.00274658203125, 49.325121991040007, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2804, "task_x": 131070, "task_y": 89696, "task_z": 18, "center_y": 49.296023806093203, "area_in_sqm": 9949.3554898500406, "perimeter_in_m": 398.98623268219399, "length_x": 99.888401173704196, "length_y": 99.890210996856496 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.296471602658073, 0.0 ], [ -0.001373291015625, 49.296471602658073, 0.0 ], [ -0.001373291015625, 49.295576009528354, 0.0 ], [ -0.00274658203125, 49.295576009528354, 0.0 ], [ -0.00274658203125, 49.296471602658073, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2805, "task_x": 131070, "task_y": 89728, "task_z": 18, "center_y": 49.267356493683003, "area_in_sqm": 9960.8635354042108, "perimeter_in_m": 399.21691313287403, "length_x": 99.946319606434201, "length_y": 99.948129693291307 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.267804550637521, 0.0 ], [ -0.001373291015625, 49.267804550637521, 0.0 ], [ -0.001373291015625, 49.266908436728542, 0.0 ], [ -0.00274658203125, 49.266908436728542, 0.0 ], [ -0.00274658203125, 49.267804550637521, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2806, "task_x": 131070, "task_y": 89760, "task_z": 18, "center_y": 49.238672515083699, "area_in_sqm": 9972.3798477649707, "perimeter_in_m": 399.447625942179, "length_x": 100.00424645192, "length_y": 100.00605680081701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.23912083246698, 0.0 ], [ -0.001373291015625, 49.23912083246698, 0.0 ], [ -0.001373291015625, 49.238224197700504, 0.0 ], [ -0.00274658203125, 49.238224197700504, 0.0 ], [ -0.00274658203125, 49.23912083246698, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2807, "task_x": 131070, "task_y": 89792, "task_z": 18, "center_y": 49.209971867799403, "area_in_sqm": 9983.9044187068903, "perimeter_in_m": 399.67837087943298, "length_x": 100.062181656834, "length_y": 100.063992266103 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.210420445650293, 0.0 ], [ -0.001373291015625, 49.210420445650293, 0.0 ], [ -0.001373291015625, 49.209523289948578, 0.0 ], [ -0.00274658203125, 49.209523289948578, 0.0 ], [ -0.00274658203125, 49.210420445650293, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2808, "task_x": 131070, "task_y": 89824, "task_z": 18, "center_y": 49.181254549349497, "area_in_sqm": 9995.4372404813803, "perimeter_in_m": 399.90914774061002, "length_x": 100.12012516774401, "length_y": 100.121936035712 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.181703387706619, 0.0 ], [ -0.001373291015625, 49.181703387706619, 0.0 ], [ -0.001373291015625, 49.180805710992381, 0.0 ], [ -0.00274658203125, 49.180805710992381, 0.0 ], [ -0.00274658203125, 49.181703387706619, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2809, "task_x": 131070, "task_y": 89856, "task_z": 18, "center_y": 49.152520557268602, "area_in_sqm": 10006.978305578201, "perimeter_in_m": 400.139956310174, "length_x": 100.178076931104, "length_y": 100.17988805609799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.152969656170391, 0.0 ], [ -0.001373291015625, 49.152969656170391, 0.0 ], [ -0.001373291015625, 49.152071458366834, 0.0 ], [ -0.00274658203125, 49.152071458366834, 0.0 ], [ -0.00274658203125, 49.152969656170391, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2810, "task_x": 131070, "task_y": 89888, "task_z": 18, "center_y": 49.123769889106804, "area_in_sqm": 10018.5276058912, "perimeter_in_m": 400.37079638012801, "length_x": 100.23603689326499, "length_y": 100.23784827360601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.124219248591409, 0.0 ], [ -0.001373291015625, 49.124219248591409, 0.0 ], [ -0.001373291015625, 49.123320529622191, 0.0 ], [ -0.00274658203125, 49.123320529622191, 0.0 ], [ -0.00274658203125, 49.124219248591409, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2811, "task_x": 131070, "task_y": 89920, "task_z": 18, "center_y": 49.095002542429498, "area_in_sqm": 10030.085132837299, "perimeter_in_m": 400.60166772107198, "length_x": 100.294005000466, "length_y": 100.295816634472 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.095452162534812, 0.0 ], [ -0.001373291015625, 49.095452162534812, 0.0 ], [ -0.001373291015625, 49.094552922324105, 0.0 ], [ -0.00274658203125, 49.094552922324105, 0.0 ], [ -0.00274658203125, 49.095452162534812, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2812, "task_x": 131070, "task_y": 89952, "task_z": 18, "center_y": 49.0662185148174, "area_in_sqm": 10041.650878906299, "perimeter_in_m": 400.83257012811498, "length_x": 100.351981198839, "length_y": 100.353793084825 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.066668395581146, 0.0 ], [ -0.001373291015625, 49.066668395581146, 0.0 ], [ -0.001373291015625, 49.065768634053597, 0.0 ], [ -0.00274658203125, 49.065768634053597, 0.0 ], [ -0.00274658203125, 49.066668395581146, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2813, "task_x": 131070, "task_y": 89984, "task_z": 18, "center_y": 49.037417803866802, "area_in_sqm": 10053.2248353958, "perimeter_in_m": 401.06350338203202, "length_x": 100.409965434406, "length_y": 100.411777570684 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.037867945326411, 0.0 ], [ -0.001373291015625, 49.037867945326411, 0.0 ], [ -0.001373291015625, 49.036967662407129, 0.0 ], [ -0.00274658203125, 49.036967662407129, 0.0 ], [ -0.00274658203125, 49.037867945326411, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2814, "task_x": 131070, "task_y": 90016, "task_z": 18, "center_y": 49.008600407189299, "area_in_sqm": 10064.806994557401, "perimeter_in_m": 401.29446726832202, "length_x": 100.467957653083, "length_y": 100.46977003796 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 49.009050809382053, 0.0 ], [ -0.001373291015625, 49.009050809382053, 0.0 ], [ -0.001373291015625, 49.008150004996644, 0.0 ], [ -0.00274658203125, 49.008150004996644, 0.0 ], [ -0.00274658203125, 49.009050809382053, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2815, "task_x": 131070, "task_y": 90048, "task_z": 18, "center_y": 48.979766322412303, "area_in_sqm": 10076.397348165499, "perimeter_in_m": 401.52546156449301, "length_x": 100.525957800675, "length_y": 100.52777043245599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.980216985374994, 0.0 ], [ -0.001373291015625, 48.980216985374994, 0.0 ], [ -0.001373291015625, 48.979315659449561, 0.0 ], [ -0.00274658203125, 48.979315659449561, 0.0 ], [ -0.00274658203125, 48.980216985374994, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2816, "task_x": 131070, "task_y": 90080, "task_z": 18, "center_y": 48.950915547178298, "area_in_sqm": 10087.995887041099, "perimeter_in_m": 401.75648605561599, "length_x": 100.58396582287899, "length_y": 100.585778699866 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.951366470947711, 0.0 ], [ -0.001373291015625, 48.951366470947711, 0.0 ], [ -0.001373291015625, 48.950464623408834, 0.0 ], [ -0.00274658203125, 48.950464623408834, 0.0 ], [ -0.00274658203125, 48.951366470947711, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2817, "task_x": 131070, "task_y": 90112, "task_z": 18, "center_y": 48.922048079145597, "area_in_sqm": 10099.6026045084, "perimeter_in_m": 401.98754053149497, "length_x": 100.64198166528401, "length_y": 100.64379478577401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.92249926375824, 0.0 ], [ -0.001373291015625, 48.92249926375824, 0.0 ], [ -0.001373291015625, 48.921596894532961, 0.0 ], [ -0.00274658203125, 48.921596894532961, 0.0 ], [ -0.00274658203125, 48.92249926375824, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2818, "task_x": 131070, "task_y": 90144, "task_z": 18, "center_y": 48.893163915988097, "area_in_sqm": 10111.2174906731, "perimeter_in_m": 402.21862475697202, "length_x": 100.700005273369, "length_y": 100.70181863565701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.893615361480173, 0.0 ], [ -0.001373291015625, 48.893615361480173, 0.0 ], [ -0.001373291015625, 48.892712470496072, 0.0 ], [ -0.00274658203125, 48.892712470496072, 0.0 ], [ -0.00274658203125, 48.893615361480173, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2819, "task_x": 131070, "task_y": 90176, "task_z": 18, "center_y": 48.864263055395298, "area_in_sqm": 10122.8405379057, "perimeter_in_m": 402.44973852707602, "length_x": 100.75803659250499, "length_y": 100.759850194881 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.864714761802773, 0.0 ], [ -0.001373291015625, 48.864714761802773, 0.0 ], [ -0.001373291015625, 48.86381134898788, 0.0 ], [ -0.00274658203125, 48.86381134898788, 0.0 ], [ -0.00274658203125, 48.864714761802773, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2820, "task_x": 131070, "task_y": 90208, "task_z": 18, "center_y": 48.835345495072303, "area_in_sqm": 10134.4717373848, "perimeter_in_m": 402.68088162249597, "length_x": 100.81607556795301, "length_y": 100.81788940870599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.835797462430918, 0.0 ], [ -0.001373291015625, 48.835797462430918, 0.0 ], [ -0.001373291015625, 48.834893527713753, 0.0 ], [ -0.00274658203125, 48.834893527713753, 0.0 ], [ -0.00274658203125, 48.835797462430918, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2821, "task_x": 131070, "task_y": 90240, "task_z": 18, "center_y": 48.806411232739997, "area_in_sqm": 10146.111080884901, "perimeter_in_m": 402.91205381377102, "length_x": 100.874122144867, "length_y": 100.875936222281 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.806863461085172, 0.0 ], [ -0.001373291015625, 48.806863461085172, 0.0 ], [ -0.001373291015625, 48.805959004394779, 0.0 ], [ -0.00274658203125, 48.805959004394779, 0.0 ], [ -0.00274658203125, 48.806863461085172, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2822, "task_x": 131070, "task_y": 90272, "task_z": 18, "center_y": 48.777460266134803, "area_in_sqm": 10157.758559346201, "perimeter_in_m": 403.14325489247602, "length_x": 100.932176268291, "length_y": 100.93399058064701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.777912755501816, 0.0 ], [ -0.001373291015625, 48.777912755501816, 0.0 ], [ -0.001373291015625, 48.777007776767697, 0.0 ], [ -0.00274658203125, 48.777007776767697, 0.0 ], [ -0.00274658203125, 48.777912755501816, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2823, "task_x": 131070, "task_y": 90304, "task_z": 18, "center_y": 48.748492593008997, "area_in_sqm": 10169.4141647816, "perimeter_in_m": 403.37448463014601, "length_x": 100.990237883159, "length_y": 100.992052428734 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.748945343432922, 0.0 ], [ -0.001373291015625, 48.748945343432922, 0.0 ], [ -0.001373291015625, 48.748039842585072, 0.0 ], [ -0.00274658203125, 48.748039842585072, 0.0 ], [ -0.00274658203125, 48.748945343432922, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2824, "task_x": 131070, "task_y": 90336, "task_z": 18, "center_y": 48.719508211130702, "area_in_sqm": 10181.0778884888, "perimeter_in_m": 403.60574281154601, "length_x": 101.048306934297, "length_y": 101.05012171136499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.719961222646262, 0.0 ], [ -0.001373291015625, 48.719961222646262, 0.0 ], [ -0.001373291015625, 48.719055199615191, 0.0 ], [ -0.00274658203125, 48.719055199615191, 0.0 ], [ -0.00274658203125, 48.719961222646262, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2825, "task_x": 131070, "task_y": 90368, "task_z": 18, "center_y": 48.690507118283797, "area_in_sqm": 10192.749721288699, "perimeter_in_m": 403.83702921274102, "length_x": 101.106383366423, "length_y": 101.108198373254 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.690960390925497, 0.0 ], [ -0.001373291015625, 48.690960390925497, 0.0 ], [ -0.001373291015625, 48.69005384564219, 0.0 ], [ -0.00274658203125, 48.69005384564219, 0.0 ], [ -0.00274658203125, 48.690960390925497, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2826, "task_x": 131070, "task_y": 90400, "task_z": 18, "center_y": 48.661489312268003, "area_in_sqm": 10204.429654479, "perimeter_in_m": 404.06834360745, "length_x": 101.16446712414201, "length_y": 101.166282359005 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.661942846070069, 0.0 ], [ -0.001373291015625, 48.661942846070069, 0.0 ], [ -0.001373291015625, 48.661035778466015, 0.0 ], [ -0.00274658203125, 48.661035778466015, 0.0 ], [ -0.00274658203125, 48.661942846070069, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2827, "task_x": 131070, "task_y": 90432, "task_z": 18, "center_y": 48.632454790898898, "area_in_sqm": 10216.1176795959, "perimeter_in_m": 404.299685776964, "length_x": 101.222558151955, "length_y": 101.224373613113 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.632908585895329, 0.0 ], [ -0.001373291015625, 48.632908585895329, 0.0 ], [ -0.001373291015625, 48.63200099590253, 0.0 ], [ -0.00274658203125, 48.63200099590253, 0.0 ], [ -0.00274658203125, 48.632908585895329, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2828, "task_x": 131070, "task_y": 90464, "task_z": 18, "center_y": 48.603403552007997, "area_in_sqm": 10227.813787818, "perimeter_in_m": 404.53105550447401, "length_x": 101.28065639425, "length_y": 101.282472079963 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.603857608232531, 0.0 ], [ -0.001373291015625, 48.603857608232531, 0.0 ], [ -0.001373291015625, 48.602949495783449, 0.0 ], [ -0.00274658203125, 48.602949495783449, 0.0 ], [ -0.00274658203125, 48.603857608232531, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2829, "task_x": 131070, "task_y": 90496, "task_z": 18, "center_y": 48.574335593442697, "area_in_sqm": 10239.5179697275, "perimeter_in_m": 404.76245256023702, "length_x": 101.33876179530699, "length_y": 101.340577703832 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.574789910928843, 0.0 ], [ -0.001373291015625, 48.574789910928843, 0.0 ], [ -0.001373291015625, 48.573881275956474, 0.0 ], [ -0.00274658203125, 48.573881275956474, 0.0 ], [ -0.00274658203125, 48.574789910928843, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2830, "task_x": 131070, "task_y": 90528, "task_z": 18, "center_y": 48.545250913066397, "area_in_sqm": 10251.2302167416, "perimeter_in_m": 404.993876719225, "length_x": 101.396874299296, "length_y": 101.39869042888699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.545705491847436, 0.0 ], [ -0.001373291015625, 48.545705491847436, 0.0 ], [ -0.001373291015625, 48.544796334285266, 0.0 ], [ -0.00274658203125, 48.544796334285266, 0.0 ], [ -0.00274658203125, 48.545705491847436, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2831, "task_x": 131070, "task_y": 90560, "task_z": 18, "center_y": 48.516149508758502, "area_in_sqm": 10262.9505203962, "perimeter_in_m": 405.225327769643, "length_x": 101.454993850279, "length_y": 101.456810199187 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.516604348867475, 0.0 ], [ -0.001373291015625, 48.516604348867475, 0.0 ], [ -0.001373291015625, 48.515694668649459, 0.0 ], [ -0.00274658203125, 48.515694668649459, 0.0 ], [ -0.00274658203125, 48.516604348867475, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2832, "task_x": 131070, "task_y": 90592, "task_z": 18, "center_y": 48.4870313784145, "area_in_sqm": 10274.6788704395, "perimeter_in_m": 405.45680547260798, "length_x": 101.51312039220799, "length_y": 101.51493695867801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.487486479884126, 0.0 ], [ -0.001373291015625, 48.487486479884126, 0.0 ], [ -0.001373291015625, 48.486576276944774, 0.0 ], [ -0.00274658203125, 48.486576276944774, 0.0 ], [ -0.00274658203125, 48.487486479884126, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2833, "task_x": 131070, "task_y": 90624, "task_z": 18, "center_y": 48.457896519945798, "area_in_sqm": 10286.4152592421, "perimeter_in_m": 405.68830960810999, "length_x": 101.571253868924, "length_y": 101.5730706512 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.45835188280865, 0.0 ], [ -0.001373291015625, 48.45835188280865, 0.0 ], [ -0.001373291015625, 48.457441157082933, 0.0 ], [ -0.00274658203125, 48.457441157082933, 0.0 ], [ -0.00274658203125, 48.45835188280865, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2834, "task_x": 131070, "task_y": 90656, "task_z": 18, "center_y": 48.4287449312801, "area_in_sqm": 10298.1596763134, "perimeter_in_m": 405.91983995804202, "length_x": 101.629394224161, "length_y": 101.631211220483 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.429200555568393, 0.0 ], [ -0.001373291015625, 48.429200555568393, 0.0 ], [ -0.001373291015625, 48.428289306991815, 0.0 ], [ -0.00274658203125, 48.428289306991815, 0.0 ], [ -0.00274658203125, 48.429200555568393, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2835, "task_x": 131070, "task_y": 90688, "task_z": 18, "center_y": 48.399576610361102, "area_in_sqm": 10309.912113189701, "perimeter_in_m": 406.15139628712097, "length_x": 101.68754140154201, "length_y": 101.689358610146 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.400032496106846, 0.0 ], [ -0.001373291015625, 48.400032496106846, 0.0 ], [ -0.001373291015625, 48.399120724615379, 0.0 ], [ -0.00274658203125, 48.399120724615379, 0.0 ], [ -0.00274658203125, 48.400032496106846, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2836, "task_x": 131070, "task_y": 90720, "task_z": 18, "center_y": 48.3703915551487, "area_in_sqm": 10321.6725610495, "perimeter_in_m": 406.38297837114698, "length_x": 101.74569534458, "length_y": 101.7475127637 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.370847702383635, 0.0 ], [ -0.001373291015625, 48.370847702383635, 0.0 ], [ -0.001373291015625, 48.369935407913786, 0.0 ], [ -0.00274658203125, 48.369935407913786, 0.0 ], [ -0.00274658203125, 48.370847702383635, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2837, "task_x": 131070, "task_y": 90752, "task_z": 18, "center_y": 48.341189763618999, "area_in_sqm": 10333.441009521501, "perimeter_in_m": 406.614585994197, "length_x": 101.80385599668099, "length_y": 101.805673624546 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.341646172374595, 0.0 ], [ -0.001373291015625, 48.341646172374595, 0.0 ], [ -0.001373291015625, 48.340733354863374, 0.0 ], [ -0.00274658203125, 48.340733354863374, 0.0 ], [ -0.00274658203125, 48.341646172374595, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2838, "task_x": 131070, "task_y": 90784, "task_z": 18, "center_y": 48.311971233764197, "area_in_sqm": 10345.217449903501, "perimeter_in_m": 406.84621891114199, "length_x": 101.862023301138, "length_y": 101.863841135974 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.312427904071768, 0.0 ], [ -0.001373291015625, 48.312427904071768, 0.0 ], [ -0.001373291015625, 48.311514563456697, 0.0 ], [ -0.00274658203125, 48.311514563456697, 0.0 ], [ -0.00274658203125, 48.312427904071768, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2839, "task_x": 131070, "task_y": 90816, "task_z": 18, "center_y": 48.282735963592998, "area_in_sqm": 10357.001872777901, "perimeter_in_m": 407.07787690208198, "length_x": 101.92019720113601, "length_y": 101.92201524116599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.283192895483481, 0.0 ], [ -0.001373291015625, 48.283192895483481, 0.0 ], [ -0.001373291015625, 48.282279031702579, 0.0 ], [ -0.00274658203125, 48.282279031702579, 0.0 ], [ -0.00274658203125, 48.283192895483481, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2840, "task_x": 131070, "task_y": 90848, "task_z": 18, "center_y": 48.2534839511302, "area_in_sqm": 10368.794268965699, "perimeter_in_m": 407.30955974832602, "length_x": 101.97837763974999, "length_y": 101.980195883194 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.253941144634318, 0.0 ], [ -0.001373291015625, 48.253941144634318, 0.0 ], [ -0.001373291015625, 48.253026757626102, 0.0 ], [ -0.00274658203125, 48.253026757626102, 0.0 ], [ -0.00274658203125, 48.253941144634318, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2841, "task_x": 131070, "task_y": 90880, "task_z": 18, "center_y": 48.224215194416999, "area_in_sqm": 10380.594628334, "perimeter_in_m": 407.541267212577, "length_x": 102.036564559946, "length_y": 102.038383005019 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.224672649565186, 0.0 ], [ -0.001373291015625, 48.224672649565186, 0.0 ], [ -0.001373291015625, 48.22375773926872, 0.0 ], [ -0.00274658203125, 48.22375773926872, 0.0 ], [ -0.00274658203125, 48.224672649565186, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2842, "task_x": 131070, "task_y": 90912, "task_z": 18, "center_y": 48.194929691510801, "area_in_sqm": 10392.402942061401, "perimeter_in_m": 407.77299906792098, "length_x": 102.09475790458001, "length_y": 102.096576549494 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.195387408333382, 0.0 ], [ -0.001373291015625, 48.195387408333382, 0.0 ], [ -0.001373291015625, 48.194471974688192, 0.0 ], [ -0.00274658203125, 48.194471974688192, 0.0 ], [ -0.00274658203125, 48.195387408333382, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2843, "task_x": 131070, "task_y": 90944, "task_z": 18, "center_y": 48.165627440485601, "area_in_sqm": 10404.219200015101, "perimeter_in_m": 408.00475508865202, "length_x": 102.152957616397, "length_y": 102.154776459362 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.166085419012525, 0.0 ], [ -0.001373291015625, 48.166085419012525, 0.0 ], [ -0.001373291015625, 48.165169461958698, 0.0 ], [ -0.00274658203125, 48.165169461958698, 0.0 ], [ -0.00274658203125, 48.166085419012525, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2844, "task_x": 131070, "task_y": 90976, "task_z": 18, "center_y": 48.136308439431701, "area_in_sqm": 10416.0433933735, "perimeter_in_m": 408.23653504177202, "length_x": 102.211163638032, "length_y": 102.212982677254 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.136766679692691, 0.0 ], [ -0.001373291015625, 48.136766679692691, 0.0 ], [ -0.001373291015625, 48.13585019917079, 0.0 ], [ -0.00274658203125, 48.13585019917079, 0.0 ], [ -0.00274658203125, 48.136766679692691, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2845, "task_x": 131070, "task_y": 91008, "task_z": 18, "center_y": 48.106972686455997, "area_in_sqm": 10427.8755117655, "perimeter_in_m": 408.46833869123901, "length_x": 102.269375912013, "length_y": 102.271195145693 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.107431188480383, 0.0 ], [ -0.001373291015625, 48.107431188480383, 0.0 ], [ -0.001373291015625, 48.106514184431532, 0.0 ], [ -0.00274658203125, 48.106514184431532, 0.0 ], [ -0.00274658203125, 48.107431188480383, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2846, "task_x": 131070, "task_y": 91040, "task_z": 18, "center_y": 48.077620179681503, "area_in_sqm": 10439.715545654301, "perimeter_in_m": 408.70016582199798, "length_x": 102.327594380755, "length_y": 102.329413807092 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.07807894349861, 0.0 ], [ -0.001373291015625, 48.07807894349861, 0.0 ], [ -0.001373291015625, 48.077161415864389, 0.0 ], [ -0.00274658203125, 48.077161415864389, 0.0 ], [ -0.00274658203125, 48.07807894349861, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2847, "task_x": 131070, "task_y": 91072, "task_z": 18, "center_y": 48.048250917248097, "area_in_sqm": 10451.563485622401, "perimeter_in_m": 408.93201619404499, "length_x": 102.385818986564, "length_y": 102.387638603754 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.048709942886859, 0.0 ], [ -0.001373291015625, 48.048709942886859, 0.0 ], [ -0.001373291015625, 48.0477918916094, 0.0 ], [ -0.00274658203125, 48.0477918916094, 0.0 ], [ -0.00274658203125, 48.048709942886859, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2848, "task_x": 131070, "task_y": 91104, "task_z": 18, "center_y": 48.018864897312099, "area_in_sqm": 10463.419321298599, "perimeter_in_m": 409.16388957421202, "length_x": 102.444049671637, "length_y": 102.445869477871 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 48.019324184801178, 0.0 ], [ -0.001373291015625, 48.019324184801178, 0.0 ], [ -0.001373291015625, 48.01840560982312, 0.0 ], [ -0.00274658203125, 48.01840560982312, 0.0 ], [ -0.00274658203125, 48.019324184801178, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2849, "task_x": 131070, "task_y": 91136, "task_z": 18, "center_y": 47.989462118046397, "area_in_sqm": 10475.2830427885, "perimeter_in_m": 409.395785729838, "length_x": 102.50228637806001, "length_y": 102.50410637152601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.989921667414166, 0.0 ], [ -0.001373291015625, 47.989921667414166, 0.0 ], [ -0.001373291015625, 47.9890025686787, 0.0 ], [ -0.00274658203125, 47.9890025686787, 0.0 ], [ -0.00274658203125, 47.989921667414166, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2850, "task_x": 131070, "task_y": 91168, "task_z": 18, "center_y": 47.9600425776405, "area_in_sqm": 10487.154640913001, "perimeter_in_m": 409.62770443863002, "length_x": 102.560529047808, "length_y": 102.56234922669201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.960502388915081, 0.0 ], [ -0.001373291015625, 47.960502388915081, 0.0 ], [ -0.001373291015625, 47.959582766365862, 0.0 ], [ -0.00274658203125, 47.959582766365862, 0.0 ], [ -0.00274658203125, 47.960502388915081, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2851, "task_x": 131070, "task_y": 91200, "task_z": 18, "center_y": 47.930606274300402, "area_in_sqm": 10499.0341054201, "perimeter_in_m": 409.85964546254201, "length_x": 102.618777622748, "length_y": 102.620597985231 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.931066347509777, 0.0 ], [ -0.001373291015625, 47.931066347509777, 0.0 ], [ -0.001373291015625, 47.930146201090984, 0.0 ], [ -0.00274658203125, 47.930146201090984, 0.0 ], [ -0.00274658203125, 47.931066347509777, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2852, "task_x": 131070, "task_y": 91232, "task_z": 18, "center_y": 47.901153206248999, "area_in_sqm": 10510.921425938601, "perimeter_in_m": 410.091608562602, "length_x": 102.677032044635, "length_y": 102.67885258889601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.901613541420765, 0.0 ], [ -0.001373291015625, 47.901613541420765, 0.0 ], [ -0.001373291015625, 47.900692871077162, 0.0 ], [ -0.00274658203125, 47.900692871077162, 0.0 ], [ -0.00274658203125, 47.901613541420765, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2853, "task_x": 131070, "task_y": 91264, "task_z": 18, "center_y": 47.871683371725702, "area_in_sqm": 10522.8165928125, "perimeter_in_m": 410.32359351232799, "length_x": 102.73529225511599, "length_y": 102.737112979329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.872143968887308, 0.0 ], [ -0.001373291015625, 47.872143968887308, 0.0 ], [ -0.001373291015625, 47.871222774564131, 0.0 ], [ -0.00274658203125, 47.871222774564131, 0.0 ], [ -0.00274658203125, 47.872143968887308, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2854, "task_x": 131070, "task_y": 91296, "task_z": 18, "center_y": 47.842196768986902, "area_in_sqm": 10534.7195954323, "perimeter_in_m": 410.55560007372901, "length_x": 102.793558195725, "length_y": 102.795379098062 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.842657628165355, 0.0 ], [ -0.001373291015625, 47.842657628165355, 0.0 ], [ -0.001373291015625, 47.841735909808371, 0.0 ], [ -0.00274658203125, 47.841735909808371, 0.0 ], [ -0.00274658203125, 47.842657628165355, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2855, "task_x": 131070, "task_y": 91328, "task_z": 18, "center_y": 47.812693396305399, "area_in_sqm": 10546.6304239035, "perimeter_in_m": 410.78762802060902, "length_x": 102.851829807889, "length_y": 102.85365088651599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.813154517527664, 0.0 ], [ -0.001373291015625, 47.813154517527664, 0.0 ], [ -0.001373291015625, 47.812232275083154, 0.0 ], [ -0.00274658203125, 47.812232275083154, 0.0 ], [ -0.00274658203125, 47.813154517527664, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2856, "task_x": 131070, "task_y": 91360, "task_z": 18, "center_y": 47.783173251971199, "area_in_sqm": 10558.549068927799, "perimeter_in_m": 411.01967710745703, "length_x": 102.910107032922, "length_y": 102.911928286004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.783634635263759, 0.0 ], [ -0.001373291015625, 47.783634635263759, 0.0 ], [ -0.001373291015625, 47.782711868678561, 0.0 ], [ -0.00274658203125, 47.782711868678561, 0.0 ], [ -0.00274658203125, 47.783634635263759, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2857, "task_x": 131070, "task_y": 91392, "task_z": 18, "center_y": 47.753636334290697, "area_in_sqm": 10570.475518941899, "perimeter_in_m": 411.25174710694102, "length_x": 102.968389812029, "length_y": 102.97021123772799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.754097979680019, 0.0 ], [ -0.001373291015625, 47.754097979680019, 0.0 ], [ -0.001373291015625, 47.753174688901474, 0.0 ], [ -0.00274658203125, 47.753174688901474, 0.0 ], [ -0.00274658203125, 47.754097979680019, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2858, "task_x": 131070, "task_y": 91424, "task_z": 18, "center_y": 47.7240826415877, "area_in_sqm": 10582.4097645283, "perimeter_in_m": 411.48383778018803, "length_x": 103.026678086304, "length_y": 103.028499682777 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.724544549099662, 0.0 ], [ -0.001373291015625, 47.724544549099662, 0.0 ], [ -0.001373291015625, 47.723620734075631, 0.0 ], [ -0.00274658203125, 47.723620734075631, 0.0 ], [ -0.00274658203125, 47.724544549099662, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2859, "task_x": 131070, "task_y": 91456, "task_z": 18, "center_y": 47.694512172202302, "area_in_sqm": 10594.351794600499, "perimeter_in_m": 411.7159488973, "length_x": 103.08497179673201, "length_y": 103.086793562133 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.694974341862824, 0.0 ], [ -0.001373291015625, 47.694974341862824, 0.0 ], [ -0.001373291015625, 47.694050002541708, 0.0 ], [ -0.00274658203125, 47.694050002541708, 0.0 ], [ -0.00274658203125, 47.694974341862824, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2860, "task_x": 131070, "task_y": 91488, "task_z": 18, "center_y": 47.664924924491899, "area_in_sqm": 10606.3015995026, "perimeter_in_m": 411.948080209078, "length_x": 103.143270884187, "length_y": 103.14509281666599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.665387356326541, 0.0 ], [ -0.001373291015625, 47.665387356326541, 0.0 ], [ -0.001373291015625, 47.664462492657293, 0.0 ], [ -0.00274658203125, 47.664462492657293, 0.0 ], [ -0.00274658203125, 47.665387356326541, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2861, "task_x": 131070, "task_y": 91520, "task_z": 18, "center_y": 47.635320896830898, "area_in_sqm": 10618.259168148001, "perimeter_in_m": 412.18023148730998, "length_x": 103.201575289432, "length_y": 103.20339738713599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.635783590864847, 0.0 ], [ -0.001373291015625, 47.635783590864847, 0.0 ], [ -0.001373291015625, 47.634858202796913, 0.0 ], [ -0.00274658203125, 47.634858202796913, 0.0 ], [ -0.00274658203125, 47.635783590864847, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2862, "task_x": 131070, "task_y": 91552, "task_z": 18, "center_y": 47.605700087610401, "area_in_sqm": 10630.2244902849, "perimeter_in_m": 412.412402495084, "length_x": 103.259884953121, "length_y": 103.261707214193 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.606163043868726, 0.0 ], [ -0.001373291015625, 47.606163043868726, 0.0 ], [ -0.001373291015625, 47.605237131352098, 0.0 ], [ -0.00274658203125, 47.605237131352098, 0.0 ], [ -0.00274658203125, 47.606163043868726, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2863, "task_x": 131070, "task_y": 91584, "task_z": 18, "center_y": 47.576062495238801, "area_in_sqm": 10642.197555541999, "perimeter_in_m": 412.64459299031398, "length_x": 103.318199815795, "length_y": 103.32002223837701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.576525713746207, 0.0 ], [ -0.001373291015625, 47.576525713746207, 0.0 ], [ -0.001373291015625, 47.575599276731417, 0.0 ], [ -0.00274658203125, 47.575599276731417, 0.0 ], [ -0.00274658203125, 47.576525713746207, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2864, "task_x": 131070, "task_y": 91616, "task_z": 18, "center_y": 47.5464081181414, "area_in_sqm": 10654.1783531904, "perimeter_in_m": 412.87680273637102, "length_x": 103.376519817887, "length_y": 103.37834240011399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.546871598922365, 0.0 ], [ -0.001373291015625, 47.546871598922365, 0.0 ], [ -0.001373291015625, 47.545944637360485, 0.0 ], [ -0.00274658203125, 47.545944637360485, 0.0 ], [ -0.00274658203125, 47.546871598922365, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2865, "task_x": 131070, "task_y": 91648, "task_z": 18, "center_y": 47.516736954760702, "area_in_sqm": 10666.166872739799, "perimeter_in_m": 413.10903150204501, "length_x": 103.434844899719, "length_y": 103.436667639725 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.517200697839399, 0.0 ], [ -0.001373291015625, 47.517200697839399, 0.0 ], [ -0.001373291015625, 47.516273211681984, 0.0 ], [ -0.00274658203125, 47.516273211681984, 0.0 ], [ -0.00274658203125, 47.517200697839399, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2866, "task_x": 131070, "task_y": 91680, "task_z": 18, "center_y": 47.487049003556201, "area_in_sqm": 10678.163102984399, "perimeter_in_m": 413.34127903964401, "length_x": 103.493175001502, "length_y": 103.49499789741699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.487513008956562, 0.0 ], [ -0.001373291015625, 47.487513008956562, 0.0 ], [ -0.001373291015625, 47.486584998155763, 0.0 ], [ -0.00274658203125, 47.486584998155763, 0.0 ], [ -0.00274658203125, 47.487513008956562, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2867, "task_x": 131070, "task_y": 91712, "task_z": 18, "center_y": 47.4573442630046, "area_in_sqm": 10690.1670336723, "perimeter_in_m": 413.57354510835398, "length_x": 103.551510063336, "length_y": 103.553333113287 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.457808530750306, 0.0 ], [ -0.001373291015625, 47.457808530750306, 0.0 ], [ -0.001373291015625, 47.456879995258788, 0.0 ], [ -0.00274658203125, 47.456879995258788, 0.0 ], [ -0.00274658203125, 47.457808530750306, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2868, "task_x": 131070, "task_y": 91744, "task_z": 18, "center_y": 47.427622731599698, "area_in_sqm": 10702.1786540747, "perimeter_in_m": 413.80582948125698, "length_x": 103.609850025212, "length_y": 103.61167322732101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.428087261714261, 0.0 ], [ -0.001373291015625, 47.428087261714261, 0.0 ], [ -0.001373291015625, 47.42715820148522, 0.0 ], [ -0.00274658203125, 47.42715820148522, 0.0 ], [ -0.00274658203125, 47.428087261714261, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2869, "task_x": 131070, "task_y": 91776, "task_z": 18, "center_y": 47.3978844078528, "area_in_sqm": 10714.1979529858, "perimeter_in_m": 414.038131897288, "length_x": 103.66819482701, "length_y": 103.670018179396 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.398349200359249, 0.0 ], [ -0.001373291015625, 47.398349200359249, 0.0 ], [ -0.001373291015625, 47.397419615346436, 0.0 ], [ -0.00274658203125, 47.397419615346436, 0.0 ], [ -0.00274658203125, 47.398349200359249, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2870, "task_x": 131070, "task_y": 91808, "task_z": 18, "center_y": 47.368129290292202, "area_in_sqm": 10726.224919676801, "perimeter_in_m": 414.27045213052003, "length_x": 103.726544408498, "length_y": 103.72836790927801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.368594345213374, 0.0 ], [ -0.001373291015625, 47.368594345213374, 0.0 ], [ -0.001373291015625, 47.367664235371066, 0.0 ], [ -0.00274658203125, 47.367664235371066, 0.0 ], [ -0.00274658203125, 47.368594345213374, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2871, "task_x": 131070, "task_y": 91840, "task_z": 18, "center_y": 47.338357377463502, "area_in_sqm": 10738.2595430613, "perimeter_in_m": 414.50278993359501, "length_x": 103.784898709334, "length_y": 103.78672235662 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.338822694821999, 0.0 ], [ -0.001373291015625, 47.338822694821999, 0.0 ], [ -0.001373291015625, 47.337892060105034, 0.0 ], [ -0.00274658203125, 47.337892060105034, 0.0 ], [ -0.00274658203125, 47.338822694821999, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2872, "task_x": 131070, "task_y": 91872, "task_z": 18, "center_y": 47.308568667929698, "area_in_sqm": 10750.3018125296, "perimeter_in_m": 414.73514507094899, "length_x": 103.843257669067, "length_y": 103.845081460968 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.309034247747803, 0.0 ], [ -0.001373291015625, 47.309034247747803, 0.0 ], [ -0.001373291015625, 47.308103088111523, 0.0 ], [ -0.00274658203125, 47.308103088111523, 0.0 ], [ -0.00274658203125, 47.309034247747803, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2873, "task_x": 131070, "task_y": 91904, "task_z": 18, "center_y": 47.278763160270998, "area_in_sqm": 10762.3517165184, "perimeter_in_m": 414.96751730044502, "length_x": 103.90162122713301, "length_y": 103.903445161755 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.279229002570823, 0.0 ], [ -0.001373291015625, 47.279229002570823, 0.0 ], [ -0.001373291015625, 47.278297317971131, 0.0 ], [ -0.00274658203125, 47.278297317971131, 0.0 ], [ -0.00274658203125, 47.279229002570823, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2874, "task_x": 131070, "task_y": 91936, "task_z": 18, "center_y": 47.248940853085102, "area_in_sqm": 10774.4092440605, "perimeter_in_m": 415.19990636982902, "length_x": 103.959989322859, "length_y": 103.961813398304 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.249406957888439, 0.0 ], [ -0.001373291015625, 47.249406957888439, 0.0 ], [ -0.001373291015625, 47.248474748281801, 0.0 ], [ -0.00274658203125, 47.248474748281801, 0.0 ], [ -0.00274658203125, 47.249406957888439, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2875, "task_x": 131070, "task_y": 91968, "task_z": 18, "center_y": 47.219101744987199, "area_in_sqm": 10786.474383950201, "perimeter_in_m": 415.432312042886, "length_x": 104.01836189546, "length_y": 104.02018610982699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.219568112315478, 0.0 ], [ -0.001373291015625, 47.219568112315478, 0.0 ], [ -0.001373291015625, 47.218635377658885, 0.0 ], [ -0.00274658203125, 47.218635377658885, 0.0 ], [ -0.00274658203125, 47.219568112315478, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2876, "task_x": 131070, "task_y": 92000, "task_z": 18, "center_y": 47.1892458346097, "area_in_sqm": 10798.547125458699, "perimeter_in_m": 415.66473407752198, "length_x": 104.07673888404101, "length_y": 104.07856323542499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.189712464484195, 0.0 ], [ -0.001373291015625, 47.189712464484195, 0.0 ], [ -0.001373291015625, 47.188779204735177, 0.0 ], [ -0.00274658203125, 47.188779204735177, 0.0 ], [ -0.00274658203125, 47.189712464484195, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2877, "task_x": 131070, "task_y": 92032, "task_z": 18, "center_y": 47.159373120602602, "area_in_sqm": 10810.6274572611, "perimeter_in_m": 415.897172229315, "length_x": 104.135120227597, "length_y": 104.13694471409001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.15984001304431, 0.0 ], [ -0.001373291015625, 47.15984001304431, 0.0 ], [ -0.001373291015625, 47.158906228160951, 0.0 ], [ -0.00274658203125, 47.158906228160951, 0.0 ], [ -0.00274658203125, 47.15984001304431, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2878, "task_x": 131070, "task_y": 92064, "task_z": 18, "center_y": 47.129483601633503, "area_in_sqm": 10822.7153675556, "perimeter_in_m": 416.12962624796899, "length_x": 104.19350586501101, "length_y": 104.195330484701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.129950756663042, 0.0 ], [ -0.001373291015625, 47.129950756663042, 0.0 ], [ -0.001373291015625, 47.129016446603991, 0.0 ], [ -0.00274658203125, 47.129016446603991, 0.0 ], [ -0.00274658203125, 47.129950756663042, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2879, "task_x": 131070, "task_y": 92096, "task_z": 18, "center_y": 47.0995772763874, "area_in_sqm": 10834.8108450174, "perimeter_in_m": 416.36209589567898, "length_x": 104.251895735056, "length_y": 104.253720486028 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.100044694025193, 0.0 ], [ -0.001373291015625, 47.100044694025193, 0.0 ], [ -0.001373291015625, 47.099109858749628, 0.0 ], [ -0.00274658203125, 47.099109858749628, 0.0 ], [ -0.00274658203125, 47.100044694025193, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2880, "task_x": 131070, "task_y": 92128, "task_z": 18, "center_y": 47.0696541435669, "area_in_sqm": 10846.9138790369, "perimeter_in_m": 416.59458092736099, "length_x": 104.310289776394, "length_y": 104.31211465672899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.070121823833084, 0.0 ], [ -0.001373291015625, 47.070121823833084, 0.0 ], [ -0.001373291015625, 47.06918646330071, 0.0 ], [ -0.00274658203125, 47.06918646330071, 0.0 ], [ -0.00274658203125, 47.070121823833084, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2881, "task_x": 131070, "task_y": 92160, "task_z": 18, "center_y": 47.039714201892203, "area_in_sqm": 10859.024456977801, "perimeter_in_m": 416.82708109065697, "length_x": 104.368687927575, "length_y": 104.370512935351 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.04018214480665, 0.0 ], [ -0.001373291015625, 47.04018214480665, 0.0 ], [ -0.001373291015625, 47.039246258977776, 0.0 ], [ -0.00274658203125, 47.039246258977776, 0.0 ], [ -0.00274658203125, 47.04018214480665, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2882, "task_x": 131070, "task_y": 92192, "task_z": 18, "center_y": 47.009757450101198, "area_in_sqm": 10871.1425682306, "perimeter_in_m": 417.05959614639801, "length_x": 104.42709012704, "length_y": 104.428915260332 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 47.010225655683485, 0.0 ], [ -0.001373291015625, 47.010225655683485, 0.0 ], [ -0.001373291015625, 47.009289244518939, 0.0 ], [ -0.00274658203125, 47.009289244518939, 0.0 ], [ -0.00274658203125, 47.010225655683485, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2883, "task_x": 131070, "task_y": 92224, "task_z": 18, "center_y": 46.979783886949399, "area_in_sqm": 10883.2682009935, "perimeter_in_m": 417.29212584460703, "length_x": 104.485496313119, "length_y": 104.487321569998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.980252355218816, 0.0 ], [ -0.001373291015625, 46.980252355218816, 0.0 ], [ -0.001373291015625, 46.979315418679995, 0.0 ], [ -0.00274658203125, 46.979315418679995, 0.0 ], [ -0.00274658203125, 46.980252355218816, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2884, "task_x": 131070, "task_y": 92256, "task_z": 18, "center_y": 46.949793511209997, "area_in_sqm": 10895.401343822499, "perimeter_in_m": 417.52466994357002, "length_x": 104.54390642403, "length_y": 104.545731802563 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.950262242185609, 0.0 ], [ -0.001373291015625, 46.950262242185609, 0.0 ], [ -0.001373291015625, 46.949324780234427, 0.0 ], [ -0.00274658203125, 46.949324780234427, 0.0 ], [ -0.00274658203125, 46.950262242185609, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2885, "task_x": 131070, "task_y": 92288, "task_z": 18, "center_y": 46.919786321674003, "area_in_sqm": 10907.5419844389, "perimeter_in_m": 417.75722818439198, "length_x": 104.60232039788001, "length_y": 104.604145896132 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.920255315374511, 0.0 ], [ -0.001373291015625, 46.920255315374511, 0.0 ], [ -0.001373291015625, 46.919317327973495, 0.0 ], [ -0.00274658203125, 46.919317327973495, 0.0 ], [ -0.00274658203125, 46.920255315374511, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2886, "task_x": 131070, "task_y": 92320, "task_z": 18, "center_y": 46.889762317150101, "area_in_sqm": 10919.690111756299, "perimeter_in_m": 417.98980032985202, "length_x": 104.660738172668, "length_y": 104.66256378869799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.890231573593987, 0.0 ], [ -0.001373291015625, 46.890231573593987, 0.0 ], [ -0.001373291015625, 46.889293060706166, 0.0 ], [ -0.00274658203125, 46.889293060706166, 0.0 ], [ -0.00274658203125, 46.890231573593987, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2887, "task_x": 131070, "task_y": 92352, "task_z": 18, "center_y": 46.859721496464701, "area_in_sqm": 10931.845713973, "perimeter_in_m": 418.22238612911099, "length_x": 104.719159686278, "length_y": 104.720985418144 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.860191015670253, 0.0 ], [ -0.001373291015625, 46.860191015670253, 0.0 ], [ -0.001373291015625, 46.859251977259234, 0.0 ], [ -0.00274658203125, 46.859251977259234, 0.0 ], [ -0.00274658203125, 46.860191015670253, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2888, "task_x": 131070, "task_y": 92384, "task_z": 18, "center_y": 46.829663858462403, "area_in_sqm": 10944.0087790489, "perimeter_in_m": 418.45498533674601, "length_x": 104.777584876486, "length_y": 104.77941072224201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.830133640447393, 0.0 ], [ -0.001373291015625, 46.830133640447393, 0.0 ], [ -0.001373291015625, 46.829194076477343, 0.0 ], [ -0.00274658203125, 46.829194076477343, 0.0 ], [ -0.00274658203125, 46.830133640447393, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2889, "task_x": 131070, "task_y": 92416, "task_z": 18, "center_y": 46.799589402005097, "area_in_sqm": 10956.1792948246, "perimeter_in_m": 418.687597693692, "length_x": 104.83601368095501, "length_y": 104.837839638652 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.800059446787301, 0.0 ], [ -0.001373291015625, 46.800059446787301, 0.0 ], [ -0.001373291015625, 46.799119357222949, 0.0 ], [ -0.00274658203125, 46.799119357222949, 0.0 ], [ -0.00274658203125, 46.800059446787301, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2890, "task_x": 131070, "task_y": 92448, "task_z": 18, "center_y": 46.769498125973101, "area_in_sqm": 10968.357250094399, "perimeter_in_m": 418.92022295974198, "length_x": 104.89444603724, "length_y": 104.896272104923 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.769968433569815, 0.0 ], [ -0.001373291015625, 46.769968433569815, 0.0 ], [ -0.001373291015625, 46.769027818376443, 0.0 ], [ -0.00274658203125, 46.769027818376443, 0.0 ], [ -0.00274658203125, 46.769968433569815, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2891, "task_x": 131070, "task_y": 92480, "task_z": 18, "center_y": 46.739390029264399, "area_in_sqm": 10980.542632222199, "perimeter_in_m": 419.15286087822301, "length_x": 104.952881882783, "length_y": 104.954708058496 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.739860599692669, 0.0 ], [ -0.001373291015625, 46.739860599692669, 0.0 ], [ -0.001373291015625, 46.738919458836115, 0.0 ], [ -0.00274658203125, 46.738919458836115, 0.0 ], [ -0.00274658203125, 46.739860599692669, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2892, "task_x": 131070, "task_y": 92512, "task_z": 18, "center_y": 46.709265110794902, "area_in_sqm": 10992.7354300022, "perimeter_in_m": 419.38551120708303, "length_x": 105.011321154914, "length_y": 105.013147436697 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.709735944071554, 0.0 ], [ -0.001373291015625, 46.709735944071554, 0.0 ], [ -0.001373291015625, 46.70879427751823, 0.0 ], [ -0.00274658203125, 46.70879427751823, 0.0 ], [ -0.00274658203125, 46.709735944071554, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2893, "task_x": 131070, "task_y": 92544, "task_z": 18, "center_y": 46.679123369498598, "area_in_sqm": 11004.935630559899, "perimeter_in_m": 419.61817368850501, "length_x": 105.069763790854, "length_y": 105.071590176743 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.679594465640179, 0.0 ], [ -0.001373291015625, 46.679594465640179, 0.0 ], [ -0.001373291015625, 46.678652273357045, 0.0 ], [ -0.00274658203125, 46.678652273357045, 0.0 ], [ -0.00274658203125, 46.679594465640179, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2894, "task_x": 131070, "task_y": 92576, "task_z": 18, "center_y": 46.648964804327598, "area_in_sqm": 11017.1432216167, "perimeter_in_m": 419.85084807434203, "length_x": 105.128209727713, "length_y": 105.130036215741 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.649436163350252, 0.0 ], [ -0.001373291015625, 46.649436163350252, 0.0 ], [ -0.001373291015625, 46.648493445304844, 0.0 ], [ -0.00274658203125, 46.648493445304844, 0.0 ], [ -0.00274658203125, 46.649436163350252, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2895, "task_x": 131070, "task_y": 92608, "task_z": 18, "center_y": 46.618789414251701, "area_in_sqm": 11029.3581922054, "perimeter_in_m": 420.08353411056999, "length_x": 105.186658902489, "length_y": 105.18848549068601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.619261036171515, 0.0 ], [ -0.001373291015625, 46.619261036171515, 0.0 ], [ -0.001373291015625, 46.618317792331922, 0.0 ], [ -0.00274658203125, 46.618317792331922, 0.0 ], [ -0.00274658203125, 46.619261036171515, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2896, "task_x": 131070, "task_y": 92640, "task_z": 18, "center_y": 46.588597198259301, "area_in_sqm": 11041.5805284977, "perimeter_in_m": 420.31623154790498, "length_x": 105.24511125207, "length_y": 105.246937938461 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.589069083091829, 0.0 ], [ -0.001373291015625, 46.589069083091829, 0.0 ], [ -0.001373291015625, 46.588125313426723, 0.0 ], [ -0.00274658203125, 46.588125313426723, 0.0 ], [ -0.00274658203125, 46.589069083091829, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2897, "task_x": 131070, "task_y": 92672, "task_z": 18, "center_y": 46.558388155356504, "area_in_sqm": 11053.8102194071, "perimeter_in_m": 420.548940127653, "length_x": 105.30356671323101, "length_y": 105.30539349583999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.558860303117171, 0.0 ], [ -0.001373291015625, 46.558860303117171, 0.0 ], [ -0.001373291015625, 46.557916007595786, 0.0 ], [ -0.00274658203125, 46.557916007595786, 0.0 ], [ -0.00274658203125, 46.558860303117171, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2898, "task_x": 131070, "task_y": 92704, "task_z": 18, "center_y": 46.528162284567699, "area_in_sqm": 11066.0472524166, "perimeter_in_m": 420.78165961140297, "length_x": 105.36202522264, "length_y": 105.36385209948401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.52863469527167, 0.0 ], [ -0.001373291015625, 46.52863469527167, 0.0 ], [ -0.001373291015625, 46.527689873863778, 0.0 ], [ -0.00274658203125, 46.527689873863778, 0.0 ], [ -0.00274658203125, 46.52863469527167, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2899, "task_x": 131070, "task_y": 92736, "task_z": 18, "center_y": 46.497919584935602, "area_in_sqm": 11078.291615009301, "perimeter_in_m": 421.01438972727999, "length_x": 105.420486716849, "length_y": 105.422313685945 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.498392258597619, 0.0 ], [ -0.001373291015625, 46.498392258597619, 0.0 ], [ -0.001373291015625, 46.497446911273599, 0.0 ], [ -0.00274658203125, 46.497446911273599, 0.0 ], [ -0.00274658203125, 46.498392258597619, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2900, "task_x": 131070, "task_y": 92768, "task_z": 18, "center_y": 46.467660055520902, "area_in_sqm": 11090.5432941914, "perimeter_in_m": 421.24713023362102, "length_x": 105.478951132303, "length_y": 105.480778191662 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.468132992155539, 0.0 ], [ -0.001373291015625, 46.468132992155539, 0.0 ], [ -0.001373291015625, 46.467187118886336, 0.0 ], [ -0.00274658203125, 46.467187118886336, 0.0 ], [ -0.00274658203125, 46.468132992155539, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2901, "task_x": 131070, "task_y": 92800, "task_z": 18, "center_y": 46.437383695402801, "area_in_sqm": 11102.8022780418, "perimeter_in_m": 421.47988087084298, "length_x": 105.537418405333, "length_y": 105.539245552965 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.437856895024204, 0.0 ], [ -0.001373291015625, 46.437856895024204, 0.0 ], [ -0.001373291015625, 46.436910495781319, 0.0 ], [ -0.00274658203125, 46.436910495781319, 0.0 ], [ -0.00274658203125, 46.437856895024204, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2902, "task_x": 131070, "task_y": 92832, "task_z": 18, "center_y": 46.407090503678397, "area_in_sqm": 11115.068554282199, "perimeter_in_m": 421.71264138481399, "length_x": 105.595888472163, "length_y": 105.597715706071 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.407563966300664, 0.0 ], [ -0.001373291015625, 46.407563966300664, 0.0 ], [ -0.001373291015625, 46.406617041056165, 0.0 ], [ -0.00274658203125, 46.406617041056165, 0.0 ], [ -0.00274658203125, 46.407563966300664, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2903, "task_x": 131070, "task_y": 92864, "task_z": 18, "center_y": 46.376780479463498, "area_in_sqm": 11127.342109322501, "perimeter_in_m": 421.94541151552602, "length_x": 105.654361268901, "length_y": 105.65618858708901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.377254205100265, 0.0 ], [ -0.001373291015625, 46.377254205100265, 0.0 ], [ -0.001373291015625, 46.376306753826832, 0.0 ], [ -0.00274658203125, 46.376306753826832, 0.0 ], [ -0.00274658203125, 46.377254205100265, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2904, "task_x": 131070, "task_y": 92896, "task_z": 18, "center_y": 46.346453621892202, "area_in_sqm": 11139.622931837999, "perimeter_in_m": 422.17819102466098, "length_x": 105.712836731547, "length_y": 105.714664132012 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.346927610556754, 0.0 ], [ -0.001373291015625, 46.346927610556754, 0.0 ], [ -0.001373291015625, 46.345979633227579, 0.0 ], [ -0.00274658203125, 46.345979633227579, 0.0 ], [ -0.00274658203125, 46.346927610556754, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2905, "task_x": 131070, "task_y": 92928, "task_z": 18, "center_y": 46.316109930116603, "area_in_sqm": 11151.9110081196, "perimeter_in_m": 422.41097963976, "length_x": 105.77131479598999, "length_y": 105.773142276727 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.316584181822186, 0.0 ], [ -0.001373291015625, 46.316584181822186, 0.0 ], [ -0.001373291015625, 46.315635678411077, 0.0 ], [ -0.00274658203125, 46.315635678411077, 0.0 ], [ -0.00274658203125, 46.316584181822186, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2906, "task_x": 131070, "task_y": 92960, "task_z": 18, "center_y": 46.285749403307697, "area_in_sqm": 11164.206325650201, "perimeter_in_m": 422.64377711359299, "length_x": 105.82979539800699, "length_y": 105.83162295700799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.286223918067058, 0.0 ], [ -0.001373291015625, 46.286223918067058, 0.0 ], [ -0.001373291015625, 46.285274888548386, 0.0 ], [ -0.00274658203125, 46.285274888548386, 0.0 ], [ -0.00274658203125, 46.286223918067058, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2907, "task_x": 131070, "task_y": 92992, "task_z": 18, "center_y": 46.255372040654699, "area_in_sqm": 11176.508871555299, "perimeter_in_m": 422.87658317395199, "length_x": 105.888278473265, "length_y": 105.89010610851599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.255846818480315, 0.0 ], [ -0.001373291015625, 46.255846818480315, 0.0 ], [ -0.001373291015625, 46.254897262829047, 0.0 ], [ -0.00274658203125, 46.254897262829047, 0.0 ], [ -0.00274658203125, 46.255846818480315, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2908, "task_x": 131070, "task_y": 93024, "task_z": 18, "center_y": 46.224977841365202, "area_in_sqm": 11188.8186333179, "perimeter_in_m": 423.109397579534, "length_x": 105.946763957318, "length_y": 105.94859166680401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.225452882269373, 0.0 ], [ -0.001373291015625, 46.225452882269373, 0.0 ], [ -0.001373291015625, 46.224502800461039, 0.0 ], [ -0.00274658203125, 46.224502800461039, 0.0 ], [ -0.00274658203125, 46.225452882269373, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2909, "task_x": 131070, "task_y": 93056, "task_z": 18, "center_y": 46.194566804665499, "area_in_sqm": 11201.1355980635, "perimeter_in_m": 423.34222007043002, "length_x": 106.00525178561099, "length_y": 106.007079567313 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.195042108660154, 0.0 ], [ -0.001373291015625, 46.195042108660154, 0.0 ], [ -0.001373291015625, 46.194091500670829, 0.0 ], [ -0.00274658203125, 46.194091500670829, 0.0 ], [ -0.00274658203125, 46.195042108660154, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2910, "task_x": 131070, "task_y": 93088, "task_z": 18, "center_y": 46.164138929800302, "area_in_sqm": 11213.459752201999, "perimeter_in_m": 423.57505038157399, "length_x": 106.063741893477, "length_y": 106.065569745373 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.164614496897109, 0.0 ], [ -0.001373291015625, 46.164614496897109, 0.0 ], [ -0.001373291015625, 46.163663362703502, 0.0 ], [ -0.00274658203125, 46.163663362703502, 0.0 ], [ -0.00274658203125, 46.164614496897109, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2911, "task_x": 131070, "task_y": 93120, "task_z": 18, "center_y": 46.133694216033, "area_in_sqm": 11225.791082978199, "perimeter_in_m": 423.80788825472899, "length_x": 106.12223421613901, "length_y": 106.124062136202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.134170046243248, 0.0 ], [ -0.001373291015625, 46.134170046243248, 0.0 ], [ -0.001373291015625, 46.133218385822651, 0.0 ], [ -0.00274658203125, 46.133218385822651, 0.0 ], [ -0.00274658203125, 46.134170046243248, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2912, "task_x": 131070, "task_y": 93152, "task_z": 18, "center_y": 46.103232662645397, "area_in_sqm": 11238.129577755901, "perimeter_in_m": 424.04073343569399, "length_x": 106.18072868870701, "length_y": 106.182556674908 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.103708755980243, 0.0 ], [ -0.001373291015625, 46.103708755980243, 0.0 ], [ -0.001373291015625, 46.102756569310486, 0.0 ], [ -0.00274658203125, 46.102756569310486, 0.0 ], [ -0.00274658203125, 46.103708755980243, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2913, "task_x": 131070, "task_y": 93184, "task_z": 18, "center_y": 46.072754268938098, "area_in_sqm": 11250.475222945201, "perimeter_in_m": 424.27358566864001, "length_x": 106.23922524618099, "length_y": 106.241053296487 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.073230625408357, 0.0 ], [ -0.001373291015625, 46.073230625408357, 0.0 ], [ -0.001373291015625, 46.072277912467868, 0.0 ], [ -0.00274658203125, 46.072277912467868, 0.0 ], [ -0.00274658203125, 46.073230625408357, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2914, "task_x": 131070, "task_y": 93216, "task_z": 18, "center_y": 46.042259034230398, "area_in_sqm": 11262.828005433101, "perimeter_in_m": 424.50644468125302, "length_x": 106.297723823452, "length_y": 106.299551935826 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.042735653846513, 0.0 ], [ -0.001373291015625, 46.042735653846513, 0.0 ], [ -0.001373291015625, 46.041782414614318, 0.0 ], [ -0.00274658203125, 46.041782414614318, 0.0 ], [ -0.00274658203125, 46.042735653846513, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2915, "task_x": 131070, "task_y": 93248, "task_z": 18, "center_y": 46.011746957860197, "area_in_sqm": 11275.187911987299, "perimeter_in_m": 424.73931022150902, "length_x": 106.35622435529601, "length_y": 106.35805252769801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 46.012223840632359, 0.0 ], [ -0.001373291015625, 46.012223840632359, 0.0 ], [ -0.001373291015625, 46.011270075088063, 0.0 ], [ -0.00274658203125, 46.011270075088063, 0.0 ], [ -0.00274658203125, 46.012223840632359, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2916, "task_x": 131070, "task_y": 93280, "task_z": 18, "center_y": 45.981218039184199, "area_in_sqm": 11287.5549297333, "perimeter_in_m": 424.97218202725202, "length_x": 106.414726776381, "length_y": 106.41655500676799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.981695185122277, 0.0 ], [ -0.001373291015625, 45.981695185122277, 0.0 ], [ -0.001373291015625, 45.980740893246065, 0.0 ], [ -0.00274658203125, 45.980740893246065, 0.0 ], [ -0.00274658203125, 45.981695185122277, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2917, "task_x": 131070, "task_y": 93312, "task_z": 18, "center_y": 45.950672277577702, "area_in_sqm": 11299.929044485099, "perimeter_in_m": 425.20505983682801, "length_x": 106.473231021263, "length_y": 106.475059307588 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.951149686691394, 0.0 ], [ -0.001373291015625, 45.951149686691394, 0.0 ], [ -0.001373291015625, 45.950194868464045, 0.0 ], [ -0.00274658203125, 45.950194868464045, 0.0 ], [ -0.00274658203125, 45.951149686691394, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2918, "task_x": 131070, "task_y": 93344, "task_z": 18, "center_y": 45.920109672435103, "area_in_sqm": 11312.310243129699, "perimeter_in_m": 425.43794338836801, "length_x": 106.531737024387, "length_y": 106.533565364599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.920587344733654, 0.0 ], [ -0.001373291015625, 45.920587344733654, 0.0 ], [ -0.001373291015625, 45.919632000136538, 0.0 ], [ -0.00274658203125, 45.919632000136538, 0.0 ], [ -0.00274658203125, 45.920587344733654, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2919, "task_x": 131070, "task_y": 93376, "task_z": 18, "center_y": 45.889530223169402, "area_in_sqm": 11324.698513388599, "perimeter_in_m": 425.670832420473, "length_x": 106.590244720087, "length_y": 106.59207311213299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.890008158661836, 0.0 ], [ -0.001373291015625, 45.890008158661836, 0.0 ], [ -0.001373291015625, 45.889052287676883, 0.0 ], [ -0.00274658203125, 45.889052287676883, 0.0 ], [ -0.00274658203125, 45.890008158661836, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2920, "task_x": 131070, "task_y": 93408, "task_z": 18, "center_y": 45.858933929212398, "area_in_sqm": 11337.093839883801, "perimeter_in_m": 425.903726666598, "length_x": 106.64875404258601, "length_y": 106.65058248440801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.859412127907547, 0.0 ], [ -0.001373291015625, 45.859412127907547, 0.0 ], [ -0.001373291015625, 45.858455730517321, 0.0 ], [ -0.00274658203125, 45.858455730517321, 0.0 ], [ -0.00274658203125, 45.859412127907547, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2921, "task_x": 131070, "task_y": 93440, "task_z": 18, "center_y": 45.828320790015098, "area_in_sqm": 11349.4962105751, "perimeter_in_m": 426.13662586916001, "length_x": 106.707264925996, "length_y": 106.709093415534 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.828799251921332, 0.0 ], [ -0.001373291015625, 45.828799251921332, 0.0 ], [ -0.001373291015625, 45.827842328108957, 0.0 ], [ -0.00274658203125, 45.827842328108957, 0.0 ], [ -0.00274658203125, 45.828799251921332, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2922, "task_x": 131070, "task_y": 93472, "task_z": 18, "center_y": 45.797690805047303, "area_in_sqm": 11361.9056107998, "perimeter_in_m": 426.369529760457, "length_x": 106.76577730431799, "length_y": 106.767605839507 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.798169530172643, 0.0 ], [ -0.001373291015625, 45.798169530172643, 0.0 ], [ -0.001373291015625, 45.797212079921863, 0.0 ], [ -0.00274658203125, 45.797212079921863, 0.0 ], [ -0.00274658203125, 45.798169530172643, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2923, "task_x": 131070, "task_y": 93504, "task_z": 18, "center_y": 45.767043973797399, "area_in_sqm": 11374.322027325599, "perimeter_in_m": 426.60243808246997, "length_x": 106.82429111144199, "length_y": 106.82611969021499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.76752296214989, 0.0 ], [ -0.001373291015625, 45.76752296214989, 0.0 ], [ -0.001373291015625, 45.766564985444994, 0.0 ], [ -0.00274658203125, 45.766564985444994, 0.0 ], [ -0.00274658203125, 45.76752296214989, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2924, "task_x": 131070, "task_y": 93536, "task_z": 18, "center_y": 45.736380295773401, "area_in_sqm": 11386.7454465628, "perimeter_in_m": 426.83535056141102, "length_x": 106.88280628114801, "length_y": 106.884634901433 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.736859547360474, 0.0 ], [ -0.001373291015625, 45.736859547360474, 0.0 ], [ -0.001373291015625, 45.735901044186392, 0.0 ], [ -0.00274658203125, 45.735901044186392, 0.0 ], [ -0.00274658203125, 45.736859547360474, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2925, "task_x": 131070, "task_y": 93568, "task_z": 18, "center_y": 45.705699770502001, "area_in_sqm": 11399.175854802101, "perimeter_in_m": 427.06826694163999, "length_x": 106.941322747103, "length_y": 106.943151406826 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.70617928533084, 0.0 ], [ -0.001373291015625, 45.70617928533084, 0.0 ], [ -0.001373291015625, 45.705220255673083, 0.0 ], [ -0.00274658203125, 45.705220255673083, 0.0 ], [ -0.00274658203125, 45.70617928533084, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2926, "task_x": 131070, "task_y": 93600, "task_z": 18, "center_y": 45.6750023975288, "area_in_sqm": 11411.6132377386, "perimeter_in_m": 427.30118695318299, "length_x": 106.99984044286499, "length_y": 107.00166913994801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.675482175606462, 0.0 ], [ -0.001373291015625, 45.675482175606462, 0.0 ], [ -0.001373291015625, 45.674522619451125, 0.0 ], [ -0.00274658203125, 45.674522619451125, 0.0 ], [ -0.00274658203125, 45.675482175606462, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2927, "task_x": 131070, "task_y": 93632, "task_z": 18, "center_y": 45.644288176418797, "area_in_sqm": 11424.057581901599, "perimeter_in_m": 427.53411032795799, "length_x": 107.05835930188, "length_y": 107.06018803424099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.644768217751924, 0.0 ], [ -0.001373291015625, 45.644768217751924, 0.0 ], [ -0.001373291015625, 45.643808135085713, 0.0 ], [ -0.00274658203125, 45.643808135085713, 0.0 ], [ -0.00274658203125, 45.644768217751924, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2928, "task_x": 131070, "task_y": 93664, "task_z": 18, "center_y": 45.613557106755998, "area_in_sqm": 11436.5088733435, "perimeter_in_m": 427.76703680896401, "length_x": 107.11687925748301, "length_y": 107.118708023037 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.614037411350921, 0.0 ], [ -0.001373291015625, 45.614037411350921, 0.0 ], [ -0.001373291015625, 45.613076802161139, 0.0 ], [ -0.00274658203125, 45.613076802161139, 0.0 ], [ -0.00274658203125, 45.614037411350921, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2929, "task_x": 131070, "task_y": 93696, "task_z": 18, "center_y": 45.582809188143599, "area_in_sqm": 11448.967097282401, "perimeter_in_m": 427.99996611567002, "length_x": 107.175400242899, "length_y": 107.17722903955701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.583289756006309, 0.0 ], [ -0.001373291015625, 45.583289756006309, 0.0 ], [ -0.001373291015625, 45.582328620280855, 0.0 ], [ -0.00274658203125, 45.582328620280855, 0.0 ], [ -0.00274658203125, 45.583289756006309, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2930, "task_x": 131070, "task_y": 93728, "task_z": 18, "center_y": 45.552044420203799, "area_in_sqm": 11461.432240963, "perimeter_in_m": 428.23289799559802, "length_x": 107.23392219124101, "length_y": 107.235751016912 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.552525251340128, 0.0 ], [ -0.001373291015625, 45.552525251340128, 0.0 ], [ -0.001373291015625, 45.551563589067491, 0.0 ], [ -0.00274658203125, 45.551563589067491, 0.0 ], [ -0.00274658203125, 45.552525251340128, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2931, "task_x": 131070, "task_y": 93760, "task_z": 18, "center_y": 45.521262802578299, "area_in_sqm": 11473.904289841699, "perimeter_in_m": 428.46583217766602, "length_x": 107.292445035512, "length_y": 107.29427388809999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.521743896993627, 0.0 ], [ -0.001373291015625, 45.521743896993627, 0.0 ], [ -0.001373291015625, 45.5207817081629, 0.0 ], [ -0.00274658203125, 45.5207817081629, 0.0 ], [ -0.00274658203125, 45.521743896993627, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2932, "task_x": 131070, "task_y": 93792, "task_z": 18, "center_y": 45.4904643349278, "area_in_sqm": 11486.3832293749, "perimeter_in_m": 428.69876838422402, "length_x": 107.350968708604, "length_y": 107.35279758601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.490945692627314, 0.0 ], [ -0.001373291015625, 45.490945692627314, 0.0 ], [ -0.001373291015625, 45.489982977228209, 0.0 ], [ -0.00274658203125, 45.489982977228209, 0.0 ], [ -0.00274658203125, 45.490945692627314, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2933, "task_x": 131070, "task_y": 93824, "task_z": 18, "center_y": 45.459649016932403, "area_in_sqm": 11498.869045496, "perimeter_in_m": 428.93170635434899, "length_x": 107.409493143297, "length_y": 107.41132204341901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.460130637920997, 0.0 ], [ -0.001373291015625, 45.460130637920997, 0.0 ], [ -0.001373291015625, 45.459167395943822, 0.0 ], [ -0.00274658203125, 45.459167395943822, 0.0 ], [ -0.00274658203125, 45.460130637920997, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2934, "task_x": 131070, "task_y": 93856, "task_z": 18, "center_y": 45.428816848291603, "area_in_sqm": 11511.361723542201, "perimeter_in_m": 429.16464582056602, "length_x": 107.468018272262, "length_y": 107.469847192993 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.429298732573756, 0.0 ], [ -0.001373291015625, 45.429298732573756, 0.0 ], [ -0.001373291015625, 45.42833496400943, 0.0 ], [ -0.00274658203125, 45.42833496400943, 0.0 ], [ -0.00274658203125, 45.429298732573756, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2935, "task_x": 131070, "task_y": 93888, "task_z": 18, "center_y": 45.397967828724099, "area_in_sqm": 11523.8612508774, "perimeter_in_m": 429.39758651727402, "length_x": 107.526544028057, "length_y": 107.528372967289 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.398449976304086, 0.0 ], [ -0.001373291015625, 45.398449976304086, 0.0 ], [ -0.001373291015625, 45.39748568114409, 0.0 ], [ -0.00274658203125, 45.39748568114409, 0.0 ], [ -0.00274658203125, 45.398449976304086, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2936, "task_x": 131070, "task_y": 93920, "task_z": 18, "center_y": 45.367101957968003, "area_in_sqm": 11536.367611169801, "perimeter_in_m": 429.630528163127, "length_x": 107.585070343132, "length_y": 107.586899298752 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.367584368849784, 0.0 ], [ -0.001373291015625, 45.367584368849784, 0.0 ], [ -0.001373291015625, 45.366619547086259, 0.0 ], [ -0.00274658203125, 45.366619547086259, 0.0 ], [ -0.00274658203125, 45.367584368849784, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2937, "task_x": 131070, "task_y": 93952, "task_z": 18, "center_y": 45.336219235781002, "area_in_sqm": 11548.8807907104, "perimeter_in_m": 429.86347049774798, "length_x": 107.64359714982299, "length_y": 107.645426119715 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.33670190996812, 0.0 ], [ -0.001373291015625, 45.33670190996812, 0.0 ], [ -0.001373291015625, 45.335736561593791, 0.0 ], [ -0.00274658203125, 45.335736561593791, 0.0 ], [ -0.00274658203125, 45.33670190996812, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2938, "task_x": 131070, "task_y": 93984, "task_z": 18, "center_y": 45.305319661939897, "area_in_sqm": 11561.400775194201, "perimeter_in_m": 430.09641324713101, "length_x": 107.702124380358, "length_y": 107.703953362402 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.305802599435765, 0.0 ], [ -0.001373291015625, 45.305802599435765, 0.0 ], [ -0.001373291015625, 45.304836724443973, 0.0 ], [ -0.00274658203125, 45.304836724443973, 0.0 ], [ -0.00274658203125, 45.305802599435765, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2939, "task_x": 131070, "task_y": 94016, "task_z": 18, "center_y": 45.274403236241298, "area_in_sqm": 11573.9275500774, "perimeter_in_m": 430.32935614268098, "length_x": 107.760651966853, "length_y": 107.762480958925 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.274886437048927, 0.0 ], [ -0.001373291015625, 45.274886437048927, 0.0 ], [ -0.001373291015625, 45.273920035433598, 0.0 ], [ -0.00274658203125, 45.273920035433598, 0.0 ], [ -0.00274658203125, 45.274886437048927, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2940, "task_x": 131070, "task_y": 94048, "task_z": 18, "center_y": 45.243469958501102, "area_in_sqm": 11586.461100697499, "perimeter_in_m": 430.56229890712802, "length_x": 107.819179841313, "length_y": 107.821008841287 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.243953422623242, 0.0 ], [ -0.001373291015625, 45.243953422623242, 0.0 ], [ -0.001373291015625, 45.242986494378954, 0.0 ], [ -0.00274658203125, 45.242986494378954, 0.0 ], [ -0.00274658203125, 45.243953422623242, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2941, "task_x": 131070, "task_y": 94080, "task_z": 18, "center_y": 45.212519828554903, "area_in_sqm": 11599.0014116764, "perimeter_in_m": 430.79524127357598, "length_x": 107.877707935632, "length_y": 107.87953694137801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.213003555993964, 0.0 ], [ -0.001373291015625, 45.213003555993964, 0.0 ], [ -0.001373291015625, 45.212036101115871, 0.0 ], [ -0.00274658203125, 45.212036101115871, 0.0 ], [ -0.00274658203125, 45.213003555993964, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2942, "task_x": 131070, "task_y": 94112, "task_z": 18, "center_y": 45.181552846257802, "area_in_sqm": 11611.548469781899, "perimeter_in_m": 431.02818297208302, "length_x": 107.936236181594, "length_y": 107.938065190979 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.182036837015879, 0.0 ], [ -0.001373291015625, 45.182036837015879, 0.0 ], [ -0.001373291015625, 45.181068855499753, 0.0 ], [ -0.00274658203125, 45.181068855499753, 0.0 ], [ -0.00274658203125, 45.182036837015879, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2943, "task_x": 131070, "task_y": 94144, "task_z": 18, "center_y": 45.1505690114845, "area_in_sqm": 11624.102259039901, "perimeter_in_m": 431.26112372825003, "length_x": 107.994764510873, "length_y": 107.996593521759 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.151053265563384, 0.0 ], [ -0.001373291015625, 45.151053265563384, 0.0 ], [ -0.001373291015625, 45.150084757405622, 0.0 ], [ -0.00274658203125, 45.150084757405622, 0.0 ], [ -0.00274658203125, 45.151053265563384, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2944, "task_x": 131070, "task_y": 94176, "task_z": 18, "center_y": 45.119568324129297, "area_in_sqm": 11636.6627652645, "perimeter_in_m": 431.49406326674801, "length_x": 108.053292855031, "length_y": 108.055121865278 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.120052841530523, 0.0 ], [ -0.001373291015625, 45.120052841530523, 0.0 ], [ -0.001373291015625, 45.119083806728135, 0.0 ], [ -0.00274658203125, 45.119083806728135, 0.0 ], [ -0.00274658203125, 45.120052841530523, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2945, "task_x": 131070, "task_y": 94208, "task_z": 18, "center_y": 45.088550784106303, "area_in_sqm": 11649.2299734354, "perimeter_in_m": 431.727001312749, "length_x": 108.111821145519, "length_y": 108.11365015298399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.089035564831029, 0.0 ], [ -0.001373291015625, 45.089035564831029, 0.0 ], [ -0.001373291015625, 45.088066003381627, 0.0 ], [ -0.00274658203125, 45.088066003381627, 0.0 ], [ -0.00274658203125, 45.089035564831029, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2946, "task_x": 131070, "task_y": 94240, "task_z": 18, "center_y": 45.057516391349203, "area_in_sqm": 11661.8038681746, "perimeter_in_m": 431.95993759473902, "length_x": 108.17034931368001, "length_y": 108.172178316214 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.058001435398275, 0.0 ], [ -0.001373291015625, 45.058001435398275, 0.0 ], [ -0.001373291015625, 45.057031347300111, 0.0 ], [ -0.00274658203125, 45.057031347300111, 0.0 ], [ -0.00274658203125, 45.058001435398275, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2947, "task_x": 131070, "task_y": 94272, "task_z": 18, "center_y": 45.0264651458114, "area_in_sqm": 11674.3844351768, "perimeter_in_m": 432.19287183673202, "length_x": 108.22887729074399, "length_y": 108.23070628619701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 45.026950453185442, 0.0 ], [ -0.001373291015625, 45.026950453185442, 0.0 ], [ -0.001373291015625, 45.025979838437365, 0.0 ], [ -0.00274658203125, 45.025979838437365, 0.0 ], [ -0.00274658203125, 45.026950453185442, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2948, "task_x": 131070, "task_y": 94304, "task_z": 18, "center_y": 44.995397047466199, "area_in_sqm": 11686.9716589451, "perimeter_in_m": 432.42580376748901, "length_x": 108.28740500783, "length_y": 108.289233994048 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.995882618165453, 0.0 ], [ -0.001373291015625, 44.995882618165453, 0.0 ], [ -0.001373291015625, 44.994911476766923, 0.0 ], [ -0.00274658203125, 44.994911476766923, 0.0 ], [ -0.00274658203125, 44.995882618165453, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2949, "task_x": 131070, "task_y": 94336, "task_z": 18, "center_y": 44.9643120963066, "area_in_sqm": 11699.565524935701, "perimeter_in_m": 432.658733107057, "length_x": 108.34593239594901, "length_y": 108.347761370773 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.964797930331009, 0.0 ], [ -0.001373291015625, 44.964797930331009, 0.0 ], [ -0.001373291015625, 44.96382626228214, 0.0 ], [ -0.00274658203125, 44.96382626228214, 0.0 ], [ -0.00274658203125, 44.964797930331009, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2950, "task_x": 131070, "task_y": 94368, "task_z": 18, "center_y": 44.9332102923454, "area_in_sqm": 11712.1660176516, "perimeter_in_m": 432.89165959013098, "length_x": 108.404459385999, "length_y": 108.406288347269 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.933696389694674, 0.0 ], [ -0.001373291015625, 44.933696389694674, 0.0 ], [ -0.001373291015625, 44.932724194996148, 0.0 ], [ -0.00274658203125, 44.932724194996148, 0.0 ], [ -0.00274658203125, 44.933696389694674, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2951, "task_x": 131070, "task_y": 94400, "task_z": 18, "center_y": 44.902091635615399, "area_in_sqm": 11724.773121595401, "perimeter_in_m": 433.1245829243, "length_x": 108.462985908769, "length_y": 108.46481485432 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.902577996288855, 0.0 ], [ -0.001373291015625, 44.902577996288855, 0.0 ], [ -0.001373291015625, 44.901605274942035, 0.0 ], [ -0.00274658203125, 44.901605274942035, 0.0 ], [ -0.00274658203125, 44.902577996288855, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2952, "task_x": 131070, "task_y": 94432, "task_z": 18, "center_y": 44.870956126169297, "area_in_sqm": 11737.386821866001, "perimeter_in_m": 433.35750284381299, "length_x": 108.52151189493701, "length_y": 108.523340822601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.87144275016589, 0.0 ], [ -0.001373291015625, 44.87144275016589, 0.0 ], [ -0.001373291015625, 44.87046950217271, 0.0 ], [ -0.00274658203125, 44.87046950217271, 0.0 ], [ -0.00274658203125, 44.87144275016589, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2953, "task_x": 131070, "task_y": 94464, "task_z": 18, "center_y": 44.839803764079498, "area_in_sqm": 11750.007103681601, "perimeter_in_m": 433.59041907423102, "length_x": 108.58003727507, "length_y": 108.58186618267599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.840290651397986, 0.0 ], [ -0.001373291015625, 44.840290651397986, 0.0 ], [ -0.001373291015625, 44.839316876761025, 0.0 ], [ -0.00274658203125, 44.839316876761025, 0.0 ], [ -0.00274658203125, 44.840290651397986, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2954, "task_x": 131070, "task_y": 94496, "task_z": 18, "center_y": 44.808634549438601, "area_in_sqm": 11762.6339503527, "perimeter_in_m": 433.82333133167702, "length_x": 108.638561979626, "length_y": 108.640390864998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.809121700077363, 0.0 ], [ -0.001373291015625, 44.809121700077363, 0.0 ], [ -0.001373291015625, 44.808147398799839, 0.0 ], [ -0.00274658203125, 44.808147398799839, 0.0 ], [ -0.00274658203125, 44.809121700077363, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2955, "task_x": 131070, "task_y": 94528, "task_z": 18, "center_y": 44.777448482359098, "area_in_sqm": 11775.267347454999, "perimeter_in_m": 434.05623933067699, "length_x": 108.69708593895101, "length_y": 108.69891479991099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.777935896316222, 0.0 ], [ -0.001373291015625, 44.777935896316222, 0.0 ], [ -0.001373291015625, 44.776961068401967, 0.0 ], [ -0.00274658203125, 44.776961068401967, 0.0 ], [ -0.00274658203125, 44.777935896316222, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2956, "task_x": 131070, "task_y": 94560, "task_z": 18, "center_y": 44.746245562973499, "area_in_sqm": 11787.907279372201, "perimeter_in_m": 434.28914281166902, "length_x": 108.755609083282, "length_y": 108.757437917649 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.746733240246783, 0.0 ], [ -0.001373291015625, 44.746733240246783, 0.0 ], [ -0.001373291015625, 44.745757885700236, 0.0 ], [ -0.00274658203125, 44.745757885700236, 0.0 ], [ -0.00274658203125, 44.746733240246783, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2957, "task_x": 131070, "task_y": 94592, "task_z": 18, "center_y": 44.715025791434499, "area_in_sqm": 11800.553730607, "perimeter_in_m": 434.52204148449198, "length_x": 108.814131342745, "length_y": 108.815960148332 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.715513732021336, 0.0 ], [ -0.001373291015625, 44.715513732021336, 0.0 ], [ -0.001373291015625, 44.714537850847584, 0.0 ], [ -0.00274658203125, 44.714537850847584, 0.0 ], [ -0.00274658203125, 44.715513732021336, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2958, "task_x": 131070, "task_y": 94624, "task_z": 18, "center_y": 44.683789167914597, "area_in_sqm": 11813.2066844702, "perimeter_in_m": 434.75493506936198, "length_x": 108.87265264735601, "length_y": 108.87448142197501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.684277371812229, 0.0 ], [ -0.001373291015625, 44.684277371812229, 0.0 ], [ -0.001373291015625, 44.683300964017, 0.0 ], [ -0.00274658203125, 44.683300964017, 0.0 ], [ -0.00274658203125, 44.684277371812229, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2959, "task_x": 131070, "task_y": 94656, "task_z": 18, "center_y": 44.652535692606797, "area_in_sqm": 11825.8661271334, "perimeter_in_m": 434.98782329830698, "length_x": 108.93117292701901, "length_y": 108.933001668478 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.653024159811991, 0.0 ], [ -0.001373291015625, 44.653024159811991, 0.0 ], [ -0.001373291015625, 44.652047225401603, 0.0 ], [ -0.00274658203125, 44.652047225401603, 0.0 ], [ -0.00274658203125, 44.653024159811991, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2960, "task_x": 131070, "task_y": 94688, "task_z": 18, "center_y": 44.621265365724, "area_in_sqm": 11838.5320423841, "perimeter_in_m": 435.22070587132498, "length_x": 108.989692111531, "length_y": 108.991520817634 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.621754096233246, 0.0 ], [ -0.001373291015625, 44.621754096233246, 0.0 ], [ -0.001373291015625, 44.620776635214675, 0.0 ], [ -0.00274658203125, 44.620776635214675, 0.0 ], [ -0.00274658203125, 44.621754096233246, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2961, "task_x": 131070, "task_y": 94720, "task_z": 18, "center_y": 44.589978187499298, "area_in_sqm": 11851.204413294799, "perimeter_in_m": 435.453582524946, "length_x": 109.048210130577, "length_y": 109.050038799124 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.590467181308838, 0.0 ], [ -0.001373291015625, 44.590467181308838, 0.0 ], [ -0.001373291015625, 44.589489193689687, 0.0 ], [ -0.00274658203125, 44.589489193689687, 0.0 ], [ -0.00274658203125, 44.590467181308838, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2962, "task_x": 131070, "task_y": 94752, "task_z": 18, "center_y": 44.558674158186101, "area_in_sqm": 11863.8832249641, "perimeter_in_m": 435.68645296934102, "length_x": 109.10672691373099, "length_y": 109.108555542521 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.559163415291813, 0.0 ], [ -0.001373291015625, 44.559163415291813, 0.0 ], [ -0.001373291015625, 44.558184901080324, 0.0 ], [ -0.00274658203125, 44.558184901080324, 0.0 ], [ -0.00274658203125, 44.559163415291813, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2963, "task_x": 131070, "task_y": 94784, "task_z": 18, "center_y": 44.527353278058001, "area_in_sqm": 11876.568461537399, "perimeter_in_m": 435.91931692717998, "length_x": 109.165242390458, "length_y": 109.167070977284 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.527842798455495, 0.0 ], [ -0.001373291015625, 44.527842798455495, 0.0 ], [ -0.001373291015625, 44.526863757660522, 0.0 ], [ -0.00274658203125, 44.526863757660522, 0.0 ], [ -0.00274658203125, 44.527842798455495, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2964, "task_x": 131070, "task_y": 94816, "task_z": 18, "center_y": 44.496015547409002, "area_in_sqm": 11889.260106682799, "perimeter_in_m": 436.15217411526697, "length_x": 109.223756490112, "length_y": 109.22558503276601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.496505331093459, 0.0 ], [ -0.001373291015625, 44.496505331093459, 0.0 ], [ -0.001373291015625, 44.495525763724508, 0.0 ], [ -0.00274658203125, 44.495525763724508, 0.0 ], [ -0.00274658203125, 44.496505331093459, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2965, "task_x": 131070, "task_y": 94848, "task_z": 18, "center_y": 44.464660966553197, "area_in_sqm": 11901.9581454992, "perimeter_in_m": 436.38502425160198, "length_x": 109.282269141939, "length_y": 109.284097638207 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.465151013519623, 0.0 ], [ -0.001373291015625, 44.465151013519623, 0.0 ], [ -0.001373291015625, 44.46417091958682, 0.0 ], [ -0.00274658203125, 44.46417091958682, 0.0 ], [ -0.00274658203125, 44.465151013519623, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2966, "task_x": 131070, "task_y": 94880, "task_z": 18, "center_y": 44.433289535825303, "area_in_sqm": 11914.662560463001, "perimeter_in_m": 436.61786705467102, "length_x": 109.340780275073, "length_y": 109.34260872273801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.433779846068219, 0.0 ], [ -0.001373291015625, 44.433779846068219, 0.0 ], [ -0.001373291015625, 44.432799225582372, 0.0 ], [ -0.00274658203125, 44.432799225582372, 0.0 ], [ -0.00274658203125, 44.433779846068219, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2967, "task_x": 131070, "task_y": 94912, "task_z": 18, "center_y": 44.401901255580199, "area_in_sqm": 11927.3733361959, "perimeter_in_m": 436.850702239219, "length_x": 109.39928981853799, "length_y": 109.401118215382 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.402391829093901, 0.0 ], [ -0.001373291015625, 44.402391829093901, 0.0 ], [ -0.001373291015625, 44.401410682066398, 0.0 ], [ -0.00274658203125, 44.401410682066398, 0.0 ], [ -0.00274658203125, 44.402391829093901, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2968, "task_x": 131070, "task_y": 94944, "task_z": 18, "center_y": 44.370496126193203, "area_in_sqm": 11940.0904567242, "perimeter_in_m": 437.08352952471199, "length_x": 109.45779770125, "length_y": 109.459626045048 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.370986962971713, 0.0 ], [ -0.001373291015625, 44.370986962971713, 0.0 ], [ -0.001373291015625, 44.3700052894146, 0.0 ], [ -0.00274658203125, 44.3700052894146, 0.0 ], [ -0.00274658203125, 44.370986962971713, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2969, "task_x": 131070, "task_y": 94976, "task_z": 18, "center_y": 44.339074148060099, "area_in_sqm": 11952.8139055967, "perimeter_in_m": 437.31634862688099, "length_x": 109.516303852012, "length_y": 109.518132140538 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.339565248097124, 0.0 ], [ -0.001373291015625, 44.339565248097124, 0.0 ], [ -0.001373291015625, 44.338583048023096, 0.0 ], [ -0.00274658203125, 44.338583048023096, 0.0 ], [ -0.00274658203125, 44.339565248097124, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2970, "task_x": 131070, "task_y": 95008, "task_z": 18, "center_y": 44.307635321597303, "area_in_sqm": 11965.543666482001, "perimeter_in_m": 437.54915926122499, "length_x": 109.574808199519, "length_y": 109.576636430544 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.308126684886119, 0.0 ], [ -0.001373291015625, 44.308126684886119, 0.0 ], [ -0.001373291015625, 44.307143958308501, 0.0 ], [ -0.00274658203125, 44.307143958308501, 0.0 ], [ -0.00274658203125, 44.308126684886119, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2971, "task_x": 131070, "task_y": 95040, "task_z": 18, "center_y": 44.276179647241598, "area_in_sqm": 11978.279722809801, "perimeter_in_m": 437.78196113454902, "length_x": 109.633310672357, "length_y": 109.635138843646 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.276671273775165, 0.0 ], [ -0.001373291015625, 44.276671273775165, 0.0 ], [ -0.001373291015625, 44.275688020707946, 0.0 ], [ -0.00274658203125, 44.275688020707946, 0.0 ], [ -0.00274658203125, 44.276671273775165, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2972, "task_x": 131070, "task_y": 95072, "task_z": 18, "center_y": 44.244707125450198, "area_in_sqm": 11991.0220594406, "perimeter_in_m": 438.01475397818899, "length_x": 109.69181119900099, "length_y": 109.693639308317 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.245199015221282, 0.0 ], [ -0.001373291015625, 44.245199015221282, 0.0 ], [ -0.001373291015625, 44.244215235679043, 0.0 ], [ -0.00274658203125, 44.244215235679043, 0.0 ], [ -0.00274658203125, 44.245199015221282, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2973, "task_x": 131070, "task_y": 95104, "task_z": 18, "center_y": 44.213217756700999, "area_in_sqm": 12003.7706583738, "perimeter_in_m": 438.24753749428402, "length_x": 109.75030970781501, "length_y": 109.752137752919 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.21370990970204, 0.0 ], [ -0.001373291015625, 44.21370990970204, 0.0 ], [ -0.001373291015625, 44.212725603700058, 0.0 ], [ -0.00274658203125, 44.212725603700058, 0.0 ], [ -0.00274658203125, 44.21370990970204, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2974, "task_x": 131070, "task_y": 95136, "task_z": 18, "center_y": 44.181711541492703, "area_in_sqm": 12016.525503754599, "perimeter_in_m": 438.48031140030002, "length_x": 109.808806127056, "length_y": 109.810634105704 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.18220395771565, 0.0 ], [ -0.001373291015625, 44.18220395771565, 0.0 ], [ -0.001373291015625, 44.181219125269813, 0.0 ], [ -0.00274658203125, 44.181219125269813, 0.0 ], [ -0.00274658203125, 44.18220395771565, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2975, "task_x": 131070, "task_y": 95168, "task_z": 18, "center_y": 44.150188480344397, "area_in_sqm": 12029.2865791321, "perimeter_in_m": 438.71307540783602, "length_x": 109.86730038487001, "length_y": 109.869128294814 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.150681159780923, 0.0 ], [ -0.001373291015625, 44.150681159780923, 0.0 ], [ -0.001373291015625, 44.149695800907786, 0.0 ], [ -0.00274658203125, 44.149695800907786, 0.0 ], [ -0.00274658203125, 44.150681159780923, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2976, "task_x": 131070, "task_y": 95200, "task_z": 18, "center_y": 44.118648573795703, "area_in_sqm": 12042.0538681746, "perimeter_in_m": 438.945829233231, "length_x": 109.925792409292, "length_y": 109.927620248282 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.119141516437367, 0.0 ], [ -0.001373291015625, 44.119141516437367, 0.0 ], [ -0.001373291015625, 44.118155631154117, 0.0 ], [ -0.00274658203125, 44.118155631154117, 0.0 ], [ -0.00274658203125, 44.119141516437367, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2977, "task_x": 131070, "task_y": 95232, "task_z": 18, "center_y": 44.087091822407402, "area_in_sqm": 12054.8273534775, "perimeter_in_m": 439.17857258552999, "length_x": 109.98428212825, "length_y": 109.986109894032 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.087585028245165, 0.0 ], [ -0.001373291015625, 44.087585028245165, 0.0 ], [ -0.001373291015625, 44.08659861656966, 0.0 ], [ -0.00274658203125, 44.08659861656966, 0.0 ], [ -0.00274658203125, 44.087585028245165, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2978, "task_x": 131070, "task_y": 95264, "task_z": 18, "center_y": 44.055518226760597, "area_in_sqm": 12067.607018590001, "perimeter_in_m": 439.41130517851701, "length_x": 110.04276946956099, "length_y": 110.044597159877 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.056011695785259, 0.0 ], [ -0.001373291015625, 44.056011695785259, 0.0 ], [ -0.001373291015625, 44.055024757735971, 0.0 ], [ -0.00274658203125, 44.055024757735971, 0.0 ], [ -0.00274658203125, 44.056011695785259, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2979, "task_x": 131070, "task_y": 95296, "task_z": 18, "center_y": 44.023927787457403, "area_in_sqm": 12080.392847299599, "perimeter_in_m": 439.644026725044, "length_x": 110.101254360933, "length_y": 110.10308197352199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 44.024421519659342, 0.0 ], [ -0.001373291015625, 44.024421519659342, 0.0 ], [ -0.001373291015625, 44.023434055255414, 0.0 ], [ -0.00274658203125, 44.023434055255414, 0.0 ], [ -0.00274658203125, 44.024421519659342, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2980, "task_x": 131070, "task_y": 95328, "task_z": 18, "center_y": 43.992320505120503, "area_in_sqm": 12093.184821605701, "perimeter_in_m": 439.87673693353503, "length_x": 110.159736729963, "length_y": 110.161564262561 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.992814500489885, 0.0 ], [ -0.001373291015625, 43.992814500489885, 0.0 ], [ -0.001373291015625, 43.991826509751114, 0.0 ], [ -0.00274658203125, 43.991826509751114, 0.0 ], [ -0.00274658203125, 43.992814500489885, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2981, "task_x": 131070, "task_y": 95360, "task_z": 18, "center_y": 43.960696380393699, "area_in_sqm": 12105.9829262495, "perimeter_in_m": 440.10943551994302, "length_x": 110.218216504141, "length_y": 110.22004395448 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.961190638920243, 0.0 ], [ -0.001373291015625, 43.961190638920243, 0.0 ], [ -0.001373291015625, 43.960202121867063, 0.0 ], [ -0.00274658203125, 43.960202121867063, 0.0 ], [ -0.00274658203125, 43.961190638920243, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2982, "task_x": 131070, "task_y": 95392, "task_z": 18, "center_y": 43.929055413941299, "area_in_sqm": 12118.787142992, "perimeter_in_m": 440.34212219435898, "length_x": 110.276693610846, "length_y": 110.278520976655 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.929549935614581, 0.0 ], [ -0.001373291015625, 43.929549935614581, 0.0 ], [ -0.001373291015625, 43.928560892268074, 0.0 ], [ -0.00274658203125, 43.928560892268074, 0.0 ], [ -0.00274658203125, 43.929549935614581, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2983, "task_x": 131070, "task_y": 95424, "task_z": 18, "center_y": 43.897397606448898, "area_in_sqm": 12131.597455024699, "perimeter_in_m": 440.574796661726, "length_x": 110.33516797734799, "length_y": 110.33699525635301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.897892391257962, 0.0 ], [ -0.001373291015625, 43.897892391257962, 0.0 ], [ -0.001373291015625, 43.896902821639877, 0.0 ], [ -0.00274658203125, 43.896902821639877, 0.0 ], [ -0.00274658203125, 43.897892391257962, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2984, "task_x": 131070, "task_y": 95456, "task_z": 18, "center_y": 43.865722958622797, "area_in_sqm": 12144.4138455391, "perimeter_in_m": 440.80745863806902, "length_x": 110.393639530808, "length_y": 110.39546672073099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.866218006556387, 0.0 ], [ -0.001373291015625, 43.866218006556387, 0.0 ], [ -0.001373291015625, 43.865227910689129, 0.0 ], [ -0.00274658203125, 43.865227910689129, 0.0 ], [ -0.00274658203125, 43.866218006556387, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2985, "task_x": 131070, "task_y": 95488, "task_z": 18, "center_y": 43.834031471190102, "area_in_sqm": 12157.2362974882, "perimeter_in_m": 441.040107822236, "length_x": 110.452108198278, "length_y": 110.453935296837 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.834526782236821, 0.0 ], [ -0.001373291015625, 43.834526782236821, 0.0 ], [ -0.001373291015625, 43.833536160143446, 0.0 ], [ -0.00274658203125, 43.833536160143446, 0.0 ], [ -0.00274658203125, 43.834526782236821, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2986, "task_x": 131070, "task_y": 95520, "task_z": 18, "center_y": 43.802323144899297, "area_in_sqm": 12170.0647934675, "perimeter_in_m": 441.27274393265299, "length_x": 110.5105739067, "length_y": 110.51240091161 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.802818719047202, 0.0 ], [ -0.001373291015625, 43.802818719047202, 0.0 ], [ -0.001373291015625, 43.801827570751414, 0.0 ], [ -0.00274658203125, 43.801827570751414, 0.0 ], [ -0.00274658203125, 43.802818719047202, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2987, "task_x": 131070, "task_y": 95552, "task_z": 18, "center_y": 43.770597980519597, "area_in_sqm": 12182.899316430099, "perimeter_in_m": 441.50536668117599, "length_x": 110.569036582907, "length_y": 110.570863491881 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.771093817756494, 0.0 ], [ -0.001373291015625, 43.771093817756494, 0.0 ], [ -0.001373291015625, 43.770102143282664, 0.0 ], [ -0.00274658203125, 43.770102143282664, 0.0 ], [ -0.00274658203125, 43.771093817756494, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2988, "task_x": 131070, "task_y": 95584, "task_z": 18, "center_y": 43.7388559788413, "area_in_sqm": 12195.7398489714, "perimeter_in_m": 441.73797576600799, "length_x": 110.627496153625, "length_y": 110.62932296437 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.739352079154699, 0.0 ], [ -0.001373291015625, 43.739352079154699, 0.0 ], [ -0.001373291015625, 43.738359878527859, 0.0 ], [ -0.00274658203125, 43.738359878527859, 0.0 ], [ -0.00274658203125, 43.739352079154699, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2989, "task_x": 131070, "task_y": 95616, "task_z": 18, "center_y": 43.707097140675899, "area_in_sqm": 12208.586373567599, "perimeter_in_m": 441.97057089291701, "length_x": 110.685952545467, "length_y": 110.68777925568899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.707593504052944, 0.0 ], [ -0.001373291015625, 43.707593504052944, 0.0 ], [ -0.001373291015625, 43.706600777298775, 0.0 ], [ -0.00274658203125, 43.706600777298775, 0.0 ], [ -0.00274658203125, 43.707593504052944, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2990, "task_x": 131070, "task_y": 95648, "task_z": 18, "center_y": 43.675321466855799, "area_in_sqm": 12221.438873052601, "perimeter_in_m": 442.20315177877399, "length_x": 110.744405684941, "length_y": 110.74623229234101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.675818093283411, 0.0 ], [ -0.001373291015625, 43.675818093283411, 0.0 ], [ -0.001373291015625, 43.674824840428265, 0.0 ], [ -0.00274658203125, 43.674824840428265, 0.0 ], [ -0.00274658203125, 43.675818093283411, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2991, "task_x": 131070, "task_y": 95680, "task_z": 18, "center_y": 43.643528958234903, "area_in_sqm": 12234.297329664199, "perimeter_in_m": 442.435718119721, "length_x": 110.802855498444, "length_y": 110.80468200072001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.644025847699488, 0.0 ], [ -0.001373291015625, 43.644025847699488, 0.0 ], [ -0.001373291015625, 43.643032068770381, 0.0 ], [ -0.00274658203125, 43.643032068770381, 0.0 ], [ -0.00274658203125, 43.644025847699488, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2992, "task_x": 131070, "task_y": 95712, "task_z": 18, "center_y": 43.611719615688003, "area_in_sqm": 12247.161726594, "perimeter_in_m": 442.668269635032, "length_x": 110.861301912264, "length_y": 110.863128307111 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.612216768175713, 0.0 ], [ -0.001373291015625, 43.612216768175713, 0.0 ], [ -0.001373291015625, 43.611222463200306, 0.0 ], [ -0.00274658203125, 43.611222463200306, 0.0 ], [ -0.00274658203125, 43.612216768175713, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2993, "task_x": 131070, "task_y": 95744, "task_z": 18, "center_y": 43.579893440111199, "area_in_sqm": 12260.0320454836, "perimeter_in_m": 442.90080602325401, "length_x": 110.919744852582, "length_y": 110.921571137691 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.580390855607838, 0.0 ], [ -0.001373291015625, 43.580390855607838, 0.0 ], [ -0.001373291015625, 43.579396024614468, 0.0 ], [ -0.00274658203125, 43.579396024614468, 0.0 ], [ -0.00274658203125, 43.580390855607838, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2994, "task_x": 131070, "task_y": 95776, "task_z": 18, "center_y": 43.548050432421697, "area_in_sqm": 12272.908268928501, "perimeter_in_m": 443.13332698626402, "length_x": 110.97818424546701, "length_y": 110.98001041852601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.548548110912861, 0.0 ], [ -0.001373291015625, 43.548548110912861, 0.0 ], [ -0.001373291015625, 43.547552753930525, 0.0 ], [ -0.00274658203125, 43.547552753930525, 0.0 ], [ -0.00274658203125, 43.548548110912861, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2995, "task_x": 131070, "task_y": 95808, "task_z": 18, "center_y": 43.516190593558299, "area_in_sqm": 12285.790379405, "perimeter_in_m": 443.365832234197, "length_x": 111.03662001688301, "length_y": 111.038446075577 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.516688535029076, 0.0 ], [ -0.001373291015625, 43.516688535029076, 0.0 ], [ -0.001373291015625, 43.515692652087438, 0.0 ], [ -0.00274658203125, 43.515692652087438, 0.0 ], [ -0.00274658203125, 43.516688535029076, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2996, "task_x": 131070, "task_y": 95840, "task_z": 18, "center_y": 43.484313924480702, "area_in_sqm": 12298.678358793301, "perimeter_in_m": 443.59832146638797, "length_x": 111.09505209268301, "length_y": 111.09687803469301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.484812128916019, 0.0 ], [ -0.001373291015625, 43.484812128916019, 0.0 ], [ -0.001373291015625, 43.483815720045421, 0.0 ], [ -0.00274658203125, 43.483815720045421, 0.0 ], [ -0.00274658203125, 43.484812128916019, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2997, "task_x": 131070, "task_y": 95872, "task_z": 18, "center_y": 43.452420426170399, "area_in_sqm": 12311.572189807899, "perimeter_in_m": 443.83079439608701, "length_x": 111.153480398612, "length_y": 111.155306221616 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.452918893554653, 0.0 ], [ -0.001373291015625, 43.452918893554653, 0.0 ], [ -0.001373291015625, 43.45192195878608, 0.0 ], [ -0.00274658203125, 43.45192195878608, 0.0 ], [ -0.00274658203125, 43.452918893554653, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2998, "task_x": 131070, "task_y": 95904, "task_z": 18, "center_y": 43.420510099629801, "area_in_sqm": 12324.4718544483, "perimeter_in_m": 444.06325072572002, "length_x": 111.211904860307, "length_y": 111.21373056197901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.421008829947247, 0.0 ], [ -0.001373291015625, 43.421008829947247, 0.0 ], [ -0.001373291015625, 43.420011369312363, 0.0 ], [ -0.00274658203125, 43.420011369312363, 0.0 ], [ -0.00274658203125, 43.421008829947247, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 2999, "task_x": 131070, "task_y": 95936, "task_z": 18, "center_y": 43.388582945883101, "area_in_sqm": 12337.377334356301, "perimeter_in_m": 444.29569014832998, "length_x": 111.270325403296, "length_y": 111.272150981308 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.389081939117503, 0.0 ], [ -0.001373291015625, 43.389081939117503, 0.0 ], [ -0.001373291015625, 43.388083952648643, 0.0 ], [ -0.00274658203125, 43.388083952648643, 0.0 ], [ -0.00274658203125, 43.389081939117503, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3000, "task_x": 131070, "task_y": 95968, "task_z": 18, "center_y": 43.356638965975598, "area_in_sqm": 12350.2886116505, "perimeter_in_m": 444.528112368753, "length_x": 111.328741952998, "length_y": 111.33056740501701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.357138222110535, 0.0 ], [ -0.001373291015625, 43.357138222110535, 0.0 ], [ -0.001373291015625, 43.356139709840726, 0.0 ], [ -0.00274658203125, 43.356139709840726, 0.0 ], [ -0.00274658203125, 43.357138222110535, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3001, "task_x": 131070, "task_y": 96000, "task_z": 18, "center_y": 43.3246781609744, "area_in_sqm": 12363.205669164699, "perimeter_in_m": 444.76051710291398, "length_x": 111.387154434726, "length_y": 111.388979758416 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.325177679992954, 0.0 ], [ -0.001373291015625, 43.325177679992954, 0.0 ], [ -0.001373291015625, 43.324178641955847, 0.0 ], [ -0.00274658203125, 43.324178641955847, 0.0 ], [ -0.00274658203125, 43.325177679992954, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3002, "task_x": 131070, "task_y": 96032, "task_z": 18, "center_y": 43.292700531967803, "area_in_sqm": 12376.1284874678, "perimeter_in_m": 444.99290403756299, "length_x": 111.445562773682, "length_y": 111.447387966704 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.293200313852822, 0.0 ], [ -0.001373291015625, 43.293200313852822, 0.0 ], [ -0.001373291015625, 43.292200750082777, 0.0 ], [ -0.00274658203125, 43.292200750082777, 0.0 ], [ -0.00274658203125, 43.293200313852822, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3003, "task_x": 131070, "task_y": 96064, "task_z": 18, "center_y": 43.260706080065802, "area_in_sqm": 12389.057049036001, "perimeter_in_m": 445.22527287690298, "length_x": 111.503966894961, "length_y": 111.505791954972 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.261206124799777, 0.0 ], [ -0.001373291015625, 43.261206124799777, 0.0 ], [ -0.001373291015625, 43.260206035331834, 0.0 ], [ -0.00274658203125, 43.260206035331834, 0.0 ], [ -0.00274658203125, 43.261206124799777, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3004, "task_x": 131070, "task_y": 96096, "task_z": 18, "center_y": 43.228694806399901, "area_in_sqm": 12401.9913361073, "perimeter_in_m": 445.45762332844401, "length_x": 111.56236672355, "length_y": 111.564191648205 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.229195113965005, 0.0 ], [ -0.001373291015625, 43.229195113965005, 0.0 ], [ -0.001373291015625, 43.228194498834839, 0.0 ], [ -0.00274658203125, 43.228194498834839, 0.0 ], [ -0.00274658203125, 43.229195113965005, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3005, "task_x": 131070, "task_y": 96128, "task_z": 18, "center_y": 43.196666712123303, "area_in_sqm": 12414.9313297272, "perimeter_in_m": 445.68995509385599, "length_x": 111.62076218432701, "length_y": 111.62258697127599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.197167282501269, 0.0 ], [ -0.001373291015625, 43.197167282501269, 0.0 ], [ -0.001373291015625, 43.196166141745252, 0.0 ], [ -0.00274658203125, 43.196166141745252, 0.0 ], [ -0.00274658203125, 43.197167282501269, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3006, "task_x": 131070, "task_y": 96160, "task_z": 18, "center_y": 43.1646217984106, "area_in_sqm": 12427.877011776, "perimeter_in_m": 445.92226786820999, "length_x": 111.679153202064, "length_y": 111.680977848955 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.16512263158296, 0.0 ], [ -0.001373291015625, 43.16512263158296, 0.0 ], [ -0.001373291015625, 43.164120965238148, 0.0 ], [ -0.00274658203125, 43.164120965238148, 0.0 ], [ -0.00274658203125, 43.16512263158296, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3007, "task_x": 131070, "task_y": 96192, "task_z": 18, "center_y": 43.132560066458197, "area_in_sqm": 12440.8283638954, "perimeter_in_m": 446.15456134850098, "length_x": 111.737539701423, "length_y": 111.73936420589899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.133061162406143, 0.0 ], [ -0.001373291015625, 43.133061162406143, 0.0 ], [ -0.001373291015625, 43.132058970510258, 0.0 ], [ -0.00274658203125, 43.132058970510258, 0.0 ], [ -0.00274658203125, 43.133061162406143, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3008, "task_x": 131070, "task_y": 96224, "task_z": 18, "center_y": 43.100481517484297, "area_in_sqm": 12453.785367250401, "perimeter_in_m": 446.38683523858498, "length_x": 111.795921606958, "length_y": 111.797745966661 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.100982876188532, 0.0 ], [ -0.001373291015625, 43.100982876188532, 0.0 ], [ -0.001373291015625, 43.099980158779992, 0.0 ], [ -0.00274658203125, 43.099980158779992, 0.0 ], [ -0.00274658203125, 43.100982876188532, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3009, "task_x": 131070, "task_y": 96256, "task_z": 18, "center_y": 43.0683861527286, "area_in_sqm": 12466.7480043173, "perimeter_in_m": 446.61908924067598, "length_x": 111.854298843118, "length_y": 111.856123055683 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.068887774169625, 0.0 ], [ -0.001373291015625, 43.068887774169625, 0.0 ], [ -0.001373291015625, 43.067884531287483, 0.0 ], [ -0.00274658203125, 43.067884531287483, 0.0 ], [ -0.00274658203125, 43.068887774169625, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3010, "task_x": 131070, "task_y": 96288, "task_z": 18, "center_y": 43.036273973452602, "area_in_sqm": 12479.7162556648, "perimeter_in_m": 446.85132304476798, "length_x": 111.91267133424, "length_y": 111.914495397303 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.036775857610579, 0.0 ], [ -0.001373291015625, 43.036775857610579, 0.0 ], [ -0.001373291015625, 43.035772089294632, 0.0 ], [ -0.00274658203125, 43.035772089294632, 0.0 ], [ -0.00274658203125, 43.036775857610579, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3011, "task_x": 131070, "task_y": 96320, "task_z": 18, "center_y": 43.004144980939799, "area_in_sqm": 12492.690102815601, "perimeter_in_m": 447.08353635973702, "length_x": 111.971039004557, "length_y": 111.972862915748 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 43.004647127794428, 0.0 ], [ -0.001373291015625, 43.004647127794428, 0.0 ], [ -0.001373291015625, 43.003642834085106, 0.0 ], [ -0.00274658203125, 43.003642834085106, 0.0 ], [ -0.00274658203125, 43.004647127794428, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3012, "task_x": 131070, "task_y": 96352, "task_z": 18, "center_y": 42.971999176495203, "area_in_sqm": 12505.6695268154, "perimeter_in_m": 447.315728871619, "length_x": 112.029401778192, "length_y": 112.03122553513801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 42.972501586025956, 0.0 ], [ -0.001373291015625, 42.972501586025956, 0.0 ], [ -0.001373291015625, 42.971496766964385, 0.0 ], [ -0.00274658203125, 42.971496766964385, 0.0 ], [ -0.00274658203125, 42.972501586025956, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3013, "task_x": 131070, "task_y": 96384, "task_z": 18, "center_y": 42.939836561445802, "area_in_sqm": 12518.6545095444, "perimeter_in_m": 447.54790028604401, "length_x": 112.08775957916301, "length_y": 112.08958317948699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 42.940339233631818, 0.0 ], [ -0.001373291015625, 42.940339233631818, 0.0 ], [ -0.001373291015625, 42.939333889259814, 0.0 ], [ -0.00274658203125, 42.939333889259814, 0.0 ], [ -0.00274658203125, 42.940339233631818, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3014, "task_x": 131070, "task_y": 96416, "task_z": 18, "center_y": 42.907657137140603, "area_in_sqm": 12531.6450318098, "perimeter_in_m": 447.78005029992102, "length_x": 112.146112331377, "length_y": 112.147935772701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 42.908160071960538, 0.0 ], [ -0.001373291015625, 42.908160071960538, 0.0 ], [ -0.001373291015625, 42.907154202320591, 0.0 ], [ -0.00274658203125, 42.907154202320591, 0.0 ], [ -0.00274658203125, 42.908160071960538, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3015, "task_x": 131070, "task_y": 96448, "task_z": 18, "center_y": 42.875460904950202, "area_in_sqm": 12544.641075253499, "perimeter_in_m": 448.01217860502697, "length_x": 112.204459958637, "length_y": 112.206283238577 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 42.87596410238254, 0.0 ], [ -0.001373291015625, 42.87596410238254, 0.0 ], [ -0.001373291015625, 42.874957707517829, 0.0 ], [ -0.00274658203125, 42.874957707517829, 0.0 ], [ -0.00274658203125, 42.87596410238254, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3016, "task_x": 131070, "task_y": 96480, "task_z": 18, "center_y": 42.843247866267397, "area_in_sqm": 12557.6426205635, "perimeter_in_m": 448.244284903535, "length_x": 112.262802384636, "length_y": 112.26462550080601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 42.84375132629021, 0.0 ], [ -0.001373291015625, 42.84375132629021, 0.0 ], [ -0.001373291015625, 42.842744406244599, 0.0 ], [ -0.00274658203125, 42.842744406244599, 0.0 ], [ -0.00274658203125, 42.84375132629021, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3017, "task_x": 131070, "task_y": 96512, "task_z": 18, "center_y": 42.8110180225069, "area_in_sqm": 12570.649648428, "perimeter_in_m": 448.47636888536698, "length_x": 112.32113953296199, "length_y": 112.322962482972 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 42.811521745097878, 0.0 ], [ -0.001373291015625, 42.811521745097878, 0.0 ], [ -0.001373291015625, 42.81051429991593, 0.0 ], [ -0.00274658203125, 42.81051429991593, 0.0 ], [ -0.00274658203125, 42.811521745097878, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3018, "task_x": 131070, "task_y": 96544, "task_z": 18, "center_y": 42.7787713751054, "area_in_sqm": 12583.662140488599, "perimeter_in_m": 448.708430245903, "length_x": 112.379471327094, "length_y": 112.381294108551 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 42.779275360241904, 0.0 ], [ -0.001373291015625, 42.779275360241904, 0.0 ], [ -0.001373291015625, 42.778267389968853, 0.0 ], [ -0.00274658203125, 42.778267389968853, 0.0 ], [ -0.00274658203125, 42.779275360241904, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3019, "task_x": 131070, "task_y": 96576, "task_z": 18, "center_y": 42.746507925521499, "area_in_sqm": 12596.680077552801, "perimeter_in_m": 448.94046868668499, "length_x": 112.43779769040501, "length_y": 112.43962030091301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 42.747012173180657, 0.0 ], [ -0.001373291015625, 42.747012173180657, 0.0 ], [ -0.001373291015625, 42.746003677862419, 0.0 ], [ -0.00274658203125, 42.746003677862419, 0.0 ], [ -0.00274658203125, 42.747012173180657, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3020, "task_x": 131070, "task_y": 96608, "task_z": 18, "center_y": 42.714227675236202, "area_in_sqm": 12609.7034389973, "perimeter_in_m": 449.17248388994398, "length_x": 112.496118546161, "length_y": 112.49794098332001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 42.714732185394574, 0.0 ], [ -0.001373291015625, 42.714732185394574, 0.0 ], [ -0.001373291015625, 42.713723165077795, 0.0 ], [ -0.00274658203125, 42.713723165077795, 0.0 ], [ -0.00274658203125, 42.714732185394574, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3021, "task_x": 131070, "task_y": 96640, "task_z": 18, "center_y": 42.681930625752202, "area_in_sqm": 12622.7322077751, "perimeter_in_m": 449.40447556103402, "length_x": 112.554433817519, "length_y": 112.55625607892701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 42.682435398386211, 0.0 ], [ -0.001373291015625, 42.682435398386211, 0.0 ], [ -0.001373291015625, 42.681425853118185, 0.0 ], [ -0.00274658203125, 42.681425853118185, 0.0 ], [ -0.00274658203125, 42.682435398386211, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3022, "task_x": 131070, "task_y": 96672, "task_z": 18, "center_y": 42.649616778594599, "area_in_sqm": 12635.76636374, "perimeter_in_m": 449.63644339378499, "length_x": 112.612743427533, "length_y": 112.614565510782 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 42.650121813680229, 0.0 ], [ -0.001373291015625, 42.650121813680229, 0.0 ], [ -0.001373291015625, 42.649111743508954, 0.0 ], [ -0.00274658203125, 42.649111743508954, 0.0 ], [ -0.00274658203125, 42.650121813680229, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3023, "task_x": 131070, "task_y": 96704, "task_z": 18, "center_y": 42.617286135310501, "area_in_sqm": 12648.8058875799, "perimeter_in_m": 449.86838707193198, "length_x": 112.671047299146, "length_y": 112.67286920182799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 42.617791432823452, 0.0 ], [ -0.001373291015625, 42.617791432823452, 0.0 ], [ -0.001373291015625, 42.616780837797627, 0.0 ], [ -0.00274658203125, 42.616780837797627, 0.0 ], [ -0.00274658203125, 42.617791432823452, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3024, "task_x": 131070, "task_y": 96736, "task_z": 18, "center_y": 42.584938697469397, "area_in_sqm": 12661.8507595062, "perimeter_in_m": 450.10030629313798, "length_x": 112.729345355197, "length_y": 112.731167074898 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 42.585444257384893, 0.0 ], [ -0.001373291015625, 42.585444257384893, 0.0 ], [ -0.001373291015625, 42.584433137553916, 0.0 ], [ -0.00274658203125, 42.584433137553916, 0.0 ], [ -0.00274658203125, 42.585444257384893, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3025, "task_x": 131070, "task_y": 96768, "task_z": 18, "center_y": 42.552574466662797, "area_in_sqm": 12674.900960922199, "perimeter_in_m": 450.33220075907798, "length_x": 112.78763751841799, "length_y": 112.78945905272199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 42.553080288955812, 0.0 ], [ -0.001373291015625, 42.553080288955812, 0.0 ], [ -0.001373291015625, 42.552068644369754, 0.0 ], [ -0.00274658203125, 42.552068644369754, 0.0 ], [ -0.00274658203125, 42.553080288955812, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3026, "task_x": 131070, "task_y": 96800, "task_z": 18, "center_y": 42.5201934445045, "area_in_sqm": 12687.9564714432, "perimeter_in_m": 450.564070142974, "length_x": 112.845923711433, "length_y": 112.84774505791999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 42.52069952914966, 0.0 ], [ -0.001373291015625, 42.52069952914966, 0.0 ], [ -0.001373291015625, 42.519687359859326, 0.0 ], [ -0.00274658203125, 42.519687359859326, 0.0 ], [ -0.00274658203125, 42.52069952914966, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3027, "task_x": 131070, "task_y": 96832, "task_z": 18, "center_y": 42.4877956326307, "area_in_sqm": 12701.0172716379, "perimeter_in_m": 450.79591414892201, "length_x": 112.904203856762, "length_y": 112.906025013009 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 42.488301979602255, 0.0 ], [ -0.001373291015625, 42.488301979602255, 0.0 ], [ -0.001373291015625, 42.487289285659102, 0.0 ], [ -0.00274658203125, 42.487289285659102, 0.0 ], [ -0.00274658203125, 42.488301979602255, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3028, "task_x": 131070, "task_y": 96864, "task_z": 18, "center_y": 42.455381032699798, "area_in_sqm": 12714.083342075301, "perimeter_in_m": 451.027732464552, "length_x": 112.962477876816, "length_y": 112.96429884039701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 42.455887641971657, 0.0 ], [ -0.001373291015625, 42.455887641971657, 0.0 ], [ -0.001373291015625, 42.454874423427867, 0.0 ], [ -0.00274658203125, 42.454874423427867, 0.0 ], [ -0.00274658203125, 42.455887641971657, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3029, "task_x": 131070, "task_y": 96896, "task_z": 18, "center_y": 42.422949646392503, "area_in_sqm": 12727.1546634436, "perimeter_in_m": 451.25952478435801, "length_x": 113.0207456939, "length_y": 113.022566462386 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 42.42345651793832, 0.0 ], [ -0.001373291015625, 42.42345651793832, 0.0 ], [ -0.001373291015625, 42.422442774846758, 0.0 ], [ -0.00274658203125, 42.422442774846758, 0.0 ], [ -0.00274658203125, 42.42345651793832, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3030, "task_x": 131070, "task_y": 96928, "task_z": 18, "center_y": 42.390501475412201, "area_in_sqm": 12740.231215834599, "perimeter_in_m": 451.491290790618, "length_x": 113.07900723021601, "length_y": 113.08082780117201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 42.391008609205045, 0.0 ], [ -0.001373291015625, 42.391008609205045, 0.0 ], [ -0.001373291015625, 42.3899943416193, 0.0 ], [ -0.00274658203125, 42.3899943416193, 0.0 ], [ -0.00274658203125, 42.391008609205045, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3031, "task_x": 131070, "task_y": 96960, "task_z": 18, "center_y": 42.358036521484202, "area_in_sqm": 12753.3129789829, "perimeter_in_m": 451.72303018305701, "length_x": 113.137262407855, "length_y": 113.139082778846 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 42.358543917497052, 0.0 ], [ -0.001373291015625, 42.358543917497052, 0.0 ], [ -0.001373291015625, 42.357529125471395, 0.0 ], [ -0.00274658203125, 42.357529125471395, 0.0 ], [ -0.00274658203125, 42.358543917497052, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3032, "task_x": 131070, "task_y": 96992, "task_z": 18, "center_y": 42.325554786356697, "area_in_sqm": 12766.3999334574, "perimeter_in_m": 451.95474263859302, "length_x": 113.195511148805, "length_y": 113.197331317392 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 42.326062444562019, 0.0 ], [ -0.001373291015625, 42.326062444562019, 0.0 ], [ -0.001373291015625, 42.325047128151418, 0.0 ], [ -0.00274658203125, 42.325047128151418, 0.0 ], [ -0.00274658203125, 42.326062444562019, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3033, "task_x": 131070, "task_y": 97024, "task_z": 18, "center_y": 42.293056271800197, "area_in_sqm": 12779.492058754, "perimeter_in_m": 452.18642785652901, "length_x": 113.253753374948, "length_y": 113.255573338687 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 42.293564192170074, 0.0 ], [ -0.001373291015625, 42.293564192170074, 0.0 ], [ -0.001373291015625, 42.292548351430227, 0.0 ], [ -0.00274658203125, 42.292548351430227, 0.0 ], [ -0.00274658203125, 42.293564192170074, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3034, "task_x": 131070, "task_y": 97056, "task_z": 18, "center_y": 42.260540979607498, "area_in_sqm": 12792.589335799201, "perimeter_in_m": 452.418085521146, "length_x": 113.311989008059, "length_y": 113.313808764504 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 42.261049162113842, 0.0 ], [ -0.001373291015625, 42.261049162113842, 0.0 ], [ -0.001373291015625, 42.260032797101111, 0.0 ], [ -0.00274658203125, 42.260032797101111, 0.0 ], [ -0.00274658203125, 42.261049162113842, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3035, "task_x": 131070, "task_y": 97088, "task_z": 18, "center_y": 42.228008911594202, "area_in_sqm": 12805.691744089099, "perimeter_in_m": 452.649715325687, "length_x": 113.370217969808, "length_y": 113.372037516509 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 42.228517356208499, 0.0 ], [ -0.001373291015625, 42.228517356208499, 0.0 ], [ -0.001373291015625, 42.227500466979976, 0.0 ], [ -0.00274658203125, 42.227500466979976, 0.0 ], [ -0.00274658203125, 42.228517356208499, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3036, "task_x": 131070, "task_y": 97120, "task_z": 18, "center_y": 42.195460069598496, "area_in_sqm": 12818.7992637157, "perimeter_in_m": 452.88131695753498, "length_x": 113.428440181757, "length_y": 113.43025951626301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 42.195968776291785, 0.0 ], [ -0.001373291015625, 42.195968776291785, 0.0 ], [ -0.001373291015625, 42.19495136290525, 0.0 ], [ -0.00274658203125, 42.19495136290525, 0.0 ], [ -0.00274658203125, 42.195968776291785, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3037, "task_x": 131070, "task_y": 97152, "task_z": 18, "center_y": 42.162894455481002, "area_in_sqm": 12831.911874055901, "perimeter_in_m": 453.11289009398899, "length_x": 113.486655565367, "length_y": 113.48847468522 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 42.163403424224001, 0.0 ], [ -0.001373291015625, 42.163403424224001, 0.0 ], [ -0.001373291015625, 42.162385486737975, 0.0 ], [ -0.00274658203125, 42.162385486737975, 0.0 ], [ -0.00274658203125, 42.163403424224001, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3038, "task_x": 131070, "task_y": 97184, "task_z": 18, "center_y": 42.130312071124997, "area_in_sqm": 12845.029555082299, "perimeter_in_m": 453.34443442767002, "length_x": 113.544864041989, "length_y": 113.54668294472999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 42.130821301888112, 0.0 ], [ -0.001373291015625, 42.130821301888112, 0.0 ], [ -0.001373291015625, 42.129802840361805, 0.0 ], [ -0.00274658203125, 42.129802840361805, 0.0 ], [ -0.00274658203125, 42.130821301888112, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3039, "task_x": 131070, "task_y": 97216, "task_z": 18, "center_y": 42.0977129184364, "area_in_sqm": 12858.1522868872, "perimeter_in_m": 453.57594964746499, "length_x": 113.603065532871, "length_y": 113.60488421603699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 42.098222411189731, 0.0 ], [ -0.001373291015625, 42.098222411189731, 0.0 ], [ -0.001373291015625, 42.097203425683041, 0.0 ], [ -0.00274658203125, 42.097203425683041, 0.0 ], [ -0.00274658203125, 42.098222411189731, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3040, "task_x": 131070, "task_y": 97248, "task_z": 18, "center_y": 42.065096999343901, "area_in_sqm": 12871.280048728, "perimeter_in_m": 453.80743544064501, "length_x": 113.66125995915399, "length_y": 113.66307842028 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 42.06560675405715, 0.0 ], [ -0.001373291015625, 42.06560675405715, 0.0 ], [ -0.001373291015625, 42.064587244630722, 0.0 ], [ -0.00274658203125, 42.064587244630722, 0.0 ], [ -0.00274658203125, 42.06560675405715, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3041, "task_x": 131070, "task_y": 97280, "task_z": 18, "center_y": 42.032464315798997, "area_in_sqm": 12884.4128206968, "perimeter_in_m": 454.03889149285698, "length_x": 113.719447241875, "length_y": 113.72126547849101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 42.032974332441398, 0.0 ], [ -0.001373291015625, 42.032974332441398, 0.0 ], [ -0.001373291015625, 42.031954299156546, 0.0 ], [ -0.00274658203125, 42.031954299156546, 0.0 ], [ -0.00274658203125, 42.032974332441398, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3042, "task_x": 131070, "task_y": 97312, "task_z": 18, "center_y": 41.999814869775598, "area_in_sqm": 12897.550581336, "perimeter_in_m": 454.27031748035699, "length_x": 113.777627301965, "length_y": 113.77944531159901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 42.000325148316215, 0.0 ], [ -0.001373291015625, 42.000325148316215, 0.0 ], [ -0.001373291015625, 41.999304591234996, 0.0 ], [ -0.00274658203125, 41.999304591234996, 0.0 ], [ -0.00274658203125, 42.000325148316215, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3043, "task_x": 131070, "task_y": 97344, "task_z": 18, "center_y": 41.967148663270699, "area_in_sqm": 12910.6933113337, "perimeter_in_m": 454.50171309262498, "length_x": 113.835800060252, "length_y": 113.837617840427 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 41.967659203678153, 0.0 ], [ -0.001373291015625, 41.967659203678153, 0.0 ], [ -0.001373291015625, 41.96663812286333, 0.0 ], [ -0.00274658203125, 41.96663812286333, 0.0 ], [ -0.00274658203125, 41.967659203678153, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3044, "task_x": 131070, "task_y": 97376, "task_z": 18, "center_y": 41.934465698304102, "area_in_sqm": 12923.840988993599, "perimeter_in_m": 454.73307802034998, "length_x": 113.89396543745499, "length_y": 113.895782985693 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 41.934976500546583, 0.0 ], [ -0.001373291015625, 41.934976500546583, 0.0 ], [ -0.001373291015625, 41.933954896061628, 0.0 ], [ -0.00274658203125, 41.933954896061628, 0.0 ], [ -0.00274658203125, 41.934976500546583, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3045, "task_x": 131070, "task_y": 97408, "task_z": 18, "center_y": 41.901765976918199, "area_in_sqm": 12936.9935950041, "perimeter_in_m": 454.96441194340503, "length_x": 113.952123354192, "length_y": 113.953940668011 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 41.902277040963696, 0.0 ], [ -0.001373291015625, 41.902277040963696, 0.0 ], [ -0.001373291015625, 41.901254912872787, 0.0 ], [ -0.00274658203125, 41.901254912872787, 0.0 ], [ -0.00274658203125, 41.902277040963696, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3046, "task_x": 131070, "task_y": 97440, "task_z": 18, "center_y": 41.869049501178601, "area_in_sqm": 12950.151107907301, "perimeter_in_m": 455.19571454854002, "length_x": 114.01027373097401, "length_y": 114.01209080788701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 41.869560826994544, 0.0 ], [ -0.001373291015625, 41.869560826994544, 0.0 ], [ -0.001373291015625, 41.868538175362588, 0.0 ], [ -0.00274658203125, 41.868538175362588, 0.0 ], [ -0.00274658203125, 41.869560826994544, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3047, "task_x": 131070, "task_y": 97472, "task_z": 18, "center_y": 41.836316273173402, "area_in_sqm": 12963.313506484001, "perimeter_in_m": 455.42698551592599, "length_x": 114.068416488209, "length_y": 114.070233325727 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 41.836827860727126, 0.0 ], [ -0.001373291015625, 41.836827860727126, 0.0 ], [ -0.001373291015625, 41.835804685619742, 0.0 ], [ -0.00274658203125, 41.835804685619742, 0.0 ], [ -0.00274658203125, 41.836827860727126, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3048, "task_x": 131070, "task_y": 97504, "task_z": 18, "center_y": 41.8035662950141, "area_in_sqm": 12976.4807708263, "perimeter_in_m": 455.65822452270402, "length_x": 114.12655154619701, "length_y": 114.128368141829 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 41.804078144272339, 0.0 ], [ -0.001373291015625, 41.804078144272339, 0.0 ], [ -0.001373291015625, 41.803054445755869, 0.0 ], [ -0.00274658203125, 41.803054445755869, 0.0 ], [ -0.00274658203125, 41.804078144272339, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3049, "task_x": 131070, "task_y": 97536, "task_z": 18, "center_y": 41.770799568834803, "area_in_sqm": 12989.652879715, "perimeter_in_m": 455.88943126066903, "length_x": 114.18467882513799, "length_y": 114.186495176387 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 41.771311679764068, 0.0 ], [ -0.001373291015625, 41.771311679764068, 0.0 ], [ -0.001373291015625, 41.770287457905553, 0.0 ], [ -0.00274658203125, 41.770287457905553, 0.0 ], [ -0.00274658203125, 41.771311679764068, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3050, "task_x": 131070, "task_y": 97568, "task_z": 18, "center_y": 41.738016096792798, "area_in_sqm": 13002.8298116922, "perimeter_in_m": 456.12060540160297, "length_x": 114.24279824512401, "length_y": 114.24461434949301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 41.738528469359153, 0.0 ], [ -0.001373291015625, 41.738528469359153, 0.0 ], [ -0.001373291015625, 41.737503724226379, 0.0 ], [ -0.00274658203125, 41.737503724226379, 0.0 ], [ -0.00274658203125, 41.738528469359153, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3051, "task_x": 131070, "task_y": 97600, "task_z": 18, "center_y": 41.705215881068199, "area_in_sqm": 13016.0115464926, "perimeter_in_m": 456.35174663759602, "length_x": 114.30090972614499, "length_y": 114.30272558113001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 41.70572851523751, 0.0 ], [ -0.001373291015625, 41.70572851523751, 0.0 ], [ -0.001373291015625, 41.704703246898973, 0.0 ], [ -0.00274658203125, 41.704703246898973, 0.0 ], [ -0.00274658203125, 41.70572851523751, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3052, "task_x": 131070, "task_y": 97632, "task_z": 18, "center_y": 41.672398923864499, "area_in_sqm": 13029.198062777499, "perimeter_in_m": 456.58285464425501, "length_x": 114.359013188085, "length_y": 114.360828791182 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 41.672911819602078, 0.0 ], [ -0.001373291015625, 41.672911819602078, 0.0 ], [ -0.001373291015625, 41.671886028126977, 0.0 ], [ -0.00274658203125, 41.671886028126977, 0.0 ], [ -0.00274658203125, 41.672911819602078, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3053, "task_x": 131070, "task_y": 97664, "task_z": 18, "center_y": 41.639565227408099, "area_in_sqm": 13042.3893399239, "perimeter_in_m": 456.813929110434, "length_x": 114.417108550726, "length_y": 114.41892389942601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 41.640078384678915, 0.0 ], [ -0.001373291015625, 41.640078384678915, 0.0 ], [ -0.001373291015625, 41.63905207013719, 0.0 ], [ -0.00274658203125, 41.63905207013719, 0.0 ], [ -0.00274658203125, 41.640078384678915, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3054, "task_x": 131070, "task_y": 97696, "task_z": 18, "center_y": 41.606714793948299, "area_in_sqm": 13055.5853558779, "perimeter_in_m": 457.04496970499002, "length_x": 114.47519573374301, "length_y": 114.477010825535 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 41.60722821271716, 0.0 ], [ -0.001373291015625, 41.60722821271716, 0.0 ], [ -0.001373291015625, 41.606201375179474, 0.0 ], [ -0.00274658203125, 41.606201375179474, 0.0 ], [ -0.00274658203125, 41.60722821271716, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3055, "task_x": 131070, "task_y": 97728, "task_z": 18, "center_y": 41.573847625757999, "area_in_sqm": 13068.7860900164, "perimeter_in_m": 457.27597611212201, "length_x": 114.53327465671001, "length_y": 114.535089489078 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 41.574361305989129, 0.0 ], [ -0.001373291015625, 41.574361305989129, 0.0 ], [ -0.001373291015625, 41.573333945526862, 0.0 ], [ -0.00274658203125, 41.573333945526862, 0.0 ], [ -0.00274658203125, 41.574361305989129, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3056, "task_x": 131070, "task_y": 97760, "task_z": 18, "center_y": 41.540963725132897, "area_in_sqm": 13081.991521239301, "perimeter_in_m": 457.50694801724302, "length_x": 114.591345239096, "length_y": 114.59315980952201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 41.541477666790293, 0.0 ], [ -0.001373291015625, 41.541477666790293, 0.0 ], [ -0.001373291015625, 41.540449783475552, 0.0 ], [ -0.00274658203125, 41.540449783475552, 0.0 ], [ -0.00274658203125, 41.541477666790293, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3057, "task_x": 131070, "task_y": 97792, "task_z": 18, "center_y": 41.508063094392099, "area_in_sqm": 13095.2016271353, "perimeter_in_m": 457.73788508647101, "length_x": 114.649407400266, "length_y": 114.65122170622899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 41.508577297439338, 0.0 ], [ -0.001373291015625, 41.508577297439338, 0.0 ], [ -0.001373291015625, 41.507548891344968, 0.0 ], [ -0.00274658203125, 41.507548891344968, 0.0 ], [ -0.00274658203125, 41.508577297439338, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3058, "task_x": 131070, "task_y": 97824, "task_z": 18, "center_y": 41.475145735878002, "area_in_sqm": 13108.4163874388, "perimeter_in_m": 457.96878700905899, "length_x": 114.707461059482, "length_y": 114.709275098456 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 41.475660200278213, 0.0 ], [ -0.001373291015625, 41.475660200278213, 0.0 ], [ -0.001373291015625, 41.474631271477769, 0.0 ], [ -0.00274658203125, 41.474631271477769, 0.0 ], [ -0.00274658203125, 41.475660200278213, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3059, "task_x": 131070, "task_y": 97856, "task_z": 18, "center_y": 41.442211651956001, "area_in_sqm": 13121.635779976799, "perimeter_in_m": 458.19965346132898, "length_x": 114.76550613590101, "length_y": 114.76731990536 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 41.442726377672116, 0.0 ], [ -0.001373291015625, 41.442726377672116, 0.0 ], [ -0.001373291015625, 41.441696926239878, 0.0 ], [ -0.00274658203125, 41.441696926239878, 0.0 ], [ -0.00274658203125, 41.442726377672116, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3060, "task_x": 131070, "task_y": 97888, "task_z": 18, "center_y": 41.409260845014998, "area_in_sqm": 13134.8597842455, "perimeter_in_m": 458.43048412504697, "length_x": 114.82354254857999, "length_y": 114.825356045991 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 41.409775832009551, 0.0 ], [ -0.001373291015625, 41.409775832009551, 0.0 ], [ -0.001373291015625, 41.408745858020538, 0.0 ], [ -0.00274658203125, 41.408745858020538, 0.0 ], [ -0.00274658203125, 41.409775832009551, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3061, "task_x": 131070, "task_y": 97920, "task_z": 18, "center_y": 41.376293317467301, "area_in_sqm": 13148.0883774757, "perimeter_in_m": 458.66127866765402, "length_x": 114.881570216469, "length_y": 114.883383439298 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 41.376808565702333, 0.0 ], [ -0.001373291015625, 41.376808565702333, 0.0 ], [ -0.001373291015625, 41.375778069232297, 0.0 ], [ -0.00274658203125, 41.375778069232297, 0.0 ], [ -0.00274658203125, 41.376808565702333, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3062, "task_x": 131070, "task_y": 97952, "task_z": 18, "center_y": 41.343309071748401, "area_in_sqm": 13161.3215386868, "perimeter_in_m": 458.89203677971801, "length_x": 114.939589058417, "length_y": 114.941402004127 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 41.3438245811857, 0.0 ], [ -0.001373291015625, 41.3438245811857, 0.0 ], [ -0.001373291015625, 41.342793562311094, 0.0 ], [ -0.00274658203125, 41.342793562311094, 0.0 ], [ -0.00274658203125, 41.3438245811857, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3063, "task_x": 131070, "task_y": 97984, "task_z": 18, "center_y": 41.310308110317202, "area_in_sqm": 13174.559245824799, "perimeter_in_m": 459.12275812190097, "length_x": 114.99759899317, "length_y": 114.99941165921901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 41.310823880918178, 0.0 ], [ -0.001373291015625, 41.310823880918178, 0.0 ], [ -0.001373291015625, 41.309792339716246, 0.0 ], [ -0.00274658203125, 41.309792339716246, 0.0 ], [ -0.00274658203125, 41.310823880918178, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3064, "task_x": 131070, "task_y": 98016, "task_z": 18, "center_y": 41.277290435656198, "area_in_sqm": 13187.801476955399, "perimeter_in_m": 459.35344238012198, "length_x": 115.055599939369, "length_y": 115.057412323214 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 41.277806467381815, 0.0 ], [ -0.001373291015625, 41.277806467381815, 0.0 ], [ -0.001373291015625, 41.276774403930489, 0.0 ], [ -0.00274658203125, 41.276774403930489, 0.0 ], [ -0.00274658203125, 41.277806467381815, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3065, "task_x": 131070, "task_y": 98048, "task_z": 18, "center_y": 41.244256050270998, "area_in_sqm": 13201.0482115746, "perimeter_in_m": 459.584089237981, "length_x": 115.113591815555, "length_y": 115.115403914648 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 41.244772343082076, 0.0 ], [ -0.001373291015625, 41.244772343082076, 0.0 ], [ -0.001373291015625, 41.243739757460006, 0.0 ], [ -0.00274658203125, 41.243739757460006, 0.0 ], [ -0.00274658203125, 41.244772343082076, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3066, "task_x": 131070, "task_y": 98080, "task_z": 18, "center_y": 41.211204956691198, "area_in_sqm": 13214.2994258404, "perimeter_in_m": 459.81469835624699, "length_x": 115.171574540164, "length_y": 115.173386351955 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 41.211721510547875, 0.0 ], [ -0.001373291015625, 41.211721510547875, 0.0 ], [ -0.001373291015625, 41.210688402834485, 0.0 ], [ -0.00274658203125, 41.210688402834485, 0.0 ], [ -0.00274658203125, 41.211721510547875, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3067, "task_x": 131070, "task_y": 98112, "task_z": 18, "center_y": 41.178137157469401, "area_in_sqm": 13227.5550991297, "perimeter_in_m": 460.04526941741301, "length_x": 115.229548031531, "length_y": 115.23135955346601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 41.178653972331688, 0.0 ], [ -0.001373291015625, 41.178653972331688, 0.0 ], [ -0.001373291015625, 41.177620342607113, 0.0 ], [ -0.00274658203125, 41.177620342607113, 0.0 ], [ -0.00274658203125, 41.178653972331688, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3068, "task_x": 131070, "task_y": 98144, "task_z": 18, "center_y": 41.145052655182099, "area_in_sqm": 13240.815208673501, "perimeter_in_m": 460.27580208891698, "length_x": 115.287512207887, "length_y": 115.28932343741 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 41.145569731009488, 0.0 ], [ -0.001373291015625, 41.145569731009488, 0.0 ], [ -0.001373291015625, 41.144535579354624, 0.0 ], [ -0.00274658203125, 41.144535579354624, 0.0 ], [ -0.00274658203125, 41.145569731009488, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3069, "task_x": 131070, "task_y": 98176, "task_z": 18, "center_y": 41.111951452429103, "area_in_sqm": 13254.0797331333, "perimeter_in_m": 460.50629605709202, "length_x": 115.345466987362, "length_y": 115.347277921912 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 41.112468789180852, 0.0 ], [ -0.001373291015625, 41.112468789180852, 0.0 ], [ -0.001373291015625, 41.111434115677319, 0.0 ], [ -0.00274658203125, 41.111434115677319, 0.0 ], [ -0.00274658203125, 41.112468789180852, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3070, "task_x": 131070, "task_y": 98208, "task_z": 18, "center_y": 41.078833551834002, "area_in_sqm": 13267.348649978599, "perimeter_in_m": 460.73675098898298, "length_x": 115.403412287983, "length_y": 115.40522292499701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 41.07935114946897, 0.0 ], [ -0.001373291015625, 41.07935114946897, 0.0 ], [ -0.001373291015625, 41.078315954199098, 0.0 ], [ -0.00274658203125, 41.078315954199098, 0.0 ], [ -0.00274658203125, 41.07935114946897, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3071, "task_x": 131070, "task_y": 98240, "task_z": 18, "center_y": 41.045698956044099, "area_in_sqm": 13280.621937513401, "perimeter_in_m": 460.96716656273901, "length_x": 115.461348027675, "length_y": 115.463158364587 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 41.046216814520626, 0.0 ], [ -0.001373291015625, 41.046216814520626, 0.0 ], [ -0.001373291015625, 41.045181097567522, 0.0 ], [ -0.00274658203125, 41.045181097567522, 0.0 ], [ -0.00274658203125, 41.046216814520626, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3072, "task_x": 131070, "task_y": 98272, "task_z": 18, "center_y": 41.012547667729997, "area_in_sqm": 13293.899572849299, "perimeter_in_m": 461.19754244712601, "length_x": 115.519274124262, "length_y": 115.521084158501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 41.013065787006298, 0.0 ], [ -0.001373291015625, 41.013065787006298, 0.0 ], [ -0.001373291015625, 41.012029548453789, 0.0 ], [ -0.00274658203125, 41.012029548453789, 0.0 ], [ -0.00274658203125, 41.013065787006298, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3073, "task_x": 131070, "task_y": 98304, "task_z": 18, "center_y": 40.979379689586501, "area_in_sqm": 13307.1815339327, "perimeter_in_m": 461.42787830930598, "length_x": 115.577190495464, "length_y": 115.579000224457 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 40.979898069620127, 0.0 ], [ -0.001373291015625, 40.979898069620127, 0.0 ], [ -0.001373291015625, 40.978861309552798, 0.0 ], [ -0.00274658203125, 40.978861309552798, 0.0 ], [ -0.00274658203125, 40.979898069620127, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3074, "task_x": 131070, "task_y": 98336, "task_z": 18, "center_y": 40.946195024331601, "area_in_sqm": 13320.467798113799, "perimeter_in_m": 461.65817382965599, "length_x": 115.6350970589, "length_y": 115.63690648007299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 40.946713665080004, 0.0 ], [ -0.001373291015625, 40.946713665080004, 0.0 ], [ -0.001373291015625, 40.945676383583169, 0.0 ], [ -0.00274658203125, 40.945676383583169, 0.0 ], [ -0.00274658203125, 40.946713665080004, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3075, "task_x": 131070, "task_y": 98368, "task_z": 18, "center_y": 40.912993674707401, "area_in_sqm": 13333.7583435774, "perimeter_in_m": 461.88842868765801, "length_x": 115.69299373208899, "length_y": 115.69480284286099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 40.913512576127573, 0.0 ], [ -0.001373291015625, 40.913512576127573, 0.0 ], [ -0.001373291015625, 40.912474773287279, 0.0 ], [ -0.00274658203125, 40.912474773287279, 0.0 ], [ -0.00274658203125, 40.913512576127573, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3076, "task_x": 131070, "task_y": 98400, "task_z": 18, "center_y": 40.879775643479803, "area_in_sqm": 13347.053147316001, "perimeter_in_m": 462.118642535731, "length_x": 115.750880432446, "length_y": 115.75268923023501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 40.880294805528237, 0.0 ], [ -0.001373291015625, 40.880294805528237, 0.0 ], [ -0.001373291015625, 40.879256481431305, 0.0 ], [ -0.00274658203125, 40.879256481431305, 0.0 ], [ -0.00274658203125, 40.880294805528237, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3077, "task_x": 131070, "task_y": 98432, "task_z": 18, "center_y": 40.846540933438199, "area_in_sqm": 13360.352187037501, "perimeter_in_m": 462.34881505507599, "length_x": 115.808757077286, "length_y": 115.810565559507 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 40.847060356071211, 0.0 ], [ -0.001373291015625, 40.847060356071211, 0.0 ], [ -0.001373291015625, 40.846021510805194, 0.0 ], [ -0.00274658203125, 40.846021510805194, 0.0 ], [ -0.00274658203125, 40.847060356071211, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3078, "task_x": 131070, "task_y": 98464, "task_z": 18, "center_y": 40.813289547396202, "area_in_sqm": 13373.6554400921, "perimeter_in_m": 462.57894592035098, "length_x": 115.866623583823, "length_y": 115.868431747887 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 40.813809230569596, 0.0 ], [ -0.001373291015625, 40.813809230569596, 0.0 ], [ -0.001373291015625, 40.812769864222766, 0.0 ], [ -0.00274658203125, 40.812769864222766, 0.0 ], [ -0.00274658203125, 40.813809230569596, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3079, "task_x": 131070, "task_y": 98496, "task_z": 18, "center_y": 40.780021488190997, "area_in_sqm": 13386.9628839493, "perimeter_in_m": 462.80903479821302, "length_x": 115.924479869168, "length_y": 115.926287712483 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 40.780541431860307, 0.0 ], [ -0.001373291015625, 40.780541431860307, 0.0 ], [ -0.001373291015625, 40.779501544521708, 0.0 ], [ -0.00274658203125, 40.779501544521708, 0.0 ], [ -0.00274658203125, 40.780541431860307, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3080, "task_x": 131070, "task_y": 98528, "task_z": 18, "center_y": 40.746736758683902, "area_in_sqm": 13400.274495363199, "perimeter_in_m": 463.039081362204, "length_x": 115.982325850333, "length_y": 115.98413337030399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 40.747256962804201, 0.0 ], [ -0.001373291015625, 40.747256962804201, 0.0 ], [ -0.001373291015625, 40.746216554563617, 0.0 ], [ -0.00274658203125, 40.746216554563617, 0.0 ], [ -0.00274658203125, 40.747256962804201, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3081, "task_x": 131070, "task_y": 98560, "task_z": 18, "center_y": 40.713435361759998, "area_in_sqm": 13413.590252399399, "perimeter_in_m": 463.26908527437598, "length_x": 116.040161444228, "length_y": 116.041968638257 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 40.713955826286046, 0.0 ], [ -0.001373291015625, 40.713955826286046, 0.0 ], [ -0.001373291015625, 40.712914897234015, 0.0 ], [ -0.00274658203125, 40.712914897234015, 0.0 ], [ -0.00274658203125, 40.713955826286046, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3082, "task_x": 131070, "task_y": 98592, "task_z": 18, "center_y": 40.680117300328497, "area_in_sqm": 13426.9101310968, "perimeter_in_m": 463.49904620645401, "length_x": 116.097986567663, "length_y": 116.099793433149 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 40.680638025214563, 0.0 ], [ -0.001373291015625, 40.680638025214563, 0.0 ], [ -0.001373291015625, 40.679596575442389, 0.0 ], [ -0.00274658203125, 40.679596575442389, 0.0 ], [ -0.00274658203125, 40.680638025214563, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3083, "task_x": 131070, "task_y": 98624, "task_z": 18, "center_y": 40.646782577322298, "area_in_sqm": 13440.2341097593, "perimeter_in_m": 463.72896383422102, "length_x": 116.155801137346, "length_y": 116.157607671684 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 40.647303562522502, 0.0 ], [ -0.001373291015625, 40.647303562522502, 0.0 ], [ -0.001373291015625, 40.646261592122187, 0.0 ], [ -0.00274658203125, 40.646261592122187, 0.0 ], [ -0.00274658203125, 40.647303562522502, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3084, "task_x": 131070, "task_y": 98656, "task_z": 18, "center_y": 40.613431195698801, "area_in_sqm": 13453.5621647835, "perimeter_in_m": 463.95883781134302, "length_x": 116.213605069886, "length_y": 116.215411270468 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 40.613952441166596, 0.0 ], [ -0.001373291015625, 40.613952441166596, 0.0 ], [ -0.001373291015625, 40.612909950230943, 0.0 ], [ -0.00274658203125, 40.612909950230943, 0.0 ], [ -0.00274658203125, 40.613952441166596, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3085, "task_x": 131070, "task_y": 98688, "task_z": 18, "center_y": 40.580063158438897, "area_in_sqm": 13466.894273400299, "perimeter_in_m": 464.188667823814, "length_x": 116.27139828179, "length_y": 116.273204146005 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 40.580584664127628, 0.0 ], [ -0.001373291015625, 40.580584664127628, 0.0 ], [ -0.001373291015625, 40.579541652750166, 0.0 ], [ -0.00274658203125, 40.579541652750166, 0.0 ], [ -0.00274658203125, 40.580584664127628, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3086, "task_x": 131070, "task_y": 98720, "task_z": 18, "center_y": 40.546678468548002, "area_in_sqm": 13480.230411529499, "perimeter_in_m": 464.41845351926497, "length_x": 116.32918068946501, "length_y": 116.330986214701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 40.547200234410475, 0.0 ], [ -0.001373291015625, 40.547200234410475, 0.0 ], [ -0.001373291015625, 40.546156702685515, 0.0 ], [ -0.00274658203125, 40.546156702685515, 0.0 ], [ -0.00274658203125, 40.547200234410475, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3087, "task_x": 131070, "task_y": 98752, "task_z": 18, "center_y": 40.513277129055403, "area_in_sqm": 13493.5705580711, "perimeter_in_m": 464.64819459106599, "length_x": 116.38695220922, "length_y": 116.388757392858 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 40.51379915504414, 0.0 ], [ -0.001373291015625, 40.51379915504414, 0.0 ], [ -0.001373291015625, 40.512755103066702, 0.0 ], [ -0.00274658203125, 40.512755103066702, 0.0 ], [ -0.00274658203125, 40.51379915504414, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3088, "task_x": 131070, "task_y": 98784, "task_z": 18, "center_y": 40.4798591430147, "area_in_sqm": 13506.9146879911, "perimeter_in_m": 464.87789068362599, "length_x": 116.444712757261, "length_y": 116.446517596682 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 40.48038142908171, 0.0 ], [ -0.001373291015625, 40.48038142908171, 0.0 ], [ -0.001373291015625, 40.479336856947604, 0.0 ], [ -0.00274658203125, 40.479336856947604, 0.0 ], [ -0.00274658203125, 40.48038142908171, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3089, "task_x": 131070, "task_y": 98816, "task_z": 18, "center_y": 40.446424513503402, "area_in_sqm": 13520.2627782822, "perimeter_in_m": 465.10754146801901, "length_x": 116.50246224969599, "length_y": 116.504266742276 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 40.446947059600483, 0.0 ], [ -0.001373291015625, 40.446947059600483, 0.0 ], [ -0.001373291015625, 40.445901967406272, 0.0 ], [ -0.00274658203125, 40.445901967406272, 0.0 ], [ -0.00274658203125, 40.446947059600483, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3090, "task_x": 131070, "task_y": 98848, "task_z": 18, "center_y": 40.412973243623398, "area_in_sqm": 13533.614806056001, "perimeter_in_m": 465.33714661936199, "length_x": 116.56020060253201, "length_y": 116.562004745645 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 40.413496049701955, 0.0 ], [ -0.001373291015625, 40.413496049701955, 0.0 ], [ -0.001373291015625, 40.41245043754494, 0.0 ], [ -0.00274658203125, 40.41245043754494, 0.0 ], [ -0.00274658203125, 40.413496049701955, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3091, "task_x": 131070, "task_y": 98880, "task_z": 18, "center_y": 40.379505336500998, "area_in_sqm": 13546.9707480669, "perimeter_in_m": 465.56670579208702, "length_x": 116.617927731677, "length_y": 116.619731522694 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 40.380028402511819, 0.0 ], [ -0.001373291015625, 40.380028402511819, 0.0 ], [ -0.001373291015625, 40.378982270490077, 0.0 ], [ -0.00274658203125, 40.378982270490077, 0.0 ], [ -0.00274658203125, 40.380028402511819, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3092, "task_x": 131070, "task_y": 98912, "task_z": 18, "center_y": 40.346020795286201, "area_in_sqm": 13560.330580711399, "perimeter_in_m": 465.79621866092299, "length_x": 116.675643552941, "length_y": 116.677446989229 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 40.346544121180052, 0.0 ], [ -0.001373291015625, 40.346544121180052, 0.0 ], [ -0.001373291015625, 40.345497469392399, 0.0 ], [ -0.00274658203125, 40.345497469392399, 0.0 ], [ -0.00274658203125, 40.346544121180052, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3093, "task_x": 131070, "task_y": 98944, "task_z": 18, "center_y": 40.312519623153896, "area_in_sqm": 13573.694280386, "perimeter_in_m": 466.02568488415397, "length_x": 116.733347982032, "length_y": 116.735151060955 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 40.313043208880899, 0.0 ], [ -0.001373291015625, 40.313043208880899, 0.0 ], [ -0.001373291015625, 40.311996037426923, 0.0 ], [ -0.00274658203125, 40.311996037426923, 0.0 ], [ -0.00274658203125, 40.313043208880899, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3094, "task_x": 131070, "task_y": 98976, "task_z": 18, "center_y": 40.279001823302899, "area_in_sqm": 13587.0618237257, "perimeter_in_m": 466.25510413328601, "length_x": 116.79104093456, "length_y": 116.792843653479 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 40.279525668812916, 0.0 ], [ -0.001373291015625, 40.279525668812916, 0.0 ], [ -0.001373291015625, 40.278477977792967, 0.0 ], [ -0.00274658203125, 40.278477977792967, 0.0 ], [ -0.00274658203125, 40.279525668812916, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3095, "task_x": 131070, "task_y": 99008, "task_z": 18, "center_y": 40.245467398956599, "area_in_sqm": 13600.4331866503, "perimeter_in_m": 466.48447606197698, "length_x": 116.848722326035, "length_y": 116.85052468231 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 40.245991504199012, 0.0 ], [ -0.001373291015625, 40.245991504199012, 0.0 ], [ -0.001373291015625, 40.244943293714208, 0.0 ], [ -0.00274658203125, 40.244943293714208, 0.0 ], [ -0.00274658203125, 40.245991504199012, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3096, "task_x": 131070, "task_y": 99040, "task_z": 18, "center_y": 40.211916353362597, "area_in_sqm": 13613.8083457947, "perimeter_in_m": 466.71380034419099, "length_x": 116.906392071871, "length_y": 116.908194062855 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 40.212440718286466, 0.0 ], [ -0.001373291015625, 40.212440718286466, 0.0 ], [ -0.001373291015625, 40.211391988438663, 0.0 ], [ -0.00274658203125, 40.211391988438663, 0.0 ], [ -0.00274658203125, 40.212440718286466, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3097, "task_x": 131070, "task_y": 99072, "task_z": 18, "center_y": 40.178348689792898, "area_in_sqm": 13627.1872771978, "perimeter_in_m": 466.943076636017, "length_x": 116.96405008737899, "length_y": 116.965851710425 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 40.178873314346959, 0.0 ], [ -0.001373291015625, 40.178873314346959, 0.0 ], [ -0.001373291015625, 40.177824065238802, 0.0 ], [ -0.00274658203125, 40.177824065238802, 0.0 ], [ -0.00274658203125, 40.178873314346959, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3098, "task_x": 131070, "task_y": 99104, "task_z": 18, "center_y": 40.144764411544003, "area_in_sqm": 13640.5699576139, "perimeter_in_m": 467.17230460749602, "length_x": 117.021696287775, "length_y": 117.02349754023101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 40.145289295676605, 0.0 ], [ -0.001373291015625, 40.145289295676605, 0.0 ], [ -0.001373291015625, 40.144239527411479, 0.0 ], [ -0.00274658203125, 40.144239527411479, 0.0 ], [ -0.00274658203125, 40.145289295676605, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3099, "task_x": 131070, "task_y": 99136, "task_z": 18, "center_y": 40.111163521937002, "area_in_sqm": 13653.9563626051, "perimeter_in_m": 467.40148391858003, "length_x": 117.079330588174, "length_y": 117.081131467387 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 40.111688665595963, 0.0 ], [ -0.001373291015625, 40.111688665595963, 0.0 ], [ -0.001373291015625, 40.110638378278033, 0.0 ], [ -0.00274658203125, 40.110638378278033, 0.0 ], [ -0.00274658203125, 40.111688665595963, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3100, "task_x": 131070, "task_y": 99168, "task_z": 18, "center_y": 40.077546024317201, "area_in_sqm": 13667.346468448601, "perimeter_in_m": 467.63061422196301, "length_x": 117.13695290359399, "length_y": 117.138753406905 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 40.078071427450091, 0.0 ], [ -0.001373291015625, 40.078071427450091, 0.0 ], [ -0.001373291015625, 40.077020621184303, 0.0 ], [ -0.00274658203125, 40.077020621184303, 0.0 ], [ -0.00274658203125, 40.078071427450091, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3101, "task_x": 131070, "task_y": 99200, "task_z": 18, "center_y": 40.043911922054598, "area_in_sqm": 13680.740251183501, "perimeter_in_m": 467.85969519487497, "length_x": 117.19456314895299, "length_y": 117.19636327370399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 40.044437584608566, 0.0 ], [ -0.001373291015625, 40.044437584608566, 0.0 ], [ -0.001373291015625, 40.0433862595006, 0.0 ], [ -0.00274658203125, 40.0433862595006, 0.0 ], [ -0.00274658203125, 40.044437584608566, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3102, "task_x": 131070, "task_y": 99232, "task_z": 18, "center_y": 40.010261218543697, "area_in_sqm": 13694.1376867294, "perimeter_in_m": 468.08872649176101, "length_x": 117.252161239074, "length_y": 117.25396098260001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 40.01078714046551, 0.0 ], [ -0.001373291015625, 40.01078714046551, 0.0 ], [ -0.001373291015625, 40.009735296621834, 0.0 ], [ -0.00274658203125, 40.009735296621834, 0.0 ], [ -0.00274658203125, 40.01078714046551, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3103, "task_x": 131070, "task_y": 99264, "task_z": 18, "center_y": 39.976593917203601, "area_in_sqm": 13707.538751006099, "perimeter_in_m": 468.31770776966403, "length_x": 117.30974708868, "length_y": 117.311546448314 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 39.977120098439627, 0.0 ], [ -0.001373291015625, 39.977120098439627, 0.0 ], [ -0.001373291015625, 39.976067735967462, 0.0 ], [ -0.00274658203125, 39.976067735967462, 0.0 ], [ -0.00274658203125, 39.977120098439627, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3104, "task_x": 131070, "task_y": 99296, "task_z": 18, "center_y": 39.9429100214779, "area_in_sqm": 13720.943419694901, "perimeter_in_m": 468.54663869254802, "length_x": 117.36732061239501, "length_y": 117.369119585468 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 39.943436461974201, 0.0 ], [ -0.001373291015625, 39.943436461974201, 0.0 ], [ -0.001373291015625, 39.942383580981556, 0.0 ], [ -0.00274658203125, 39.942383580981556, 0.0 ], [ -0.00274658203125, 39.943436461974201, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3105, "task_x": 131070, "task_y": 99328, "task_z": 18, "center_y": 39.909209534835, "area_in_sqm": 13734.3516685963, "perimeter_in_m": 468.77551892627798, "length_x": 117.424881724747, "length_y": 117.426680308587 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 39.909736234537178, 0.0 ], [ -0.001373291015625, 39.909736234537178, 0.0 ], [ -0.001373291015625, 39.908682835132829, 0.0 ], [ -0.00274658203125, 39.908682835132829, 0.0 ], [ -0.00274658203125, 39.909736234537178, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3106, "task_x": 131070, "task_y": 99360, "task_z": 18, "center_y": 39.875492460767902, "area_in_sqm": 13747.763473749201, "perimeter_in_m": 469.00434812310698, "length_x": 117.482430340167, "length_y": 117.484228532098 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 39.876019419621151, 0.0 ], [ -0.001373291015625, 39.876019419621151, 0.0 ], [ -0.001373291015625, 39.874965501914623, 0.0 ], [ -0.00274658203125, 39.874965501914623, 0.0 ], [ -0.00274658203125, 39.876019419621151, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3107, "task_x": 131070, "task_y": 99392, "task_z": 18, "center_y": 39.841758802794203, "area_in_sqm": 13761.1788104773, "perimeter_in_m": 469.23312594712002, "length_x": 117.539966372988, "length_y": 117.54176417033101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 39.842286020743387, 0.0 ], [ -0.001373291015625, 39.842286020743387, 0.0 ], [ -0.001373291015625, 39.841231584844998, 0.0 ], [ -0.00274658203125, 39.841231584844998, 0.0 ], [ -0.00274658203125, 39.842286020743387, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3108, "task_x": 131070, "task_y": 99424, "task_z": 18, "center_y": 39.808008564456301, "area_in_sqm": 13774.597654581101, "perimeter_in_m": 469.46185205302299, "length_x": 117.59748973744399, "length_y": 117.599287137518 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 39.808536041445905, 0.0 ], [ -0.001373291015625, 39.808536041445905, 0.0 ], [ -0.001373291015625, 39.807481087466741, 0.0 ], [ -0.00274658203125, 39.807481087466741, 0.0 ], [ -0.00274658203125, 39.808536041445905, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3109, "task_x": 131070, "task_y": 99456, "task_z": 18, "center_y": 39.774241749321398, "area_in_sqm": 13788.019981384299, "perimeter_in_m": 469.69052611016201, "length_x": 117.65500034767599, "length_y": 117.65679734779501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 39.774769485295451, 0.0 ], [ -0.001373291015625, 39.774769485295451, 0.0 ], [ -0.001373291015625, 39.773714013347373, 0.0 ], [ -0.00274658203125, 39.773714013347373, 0.0 ], [ -0.00274658203125, 39.774769485295451, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3110, "task_x": 131070, "task_y": 99488, "task_z": 18, "center_y": 39.7404583609814, "area_in_sqm": 13801.445766449, "perimeter_in_m": 469.91914776085298, "length_x": 117.712498117723, "length_y": 117.71429471520101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 39.740986355883557, 0.0 ], [ -0.001373291015625, 39.740986355883557, 0.0 ], [ -0.001373291015625, 39.7399303660792, 0.0 ], [ -0.00274658203125, 39.7399303660792, 0.0 ], [ -0.00274658203125, 39.740986355883557, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3111, "task_x": 131070, "task_y": 99520, "task_z": 18, "center_y": 39.706658403052899, "area_in_sqm": 13814.874985337299, "perimeter_in_m": 470.14771667407803, "length_x": 117.76998296153199, "length_y": 117.771779153677 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 39.707186656826543, 0.0 ], [ -0.001373291015625, 39.707186656826543, 0.0 ], [ -0.001373291015625, 39.706130149279325, 0.0 ], [ -0.00274658203125, 39.706130149279325, 0.0 ], [ -0.00274658203125, 39.707186656826543, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3112, "task_x": 131070, "task_y": 99552, "task_z": 18, "center_y": 39.672841879177597, "area_in_sqm": 13828.307613491999, "perimeter_in_m": 470.37623250943199, "length_x": 117.82745479294999, "length_y": 117.829250577069 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 39.673370391765587, 0.0 ], [ -0.001373291015625, 39.673370391765587, 0.0 ], [ -0.001373291015625, 39.672313366589684, 0.0 ], [ -0.00274658203125, 39.672313366589684, 0.0 ], [ -0.00274658203125, 39.673370391765587, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3113, "task_x": 131070, "task_y": 99584, "task_z": 18, "center_y": 39.639008793021901, "area_in_sqm": 13841.7436254025, "perimeter_in_m": 470.60469491927103, "length_x": 117.88491352573, "length_y": 117.88670889912601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 39.639537564366698, 0.0 ], [ -0.001373291015625, 39.639537564366698, 0.0 ], [ -0.001373291015625, 39.638480021677083, 0.0 ], [ -0.00274658203125, 39.638480021677083, 0.0 ], [ -0.00274658203125, 39.639537564366698, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3114, "task_x": 131070, "task_y": 99616, "task_z": 18, "center_y": 39.605159148276996, "area_in_sqm": 13855.182997345901, "perimeter_in_m": 470.83310355787, "length_x": 117.94235907352601, "length_y": 117.944154033499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 39.605688178320804, 0.0 ], [ -0.001373291015625, 39.605688178320804, 0.0 ], [ -0.001373291015625, 39.604630118233196, 0.0 ], [ -0.00274658203125, 39.604630118233196, 0.0 ], [ -0.00274658203125, 39.605688178320804, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3115, "task_x": 131070, "task_y": 99648, "task_z": 18, "center_y": 39.571292948659199, "area_in_sqm": 13868.6257038116, "perimeter_in_m": 471.06145808355598, "length_x": 117.999791349898, "length_y": 118.001585893745 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 39.571822237343731, 0.0 ], [ -0.001373291015625, 39.571822237343731, 0.0 ], [ -0.001373291015625, 39.570763659974681, 0.0 ], [ -0.00274658203125, 39.570763659974681, 0.0 ], [ -0.00274658203125, 39.571822237343731, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3116, "task_x": 131070, "task_y": 99680, "task_z": 18, "center_y": 39.537410197909701, "area_in_sqm": 13882.0717198849, "perimeter_in_m": 471.28975815448899, "length_x": 118.05721026830901, "length_y": 118.059004393324 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 39.53793974517626, 0.0 ], [ -0.001373291015625, 39.53793974517626, 0.0 ], [ -0.001373291015625, 39.53688065064307, 0.0 ], [ -0.00274658203125, 39.53688065064307, 0.0 ], [ -0.00274658203125, 39.53793974517626, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3117, "task_x": 131070, "task_y": 99712, "task_z": 18, "center_y": 39.503510899794499, "area_in_sqm": 13895.521021246899, "perimeter_in_m": 471.51800343145402, "length_x": 118.114615742127, "length_y": 118.116409445602 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 39.50404070558416, 0.0 ], [ -0.001373291015625, 39.50404070558416, 0.0 ], [ -0.001373291015625, 39.502981094004888, 0.0 ], [ -0.00274658203125, 39.502981094004888, 0.0 ], [ -0.00274658203125, 39.50404070558416, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3118, "task_x": 131070, "task_y": 99744, "task_z": 18, "center_y": 39.4695950581049, "area_in_sqm": 13908.973582267799, "perimeter_in_m": 471.74619356090602, "length_x": 118.17200768462401, "length_y": 118.17380096384601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 39.470125122358162, 0.0 ], [ -0.001373291015625, 39.470125122358162, 0.0 ], [ -0.001373291015625, 39.469064993851688, 0.0 ], [ -0.00274658203125, 39.469064993851688, 0.0 ], [ -0.00274658203125, 39.470125122358162, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3119, "task_x": 131070, "task_y": 99776, "task_z": 18, "center_y": 39.435662676657103, "area_in_sqm": 13922.429378390299, "perimeter_in_m": 471.97432820256302, "length_x": 118.229386008975, "length_y": 118.23117886123001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 39.436192999314073, 0.0 ], [ -0.001373291015625, 39.436192999314073, 0.0 ], [ -0.001373291015625, 39.435132354000039, 0.0 ], [ -0.00274658203125, 39.435132354000039, 0.0 ], [ -0.00274658203125, 39.436192999314073, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3120, "task_x": 131070, "task_y": 99808, "task_z": 18, "center_y": 39.4017137592922, "area_in_sqm": 13935.8883841038, "perimeter_in_m": 472.20240700605098, "length_x": 118.286750628262, "length_y": 118.288543050832 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 39.402244340292754, 0.0 ], [ -0.001373291015625, 39.402244340292754, 0.0 ], [ -0.001373291015625, 39.401183178291603, 0.0 ], [ -0.00274658203125, 39.401183178291603, 0.0 ], [ -0.00274658203125, 39.402244340292754, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3121, "task_x": 131070, "task_y": 99840, "task_z": 18, "center_y": 39.367748309876603, "area_in_sqm": 13949.350574255001, "perimeter_in_m": 472.430429637072, "length_x": 118.34410145547, "length_y": 118.345893445635 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 39.368279149160124, 0.0 ], [ -0.001373291015625, 39.368279149160124, 0.0 ], [ -0.001373291015625, 39.367217470593054, 0.0 ], [ -0.00274658203125, 39.367217470593054, 0.0 ], [ -0.00274658203125, 39.368279149160124, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3122, "task_x": 131070, "task_y": 99872, "task_z": 18, "center_y": 39.3337663323017, "area_in_sqm": 13962.815923571599, "perimeter_in_m": 472.658395734983, "length_x": 118.401438403491, "length_y": 118.403229958526 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 39.334297429807236, 0.0 ], [ -0.001373291015625, 39.334297429807236, 0.0 ], [ -0.001373291015625, 39.333235234796248, 0.0 ], [ -0.00274658203125, 39.333235234796248, 0.0 ], [ -0.00274658203125, 39.334297429807236, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3123, "task_x": 131070, "task_y": 99904, "task_z": 18, "center_y": 39.2997678304842, "area_in_sqm": 13976.284407019601, "perimeter_in_m": 472.88630496652797, "length_x": 118.458761385119, "length_y": 118.460552502298 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 39.300299186150284, 0.0 ], [ -0.001373291015625, 39.300299186150284, 0.0 ], [ -0.001373291015625, 39.29923647481818, 0.0 ], [ -0.00274658203125, 39.29923647481818, 0.0 ], [ -0.00274658203125, 39.300299186150284, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3124, "task_x": 131070, "task_y": 99936, "task_z": 18, "center_y": 39.265752808365797, "area_in_sqm": 13989.7559990883, "perimeter_in_m": 473.11415698130497, "length_x": 118.51607031305601, "length_y": 118.51786098964899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 39.266284422130646, 0.0 ], [ -0.001373291015625, 39.266284422130646, 0.0 ], [ -0.001373291015625, 39.26522119460099, 0.0 ], [ -0.00274658203125, 39.26522119460099, 0.0 ], [ -0.00274658203125, 39.266284422130646, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3125, "task_x": 131070, "task_y": 99968, "task_z": 18, "center_y": 39.2317212699135, "area_in_sqm": 14003.23067379, "perimeter_in_m": 473.34195141953899, "length_x": 118.573365099908, "length_y": 118.57515533318301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 39.232253141714885, 0.0 ], [ -0.001373291015625, 39.232253141714885, 0.0 ], [ -0.001373291015625, 39.231189398112043, 0.0 ], [ -0.00274658203125, 39.231189398112043, 0.0 ], [ -0.00274658203125, 39.232253141714885, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3126, "task_x": 131070, "task_y": 100000, "task_z": 18, "center_y": 39.197673219119402, "area_in_sqm": 14016.7084072828, "perimeter_in_m": 473.56968795731098, "length_x": 118.63064565818701, "length_y": 118.632435445409 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 39.198205348894803, 0.0 ], [ -0.001373291015625, 39.198205348894803, 0.0 ], [ -0.001373291015625, 39.197141089343909, 0.0 ], [ -0.00274658203125, 39.197141089343909, 0.0 ], [ -0.00274658203125, 39.198205348894803, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3127, "task_x": 131070, "task_y": 100032, "task_z": 18, "center_y": 39.163608660000897, "area_in_sqm": 14030.189172148701, "perimeter_in_m": 473.79736622317603, "length_x": 118.687911900312, "length_y": 118.689701238742 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 39.164141047687423, 0.0 ], [ -0.001373291015625, 39.164141047687423, 0.0 ], [ -0.001373291015625, 39.163076272314441, 0.0 ], [ -0.00274658203125, 39.163076272314441, 0.0 ], [ -0.00274658203125, 39.164141047687423, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3128, "task_x": 131070, "task_y": 100064, "task_z": 18, "center_y": 39.129527596600902, "area_in_sqm": 14043.6729432344, "perimeter_in_m": 474.02498588224699, "length_x": 118.745163738606, "length_y": 118.746952625502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 39.130060242135102, 0.0 ], [ -0.001373291015625, 39.130060242135102, 0.0 ], [ -0.001373291015625, 39.128994951066758, 0.0 ], [ -0.00274658203125, 39.128994951066758, 0.0 ], [ -0.00274658203125, 39.130060242135102, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3129, "task_x": 131070, "task_y": 100096, "task_z": 18, "center_y": 39.095430032987402, "area_in_sqm": 14057.1596958637, "perimeter_in_m": 474.25254658533203, "length_x": 118.802401085298, "length_y": 118.804189517917 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 39.095962936305483, 0.0 ], [ -0.001373291015625, 39.095962936305483, 0.0 ], [ -0.001373291015625, 39.094897129669278, 0.0 ], [ -0.00274658203125, 39.094897129669278, 0.0 ], [ -0.00274658203125, 39.095962936305483, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3130, "task_x": 131070, "task_y": 100128, "task_z": 18, "center_y": 39.061315973253599, "area_in_sqm": 14070.649402737599, "perimeter_in_m": 474.48004797879798, "length_x": 118.859623852526, "length_y": 118.86141182812 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 39.061849134291521, 0.0 ], [ -0.001373291015625, 39.061849134291521, 0.0 ], [ -0.001373291015625, 39.060782812215798, 0.0 ], [ -0.00274658203125, 39.060782812215798, 0.0 ], [ -0.00274658203125, 39.061849134291521, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3131, "task_x": 131070, "task_y": 100160, "task_z": 18, "center_y": 39.027185421518503, "area_in_sqm": 14084.142039299, "perimeter_in_m": 474.70748971237998, "length_x": 118.916831952332, "length_y": 118.91861946815 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 39.027718840211598, 0.0 ], [ -0.001373291015625, 39.027718840211598, 0.0 ], [ -0.001373291015625, 39.026652002825458, 0.0 ], [ -0.00274658203125, 39.026652002825458, 0.0 ], [ -0.00274658203125, 39.027718840211598, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3132, "task_x": 131070, "task_y": 100192, "task_z": 18, "center_y": 38.993038381926098, "area_in_sqm": 14097.6375799179, "perimeter_in_m": 474.93487144834501, "length_x": 118.974025296665, "length_y": 118.97581234995501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 38.993572058209452, 0.0 ], [ -0.001373291015625, 38.993572058209452, 0.0 ], [ -0.001373291015625, 38.992504705642773, 0.0 ], [ -0.00274658203125, 38.992504705642773, 0.0 ], [ -0.00274658203125, 38.993572058209452, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3133, "task_x": 131070, "task_y": 100224, "task_z": 18, "center_y": 38.958874858645999, "area_in_sqm": 14111.1359975338, "perimeter_in_m": 475.16219282405399, "length_x": 119.031203797381, "length_y": 119.032990385387 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 38.959408792454219, 0.0 ], [ -0.001373291015625, 38.959408792454219, 0.0 ], [ -0.001373291015625, 38.958340924837714, 0.0 ], [ -0.00274658203125, 38.958340924837714, 0.0 ], [ -0.00274658203125, 38.959408792454219, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3134, "task_x": 131070, "task_y": 100256, "task_z": 18, "center_y": 38.924694855873099, "area_in_sqm": 14124.637267112699, "perimeter_in_m": 475.38945349221399, "length_x": 119.088367366244, "length_y": 119.09015348620601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 38.925229047140519, 0.0 ], [ -0.001373291015625, 38.925229047140519, 0.0 ], [ -0.001373291015625, 38.924160664605679, 0.0 ], [ -0.00274658203125, 38.924160664605679, 0.0 ], [ -0.00274658203125, 38.925229047140519, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3135, "task_x": 131070, "task_y": 100288, "task_z": 18, "center_y": 38.890498377828003, "area_in_sqm": 14138.141361951801, "perimeter_in_m": 475.61665310466299, "length_x": 119.145515914923, "length_y": 119.14730156408 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 38.891032826488463, 0.0 ], [ -0.001373291015625, 38.891032826488463, 0.0 ], [ -0.001373291015625, 38.889963929167578, 0.0 ], [ -0.00274658203125, 38.889963929167578, 0.0 ], [ -0.00274658203125, 38.891032826488463, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3136, "task_x": 131070, "task_y": 100320, "task_z": 18, "center_y": 38.856285428756699, "area_in_sqm": 14151.6482564211, "perimeter_in_m": 475.84379130881899, "length_x": 119.202649354996, "length_y": 119.204434530583 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 38.856820134743622, 0.0 ], [ -0.001373291015625, 38.856820134743622, 0.0 ], [ -0.001373291015625, 38.85575072276977, 0.0 ], [ -0.00274658203125, 38.85575072276977, 0.0 ], [ -0.00274658203125, 38.856820134743622, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3137, "task_x": 131070, "task_y": 100352, "task_z": 18, "center_y": 38.822056012930602, "area_in_sqm": 14165.1579240561, "perimeter_in_m": 476.07086775119501, "length_x": 119.259767597947, "length_y": 119.26155229719799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 38.822590976177104, 0.0 ], [ -0.001373291015625, 38.822590976177104, 0.0 ], [ -0.001373291015625, 38.821521049684186, 0.0 ], [ -0.00274658203125, 38.821521049684186, 0.0 ], [ -0.00274658203125, 38.822590976177104, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3138, "task_x": 131070, "task_y": 100384, "task_z": 18, "center_y": 38.787810134647003, "area_in_sqm": 14178.670339107501, "perimeter_in_m": 476.297882081681, "length_x": 119.31687055517, "length_y": 119.31865477531299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 38.788345355085617, 0.0 ], [ -0.001373291015625, 38.788345355085617, 0.0 ], [ -0.001373291015625, 38.787274914208304, 0.0 ], [ -0.00274658203125, 38.787274914208304, 0.0 ], [ -0.00274658203125, 38.788345355085617, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3139, "task_x": 131070, "task_y": 100416, "task_z": 18, "center_y": 38.753547798228297, "area_in_sqm": 14192.1854749918, "perimeter_in_m": 476.52483394784798, "length_x": 119.373958137966, "length_y": 119.375741876227 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 38.754083275791409, 0.0 ], [ -0.001373291015625, 38.754083275791409, 0.0 ], [ -0.001373291015625, 38.753012320665192, 0.0 ], [ -0.00274658203125, 38.753012320665192, 0.0 ], [ -0.00274658203125, 38.754083275791409, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3140, "task_x": 131070, "task_y": 100448, "task_z": 18, "center_y": 38.719269008022899, "area_in_sqm": 14205.703305006, "perimeter_in_m": 476.75172299993602, "length_x": 119.431030257541, "length_y": 119.432813511145 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 38.719804742642367, 0.0 ], [ -0.001373291015625, 38.719804742642367, 0.0 ], [ -0.001373291015625, 38.718733273403515, 0.0 ], [ -0.00274658203125, 38.718733273403515, 0.0 ], [ -0.00274658203125, 38.719804742642367, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3141, "task_x": 131070, "task_y": 100480, "task_z": 18, "center_y": 38.684973768404802, "area_in_sqm": 14219.223803639399, "perimeter_in_m": 476.97854887950501, "length_x": 119.48808682501399, "length_y": 119.489869591182 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 38.685509760011996, 0.0 ], [ -0.001373291015625, 38.685509760011996, 0.0 ], [ -0.001373291015625, 38.684437776797608, 0.0 ], [ -0.00274658203125, 38.684437776797608, 0.0 ], [ -0.00274658203125, 38.685509760011996, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3142, "task_x": 131070, "task_y": 100512, "task_z": 18, "center_y": 38.650662083773497, "area_in_sqm": 14232.7469437122, "perimeter_in_m": 477.20531123643502, "length_x": 119.545127751409, "length_y": 119.546910027358 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 38.651198332299494, 0.0 ], [ -0.001373291015625, 38.651198332299494, 0.0 ], [ -0.001373291015625, 38.650125835247458, 0.0 ], [ -0.00274658203125, 38.650125835247458, 0.0 ], [ -0.00274658203125, 38.651198332299494, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3143, "task_x": 131070, "task_y": 100544, "task_z": 18, "center_y": 38.6163339585542, "area_in_sqm": 14246.272699356099, "perimeter_in_m": 477.43200972112197, "length_x": 119.60215294766, "length_y": 119.603934730606 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 38.616870463929729, 0.0 ], [ -0.001373291015625, 38.616870463929729, 0.0 ], [ -0.001373291015625, 38.615797453178736, 0.0 ], [ -0.00274658203125, 38.615797453178736, 0.0 ], [ -0.00274658203125, 38.616870463929729, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3144, "task_x": 131070, "task_y": 100576, "task_z": 18, "center_y": 38.5819893971981, "area_in_sqm": 14259.801043629601, "perimeter_in_m": 477.65864397601598, "length_x": 119.659162324609, "length_y": 119.660943611764 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 38.582526159353307, 0.0 ], [ -0.001373291015625, 38.582526159353307, 0.0 ], [ -0.001373291015625, 38.581452635042837, 0.0 ], [ -0.00274658203125, 38.581452635042837, 0.0 ], [ -0.00274658203125, 38.582526159353307, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3145, "task_x": 131070, "task_y": 100608, "task_z": 18, "center_y": 38.5476284041818, "area_in_sqm": 14273.3319493532, "perimeter_in_m": 477.885213639158, "length_x": 119.716155793008, "length_y": 119.71793658158199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 38.548165423046562, 0.0 ], [ -0.001373291015625, 38.548165423046562, 0.0 ], [ -0.001373291015625, 38.547091385316946, 0.0 ], [ -0.00274658203125, 38.547091385316946, 0.0 ], [ -0.00274658203125, 38.548165423046562, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3146, "task_x": 131070, "task_y": 100640, "task_z": 18, "center_y": 38.513250984007797, "area_in_sqm": 14286.865390896801, "perimeter_in_m": 478.11171836889099, "length_x": 119.773133263516, "length_y": 119.774913550715 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 38.513788259511635, 0.0 ], [ -0.001373291015625, 38.513788259511635, 0.0 ], [ -0.001373291015625, 38.512713708503952, 0.0 ], [ -0.00274658203125, 38.512713708503952, 0.0 ], [ -0.00274658203125, 38.513788259511635, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3147, "task_x": 131070, "task_y": 100672, "task_z": 18, "center_y": 38.4788571412045, "area_in_sqm": 14300.4013410807, "perimeter_in_m": 478.33815780148501, "length_x": 119.830094646704, "length_y": 119.83187442973301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 38.479394673276431, 0.0 ], [ -0.001373291015625, 38.479394673276431, 0.0 ], [ -0.001373291015625, 38.478319609132605, 0.0 ], [ -0.00274658203125, 38.478319609132605, 0.0 ], [ -0.00274658203125, 38.479394673276431, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3148, "task_x": 131070, "task_y": 100704, "task_z": 18, "center_y": 38.444446880326097, "area_in_sqm": 14313.9397728443, "perimeter_in_m": 478.56453158787502, "length_x": 119.88703985305099, "length_y": 119.88881912911 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 38.444984668894705, 0.0 ], [ -0.001373291015625, 38.444984668894705, 0.0 ], [ -0.001373291015625, 38.443909091757462, 0.0 ], [ -0.00274658203125, 38.443909091757462, 0.0 ], [ -0.00274658203125, 38.444984668894705, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3149, "task_x": 131070, "task_y": 100736, "task_z": 18, "center_y": 38.410020205952499, "area_in_sqm": 14327.4806598425, "perimeter_in_m": 478.79083936821797, "length_x": 119.943968792945, "length_y": 119.945747559232 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 38.410558250946075, 0.0 ], [ -0.001373291015625, 38.410558250946075, 0.0 ], [ -0.001373291015625, 38.409482160958937, 0.0 ], [ -0.00274658203125, 38.409482160958937, 0.0 ], [ -0.00274658203125, 38.410558250946075, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3150, "task_x": 131070, "task_y": 100768, "task_z": 18, "center_y": 38.375577122689698, "area_in_sqm": 14341.0239741802, "perimeter_in_m": 479.01708078107202, "length_x": 120.000881376685, "length_y": 120.002659630396 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 38.376115424036023, 0.0 ], [ -0.001373291015625, 38.376115424036023, 0.0 ], [ -0.001373291015625, 38.375038821343331, 0.0 ], [ -0.00274658203125, 38.375038821343331, 0.0 ], [ -0.00274658203125, 38.376115424036023, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3151, "task_x": 131070, "task_y": 100800, "task_z": 18, "center_y": 38.341117635169397, "area_in_sqm": 14354.5696897507, "perimeter_in_m": 479.24325547968903, "length_x": 120.05777751447999, "length_y": 120.059555252808 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 38.341656192795931, 0.0 ], [ -0.001373291015625, 38.341656192795931, 0.0 ], [ -0.001373291015625, 38.340579077542834, 0.0 ], [ -0.00274658203125, 38.340579077542834, 0.0 ], [ -0.00274658203125, 38.341656192795931, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3152, "task_x": 131070, "task_y": 100832, "task_z": 18, "center_y": 38.306641748049401, "area_in_sqm": 14368.117779254901, "perimeter_in_m": 479.46936310510199, "length_x": 120.114657116449, "length_y": 120.116434336583 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 38.307180561883143, 0.0 ], [ -0.001373291015625, 38.307180561883143, 0.0 ], [ -0.001373291015625, 38.306102934215609, 0.0 ], [ -0.00274658203125, 38.306102934215609, 0.0 ], [ -0.00274658203125, 38.307180561883143, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3153, "task_x": 131070, "task_y": 100864, "task_z": 18, "center_y": 38.272149466013303, "area_in_sqm": 14381.6682163477, "perimeter_in_m": 479.69540329889202, "length_x": 120.17152009262099, "length_y": 120.173296791748 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 38.272688535980954, 0.0 ], [ -0.001373291015625, 38.272688535980954, 0.0 ], [ -0.001373291015625, 38.271610396045737, 0.0 ], [ -0.00274658203125, 38.271610396045737, 0.0 ], [ -0.00274658203125, 38.272688535980954, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3154, "task_x": 131070, "task_y": 100896, "task_z": 18, "center_y": 38.237640793771, "area_in_sqm": 14395.2209724188, "perimeter_in_m": 479.92137569964399, "length_x": 120.22836635293601, "length_y": 120.230142528241 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 38.238180119798635, 0.0 ], [ -0.001373291015625, 38.238180119798635, 0.0 ], [ -0.001373291015625, 38.237101467743344, 0.0 ], [ -0.00274658203125, 38.237101467743344, 0.0 ], [ -0.00274658203125, 38.238180119798635, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3155, "task_x": 131070, "task_y": 100928, "task_z": 18, "center_y": 38.203115736058002, "area_in_sqm": 14408.7760213614, "perimeter_in_m": 480.147279959184, "length_x": 120.285195807245, "length_y": 120.286971455908 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 38.203655318071498, 0.0 ], [ -0.001373291015625, 38.203655318071498, 0.0 ], [ -0.001373291015625, 38.2025761540445, 0.0 ], [ -0.00274658203125, 38.2025761540445, 0.0 ], [ -0.00274658203125, 38.203655318071498, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3156, "task_x": 131070, "task_y": 100960, "task_z": 18, "center_y": 38.168574297636098, "area_in_sqm": 14422.3333349228, "perimeter_in_m": 480.373115703731, "length_x": 120.34200836530999, "length_y": 120.34378348451 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 38.169114135560847, 0.0 ], [ -0.001373291015625, 38.169114135560847, 0.0 ], [ -0.001373291015625, 38.168034459711386, 0.0 ], [ -0.00274658203125, 38.168034459711386, 0.0 ], [ -0.00274658203125, 38.169114135560847, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3157, "task_x": 131070, "task_y": 100992, "task_z": 18, "center_y": 38.134016483293202, "area_in_sqm": 14435.8928866386, "perimeter_in_m": 480.598882588317, "length_x": 120.39880393680301, "length_y": 120.40057852371601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 38.134556577054113, 0.0 ], [ -0.001373291015625, 38.134556577054113, 0.0 ], [ -0.001373291015625, 38.133476389532198, 0.0 ], [ -0.00274658203125, 38.133476389532198, 0.0 ], [ -0.00274658203125, 38.134556577054113, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3158, "task_x": 131070, "task_y": 101024, "task_z": 18, "center_y": 38.099442297842998, "area_in_sqm": 14449.4546494484, "perimeter_in_m": 480.82458025930401, "length_x": 120.455582431308, "length_y": 120.457356483108 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 38.099982647364797, 0.0 ], [ -0.001373291015625, 38.099982647364797, 0.0 ], [ -0.001373291015625, 38.098901948321249, 0.0 ], [ -0.00274658203125, 38.098901948321249, 0.0 ], [ -0.00274658203125, 38.099982647364797, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3159, "task_x": 131070, "task_y": 101056, "task_z": 18, "center_y": 38.064851746125697, "area_in_sqm": 14463.018594622599, "perimeter_in_m": 481.05020833674303, "length_x": 120.512343758322, "length_y": 120.51411727217901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 38.06539235133247, 0.0 ], [ -0.001373291015625, 38.06539235133247, 0.0 ], [ -0.001373291015625, 38.064311140918988, 0.0 ], [ -0.00274658203125, 38.064311140918988, 0.0 ], [ -0.00274658203125, 38.06539235133247, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3160, "task_x": 131070, "task_y": 101088, "task_z": 18, "center_y": 38.030244833007501, "area_in_sqm": 14476.584695458399, "perimeter_in_m": 481.27576647726102, "length_x": 120.569087827253, "length_y": 120.57086080033299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 38.030785693822949, 0.0 ], [ -0.001373291015625, 38.030785693822949, 0.0 ], [ -0.001373291015625, 38.029703972191989, 0.0 ], [ -0.00274658203125, 38.029703972191989, 0.0 ], [ -0.00274658203125, 38.030785693822949, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3161, "task_x": 131070, "task_y": 101120, "task_z": 18, "center_y": 37.995621563380503, "area_in_sqm": 14490.1529239416, "perimeter_in_m": 481.50125431258402, "length_x": 120.625814547419, "length_y": 120.62758697688901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 37.996162679728116, 0.0 ], [ -0.001373291015625, 37.996162679728116, 0.0 ], [ -0.001373291015625, 37.99508044703299, 0.0 ], [ -0.00274658203125, 37.99508044703299, 0.0 ], [ -0.00274658203125, 37.996162679728116, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3162, "task_x": 131070, "task_y": 101152, "task_z": 18, "center_y": 37.9609819421635, "area_in_sqm": 14503.7232532501, "perimeter_in_m": 481.72667149263202, "length_x": 120.68252382805299, "length_y": 120.684295711074 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 37.961523313966126, 0.0 ], [ -0.001373291015625, 37.961523313966126, 0.0 ], [ -0.001373291015625, 37.96044057036093, 0.0 ], [ -0.00274658203125, 37.96044057036093, 0.0 ], [ -0.00274658203125, 37.961523313966126, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3163, "task_x": 131070, "task_y": 101184, "task_z": 18, "center_y": 37.9263259743012, "area_in_sqm": 14517.2956550121, "perimeter_in_m": 481.95201765020403, "length_x": 120.739215578299, "length_y": 120.74098691203 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 37.926867601481348, 0.0 ], [ -0.001373291015625, 37.926867601481348, 0.0 ], [ -0.001373291015625, 37.925784347121009, 0.0 ], [ -0.00274658203125, 37.925784347121009, 0.0 ], [ -0.00274658203125, 37.926867601481348, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3164, "task_x": 131070, "task_y": 101216, "task_z": 18, "center_y": 37.891653664764497, "area_in_sqm": 14530.870101571099, "perimeter_in_m": 482.177292422167, "length_x": 120.79588970721299, "length_y": 120.797660488811 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 37.892195547244349, 0.0 ], [ -0.001373291015625, 37.892195547244349, 0.0 ], [ -0.001373291015625, 37.891111782284639, 0.0 ], [ -0.00274658203125, 37.891111782284639, 0.0 ], [ -0.00274658203125, 37.892195547244349, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3165, "task_x": 131070, "task_y": 101248, "task_z": 18, "center_y": 37.856965018550802, "area_in_sqm": 14544.4465651512, "perimeter_in_m": 482.40249544946198, "length_x": 120.852546123766, "length_y": 120.85431635038501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 37.857507156252026, 0.0 ], [ -0.001373291015625, 37.857507156252026, 0.0 ], [ -0.001373291015625, 37.856422880849514, 0.0 ], [ -0.00274658203125, 37.856422880849514, 0.0 ], [ -0.00274658203125, 37.857507156252026, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3166, "task_x": 131070, "task_y": 101280, "task_z": 18, "center_y": 37.822260040683602, "area_in_sqm": 14558.025017857601, "perimeter_in_m": 482.62762637779798, "length_x": 120.909184736838, "length_y": 120.91095440562999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 37.822802433527571, 0.0 ], [ -0.001373291015625, 37.822802433527571, 0.0 ], [ -0.001373291015625, 37.821717647839641, 0.0 ], [ -0.00274658203125, 37.821717647839641, 0.0 ], [ -0.00274658203125, 37.822802433527571, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3167, "task_x": 131070, "task_y": 101312, "task_z": 18, "center_y": 37.787538736212902, "area_in_sqm": 14571.605431318299, "perimeter_in_m": 482.85268482657699, "length_x": 120.965805455227, "length_y": 120.967574563339 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 37.788081384120453, 0.0 ], [ -0.001373291015625, 37.788081384120453, 0.0 ], [ -0.001373291015625, 37.786996088305358, 0.0 ], [ -0.00274658203125, 37.786996088305358, 0.0 ], [ -0.00274658203125, 37.788081384120453, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3168, "task_x": 131070, "task_y": 101344, "task_z": 18, "center_y": 37.752801110214897, "area_in_sqm": 14585.187778830499, "perimeter_in_m": 483.07767045601798, "length_x": 121.02240818764101, "length_y": 121.024176732219 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 37.75334401310657, 0.0 ], [ -0.001373291015625, 37.75334401310657, 0.0 ], [ -0.001373291015625, 37.752258207323337, 0.0 ], [ -0.00274658203125, 37.752258207323337, 0.0 ], [ -0.00274658203125, 37.75334401310657, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3169, "task_x": 131070, "task_y": 101376, "task_z": 18, "center_y": 37.718047167792399, "area_in_sqm": 14598.7720309496, "perimeter_in_m": 483.30258288589698, "length_x": 121.078992842703, "length_y": 121.080760820891 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 37.718590325588139, 0.0 ], [ -0.001373291015625, 37.718590325588139, 0.0 ], [ -0.001373291015625, 37.717504009996645, 0.0 ], [ -0.00274658203125, 37.717504009996645, 0.0 ], [ -0.00274658203125, 37.718590325588139, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3170, "task_x": 131070, "task_y": 101408, "task_z": 18, "center_y": 37.683276914074298, "area_in_sqm": 14612.358160018901, "perimeter_in_m": 483.52742175913602, "length_x": 121.135559328949, "length_y": 121.137326737886 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 37.683820326693805, 0.0 ], [ -0.001373291015625, 37.683820326693805, 0.0 ], [ -0.001373291015625, 37.682733501454749, 0.0 ], [ -0.00274658203125, 37.682733501454749, 0.0 ], [ -0.00274658203125, 37.683820326693805, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3171, "task_x": 131070, "task_y": 101440, "task_z": 18, "center_y": 37.648490354216101, "area_in_sqm": 14625.9461385012, "perimeter_in_m": 483.75218671990598, "length_x": 121.19210755482899, "length_y": 121.19387439165401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 37.649034021578643, 0.0 ], [ -0.001373291015625, 37.649034021578643, 0.0 ], [ -0.001373291015625, 37.647946686853537, 0.0 ], [ -0.00274658203125, 37.647946686853537, 0.0 ], [ -0.00274658203125, 37.649034021578643, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3172, "task_x": 131070, "task_y": 101472, "task_z": 18, "center_y": 37.613687493399802, "area_in_sqm": 14639.5359374285, "perimeter_in_m": 483.97687739666901, "length_x": 121.248637428709, "length_y": 121.250403690556 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 37.614231415424165, 0.0 ], [ -0.001373291015625, 37.614231415424165, 0.0 ], [ -0.001373291015625, 37.61314357137536, 0.0 ], [ -0.00274658203125, 37.61314357137536, 0.0 ], [ -0.00274658203125, 37.614231415424165, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3173, "task_x": 131070, "task_y": 101504, "task_z": 18, "center_y": 37.5788683368337, "area_in_sqm": 14653.1275291443, "perimeter_in_m": 484.20149343043897, "length_x": 121.305148858866, "length_y": 121.306914542868 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 37.579412513438385, 0.0 ], [ -0.001373291015625, 37.579412513438385, 0.0 ], [ -0.001373291015625, 37.578324160229059, 0.0 ], [ -0.00274658203125, 37.578324160229059, 0.0 ], [ -0.00274658203125, 37.579412513438385, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3174, "task_x": 131070, "task_y": 101536, "task_z": 18, "center_y": 37.544032889752899, "area_in_sqm": 14666.720884919199, "perimeter_in_m": 484.42603445428398, "length_x": 121.361641753496, "length_y": 121.36340685678201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 37.544577320855822, 0.0 ], [ -0.001373291015625, 37.544577320855822, 0.0 ], [ -0.001373291015625, 37.543488458649968, 0.0 ], [ -0.00274658203125, 37.543488458649968, 0.0 ], [ -0.00274658203125, 37.544577320855822, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3175, "task_x": 131070, "task_y": 101568, "task_z": 18, "center_y": 37.509181157418702, "area_in_sqm": 14680.3159761429, "perimeter_in_m": 484.650500096173, "length_x": 121.418116020705, "length_y": 121.419880540403 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 37.509725842937499, 0.0 ], [ -0.001373291015625, 37.509725842937499, 0.0 ], [ -0.001373291015625, 37.508636471899976, 0.0 ], [ -0.00274658203125, 37.508636471899976, 0.0 ], [ -0.00274658203125, 37.509725842937499, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3176, "task_x": 131070, "task_y": 101600, "task_z": 18, "center_y": 37.474313145119197, "area_in_sqm": 14693.912774443599, "perimeter_in_m": 484.87489000439399, "length_x": 121.474571568518, "length_y": 121.476335501752 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 37.474858084971025, 0.0 ], [ -0.001373291015625, 37.474858084971025, 0.0 ], [ -0.001373291015625, 37.473768205267483, 0.0 ], [ -0.00274658203125, 37.473768205267483, 0.0 ], [ -0.00274658203125, 37.474858084971025, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3177, "task_x": 131070, "task_y": 101632, "task_z": 18, "center_y": 37.439428858169002, "area_in_sqm": 14707.5112514496, "perimeter_in_m": 485.09920380022902, "length_x": 121.53100830487401, "length_y": 121.532771648766 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 37.439974052270571, 0.0 ], [ -0.001373291015625, 37.439974052270571, 0.0 ], [ -0.001373291015625, 37.438883664067511, 0.0 ], [ -0.00274658203125, 37.438883664067511, 0.0 ], [ -0.00274658203125, 37.439974052270571, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3178, "task_x": 131070, "task_y": 101664, "task_z": 18, "center_y": 37.404528301909302, "area_in_sqm": 14721.111378669701, "perimeter_in_m": 485.32344113728698, "length_x": 121.58742613762701, "length_y": 121.589188889295 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 37.405073750176925, 0.0 ], [ -0.001373291015625, 37.405073750176925, 0.0 ], [ -0.001373291015625, 37.403982853641679, 0.0 ], [ -0.00274658203125, 37.403982853641679, 0.0 ], [ -0.00274658203125, 37.405073750176925, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3179, "task_x": 131070, "task_y": 101696, "task_z": 18, "center_y": 37.369611481707899, "area_in_sqm": 14734.7131276131, "perimeter_in_m": 485.54760163368701, "length_x": 121.64382497454601, "length_y": 121.64558713110701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 37.370157184057518, 0.0 ], [ -0.001373291015625, 37.370157184057518, 0.0 ], [ -0.001373291015625, 37.36906577935823, 0.0 ], [ -0.00274658203125, 37.36906577935823, 0.0 ], [ -0.00274658203125, 37.370157184057518, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3180, "task_x": 131070, "task_y": 101728, "task_z": 18, "center_y": 37.334678402959199, "area_in_sqm": 14748.3164687157, "perimeter_in_m": 485.77168492718999, "length_x": 121.700204723317, "length_y": 121.701966281886 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 37.335224359306387, 0.0 ], [ -0.001373291015625, 37.335224359306387, 0.0 ], [ -0.001373291015625, 37.334132446612081, 0.0 ], [ -0.00274658203125, 37.334132446612081, 0.0 ], [ -0.00274658203125, 37.335224359306387, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3181, "task_x": 131070, "task_y": 101760, "task_z": 18, "center_y": 37.299729071084599, "area_in_sqm": 14761.921374321, "perimeter_in_m": 485.995690646176, "length_x": 121.75656529154401, "length_y": 121.758326249231 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 37.300275281344305, 0.0 ], [ -0.001373291015625, 37.300275281344305, 0.0 ], [ -0.001373291015625, 37.2991828608248, 0.0 ], [ -0.00274658203125, 37.2991828608248, 0.0 ], [ -0.00274658203125, 37.300275281344305, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3182, "task_x": 131070, "task_y": 101792, "task_z": 18, "center_y": 37.264763491531703, "area_in_sqm": 14775.527814745899, "perimeter_in_m": 486.21961843160699, "length_x": 121.812906586743, "length_y": 121.814666940656 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 37.265309955618726, 0.0 ], [ -0.001373291015625, 37.265309955618726, 0.0 ], [ -0.001373291015625, 37.264217027444687, 0.0 ], [ -0.00274658203125, 37.264217027444687, 0.0 ], [ -0.00274658203125, 37.265309955618726, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3183, "task_x": 131070, "task_y": 101824, "task_z": 18, "center_y": 37.229781669775299, "area_in_sqm": 14789.135762214701, "perimeter_in_m": 486.44346792073799, "length_x": 121.86922851635001, "length_y": 121.870988263596 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 37.230328387603862, 0.0 ], [ -0.001373291015625, 37.230328387603862, 0.0 ], [ -0.001373291015625, 37.229234951946765, 0.0 ], [ -0.00274658203125, 37.229234951946765, 0.0 ], [ -0.00274658203125, 37.230328387603862, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3184, "task_x": 131070, "task_y": 101856, "task_z": 18, "center_y": 37.194783611316701, "area_in_sqm": 14802.745186567299, "perimeter_in_m": 486.66723873441998, "length_x": 121.925530987716, "length_y": 121.927290125398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 37.195330582800629, 0.0 ], [ -0.001373291015625, 37.195330582800629, 0.0 ], [ -0.001373291015625, 37.19423663983283, 0.0 ], [ -0.00274658203125, 37.19423663983283, 0.0 ], [ -0.00274658203125, 37.195330582800629, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3185, "task_x": 131070, "task_y": 101888, "task_z": 18, "center_y": 37.159769321684102, "area_in_sqm": 14816.3560590744, "perimeter_in_m": 486.89093051029602, "length_x": 121.98181390811, "length_y": 121.983572433329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 37.160316546736759, 0.0 ], [ -0.001373291015625, 37.160316546736759, 0.0 ], [ -0.001373291015625, 37.159222096631424, 0.0 ], [ -0.00274658203125, 37.159222096631424, 0.0 ], [ -0.00274658203125, 37.160316546736759, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3186, "task_x": 131070, "task_y": 101920, "task_z": 18, "center_y": 37.124738806432397, "area_in_sqm": 14829.9683516026, "perimeter_in_m": 487.11454288089902, "length_x": 122.038077184717, "length_y": 122.039835094572 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 37.125286284966791, 0.0 ], [ -0.001373291015625, 37.125286284966791, 0.0 ], [ -0.001373291015625, 37.124191327897933, 0.0 ], [ -0.00274658203125, 37.124191327897933, 0.0 ], [ -0.00274658203125, 37.125286284966791, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3187, "task_x": 131070, "task_y": 101952, "task_z": 18, "center_y": 37.089692071143297, "area_in_sqm": 14843.582034230199, "perimeter_in_m": 487.33807547508297, "length_x": 122.094320724642, "length_y": 122.09607801622801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 37.090239803072066, 0.0 ], [ -0.001373291015625, 37.090239803072066, 0.0 ], [ -0.001373291015625, 37.089144339214542, 0.0 ], [ -0.00274658203125, 37.089144339214542, 0.0 ], [ -0.00274658203125, 37.090239803072066, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3188, "task_x": 131070, "task_y": 101984, "task_z": 18, "center_y": 37.054629121425499, "area_in_sqm": 14857.1970779896, "perimeter_in_m": 487.56152792858899, "length_x": 122.150544434905, "length_y": 122.152301105315 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 37.055177106660807, 0.0 ], [ -0.001373291015625, 37.055177106660807, 0.0 ], [ -0.001373291015625, 37.054081136190298, 0.0 ], [ -0.00274658203125, 37.054081136190298, 0.0 ], [ -0.00274658203125, 37.055177106660807, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3189, "task_x": 131070, "task_y": 102016, "task_z": 18, "center_y": 37.019549962914603, "area_in_sqm": 14870.8134535551, "perimeter_in_m": 487.78489986995299, "length_x": 122.206748222445, "length_y": 122.20850426877 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 37.020098201368114, 0.0 ], [ -0.001373291015625, 37.020098201368114, 0.0 ], [ -0.001373291015625, 37.019001724461148, 0.0 ], [ -0.00274658203125, 37.019001724461148, 0.0 ], [ -0.00274658203125, 37.020098201368114, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3190, "task_x": 131070, "task_y": 102048, "task_z": 18, "center_y": 36.984454601272901, "area_in_sqm": 14884.431131601301, "perimeter_in_m": 488.00819091977701, "length_x": 122.262931994119, "length_y": 122.264687413446 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 36.985003092855955, 0.0 ], [ -0.001373291015625, 36.985003092855955, 0.0 ], [ -0.001373291015625, 36.983906109689919, 0.0 ], [ -0.00274658203125, 36.983906109689919, 0.0 ], [ -0.00274658203125, 36.985003092855955, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3191, "task_x": 131070, "task_y": 102080, "task_z": 18, "center_y": 36.949343042189803, "area_in_sqm": 14898.050083279601, "perimeter_in_m": 488.23140072956897, "length_x": 122.319095656702, "length_y": 122.32085044611701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 36.949891786813275, 0.0 ], [ -0.001373291015625, 36.949891786813275, 0.0 ], [ -0.001373291015625, 36.948794297566359, 0.0 ], [ -0.00274658203125, 36.948794297566359, 0.0 ], [ -0.00274658203125, 36.949891786813275, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3192, "task_x": 131070, "task_y": 102112, "task_z": 18, "center_y": 36.914215291381602, "area_in_sqm": 14911.6702787876, "perimeter_in_m": 488.45452890974002, "length_x": 122.375239116888, "length_y": 122.376993273473 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 36.914764288955929, 0.0 ], [ -0.001373291015625, 36.914764288955929, 0.0 ], [ -0.001373291015625, 36.913666293807211, 0.0 ], [ -0.00274658203125, 36.913666293807211, 0.0 ], [ -0.00274658203125, 36.914764288955929, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3193, "task_x": 131070, "task_y": 102144, "task_z": 18, "center_y": 36.879071354591403, "area_in_sqm": 14925.291688442199, "perimeter_in_m": 488.67757510160402, "length_x": 122.43136228129001, "length_y": 122.433115802126 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 36.879620605026759, 0.0 ], [ -0.001373291015625, 36.879620605026759, 0.0 ], [ -0.001373291015625, 36.878522104156133, 0.0 ], [ -0.00274658203125, 36.878522104156133, 0.0 ], [ -0.00274658203125, 36.879620605026759, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3194, "task_x": 131070, "task_y": 102176, "task_z": 18, "center_y": 36.843911237589701, "area_in_sqm": 14938.914283513999, "perimeter_in_m": 488.900538930778, "length_x": 122.48746505643901, "length_y": 122.489217938604 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 36.844460740795618, 0.0 ], [ -0.001373291015625, 36.844460740795618, 0.0 ], [ -0.001373291015625, 36.843361734383819, 0.0 ], [ -0.00274658203125, 36.843361734383819, 0.0 ], [ -0.00274658203125, 36.844460740795618, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3195, "task_x": 131070, "task_y": 102208, "task_z": 18, "center_y": 36.808734946173701, "area_in_sqm": 14952.538033962301, "perimeter_in_m": 489.12342003262597, "length_x": 122.543547348787, "length_y": 122.54529958935601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 36.809284702059379, 0.0 ], [ -0.001373291015625, 36.809284702059379, 0.0 ], [ -0.001373291015625, 36.808185190287986, 0.0 ], [ -0.00274658203125, 36.808185190287986, 0.0 ], [ -0.00274658203125, 36.809284702059379, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3196, "task_x": 131070, "task_y": 102240, "task_z": 18, "center_y": 36.773542486167699, "area_in_sqm": 14966.1629093885, "perimeter_in_m": 489.34621801761199, "length_x": 122.599609064703, "length_y": 122.60136066074899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 36.774092494641941, 0.0 ], [ -0.001373291015625, 36.774092494641941, 0.0 ], [ -0.001373291015625, 36.772992477693407, 0.0 ], [ -0.00274658203125, 36.772992477693407, 0.0 ], [ -0.00274658203125, 36.774092494641941, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3197, "task_x": 131070, "task_y": 102272, "task_z": 18, "center_y": 36.738333863423101, "area_in_sqm": 14979.7888814211, "perimeter_in_m": 489.56893253421498, "length_x": 122.65565011047801, "length_y": 122.657401059072 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 36.738884124394296, 0.0 ], [ -0.001373291015625, 36.738884124394296, 0.0 ], [ -0.001373291015625, 36.737783602451898, 0.0 ], [ -0.00274658203125, 36.737783602451898, 0.0 ], [ -0.00274658203125, 36.738884124394296, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3198, "task_x": 131070, "task_y": 102304, "task_z": 18, "center_y": 36.703109083818497, "area_in_sqm": 14993.4159198999, "perimeter_in_m": 489.79156320107001, "length_x": 122.711670392323, "length_y": 122.713420690531 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 36.703659597194545, 0.0 ], [ -0.001373291015625, 36.703659597194545, 0.0 ], [ -0.001373291015625, 36.702558570442385, 0.0 ], [ -0.00274658203125, 36.702558570442385, 0.0 ], [ -0.00274658203125, 36.703659597194545, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3199, "task_x": 131070, "task_y": 102336, "task_z": 18, "center_y": 36.667868153259398, "area_in_sqm": 15007.0439945459, "perimeter_in_m": 490.01410964655901, "length_x": 122.76766981636599, "length_y": 122.76941946125601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 36.66841891894785, 0.0 ], [ -0.001373291015625, 36.66841891894785, 0.0 ], [ -0.001373291015625, 36.667317387570932, 0.0 ], [ -0.00274658203125, 36.667317387570932, 0.0 ], [ -0.00274658203125, 36.66841891894785, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3200, "task_x": 131070, "task_y": 102368, "task_z": 18, "center_y": 36.632611077678597, "area_in_sqm": 15020.673076272, "perimeter_in_m": 490.23657150243798, "length_x": 122.82364828866, "length_y": 122.825397277292 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 36.63316209558657, 0.0 ], [ -0.001373291015625, 36.63316209558657, 0.0 ], [ -0.001373291015625, 36.632060059770694, 0.0 ], [ -0.00274658203125, 36.632060059770694, 0.0 ], [ -0.00274658203125, 36.63316209558657, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3201, "task_x": 131070, "task_y": 102400, "task_z": 18, "center_y": 36.597337863036103, "area_in_sqm": 15034.303134441399, "perimeter_in_m": 490.45894838405701, "length_x": 122.879605715175, "length_y": 122.881354044611 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 36.597889133070204, 0.0 ], [ -0.001373291015625, 36.597889133070204, 0.0 ], [ -0.001373291015625, 36.596786593002072, 0.0 ], [ -0.00274658203125, 36.596786593002072, 0.0 ], [ -0.00274658203125, 36.597889133070204, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3202, "task_x": 131070, "task_y": 102432, "task_z": 18, "center_y": 36.562048515318999, "area_in_sqm": 15047.9341396093, "perimeter_in_m": 490.68123993488803, "length_x": 122.935542001804, "length_y": 122.93728966910101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 36.562600037385451, 0.0 ], [ -0.001373291015625, 36.562600037385451, 0.0 ], [ -0.001373291015625, 36.561496993252568, 0.0 ], [ -0.00274658203125, 36.561496993252568, 0.0 ], [ -0.00274658203125, 36.562600037385451, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3203, "task_x": 131070, "task_y": 102464, "task_z": 18, "center_y": 36.526743040541596, "area_in_sqm": 15061.5660614967, "perimeter_in_m": 490.90344576856, "length_x": 122.99145705436, "length_y": 122.993204056574 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 36.527294814546231, 0.0 ], [ -0.001373291015625, 36.527294814546231, 0.0 ], [ -0.001373291015625, 36.526191266536969, 0.0 ], [ -0.00274658203125, 36.526191266536969, 0.0 ], [ -0.00274658203125, 36.527294814546231, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3204, "task_x": 131070, "task_y": 102496, "task_z": 18, "center_y": 36.491421444745498, "area_in_sqm": 15075.198870181999, "perimeter_in_m": 491.12556551904999, "length_x": 123.04735077857799, "length_y": 123.049097112761 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 36.491973470593678, 0.0 ], [ -0.001373291015625, 36.491973470593678, 0.0 ], [ -0.001373291015625, 36.490869418897269, 0.0 ], [ -0.00274658203125, 36.490869418897269, 0.0 ], [ -0.00274658203125, 36.491973470593678, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3205, "task_x": 131070, "task_y": 102528, "task_z": 18, "center_y": 36.456083733999499, "area_in_sqm": 15088.8325351477, "perimeter_in_m": 491.34759880746401, "length_x": 123.10322308011401, "length_y": 123.104968743317 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 36.456636011596196, 0.0 ], [ -0.001373291015625, 36.456636011596196, 0.0 ], [ -0.001373291015625, 36.455531456402717, 0.0 ], [ -0.00274658203125, 36.455531456402717, 0.0 ], [ -0.00274658203125, 36.456636011596196, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3206, "task_x": 131070, "task_y": 102560, "task_z": 18, "center_y": 36.420729914399701, "area_in_sqm": 15102.4670268297, "perimeter_in_m": 491.56954526888001, "length_x": 123.159073864546, "length_y": 123.160818853818 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 36.421282443649488, 0.0 ], [ -0.001373291015625, 36.421282443649488, 0.0 ], [ -0.001373291015625, 36.420177385149849, 0.0 ], [ -0.00274658203125, 36.420177385149849, 0.0 ], [ -0.00274658203125, 36.421282443649488, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3207, "task_x": 131070, "task_y": 102592, "task_z": 18, "center_y": 36.385359992069503, "area_in_sqm": 15116.1023142338, "perimeter_in_m": 491.791404512805, "length_x": 123.214903037375, "length_y": 123.21664734976 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 36.385912772876509, 0.0 ], [ -0.001373291015625, 36.385912772876509, 0.0 ], [ -0.001373291015625, 36.384807211262526, 0.0 ], [ -0.00274658203125, 36.384807211262526, 0.0 ], [ -0.00274658203125, 36.385912772876509, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3208, "task_x": 131070, "task_y": 102624, "task_z": 18, "center_y": 36.349973973159798, "area_in_sqm": 15129.738367795901, "perimeter_in_m": 492.01317617967197, "length_x": 123.270710504023, "length_y": 123.272454136566 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 36.350527005427637, 0.0 ], [ -0.001373291015625, 36.350527005427637, 0.0 ], [ -0.001373291015625, 36.34942094089191, 0.0 ], [ -0.00274658203125, 36.34942094089191, 0.0 ], [ -0.00274658203125, 36.350527005427637, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3209, "task_x": 131070, "task_y": 102656, "task_z": 18, "center_y": 36.314571863848499, "area_in_sqm": 15143.375156521801, "perimeter_in_m": 492.23485988363097, "length_x": 123.32649616983601, "length_y": 123.32823911957701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 36.315125147480501, 0.0 ], [ -0.001373291015625, 36.315125147480501, 0.0 ], [ -0.001373291015625, 36.314018580216548, 0.0 ], [ -0.00274658203125, 36.314018580216548, 0.0 ], [ -0.00274658203125, 36.315125147480501, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3210, "task_x": 131070, "task_y": 102688, "task_z": 18, "center_y": 36.279153670341302, "area_in_sqm": 15157.012650251399, "perimeter_in_m": 492.45645525068602, "length_x": 123.38225994008199, "length_y": 123.38400220405801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 36.279707205240172, 0.0 ], [ -0.001373291015625, 36.279707205240172, 0.0 ], [ -0.001373291015625, 36.278600135442339, 0.0 ], [ -0.00274658203125, 36.278600135442339, 0.0 ], [ -0.00274658203125, 36.279707205240172, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3211, "task_x": 131070, "task_y": 102720, "task_z": 18, "center_y": 36.243719398870802, "area_in_sqm": 15170.6508182287, "perimeter_in_m": 492.67796190740199, "length_x": 123.438001719951, "length_y": 123.4397432952 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 36.244273184939075, 0.0 ], [ -0.001373291015625, 36.244273184939075, 0.0 ], [ -0.001373291015625, 36.243165612802585, 0.0 ], [ -0.00274658203125, 36.243165612802585, 0.0 ], [ -0.00274658203125, 36.244273184939075, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3212, "task_x": 131070, "task_y": 102752, "task_z": 18, "center_y": 36.208269055697599, "area_in_sqm": 15184.2896307707, "perimeter_in_m": 492.89937948585498, "length_x": 123.493721414558, "length_y": 123.495462298113 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 36.208823092837122, 0.0 ], [ -0.001373291015625, 36.208823092837122, 0.0 ], [ -0.001373291015625, 36.207715018558005, 0.0 ], [ -0.00274658203125, 36.207715018558005, 0.0 ], [ -0.00274658203125, 36.208823092837122, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3213, "task_x": 131070, "task_y": 102784, "task_z": 18, "center_y": 36.172802647109201, "area_in_sqm": 15197.9290559292, "perimeter_in_m": 493.120707591827, "length_x": 123.549418928942, "length_y": 123.551159117834 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 36.173356935221591, 0.0 ], [ -0.001373291015625, 36.173356935221591, 0.0 ], [ -0.001373291015625, 36.172248358996789, 0.0 ], [ -0.00274658203125, 36.172248358996789, 0.0 ], [ -0.00274658203125, 36.173356935221591, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3214, "task_x": 131070, "task_y": 102816, "task_z": 18, "center_y": 36.137320179420897, "area_in_sqm": 15211.5690642595, "perimeter_in_m": 493.34194586132901, "length_x": 123.605094168063, "length_y": 123.606833659321 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 36.137874718407268, 0.0 ], [ -0.001373291015625, 36.137874718407268, 0.0 ], [ -0.001373291015625, 36.136765640434554, 0.0 ], [ -0.00274658203125, 36.136765640434554, 0.0 ], [ -0.00274658203125, 36.137874718407268, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3215, "task_x": 131070, "task_y": 102848, "task_z": 18, "center_y": 36.101821658975403, "area_in_sqm": 15225.209624290501, "perimeter_in_m": 493.56309391469301, "length_x": 123.660747036809, "length_y": 123.66248582745899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 36.102376448736429, 0.0 ], [ -0.001373291015625, 36.102376448736429, 0.0 ], [ -0.001373291015625, 36.101266869214456, 0.0 ], [ -0.00274658203125, 36.101266869214456, 0.0 ], [ -0.00274658203125, 36.102376448736429, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3216, "task_x": 131070, "task_y": 102880, "task_z": 18, "center_y": 36.066307092142999, "area_in_sqm": 15238.8507059813, "perimeter_in_m": 493.78415137915601, "length_x": 123.71637743998799, "length_y": 123.718115527054 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 36.066862132578869, 0.0 ], [ -0.001373291015625, 36.066862132578869, 0.0 ], [ -0.001373291015625, 36.065752051707115, 0.0 ], [ -0.00274658203125, 36.065752051707115, 0.0 ], [ -0.00274658203125, 36.066862132578869, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3217, "task_x": 131070, "task_y": 102912, "task_z": 18, "center_y": 36.030776485321297, "area_in_sqm": 15252.4922778606, "perimeter_in_m": 494.005117869819, "length_x": 123.771985282336, "length_y": 123.77372266284 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 36.031331776331868, 0.0 ], [ -0.001373291015625, 36.031331776331868, 0.0 ], [ -0.001373291015625, 36.030221194310698, 0.0 ], [ -0.00274658203125, 36.030221194310698, 0.0 ], [ -0.00274658203125, 36.031331776331868, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3218, "task_x": 131070, "task_y": 102944, "task_z": 18, "center_y": 35.995229844935601, "area_in_sqm": 15266.134309053399, "perimeter_in_m": 494.22599300514503, "length_x": 123.82757046851199, "length_y": 123.829307139474 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 35.995785386420316, 0.0 ], [ -0.001373291015625, 35.995785386420316, 0.0 ], [ -0.001373291015625, 35.994674303450964, 0.0 ], [ -0.00274658203125, 35.994674303450964, 0.0 ], [ -0.00274658203125, 35.995785386420316, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3219, "task_x": 131070, "task_y": 102976, "task_z": 18, "center_y": 35.959667177439002, "area_in_sqm": 15279.776769042001, "perimeter_in_m": 494.44677642043598, "length_x": 123.883132903101, "length_y": 123.884868861538 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 35.96022296929668, 0.0 ], [ -0.001373291015625, 35.96022296929668, 0.0 ], [ -0.001373291015625, 35.959111385581217, 0.0 ], [ -0.00274658203125, 35.959111385581217, 0.0 ], [ -0.00274658203125, 35.96022296929668, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3220, "task_x": 131070, "task_y": 103008, "task_z": 18, "center_y": 35.9240884893117, "area_in_sqm": 15293.419626593601, "perimeter_in_m": 494.66746772609599, "length_x": 123.938672490613, "length_y": 123.940407733539 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 35.924644531440983, 0.0 ], [ -0.001373291015625, 35.924644531440983, 0.0 ], [ -0.001373291015625, 35.923532447182353, 0.0 ], [ -0.00274658203125, 35.923532447182353, 0.0 ], [ -0.00274658203125, 35.924644531440983, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3221, "task_x": 131070, "task_y": 103040, "task_z": 18, "center_y": 35.888493787061897, "area_in_sqm": 15307.0628504753, "perimeter_in_m": 494.88806654866198, "length_x": 123.99418913548401, "length_y": 123.995923659911 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 35.889050079360914, 0.0 ], [ -0.001373291015625, 35.889050079360914, 0.0 ], [ -0.001373291015625, 35.887937494762937, 0.0 ], [ -0.00274658203125, 35.887937494762937, 0.0 ], [ -0.00274658203125, 35.889050079360914, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3222, "task_x": 131070, "task_y": 103072, "task_z": 18, "center_y": 35.852883077225499, "area_in_sqm": 15320.706410050399, "perimeter_in_m": 495.10857250956298, "length_x": 124.049682742074, "length_y": 124.051416545013 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 35.853439619591803, 0.0 ], [ -0.001373291015625, 35.853439619591803, 0.0 ], [ -0.001373291015625, 35.852326534859152, 0.0 ], [ -0.00274658203125, 35.852326534859152, 0.0 ], [ -0.00274658203125, 35.853439619591803, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3223, "task_x": 131070, "task_y": 103104, "task_z": 18, "center_y": 35.817256366365697, "area_in_sqm": 15334.350274086, "perimeter_in_m": 495.32898522585498, "length_x": 124.10515321467101, "length_y": 124.10688629313 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 35.817813158696623, 0.0 ], [ -0.001373291015625, 35.817813158696623, 0.0 ], [ -0.001373291015625, 35.816699574034836, 0.0 ], [ -0.00274658203125, 35.816699574034836, 0.0 ], [ -0.00274658203125, 35.817813158696623, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3224, "task_x": 131070, "task_y": 103136, "task_z": 18, "center_y": 35.781613661073798, "area_in_sqm": 15347.9944109917, "perimeter_in_m": 495.549304320803, "length_x": 124.160600457489, "length_y": 124.16233280847401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 35.782170703266061, 0.0 ], [ -0.001373291015625, 35.782170703266061, 0.0 ], [ -0.001373291015625, 35.781056618881536, 0.0 ], [ -0.00274658203125, 35.781056618881536, 0.0 ], [ -0.00274658203125, 35.782170703266061, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3225, "task_x": 131070, "task_y": 103168, "task_z": 18, "center_y": 35.745954967968501, "area_in_sqm": 15361.6387894154, "perimeter_in_m": 495.76952940906398, "length_x": 124.216024374669, "length_y": 124.21775599518099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 35.746512259918497, 0.0 ], [ -0.001373291015625, 35.746512259918497, 0.0 ], [ -0.001373291015625, 35.745397676018527, 0.0 ], [ -0.00274658203125, 35.745397676018527, 0.0 ], [ -0.00274658203125, 35.746512259918497, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3226, "task_x": 131070, "task_y": 103200, "task_z": 18, "center_y": 35.7102802936964, "area_in_sqm": 15375.283378362699, "perimeter_in_m": 495.98966011927598, "length_x": 124.271424870277, "length_y": 124.273155757319 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 35.710837835300083, 0.0 ], [ -0.001373291015625, 35.710837835300083, 0.0 ], [ -0.001373291015625, 35.709722752092794, 0.0 ], [ -0.00274658203125, 35.709722752092794, 0.0 ], [ -0.00274658203125, 35.710837835300083, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3227, "task_x": 131070, "task_y": 103232, "task_z": 18, "center_y": 35.674589644931899, "area_in_sqm": 15388.9281466007, "perimeter_in_m": 496.20969607076501, "length_x": 124.32680184830799, "length_y": 124.32853199887801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 35.675147436084664, 0.0 ], [ -0.001373291015625, 35.675147436084664, 0.0 ], [ -0.001373291015625, 35.674031853779056, 0.0 ], [ -0.00274658203125, 35.674031853779056, 0.0 ], [ -0.00274658203125, 35.675147436084664, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3228, "task_x": 131070, "task_y": 103264, "task_z": 18, "center_y": 35.638883028376902, "area_in_sqm": 15402.573062658301, "perimeter_in_m": 496.42963687845503, "length_x": 124.382155212684, "length_y": 124.383884623779 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 35.63944106897393, 0.0 ], [ -0.001373291015625, 35.63944106897393, 0.0 ], [ -0.001373291015625, 35.63832498777986, 0.0 ], [ -0.00274658203125, 35.63832498777986, 0.0 ], [ -0.00274658203125, 35.63944106897393, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3229, "task_x": 131070, "task_y": 103296, "task_z": 18, "center_y": 35.603160450761401, "area_in_sqm": 15416.2180942297, "perimeter_in_m": 496.64948215079102, "length_x": 124.43748486725499, "length_y": 124.439213535867 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 35.603718740697303, 0.0 ], [ -0.001373291015625, 35.603718740697303, 0.0 ], [ -0.001373291015625, 35.602602160825555, 0.0 ], [ -0.00274658203125, 35.602602160825555, 0.0 ], [ -0.00274658203125, 35.603718740697303, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3230, "task_x": 131070, "task_y": 103328, "task_z": 18, "center_y": 35.567421918843202, "area_in_sqm": 15429.863210678101, "perimeter_in_m": 496.869231529285, "length_x": 124.492790715797, "length_y": 124.49451863892 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 35.567980458012073, 0.0 ], [ -0.001373291015625, 35.567980458012073, 0.0 ], [ -0.001373291015625, 35.566863379674245, 0.0 ], [ -0.00274658203125, 35.566863379674245, 0.0 ], [ -0.00274658203125, 35.567980458012073, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3231, "task_x": 131070, "task_y": 103360, "task_z": 18, "center_y": 35.531667439407698, "area_in_sqm": 15443.508380293801, "perimeter_in_m": 497.08888461714901, "length_x": 124.548072662016, "length_y": 124.549799836639 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 35.532226227703376, 0.0 ], [ -0.001373291015625, 35.532226227703376, 0.0 ], [ -0.001373291015625, 35.531108651111936, 0.0 ], [ -0.00274658203125, 35.531108651111936, 0.0 ], [ -0.00274658203125, 35.532226227703376, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3232, "task_x": 131070, "task_y": 103392, "task_z": 18, "center_y": 35.495897019268298, "area_in_sqm": 15457.153570652001, "perimeter_in_m": 497.30844103583001, "length_x": 124.603330609547, "length_y": 124.605057032657 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 35.496456056584151, 0.0 ], [ -0.001373291015625, 35.496456056584151, 0.0 ], [ -0.001373291015625, 35.495337981952481, 0.0 ], [ -0.00274658203125, 35.495337981952481, 0.0 ], [ -0.00274658203125, 35.496456056584151, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3233, "task_x": 131070, "task_y": 103424, "task_z": 18, "center_y": 35.460110665266399, "area_in_sqm": 15470.798751234999, "perimeter_in_m": 497.52790040523399, "length_x": 124.658564461951, "length_y": 124.660290130535 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 35.460669951495291, 0.0 ], [ -0.001373291015625, 35.460669951495291, 0.0 ], [ -0.001373291015625, 35.459551379037592, 0.0 ], [ -0.00274658203125, 35.459551379037592, 0.0 ], [ -0.00274658203125, 35.460669951495291, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3234, "task_x": 131070, "task_y": 103456, "task_z": 18, "center_y": 35.424308384271299, "area_in_sqm": 15484.443889141099, "perimeter_in_m": 497.74726234300499, "length_x": 124.713774122722, "length_y": 124.71549903376101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 35.424867919305569, 0.0 ], [ -0.001373291015625, 35.424867919305569, 0.0 ], [ -0.001373291015625, 35.423748849236951, 0.0 ], [ -0.00274658203125, 35.423748849236951, 0.0 ], [ -0.00274658203125, 35.424867919305569, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3235, "task_x": 131070, "task_y": 103488, "task_z": 18, "center_y": 35.388490183179897, "area_in_sqm": 15498.0889533758, "perimeter_in_m": 497.96652646098801, "length_x": 124.76895949527901, "length_y": 124.770683645754 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 35.389049966911664, 0.0 ], [ -0.001373291015625, 35.389049966911664, 0.0 ], [ -0.001373291015625, 35.387930399448095, 0.0 ], [ -0.00274658203125, 35.387930399448095, 0.0 ], [ -0.00274658203125, 35.389049966911664, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3236, "task_x": 131070, "task_y": 103520, "task_z": 18, "center_y": 35.352656068917398, "area_in_sqm": 15511.7339113951, "perimeter_in_m": 498.18569238293099, "length_x": 124.824120482973, "length_y": 124.82584386986299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 35.353216101238225, 0.0 ], [ -0.001373291015625, 35.353216101238225, 0.0 ], [ -0.001373291015625, 35.352096036596556, 0.0 ], [ -0.00274658203125, 35.352096036596556, 0.0 ], [ -0.00274658203125, 35.353216101238225, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3237, "task_x": 131070, "task_y": 103552, "task_z": 18, "center_y": 35.316806048436803, "area_in_sqm": 15525.3787316084, "perimeter_in_m": 498.40475972181099, "length_x": 124.87925698908499, "length_y": 124.88097960936599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 35.317366329237863, 0.0 ], [ -0.001373291015625, 35.317366329237863, 0.0 ], [ -0.001373291015625, 35.31624576763582, 0.0 ], [ -0.00274658203125, 35.31624576763582, 0.0 ], [ -0.00274658203125, 35.317366329237863, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3238, "task_x": 131070, "task_y": 103584, "task_z": 18, "center_y": 35.280940128719301, "area_in_sqm": 15539.0233819485, "perimeter_in_m": 498.62372809263201, "length_x": 124.93436891682499, "length_y": 124.936090767472 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 35.281500657891186, 0.0 ], [ -0.001373291015625, 35.281500657891186, 0.0 ], [ -0.001373291015625, 35.280379599547359, 0.0 ], [ -0.00274658203125, 35.280379599547359, 0.0 ], [ -0.00274658203125, 35.281500657891186, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3239, "task_x": 131070, "task_y": 103616, "task_z": 18, "center_y": 35.245058316773701, "area_in_sqm": 15552.667830824899, "perimeter_in_m": 498.84259712224099, "length_x": 124.989456169333, "length_y": 124.99117724731801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 35.245619094206816, 0.0 ], [ -0.001373291015625, 35.245619094206816, 0.0 ], [ -0.001373291015625, 35.244497539340664, 0.0 ], [ -0.00274658203125, 35.244497539340664, 0.0 ], [ -0.00274658203125, 35.245619094206816, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3240, "task_x": 131070, "task_y": 103648, "task_z": 18, "center_y": 35.209160619637302, "area_in_sqm": 15566.312045335801, "perimeter_in_m": 499.06136641687999, "length_x": 125.044518649681, "length_y": 125.046238951973 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 35.209721645221379, 0.0 ], [ -0.001373291015625, 35.209721645221379, 0.0 ], [ -0.001373291015625, 35.208599594053254, 0.0 ], [ -0.00274658203125, 35.208599594053254, 0.0 ], [ -0.00274658203125, 35.209721645221379, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3241, "task_x": 131070, "task_y": 103680, "task_z": 18, "center_y": 35.173247044375103, "area_in_sqm": 15579.9559937716, "perimeter_in_m": 499.28003559113398, "length_x": 125.09955626087201, "length_y": 125.101275784439 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 35.173808317999573, 0.0 ], [ -0.001373291015625, 35.173808317999573, 0.0 ], [ -0.001373291015625, 35.172685770750711, 0.0 ], [ -0.00274658203125, 35.172685770750711, 0.0 ], [ -0.00274658203125, 35.173808317999573, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3242, "task_x": 131070, "task_y": 103712, "task_z": 18, "center_y": 35.137317598080401, "area_in_sqm": 15593.599643945699, "perimeter_in_m": 499.49860426863597, "length_x": 125.154568905838, "length_y": 125.156287647646 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 35.137879119634185, 0.0 ], [ -0.001373291015625, 35.137879119634185, 0.0 ], [ -0.001373291015625, 35.136756076526673, 0.0 ], [ -0.00274658203125, 35.136756076526673, 0.0 ], [ -0.00274658203125, 35.137879119634185, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3243, "task_x": 131070, "task_y": 103744, "task_z": 18, "center_y": 35.101372287874497, "area_in_sqm": 15607.2429631948, "perimeter_in_m": 499.717072055941, "length_x": 125.209556487444, "length_y": 125.211274444456 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 35.101934057246069, 0.0 ], [ -0.001373291015625, 35.101934057246069, 0.0 ], [ -0.001373291015625, 35.10081051850289, 0.0 ], [ -0.00274658203125, 35.10081051850289, 0.0 ], [ -0.00274658203125, 35.101934057246069, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3244, "task_x": 131070, "task_y": 103776, "task_z": 18, "center_y": 35.065411120906703, "area_in_sqm": 15620.8859192133, "perimeter_in_m": 499.93543856935497, "length_x": 125.264518908488, "length_y": 125.266236077665 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 35.065973137984173, 0.0 ], [ -0.001373291015625, 35.065973137984173, 0.0 ], [ -0.001373291015625, 35.064849103829211, 0.0 ], [ -0.00274658203125, 35.064849103829211, 0.0 ], [ -0.00274658203125, 35.065973137984173, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3245, "task_x": 131070, "task_y": 103808, "task_z": 18, "center_y": 35.0294341043546, "area_in_sqm": 15634.5284808874, "perimeter_in_m": 500.153703436358, "length_x": 125.319456071697, "length_y": 125.321172449998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 35.029996369025653, 0.0 ], [ -0.001373291015625, 35.029996369025653, 0.0 ], [ -0.001373291015625, 35.02887183968361, 0.0 ], [ -0.00274658203125, 35.02887183968361, 0.0 ], [ -0.00274658203125, 35.029996369025653, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3246, "task_x": 131070, "task_y": 103840, "task_z": 18, "center_y": 34.993441245424002, "area_in_sqm": 15648.1706138849, "perimeter_in_m": 500.37186625392297, "length_x": 125.37436787973201, "length_y": 125.376083464115 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 34.994003757575754, 0.0 ], [ -0.001373291015625, 34.994003757575754, 0.0 ], [ -0.001373291015625, 34.992878733272264, 0.0 ], [ -0.00274658203125, 34.992878733272264, 0.0 ], [ -0.00274658203125, 34.994003757575754, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3247, "task_x": 131070, "task_y": 103872, "task_z": 18, "center_y": 34.957432551348703, "area_in_sqm": 15661.8122873306, "perimeter_in_m": 500.58992664503802, "length_x": 125.429254235187, "length_y": 125.430969022607 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 34.957995310867915, 0.0 ], [ -0.001373291015625, 34.957995310867915, 0.0 ], [ -0.001373291015625, 34.956869791829476, 0.0 ], [ -0.00274658203125, 34.956869791829476, 0.0 ], [ -0.00274658203125, 34.957995310867915, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3248, "task_x": 131070, "task_y": 103904, "task_z": 18, "center_y": 34.921408029390797, "area_in_sqm": 15675.4534673691, "perimeter_in_m": 500.80788422266301, "length_x": 125.48411504058799, "length_y": 125.485829027997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 34.921971036163761, 0.0 ], [ -0.001373291015625, 34.921971036163761, 0.0 ], [ -0.001373291015625, 34.920845022617755, 0.0 ], [ -0.00274658203125, 34.920845022617755, 0.0 ], [ -0.00274658203125, 34.921971036163761, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3249, "task_x": 131070, "task_y": 103936, "task_z": 18, "center_y": 34.885367686840503, "area_in_sqm": 15689.0941220522, "perimeter_in_m": 501.02573860176102, "length_x": 125.53895019839401, "length_y": 125.540663382744 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 34.885930940753141, 0.0 ], [ -0.001373291015625, 34.885930940753141, 0.0 ], [ -0.001373291015625, 34.884804432927837, 0.0 ], [ -0.00274658203125, 34.884804432927837, 0.0 ], [ -0.00274658203125, 34.885930940753141, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3250, "task_x": 131070, "task_y": 103968, "task_z": 18, "center_y": 34.849311531016397, "area_in_sqm": 15702.734218955, "perimeter_in_m": 501.24348939503398, "length_x": 125.59375961099801, "length_y": 125.595471989237 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 34.84987503195417, 0.0 ], [ -0.001373291015625, 34.84987503195417, 0.0 ], [ -0.001373291015625, 34.848748030078696, 0.0 ], [ -0.00274658203125, 34.848748030078696, 0.0 ], [ -0.00274658203125, 34.84987503195417, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3251, "task_x": 131070, "task_y": 104000, "task_z": 18, "center_y": 34.813239569265299, "area_in_sqm": 15716.373725056599, "perimeter_in_m": 501.46113621153597, "length_x": 125.648543180727, "length_y": 125.65025474980099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 34.813803317113141, 0.0 ], [ -0.001373291015625, 34.813803317113141, 0.0 ], [ -0.001373291015625, 34.812675821417535, 0.0 ], [ -0.00274658203125, 34.812675821417535, 0.0 ], [ -0.00274658203125, 34.813803317113141, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3252, "task_x": 131070, "task_y": 104032, "task_z": 18, "center_y": 34.777151808962302, "area_in_sqm": 15730.012607574499, "perimeter_in_m": 501.678678668656, "length_x": 125.703300809841, "length_y": 125.70501156669501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 34.777715803604686, 0.0 ], [ -0.001373291015625, 34.777715803604686, 0.0 ], [ -0.001373291015625, 34.776587814319868, 0.0 ], [ -0.00274658203125, 34.776587814319868, 0.0 ], [ -0.00274658203125, 34.777715803604686, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3253, "task_x": 131070, "task_y": 104064, "task_z": 18, "center_y": 34.741048257510599, "area_in_sqm": 15743.6508338451, "perimeter_in_m": 501.89611638298101, "length_x": 125.75803240053401, "length_y": 125.759742342111 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 34.741612498831721, 0.0 ], [ -0.001373291015625, 34.741612498831721, 0.0 ], [ -0.001373291015625, 34.740484016189477, 0.0 ], [ -0.00274658203125, 34.740484016189477, 0.0 ], [ -0.00274658203125, 34.741612498831721, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3254, "task_x": 131070, "task_y": 104096, "task_z": 18, "center_y": 34.704928922341999, "area_in_sqm": 15757.2883704901, "perimeter_in_m": 502.11344895186699, "length_x": 125.812737854937, "length_y": 125.814446978177 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 34.705493410225451, 0.0 ], [ -0.001373291015625, 34.705493410225451, 0.0 ], [ -0.001373291015625, 34.704364434458469, 0.0 ], [ -0.00274658203125, 34.704364434458469, 0.0 ], [ -0.00274658203125, 34.705493410225451, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3255, "task_x": 131070, "task_y": 104128, "task_z": 18, "center_y": 34.668793810916398, "area_in_sqm": 15770.925186038001, "perimeter_in_m": 502.33067601141602, "length_x": 125.867417075112, "length_y": 125.869125376954 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 34.669358545245437, 0.0 ], [ -0.001373291015625, 34.669358545245437, 0.0 ], [ -0.001373291015625, 34.668229076587281, 0.0 ], [ -0.00274658203125, 34.668229076587281, 0.0 ], [ -0.00274658203125, 34.669358545245437, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3256, "task_x": 131070, "task_y": 104160, "task_z": 18, "center_y": 34.632642930722099, "area_in_sqm": 15784.561245679901, "perimeter_in_m": 502.54779714955998, "length_x": 125.92206996306, "length_y": 125.92377744044001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 34.633207911379579, 0.0 ], [ -0.001373291015625, 34.633207911379579, 0.0 ], [ -0.001373291015625, 34.632077950064712, 0.0 ], [ -0.00274658203125, 34.632077950064712, 0.0 ], [ -0.00274658203125, 34.633207911379579, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3257, "task_x": 131070, "task_y": 104192, "task_z": 18, "center_y": 34.596476289275998, "area_in_sqm": 15798.196517467501, "perimeter_in_m": 502.76481199580098, "length_x": 125.976696420715, "length_y": 125.97840307056801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 34.597041516144159, 0.0 ], [ -0.001373291015625, 34.597041516144159, 0.0 ], [ -0.001373291015625, 34.5959110624079, 0.0 ], [ -0.00274658203125, 34.5959110624079, 0.0 ], [ -0.00274658203125, 34.597041516144159, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3258, "task_x": 131070, "task_y": 104224, "task_z": 18, "center_y": 34.560293894123198, "area_in_sqm": 15811.830968022299, "perimeter_in_m": 502.98172015195001, "length_x": 126.03129634994799, "length_y": 126.03300216920501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 34.56085936708385, 0.0 ], [ -0.001373291015625, 34.56085936708385, 0.0 ], [ -0.001373291015625, 34.559728421162447, 0.0 ], [ -0.00274658203125, 34.559728421162447, 0.0 ], [ -0.00274658203125, 34.56085936708385, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3259, "task_x": 131070, "task_y": 104256, "task_z": 18, "center_y": 34.524095752836999, "area_in_sqm": 15825.464564084999, "perimeter_in_m": 503.19852122747398, "length_x": 126.085869652564, "length_y": 126.087574638156 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 34.524661471771729, 0.0 ], [ -0.001373291015625, 34.524661471771729, 0.0 ], [ -0.001373291015625, 34.52353003390229, 0.0 ], [ -0.00274658203125, 34.52353003390229, 0.0 ], [ -0.00274658203125, 34.524661471771729, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3260, "task_x": 131070, "task_y": 104288, "task_z": 18, "center_y": 34.487881873019603, "area_in_sqm": 15839.0972731113, "perimeter_in_m": 503.41521483948799, "length_x": 126.140416230306, "length_y": 126.142120379163 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 34.488447837809304, 0.0 ], [ -0.001373291015625, 34.488447837809304, 0.0 ], [ -0.001373291015625, 34.487315908229853, 0.0 ], [ -0.00274658203125, 34.487315908229853, 0.0 ], [ -0.00274658203125, 34.488447837809304, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3261, "task_x": 131070, "task_y": 104320, "task_z": 18, "center_y": 34.451652262301302, "area_in_sqm": 15852.7290608883, "perimeter_in_m": 503.63180060004498, "length_x": 126.194935984854, "length_y": 126.196639293901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 34.452218472826544, 0.0 ], [ -0.001373291015625, 34.452218472826544, 0.0 ], [ -0.001373291015625, 34.451086051775953, 0.0 ], [ -0.00274658203125, 34.451086051775953, 0.0 ], [ -0.00274658203125, 34.452218472826544, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3262, "task_x": 131070, "task_y": 104352, "task_z": 18, "center_y": 34.4154069283409, "area_in_sqm": 15866.359895110099, "perimeter_in_m": 503.84827811189098, "length_x": 126.24942881782501, "length_y": 126.251131283986 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 34.415973384481866, 0.0 ], [ -0.001373291015625, 34.415973384481866, 0.0 ], [ -0.001373291015625, 34.414840472199927, 0.0 ], [ -0.00274658203125, 34.414840472199927, 0.0 ], [ -0.00274658203125, 34.415973384481866, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3263, "task_x": 131070, "task_y": 104384, "task_z": 18, "center_y": 34.379145878825902, "area_in_sqm": 15879.9897420406, "perimeter_in_m": 504.06464699601401, "length_x": 126.30389463077, "length_y": 126.305596250969 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 34.379712580462183, 0.0 ], [ -0.001373291015625, 34.379712580462183, 0.0 ], [ -0.001373291015625, 34.378579177189579, 0.0 ], [ -0.00274658203125, 34.378579177189579, 0.0 ], [ -0.00274658203125, 34.379712580462183, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3264, "task_x": 131070, "task_y": 104416, "task_z": 18, "center_y": 34.342869121472098, "area_in_sqm": 15893.6185679436, "perimeter_in_m": 504.28090685210299, "length_x": 126.35833332518099, "length_y": 126.360034096338 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 34.343436068482937, 0.0 ], [ -0.001373291015625, 34.343436068482937, 0.0 ], [ -0.001373291015625, 34.342302174461217, 0.0 ], [ -0.00274658203125, 34.342302174461217, 0.0 ], [ -0.00274658203125, 34.343436068482937, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3265, "task_x": 131070, "task_y": 104448, "task_z": 18, "center_y": 34.3065766640239, "area_in_sqm": 15907.246339559601, "perimeter_in_m": 504.49705729242299, "length_x": 126.412744802487, "length_y": 126.41444472152099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 34.307143856288029, 0.0 ], [ -0.001373291015625, 34.307143856288029, 0.0 ], [ -0.001373291015625, 34.306009471759673, 0.0 ], [ -0.00274658203125, 34.306009471759673, 0.0 ], [ -0.00274658203125, 34.307143856288029, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3266, "task_x": 131070, "task_y": 104480, "task_z": 18, "center_y": 34.270268514254198, "area_in_sqm": 15920.873023390801, "perimeter_in_m": 504.713097927729, "length_x": 126.46712896405499, "length_y": 126.468828027881 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 34.27083595165, 0.0 ], [ -0.001373291015625, 34.27083595165, 0.0 ], [ -0.001373291015625, 34.269701076858347, 0.0 ], [ -0.00274658203125, 34.269701076858347, 0.0 ], [ -0.00274658203125, 34.27083595165, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3267, "task_x": 131070, "task_y": 104512, "task_z": 18, "center_y": 34.233944679964502, "area_in_sqm": 15934.498586416201, "perimeter_in_m": 504.929028370764, "length_x": 126.521485711189, "length_y": 126.523183916723 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 34.234512362369863, 0.0 ], [ -0.001373291015625, 34.234512362369863, 0.0 ], [ -0.001373291015625, 34.233376997559148, 0.0 ], [ -0.00274658203125, 34.233376997559148, 0.0 ], [ -0.00274658203125, 34.234512362369863, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3268, "task_x": 131070, "task_y": 104544, "task_z": 18, "center_y": 34.1976051689849, "area_in_sqm": 15948.122993826901, "perimeter_in_m": 505.14484822143601, "length_x": 126.575814945133, "length_y": 126.57751228928799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 34.19817309627723, 0.0 ], [ -0.001373291015625, 34.19817309627723, 0.0 ], [ -0.001373291015625, 34.197037241692612, 0.0 ], [ -0.00274658203125, 34.197037241692612, 0.0 ], [ -0.00274658203125, 34.19817309627723, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3269, "task_x": 131070, "task_y": 104576, "task_z": 18, "center_y": 34.161249989174102, "area_in_sqm": 15961.746213436099, "perimeter_in_m": 505.36055710287297, "length_x": 126.63011656707, "length_y": 126.631813046757 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 34.161818161230379, 0.0 ], [ -0.001373291015625, 34.161818161230379, 0.0 ], [ -0.001373291015625, 34.160681817117869, 0.0 ], [ -0.00274658203125, 34.160681817117869, 0.0 ], [ -0.00274658203125, 34.161818161230379, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3270, "task_x": 131070, "task_y": 104608, "task_z": 18, "center_y": 34.124879148419403, "area_in_sqm": 15975.368210315701, "perimeter_in_m": 505.57615460555701, "length_x": 126.68439047812301, "length_y": 126.686086090251 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 34.125447565116119, 0.0 ], [ -0.001373291015625, 34.125447565116119, 0.0 ], [ -0.001373291015625, 34.124310731722652, 0.0 ], [ -0.00274658203125, 34.124310731722652, 0.0 ], [ -0.00274658203125, 34.125447565116119, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3271, "task_x": 131070, "task_y": 104640, "task_z": 18, "center_y": 34.088492654636603, "area_in_sqm": 15988.9889512062, "perimeter_in_m": 505.79164035591202, "length_x": 126.738636579352, "length_y": 126.74033132082801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 34.089061315849939, 0.0 ], [ -0.001373291015625, 34.089061315849939, 0.0 ], [ -0.001373291015625, 34.087923993423345, 0.0 ], [ -0.00274658203125, 34.087923993423345, 0.0 ], [ -0.00274658203125, 34.089061315849939, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3272, "task_x": 131070, "task_y": 104672, "task_z": 18, "center_y": 34.052090515770502, "area_in_sqm": 16002.6084028482, "perimeter_in_m": 506.007013957617, "length_x": 126.792854771759, "length_y": 126.794548639488 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 34.052659421375978, 0.0 ], [ -0.001373291015625, 34.052659421375978, 0.0 ], [ -0.001373291015625, 34.051521610164933, 0.0 ], [ -0.00274658203125, 34.051521610164933, 0.0 ], [ -0.00274658203125, 34.052659421375978, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3273, "task_x": 131070, "task_y": 104704, "task_z": 18, "center_y": 34.015672739794098, "area_in_sqm": 16016.226530551899, "perimeter_in_m": 506.222275011428, "length_x": 126.847044956286, "length_y": 126.848737947172 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 34.016241889667015, 0.0 ], [ -0.001373291015625, 34.016241889667015, 0.0 ], [ -0.001373291015625, 34.015103589921161, 0.0 ], [ -0.00274658203125, 34.015103589921161, 0.0 ], [ -0.00274658203125, 34.016241889667015, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3274, "task_x": 131070, "task_y": 104736, "task_z": 18, "center_y": 33.979239334709497, "area_in_sqm": 16029.8433004618, "perimeter_in_m": 506.43742312505401, "length_x": 126.901207033815, "length_y": 126.90289914476 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 33.979808728724556, 0.0 ], [ -0.001373291015625, 33.979808728724556, 0.0 ], [ -0.001373291015625, 33.978669940694402, 0.0 ], [ -0.00274658203125, 33.978669940694402, 0.0 ], [ -0.00274658203125, 33.979808728724556, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3275, "task_x": 131070, "task_y": 104768, "task_z": 18, "center_y": 33.942790308547302, "area_in_sqm": 16043.4586789608, "perimeter_in_m": 506.65245791454799, "length_x": 126.95534090517, "length_y": 126.957032133073 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 33.943359946578809, 0.0 ], [ -0.001373291015625, 33.943359946578809, 0.0 ], [ -0.001373291015625, 33.942220670515752, 0.0 ], [ -0.00274658203125, 33.942220670515752, 0.0 ], [ -0.00274658203125, 33.943359946578809, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3276, "task_x": 131070, "task_y": 104800, "task_z": 18, "center_y": 33.906325669366801, "area_in_sqm": 16057.072631597501, "perimeter_in_m": 506.86737897821399, "length_x": 127.009446471114, "length_y": 127.011136812873 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 33.906895551288663, 0.0 ], [ -0.001373291015625, 33.906895551288663, 0.0 ], [ -0.001373291015625, 33.905755787445024, 0.0 ], [ -0.00274658203125, 33.905755787445024, 0.0 ], [ -0.00274658203125, 33.906895551288663, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3277, "task_x": 131070, "task_y": 104832, "task_z": 18, "center_y": 33.869845425256301, "area_in_sqm": 16070.6851247549, "perimeter_in_m": 507.08218593189702, "length_x": 127.063523632353, "length_y": 127.06521308486499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 33.870415550941836, 0.0 ], [ -0.001373291015625, 33.870415550941836, 0.0 ], [ -0.001373291015625, 33.869275299570795, 0.0 ], [ -0.00274658203125, 33.869275299570795, 0.0 ], [ -0.00274658203125, 33.870415550941836, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3278, "task_x": 131070, "task_y": 104864, "task_z": 18, "center_y": 33.833349584332503, "area_in_sqm": 16084.2961242199, "perimeter_in_m": 507.29687836800298, "length_x": 127.117572289534, "length_y": 127.11926084969301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 33.8339199536547, 0.0 ], [ -0.001373291015625, 33.8339199536547, 0.0 ], [ -0.001373291015625, 33.832779215010376, 0.0 ], [ -0.00274658203125, 33.832779215010376, 0.0 ], [ -0.00274658203125, 33.8339199536547, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3279, "task_x": 131070, "task_y": 104896, "task_z": 18, "center_y": 33.796838154741202, "area_in_sqm": 16097.9055954218, "perimeter_in_m": 507.51145591135003, "length_x": 127.17159234324799, "length_y": 127.173280007946 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 33.797408767572492, 0.0 ], [ -0.001373291015625, 33.797408767572492, 0.0 ], [ -0.001373291015625, 33.796267541909884, 0.0 ], [ -0.00274658203125, 33.796267541909884, 0.0 ], [ -0.00274658203125, 33.797408767572492, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3280, "task_x": 131070, "task_y": 104928, "task_z": 18, "center_y": 33.760311144656697, "area_in_sqm": 16111.513504385901, "perimeter_in_m": 507.72591815412801, "length_x": 127.225583694025, "length_y": 127.22727046015299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 33.760882000869181, 0.0 ], [ -0.001373291015625, 33.760882000869181, 0.0 ], [ -0.001373291015625, 33.759740288444199, 0.0 ], [ -0.00274658203125, 33.759740288444199, 0.0 ], [ -0.00274658203125, 33.760882000869181, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3281, "task_x": 131070, "task_y": 104960, "task_z": 18, "center_y": 33.723768562282302, "area_in_sqm": 16125.1198172569, "perimeter_in_m": 507.94026471104098, "length_x": 127.279546242341, "length_y": 127.281232106787 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 33.724339661747592, 0.0 ], [ -0.001373291015625, 33.724339661747592, 0.0 ], [ -0.001373291015625, 33.723197462817026, 0.0 ], [ -0.00274658203125, 33.723197462817026, 0.0 ], [ -0.00274658203125, 33.724339661747592, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3282, "task_x": 131070, "task_y": 104992, "task_z": 18, "center_y": 33.687210415850103, "area_in_sqm": 16138.724499583201, "perimeter_in_m": 508.15449519101901, "length_x": 127.333479888612, "length_y": 127.335164848264 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 33.687781758439364, 0.0 ], [ -0.001373291015625, 33.687781758439364, 0.0 ], [ -0.001373291015625, 33.686639073260899, 0.0 ], [ -0.00274658203125, 33.686639073260899, 0.0 ], [ -0.00274658203125, 33.687781758439364, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3283, "task_x": 131070, "task_y": 105024, "task_z": 18, "center_y": 33.650636713621097, "area_in_sqm": 16152.327515721299, "perimeter_in_m": 508.36860918382303, "length_x": 127.387384533199, "length_y": 127.389068584943 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 33.651208299204981, 0.0 ], [ -0.001373291015625, 33.651208299204981, 0.0 ], [ -0.001373291015625, 33.650065128037248, 0.0 ], [ -0.00274658203125, 33.650065128037248, 0.0 ], [ -0.00274658203125, 33.651208299204981, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3284, "task_x": 131070, "task_y": 105056, "task_z": 18, "center_y": 33.614047463885001, "area_in_sqm": 16165.928833127, "perimeter_in_m": 508.58260630947098, "length_x": 127.441260076408, "length_y": 127.442943217127 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 33.614619292333778, 0.0 ], [ -0.001373291015625, 33.614619292333778, 0.0 ], [ -0.001373291015625, 33.613475635436281, 0.0 ], [ -0.00274658203125, 33.613475635436281, 0.0 ], [ -0.00274658203125, 33.614619292333778, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3285, "task_x": 131070, "task_y": 105088, "task_z": 18, "center_y": 33.577442674960601, "area_in_sqm": 16179.528415679901, "perimeter_in_m": 508.79648616457598, "length_x": 127.495106418487, "length_y": 127.496788645062 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 33.578014746143985, 0.0 ], [ -0.001373291015625, 33.578014746143985, 0.0 ], [ -0.001373291015625, 33.576870603777138, 0.0 ], [ -0.00274658203125, 33.576870603777138, 0.0 ], [ -0.00274658203125, 33.578014746143985, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3286, "task_x": 131070, "task_y": 105120, "task_z": 18, "center_y": 33.540822355195303, "area_in_sqm": 16193.1262305379, "perimeter_in_m": 509.010248364701, "length_x": 127.54892345962701, "length_y": 127.550604768939 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 33.541394668982754, 0.0 ], [ -0.001373291015625, 33.541394668982754, 0.0 ], [ -0.001373291015625, 33.540250041407845, 0.0 ], [ -0.00274658203125, 33.540250041407845, 0.0 ], [ -0.00274658203125, 33.541394668982754, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3287, "task_x": 131070, "task_y": 105152, "task_z": 18, "center_y": 33.504186512965703, "area_in_sqm": 16206.7222416401, "perimeter_in_m": 509.22389250483099, "length_x": 127.602711099967, "length_y": 127.604391488894 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 33.504759069226075, 0.0 ], [ -0.001373291015625, 33.504759069226075, 0.0 ], [ -0.001373291015625, 33.503613956705351, 0.0 ], [ -0.00274658203125, 33.503613956705351, 0.0 ], [ -0.00274658203125, 33.504759069226075, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3288, "task_x": 131070, "task_y": 105184, "task_z": 18, "center_y": 33.467535156677201, "area_in_sqm": 16220.316414773501, "perimeter_in_m": 509.43741819186198, "length_x": 127.65646923958801, "length_y": 127.658148705008 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 33.468107955278946, 0.0 ], [ -0.001373291015625, 33.468107955278946, 0.0 ], [ -0.001373291015625, 33.46696235807552, 0.0 ], [ -0.00274658203125, 33.46696235807552, 0.0 ], [ -0.00274658203125, 33.468107955278946, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3289, "task_x": 131070, "task_y": 105216, "task_z": 18, "center_y": 33.430868294764203, "area_in_sqm": 16233.908715486499, "perimeter_in_m": 509.65082503256099, "length_x": 127.710197778519, "length_y": 127.711876317305 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 33.431441335575286, 0.0 ], [ -0.001373291015625, 33.431441335575286, 0.0 ], [ -0.001373291015625, 33.430295253953183, 0.0 ], [ -0.00274658203125, 33.430295253953183, 0.0 ], [ -0.00274658203125, 33.431441335575286, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3290, "task_x": 131070, "task_y": 105248, "task_z": 18, "center_y": 33.394185935689997, "area_in_sqm": 16247.499109268199, "perimeter_in_m": 509.86411263290699, "length_x": 127.763896616731, "length_y": 127.765574225758 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 33.394759218577974, 0.0 ], [ -0.001373291015625, 33.394759218577974, 0.0 ], [ -0.001373291015625, 33.393612652802126, 0.0 ], [ -0.00274658203125, 33.393612652802126, 0.0 ], [ -0.00274658203125, 33.394759218577974, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3291, "task_x": 131070, "task_y": 105280, "task_z": 18, "center_y": 33.357488087946997, "area_in_sqm": 16261.0875605941, "perimeter_in_m": 510.07728059241299, "length_x": 127.817565654145, "length_y": 127.819242330283 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 33.358061612778862, 0.0 ], [ -0.001373291015625, 33.358061612778862, 0.0 ], [ -0.001373291015625, 33.356914563115104, 0.0 ], [ -0.00274658203125, 33.356914563115104, 0.0 ], [ -0.00274658203125, 33.358061612778862, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3292, "task_x": 131070, "task_y": 105312, "task_z": 18, "center_y": 33.320774760056302, "area_in_sqm": 16274.674035072299, "perimeter_in_m": 510.29032851754903, "length_x": 127.87120479062401, "length_y": 127.872880530744 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 33.321348526698806, 0.0 ], [ -0.001373291015625, 33.321348526698806, 0.0 ], [ -0.001373291015625, 33.320200993413884, 0.0 ], [ -0.00274658203125, 33.320200993413884, 0.0 ], [ -0.00274658203125, 33.321348526698806, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3293, "task_x": 131070, "task_y": 105344, "task_z": 18, "center_y": 33.284045960568498, "area_in_sqm": 16288.258498310999, "perimeter_in_m": 510.50325601327899, "length_x": 127.92481392598199, "length_y": 127.92648872695101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 33.284619968887682, 0.0 ], [ -0.001373291015625, 33.284619968887682, 0.0 ], [ -0.001373291015625, 33.283471952249236, 0.0 ], [ -0.00274658203125, 33.283471952249236, 0.0 ], [ -0.00274658203125, 33.284619968887682, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3294, "task_x": 131070, "task_y": 105376, "task_z": 18, "center_y": 33.247301698062699, "area_in_sqm": 16301.840914607001, "perimeter_in_m": 510.71606267880702, "length_x": 127.978392959975, "length_y": 127.980066818661 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 33.247875947924385, 0.0 ], [ -0.001373291015625, 33.247875947924385, 0.0 ], [ -0.001373291015625, 33.246727448200978, 0.0 ], [ -0.00274658203125, 33.246727448200978, 0.0 ], [ -0.00274658203125, 33.247875947924385, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3295, "task_x": 131070, "task_y": 105408, "task_z": 18, "center_y": 33.210541981147401, "area_in_sqm": 16315.421248853199, "perimeter_in_m": 510.92874811606498, "length_x": 128.03194179230999, "length_y": 128.033614705578 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 33.21111647241684, 0.0 ], [ -0.001373291015625, 33.21111647241684, 0.0 ], [ -0.001373291015625, 33.209967489877961, 0.0 ], [ -0.00274658203125, 33.209967489877961, 0.0 ], [ -0.00274658203125, 33.21111647241684, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3296, "task_x": 131070, "task_y": 105440, "task_z": 18, "center_y": 33.173766818460102, "area_in_sqm": 16328.999466776801, "perimeter_in_m": 511.141311936075, "length_x": 128.08546032263899, "length_y": 128.08713228735201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 33.174341551002072, 0.0 ], [ -0.001373291015625, 33.174341551002072, 0.0 ], [ -0.001373291015625, 33.173192085918075, 0.0 ], [ -0.00274658203125, 33.173192085918075, 0.0 ], [ -0.00274658203125, 33.174341551002072, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3297, "task_x": 131070, "task_y": 105472, "task_z": 18, "center_y": 33.136976218667201, "area_in_sqm": 16342.575532794001, "perimeter_in_m": 511.35375373279999, "length_x": 128.13894845056501, "length_y": 128.14061946358501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 33.137551192346145, 0.0 ], [ -0.001373291015625, 33.137551192346145, 0.0 ], [ -0.001373291015625, 33.136401244988328, 0.0 ], [ -0.00274658203125, 33.136401244988328, 0.0 ], [ -0.00274658203125, 33.137551192346145, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3298, "task_x": 131070, "task_y": 105504, "task_z": 18, "center_y": 33.100170190464503, "area_in_sqm": 16356.1494121552, "perimeter_in_m": 511.56607311705199, "length_x": 128.192406075636, "length_y": 128.19407613382199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 33.100745405144245, 0.0 ], [ -0.001373291015625, 33.100745405144245, 0.0 ], [ -0.001373291015625, 33.09959497578479, 0.0 ], [ -0.00274658203125, 33.09959497578479, 0.0 ], [ -0.00274658203125, 33.100745405144245, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3299, "task_x": 131070, "task_y": 105536, "task_z": 18, "center_y": 33.063348742576601, "area_in_sqm": 16369.7210691571, "perimeter_in_m": 511.77826968684798, "length_x": 128.24583309734899, "length_y": 128.247502197561 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 33.063924198120638, 0.0 ], [ -0.001373291015625, 33.063924198120638, 0.0 ], [ -0.001373291015625, 33.062773287032641, 0.0 ], [ -0.00274658203125, 33.062773287032641, 0.0 ], [ -0.00274658203125, 33.063924198120638, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3300, "task_x": 131070, "task_y": 105568, "task_z": 18, "center_y": 33.0265118837575, "area_in_sqm": 16383.290468454399, "perimeter_in_m": 511.990343040798, "length_x": 128.29922941515201, "length_y": 128.30089755424501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 33.027087580028727, 0.0 ], [ -0.001373291015625, 33.027087580028727, 0.0 ], [ -0.001373291015625, 33.025936187486224, 0.0 ], [ -0.00274658203125, 33.025936187486224, 0.0 ], [ -0.00274658203125, 33.027087580028727, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3301, "task_x": 131070, "task_y": 105600, "task_z": 18, "center_y": 32.989659622790001, "area_in_sqm": 16396.857575833801, "perimeter_in_m": 512.20229279508203, "length_x": 128.35259492844, "length_y": 128.35426210327 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 32.990235559651069, 0.0 ], [ -0.001373291015625, 32.990235559651069, 0.0 ], [ -0.001373291015625, 32.989083685928954, 0.0 ], [ -0.00274658203125, 32.989083685928954, 0.0 ], [ -0.00274658203125, 32.990235559651069, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3302, "task_x": 131070, "task_y": 105632, "task_z": 18, "center_y": 32.952791968486402, "area_in_sqm": 16410.422354876999, "perimeter_in_m": 512.41411853117495, "length_x": 128.40592953655801, "length_y": 128.40759574397899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 32.953368145799324, 0.0 ], [ -0.001373291015625, 32.953368145799324, 0.0 ], [ -0.001373291015625, 32.952215791173458, 0.0 ], [ -0.00274658203125, 32.952215791173458, 0.0 ], [ -0.00274658203125, 32.953368145799324, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3303, "task_x": 131070, "task_y": 105664, "task_z": 18, "center_y": 32.915908929688001, "area_in_sqm": 16423.984770894102, "perimeter_in_m": 512.62581986789905, "length_x": 128.45923313880101, "length_y": 128.46089837566601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 32.916485347314385, 0.0 ], [ -0.001373291015625, 32.916485347314385, 0.0 ], [ -0.001373291015625, 32.915332512061504, 0.0 ], [ -0.00274658203125, 32.915332512061504, 0.0 ], [ -0.00274658203125, 32.916485347314385, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3304, "task_x": 131070, "task_y": 105696, "task_z": 18, "center_y": 32.8790105152652, "area_in_sqm": 16437.5447884202, "perimeter_in_m": 512.83739639782596, "length_x": 128.512505634414, "length_y": 128.514169897573 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 32.879587173066298, 0.0 ], [ -0.001373291015625, 32.879587173066298, 0.0 ], [ -0.001373291015625, 32.87843385746406, 0.0 ], [ -0.00274658203125, 32.87843385746406, 0.0 ], [ -0.00274658203125, 32.879587173066298, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3305, "task_x": 131070, "task_y": 105728, "task_z": 18, "center_y": 32.842096734117803, "area_in_sqm": 16451.1023710966, "perimeter_in_m": 513.04884772405296, "length_x": 128.565746922594, "length_y": 128.56741020889501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 32.842673631954298, 0.0 ], [ -0.001373291015625, 32.842673631954298, 0.0 ], [ -0.001373291015625, 32.841519836281286, 0.0 ], [ -0.00274658203125, 32.841519836281286, 0.0 ], [ -0.00274658203125, 32.842673631954298, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3306, "task_x": 131070, "task_y": 105760, "task_z": 18, "center_y": 32.805167595174701, "area_in_sqm": 16464.657484710198, "perimeter_in_m": 513.260173451686, "length_x": 128.61895690248599, "length_y": 128.62061920877801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 32.805744732906867, 0.0 ], [ -0.001373291015625, 32.805744732906867, 0.0 ], [ -0.001373291015625, 32.804590457442551, 0.0 ], [ -0.00274658203125, 32.804590457442551, 0.0 ], [ -0.00274658203125, 32.805744732906867, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3307, "task_x": 131070, "task_y": 105792, "task_z": 18, "center_y": 32.7682231073941, "area_in_sqm": 16478.210092902202, "perimeter_in_m": 513.47137317656495, "length_x": 128.672135473189, "length_y": 128.67379679631699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 32.76880048488168, 0.0 ], [ -0.001373291015625, 32.76880048488168, 0.0 ], [ -0.001373291015625, 32.767645729906462, 0.0 ], [ -0.00274658203125, 32.767645729906462, 0.0 ], [ -0.00274658203125, 32.76880048488168, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3308, "task_x": 131070, "task_y": 105824, "task_z": 18, "center_y": 32.731263279763297, "area_in_sqm": 16491.760160028902, "perimeter_in_m": 513.68244649938299, "length_x": 128.725282533751, "length_y": 128.72694287056001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 32.73184089686567, 0.0 ], [ -0.001373291015625, 32.73184089686567, 0.0 ], [ -0.001373291015625, 32.730685662660875, 0.0 ], [ -0.00274658203125, 32.730685662660875, 0.0 ], [ -0.00274658203125, 32.73184089686567, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3309, "task_x": 131070, "task_y": 105856, "task_z": 18, "center_y": 32.694288121299003, "area_in_sqm": 16505.307650983301, "perimeter_in_m": 513.89339303204497, "length_x": 128.77839798317501, "length_y": 128.78005733050799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 32.694865977875068, 0.0 ], [ -0.001373291015625, 32.694865977875068, 0.0 ], [ -0.001373291015625, 32.693710264722895, 0.0 ], [ -0.00274658203125, 32.693710264722895, 0.0 ], [ -0.00274658203125, 32.694865977875068, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3310, "task_x": 131070, "task_y": 105888, "task_z": 18, "center_y": 32.657297641047101, "area_in_sqm": 16518.852529108499, "perimeter_in_m": 514.10421234821899, "length_x": 128.831481720412, "length_y": 128.83314007511001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 32.657875736955276, 0.0 ], [ -0.001373291015625, 32.657875736955276, 0.0 ], [ -0.001373291015625, 32.656719545138913, 0.0 ], [ -0.00274658203125, 32.656719545138913, 0.0 ], [ -0.00274658203125, 32.657875736955276, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3311, "task_x": 131070, "task_y": 105920, "task_z": 18, "center_y": 32.6202918480829, "area_in_sqm": 16532.394759654999, "perimeter_in_m": 514.31490407657896, "length_x": 128.88453364437001, "length_y": 128.88619100327401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 32.620870183181118, 0.0 ], [ -0.001373291015625, 32.620870183181118, 0.0 ], [ -0.001373291015625, 32.619713512984596, 0.0 ], [ -0.00274658203125, 32.619713512984596, 0.0 ], [ -0.00274658203125, 32.620870183181118, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3312, "task_x": 131070, "task_y": 105952, "task_z": 18, "center_y": 32.583270751510803, "area_in_sqm": 16545.934306323499, "perimeter_in_m": 514.52546780332705, "length_x": 128.93755365390601, "length_y": 128.93921001385399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 32.583849325656615, 0.0 ], [ -0.001373291015625, 32.583849325656615, 0.0 ], [ -0.001373291015625, 32.582692177364912, 0.0 ], [ -0.00274658203125, 32.582692177364912, 0.0 ], [ -0.00274658203125, 32.583849325656615, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3313, "task_x": 131070, "task_y": 105984, "task_z": 18, "center_y": 32.546234360464602, "area_in_sqm": 16559.471133232099, "perimeter_in_m": 514.73590313083002, "length_x": 128.99054164783399, "length_y": 128.992197005663 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 32.546813173515133, 0.0 ], [ -0.001373291015625, 32.546813173515133, 0.0 ], [ -0.001373291015625, 32.545655547414142, 0.0 ], [ -0.00274658203125, 32.545655547414142, 0.0 ], [ -0.00274658203125, 32.546813173515133, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3314, "task_x": 131070, "task_y": 106016, "task_z": 18, "center_y": 32.509182684107699, "area_in_sqm": 16573.0052046776, "perimeter_in_m": 514.94620965995398, "length_x": 129.04349752491899, "length_y": 129.045151877465 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 32.509761735919419, 0.0 ], [ -0.001373291015625, 32.509761735919419, 0.0 ], [ -0.001373291015625, 32.508603632295937, 0.0 ], [ -0.00274658203125, 32.508603632295937, 0.0 ], [ -0.00274658203125, 32.509761735919419, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3315, "task_x": 131070, "task_y": 106048, "task_z": 18, "center_y": 32.4721157316324, "area_in_sqm": 16586.536484599099, "perimeter_in_m": 515.15638698935197, "length_x": 129.09642118387899, "length_y": 129.09807452797699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 32.472695022061494, 0.0 ], [ -0.001373291015625, 32.472695022061494, 0.0 ], [ -0.001373291015625, 32.471536441203249, 0.0 ], [ -0.00274658203125, 32.471536441203249, 0.0 ], [ -0.00274658203125, 32.472695022061494, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3316, "task_x": 131070, "task_y": 106080, "task_z": 18, "center_y": 32.435033512260603, "area_in_sqm": 16600.064937233899, "perimeter_in_m": 515.36643472112905, "length_x": 129.14931252338999, "length_y": 129.15096485587199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 32.435613041162767, 0.0 ], [ -0.001373291015625, 32.435613041162767, 0.0 ], [ -0.001373291015625, 32.434453983358409, 0.0 ], [ -0.00274658203125, 32.434453983358409, 0.0 ], [ -0.00274658203125, 32.435613041162767, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3317, "task_x": 131070, "task_y": 106112, "task_z": 18, "center_y": 32.397936035243603, "area_in_sqm": 16613.590526223201, "perimeter_in_m": 515.57635244812298, "length_x": 129.20217144207999, "length_y": 129.20382275977701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 32.398515802474009, 0.0 ], [ -0.001373291015625, 32.398515802474009, 0.0 ], [ -0.001373291015625, 32.397356268013098, 0.0 ], [ -0.00274658203125, 32.397356268013098, 0.0 ], [ -0.00274658203125, 32.398515802474009, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3318, "task_x": 131070, "task_y": 106144, "task_z": 18, "center_y": 32.3608233098619, "area_in_sqm": 16627.1132153869, "perimeter_in_m": 515.78613977013902, "length_x": 129.25499783853101, "length_y": 129.25664813827399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 32.361403315275417, 0.0 ], [ -0.001373291015625, 32.361403315275417, 0.0 ], [ -0.001373291015625, 32.360243304448431, 0.0 ], [ -0.00274658203125, 32.360243304448431, 0.0 ], [ -0.00274658203125, 32.361403315275417, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3319, "task_x": 131070, "task_y": 106176, "task_z": 18, "center_y": 32.323695345425698, "area_in_sqm": 16640.632969140999, "perimeter_in_m": 515.99579629398602, "length_x": 129.30779161128399, "length_y": 129.3094408899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 32.324275588876546, 0.0 ], [ -0.001373291015625, 32.324275588876546, 0.0 ], [ -0.001373291015625, 32.323115101974871, 0.0 ], [ -0.00274658203125, 32.323115101974871, 0.0 ], [ -0.00274658203125, 32.324275588876546, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3320, "task_x": 131070, "task_y": 106208, "task_z": 18, "center_y": 32.2865521512744, "area_in_sqm": 16654.149750351899, "perimeter_in_m": 516.20532160587197, "length_x": 129.36055265883201, "length_y": 129.36220091314999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 32.287132632616355, 0.0 ], [ -0.001373291015625, 32.287132632616355, 0.0 ], [ -0.001373291015625, 32.285971669932337, 0.0 ], [ -0.00274658203125, 32.285971669932337, 0.0 ], [ -0.00274658203125, 32.287132632616355, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3321, "task_x": 131070, "task_y": 106240, "task_z": 18, "center_y": 32.249393736776703, "area_in_sqm": 16667.6635238528, "perimeter_in_m": 516.41471531809202, "length_x": 129.413280879626, "length_y": 129.414928106471 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 32.249974455863295, 0.0 ], [ -0.001373291015625, 32.249974455863295, 0.0 ], [ -0.001373291015625, 32.248813017690139, 0.0 ], [ -0.00274658203125, 32.248813017690139, 0.0 ], [ -0.00274658203125, 32.249974455863295, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3322, "task_x": 131070, "task_y": 106272, "task_z": 18, "center_y": 32.212220111331099, "area_in_sqm": 16681.174253344499, "perimeter_in_m": 516.62397702446901, "length_x": 129.465976172073, "length_y": 129.46762236827001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 32.212801068015189, 0.0 ], [ -0.001373291015625, 32.212801068015189, 0.0 ], [ -0.001373291015625, 32.211639154647052, 0.0 ], [ -0.00274658203125, 32.211639154647052, 0.0 ], [ -0.00274658203125, 32.212801068015189, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3323, "task_x": 131070, "task_y": 106304, "task_z": 18, "center_y": 32.175031284365303, "area_in_sqm": 16694.681901633699, "perimeter_in_m": 516.83310631875804, "length_x": 129.518638434537, "length_y": 129.520283596908 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 32.175612478499325, 0.0 ], [ -0.001373291015625, 32.175612478499325, 0.0 ], [ -0.001373291015625, 32.174450090231296, 0.0 ], [ -0.00274658203125, 32.174450090231296, 0.0 ], [ -0.00274658203125, 32.175612478499325, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3324, "task_x": 131070, "task_y": 106336, "task_z": 18, "center_y": 32.137827265336497, "area_in_sqm": 16708.186432719202, "perimeter_in_m": 517.04210279816095, "length_x": 129.57126756533799, "length_y": 129.57291169070601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 32.138408696772487, 0.0 ], [ -0.001373291015625, 32.138408696772487, 0.0 ], [ -0.001373291015625, 32.137245833900579, 0.0 ], [ -0.00274658203125, 32.137245833900579, 0.0 ], [ -0.00274658203125, 32.138408696772487, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3325, "task_x": 131070, "task_y": 106368, "task_z": 18, "center_y": 32.100608063731499, "area_in_sqm": 16721.687810659401, "perimeter_in_m": 517.25096606685895, "length_x": 129.623863462754, "length_y": 129.62550654793901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 32.10118973232094, 0.0 ], [ -0.001373291015625, 32.10118973232094, 0.0 ], [ -0.001373291015625, 32.100026395142052, 0.0 ], [ -0.00274658203125, 32.100026395142052, 0.0 ], [ -0.00274658203125, 32.10118973232094, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3326, "task_x": 131070, "task_y": 106400, "task_z": 18, "center_y": 32.063373689066403, "area_in_sqm": 16735.185998201399, "perimeter_in_m": 517.45969571766295, "length_x": 129.67642602502201, "length_y": 129.67806806684399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 32.063955594660399, 0.0 ], [ -0.001373291015625, 32.063955594660399, 0.0 ], [ -0.001373291015625, 32.062791783472399, 0.0 ], [ -0.00274658203125, 32.062791783472399, 0.0 ], [ -0.00274658203125, 32.063955594660399, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3327, "task_x": 131070, "task_y": 106432, "task_z": 18, "center_y": 32.026124150886901, "area_in_sqm": 16748.680959761099, "perimeter_in_m": 517.66829135459898, "length_x": 129.728955150335, "length_y": 129.730596145611 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 32.026706293336133, 0.0 ], [ -0.001373291015625, 32.026706293336133, 0.0 ], [ -0.001373291015625, 32.025542008437739, 0.0 ], [ -0.00274658203125, 32.025542008437739, 0.0 ], [ -0.00274658203125, 32.026706293336133, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3328, "task_x": 131070, "task_y": 106464, "task_z": 18, "center_y": 31.988859458768399, "area_in_sqm": 16762.1726580262, "perimeter_in_m": 517.87675256537102, "length_x": 129.781450736848, "length_y": 129.783090682394 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 31.989441837922875, 0.0 ], [ -0.001373291015625, 31.989441837922875, 0.0 ], [ -0.001373291015625, 31.98827707961383, 0.0 ], [ -0.00274658203125, 31.98827707961383, 0.0 ], [ -0.00274658203125, 31.989441837922875, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3329, "task_x": 131070, "task_y": 106496, "task_z": 18, "center_y": 31.9515796223154, "area_in_sqm": 16775.6610566378, "perimeter_in_m": 518.08507895244395, "length_x": 129.83391268266999, "length_y": 129.83555157530299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 31.952162238024954, 0.0 ], [ -0.001373291015625, 31.952162238024954, 0.0 ], [ -0.001373291015625, 31.950997006605839, 0.0 ], [ -0.00274658203125, 31.950997006605839, 0.0 ], [ -0.00274658203125, 31.952162238024954, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3330, "task_x": 131070, "task_y": 106528, "task_z": 18, "center_y": 31.914284651162401, "area_in_sqm": 16789.146119177301, "perimeter_in_m": 518.293270115376, "length_x": 129.88634088587199, "length_y": 129.88797872240599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 31.914867503276206, 0.0 ], [ -0.001373291015625, 31.914867503276206, 0.0 ], [ -0.001373291015625, 31.913701799048553, 0.0 ], [ -0.00274658203125, 31.913701799048553, 0.0 ], [ -0.00274658203125, 31.914867503276206, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3331, "task_x": 131070, "task_y": 106560, "task_z": 18, "center_y": 31.876974554973099, "area_in_sqm": 16802.6278086901, "perimeter_in_m": 518.50132564446801, "length_x": 129.938735244486, "length_y": 129.940372021733 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 31.877557643340012, 0.0 ], [ -0.001373291015625, 31.877557643340012, 0.0 ], [ -0.001373291015625, 31.876391466606286, 0.0 ], [ -0.00274658203125, 31.876391466606286, 0.0 ], [ -0.00274658203125, 31.877557643340012, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3332, "task_x": 131070, "task_y": 106592, "task_z": 18, "center_y": 31.839649343441099, "area_in_sqm": 16816.1060887575, "perimeter_in_m": 518.709245150431, "length_x": 129.99109565650201, "length_y": 129.99273137127301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 31.840232667909355, 0.0 ], [ -0.001373291015625, 31.840232667909355, 0.0 ], [ -0.001373291015625, 31.839066018972922, 0.0 ], [ -0.00274658203125, 31.839066018972922, 0.0 ], [ -0.00274658203125, 31.840232667909355, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3333, "task_x": 131070, "task_y": 106624, "task_z": 18, "center_y": 31.802309026289301, "area_in_sqm": 16829.580922126799, "perimeter_in_m": 518.91702820717603, "length_x": 130.04342201987001, "length_y": 130.045056668977 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 31.802892586706747, 0.0 ], [ -0.001373291015625, 31.802892586706747, 0.0 ], [ -0.001373291015625, 31.801725465871947, 0.0 ], [ -0.00274658203125, 31.801725465871947, 0.0 ], [ -0.00274658203125, 31.802892586706747, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3334, "task_x": 131070, "task_y": 106656, "task_z": 18, "center_y": 31.7649536132704, "area_in_sqm": 16843.052272737001, "perimeter_in_m": 519.12467443515197, "length_x": 130.09571423250301, "length_y": 130.09734781275299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 31.765537409484374, 0.0 ], [ -0.001373291015625, 31.765537409484374, 0.0 ], [ -0.001373291015625, 31.764369817056398, 0.0 ], [ -0.00274658203125, 31.764369817056398, 0.0 ], [ -0.00274658203125, 31.765537409484374, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3335, "task_x": 131070, "task_y": 106688, "task_z": 18, "center_y": 31.727583114166499, "area_in_sqm": 16856.520102918101, "perimeter_in_m": 519.33218341165002, "length_x": 130.147972192271, "length_y": 130.14960470047299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 31.728167146023935, 0.0 ], [ -0.001373291015625, 31.728167146023935, 0.0 ], [ -0.001373291015625, 31.726999082308971, 0.0 ], [ -0.00274658203125, 31.726999082308971, 0.0 ], [ -0.00274658203125, 31.728167146023935, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3336, "task_x": 131070, "task_y": 106720, "task_z": 18, "center_y": 31.690197538789398, "area_in_sqm": 16869.984376072902, "perimeter_in_m": 519.53955474497798, "length_x": 130.20019579701, "length_y": 130.201827229971 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 31.690781806136805, 0.0 ], [ -0.001373291015625, 31.690781806136805, 0.0 ], [ -0.001373291015625, 31.689613271441921, 0.0 ], [ -0.00274658203125, 31.689613271441921, 0.0 ], [ -0.00274658203125, 31.690781806136805, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3337, "task_x": 131070, "task_y": 106752, "task_z": 18, "center_y": 31.6527968969806, "area_in_sqm": 16883.4450556636, "perimeter_in_m": 519.74678802852895, "length_x": 130.252384944515, "length_y": 130.25401529903999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 31.653381399663985, 0.0 ], [ -0.001373291015625, 31.653381399663985, 0.0 ], [ -0.001373291015625, 31.65221239429718, 0.0 ], [ -0.00274658203125, 31.65221239429718, 0.0 ], [ -0.00274658203125, 31.653381399663985, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3338, "task_x": 131070, "task_y": 106784, "task_z": 18, "center_y": 31.6153811986112, "area_in_sqm": 16896.902103841301, "perimeter_in_m": 519.95388284927105, "length_x": 130.304539532544, "length_y": 130.30616880543801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 31.615965936476073, 0.0 ], [ -0.001373291015625, 31.615965936476073, 0.0 ], [ -0.001373291015625, 31.614796460746312, 0.0 ], [ -0.00274658203125, 31.614796460746312, 0.0 ], [ -0.00274658203125, 31.615965936476073, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3339, "task_x": 131070, "task_y": 106816, "task_z": 18, "center_y": 31.577950453581899, "area_in_sqm": 16910.355484545202, "perimeter_in_m": 520.16083882023804, "length_x": 130.356659458818, "length_y": 130.35828764688301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 31.578535426473373, 0.0 ], [ -0.001373291015625, 31.578535426473373, 0.0 ], [ -0.001373291015625, 31.577365480690482, 0.0 ], [ -0.00274658203125, 31.577365480690482, 0.0 ], [ -0.00274658203125, 31.578535426473373, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3340, "task_x": 131070, "task_y": 106848, "task_z": 18, "center_y": 31.5405046718232, "area_in_sqm": 16923.8051599264, "perimeter_in_m": 520.367655518368, "length_x": 130.408744621019, "length_y": 130.410371721058 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 31.541089879585812, 0.0 ], [ -0.001373291015625, 31.541089879585812, 0.0 ], [ -0.001373291015625, 31.53991946406061, 0.0 ], [ -0.00274658203125, 31.53991946406061, 0.0 ], [ -0.00274658203125, 31.541089879585812, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3341, "task_x": 131070, "task_y": 106880, "task_z": 18, "center_y": 31.503043863295101, "area_in_sqm": 16937.251093327999, "perimeter_in_m": 520.57433255586102, "length_x": 130.46079491679501, "length_y": 130.462420925608 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 31.503629305773018, 0.0 ], [ -0.001373291015625, 31.503629305773018, 0.0 ], [ -0.001373291015625, 31.502458420817206, 0.0 ], [ -0.00274658203125, 31.502458420817206, 0.0 ], [ -0.00274658203125, 31.503629305773018, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3342, "task_x": 131070, "task_y": 106912, "task_z": 18, "center_y": 31.465568037987399, "area_in_sqm": 16950.693247616298, "perimeter_in_m": 520.78086952152205, "length_x": 130.51281024375501, "length_y": 130.51443515814299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 31.466153715024284, 0.0 ], [ -0.001373291015625, 31.466153715024284, 0.0 ], [ -0.001373291015625, 31.464982360950494, 0.0 ], [ -0.00274658203125, 31.464982360950494, 0.0 ], [ -0.00274658203125, 31.466153715024284, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3343, "task_x": 131070, "task_y": 106944, "task_z": 18, "center_y": 31.4280772059195, "area_in_sqm": 16964.131585300001, "perimeter_in_m": 520.98726600975499, "length_x": 130.56479049947399, "length_y": 130.56641431623501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 31.42866311735861, 0.0 ], [ -0.001373291015625, 31.42866311735861, 0.0 ], [ -0.001373291015625, 31.427491294480426, 0.0 ], [ -0.00274658203125, 31.427491294480426, 0.0 ], [ -0.00274658203125, 31.42866311735861, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3344, "task_x": 131070, "task_y": 106976, "task_z": 18, "center_y": 31.390571377140699, "area_in_sqm": 16977.566068947301, "perimeter_in_m": 521.19352160711503, "length_x": 130.61673558149101, "length_y": 130.61835829742199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 31.391157522824692, 0.0 ], [ -0.001373291015625, 31.391157522824692, 0.0 ], [ -0.001373291015625, 31.389985231456642, 0.0 ], [ -0.00274658203125, 31.389985231456642, 0.0 ], [ -0.00274658203125, 31.391157522824692, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3345, "task_x": 131070, "task_y": 107008, "task_z": 18, "center_y": 31.353050561729699, "area_in_sqm": 16990.996661782301, "perimeter_in_m": 521.399635924824, "length_x": 130.668645387309, "length_y": 130.670266999207 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 31.353636941500987, 0.0 ], [ -0.001373291015625, 31.353636941500987, 0.0 ], [ -0.001373291015625, 31.352464181958453, 0.0 ], [ -0.00274658203125, 31.352464181958453, 0.0 ], [ -0.00274658203125, 31.353636941500987, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3346, "task_x": 131070, "task_y": 107040, "task_z": 18, "center_y": 31.3155147697953, "area_in_sqm": 17004.4233263731, "perimeter_in_m": 521.60560854790003, "length_x": 130.720519814396, "length_y": 130.722140319056 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 31.316101383495635, 0.0 ], [ -0.001373291015625, 31.316101383495635, 0.0 ], [ -0.001373291015625, 31.314928156095, 0.0 ], [ -0.00274658203125, 31.314928156095, 0.0 ], [ -0.00274658203125, 31.316101383495635, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3347, "task_x": 131070, "task_y": 107072, "task_z": 18, "center_y": 31.277964011475799, "area_in_sqm": 17017.846024513201, "perimeter_in_m": 521.81143906766795, "length_x": 130.77235876018801, "length_y": 130.77397815440401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 31.278550858946517, 0.0 ], [ -0.001373291015625, 31.278550858946517, 0.0 ], [ -0.001373291015625, 31.277377164005081, 0.0 ], [ -0.00274658203125, 31.277377164005081, 0.0 ], [ -0.00274658203125, 31.278550858946517, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3348, "task_x": 131070, "task_y": 107104, "task_z": 18, "center_y": 31.240398296939301, "area_in_sqm": 17031.264719963099, "perimeter_in_m": 522.01712708737102, "length_x": 130.82416212208199, "length_y": 130.825780402649 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 31.240985378021293, 0.0 ], [ -0.001373291015625, 31.240985378021293, 0.0 ], [ -0.001373291015625, 31.239811215857273, 0.0 ], [ -0.00274658203125, 31.239811215857273, 0.0 ], [ -0.00274658203125, 31.240985378021293, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3349, "task_x": 131070, "task_y": 107136, "task_z": 18, "center_y": 31.2028176363836, "area_in_sqm": 17044.679374873602, "perimeter_in_m": 522.22267220526601, "length_x": 130.87592979744699, "length_y": 130.87754696115601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 31.203404950917381, 0.0 ], [ -0.001373291015625, 31.203404950917381, 0.0 ], [ -0.001373291015625, 31.202230321849903, 0.0 ], [ -0.00274658203125, 31.202230321849903, 0.0 ], [ -0.00274658203125, 31.203404950917381, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3350, "task_x": 131070, "task_y": 107168, "task_z": 18, "center_y": 31.1652220400365, "area_in_sqm": 17058.089951276801, "perimeter_in_m": 522.42807399552396, "length_x": 130.92766168361501, "length_y": 130.92927772725599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 31.165809587861943, 0.0 ], [ -0.001373291015625, 31.165809587861943, 0.0 ], [ -0.001373291015625, 31.164634492211114, 0.0 ], [ -0.00274658203125, 31.164634492211114, 0.0 ], [ -0.00274658203125, 31.165809587861943, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3351, "task_x": 131070, "task_y": 107200, "task_z": 18, "center_y": 31.127611518155401, "area_in_sqm": 17071.496412575201, "perimeter_in_m": 522.633332081003, "length_x": 130.97935767788599, "length_y": 130.98097259824999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 31.128199299111962, 0.0 ], [ -0.001373291015625, 31.128199299111962, 0.0 ], [ -0.001373291015625, 31.127023737198762, 0.0 ], [ -0.00274658203125, 31.127023737198762, 0.0 ], [ -0.00274658203125, 31.128199299111962, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3352, "task_x": 131070, "task_y": 107232, "task_z": 18, "center_y": 31.089986081027401, "area_in_sqm": 17084.8987203836, "perimeter_in_m": 522.83844603575301, "length_x": 131.03101767752699, "length_y": 131.03263147140299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 31.090574094954178, 0.0 ], [ -0.001373291015625, 31.090574094954178, 0.0 ], [ -0.001373291015625, 31.089398067100554, 0.0 ], [ -0.00274658203125, 31.089398067100554, 0.0 ], [ -0.00274658203125, 31.090574094954178, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3353, "task_x": 131070, "task_y": 107264, "task_z": 18, "center_y": 31.052345738969599, "area_in_sqm": 17098.296836614601, "perimeter_in_m": 523.04341544789497, "length_x": 131.08264157977399, "length_y": 131.08425424395 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 31.052933985705138, 0.0 ], [ -0.001373291015625, 31.052933985705138, 0.0 ], [ -0.001373291015625, 31.051757492233996, 0.0 ], [ -0.00274658203125, 31.051757492233996, 0.0 ], [ -0.00274658203125, 31.052933985705138, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3354, "task_x": 131070, "task_y": 107296, "task_z": 18, "center_y": 31.014690502328801, "area_in_sqm": 17111.690725326502, "perimeter_in_m": 523.24823993586404, "length_x": 131.13422928182899, "length_y": 131.13584081309199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 31.015278981711255, 0.0 ], [ -0.001373291015625, 31.015278981711255, 0.0 ], [ -0.001373291015625, 31.014102022946354, 0.0 ], [ -0.00274658203125, 31.014102022946354, 0.0 ], [ -0.00274658203125, 31.015278981711255, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3355, "task_x": 131070, "task_y": 107328, "task_z": 18, "center_y": 30.977020381481701, "area_in_sqm": 17125.080346941901, "perimeter_in_m": 523.45291907141996, "length_x": 131.18578068086501, "length_y": 131.187391076002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 30.977609093348676, 0.0 ], [ -0.001373291015625, 30.977609093348676, 0.0 ], [ -0.001373291015625, 30.97643166961479, 0.0 ], [ -0.00274658203125, 30.97643166961479, 0.0 ], [ -0.00274658203125, 30.977609093348676, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3356, "task_x": 131070, "task_y": 107360, "task_z": 18, "center_y": 30.939335386834799, "area_in_sqm": 17138.465665340402, "perimeter_in_m": 523.65745246511699, "length_x": 131.23729567402199, "length_y": 131.23890492981801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 30.939924331023455, 0.0 ], [ -0.001373291015625, 30.939924331023455, 0.0 ], [ -0.001373291015625, 30.938746442646213, 0.0 ], [ -0.00274658203125, 30.938746442646213, 0.0 ], [ -0.00274658203125, 30.939924331023455, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3357, "task_x": 131070, "task_y": 107392, "task_z": 18, "center_y": 30.901635528824499, "area_in_sqm": 17151.8466410041, "perimeter_in_m": 523.861839692128, "length_x": 131.288774158411, "length_y": 131.29038227165 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 30.902224705171442, 0.0 ], [ -0.001373291015625, 30.902224705171442, 0.0 ], [ -0.001373291015625, 30.901046352477479, 0.0 ], [ -0.00274658203125, 30.901046352477479, 0.0 ], [ -0.00274658203125, 30.902224705171442, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3358, "task_x": 131070, "task_y": 107424, "task_z": 18, "center_y": 30.863920817916799, "area_in_sqm": 17165.223237276099, "perimeter_in_m": 524.06608035865497, "length_x": 131.34021603111199, "length_y": 131.34182299857699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 30.864510226258346, 0.0 ], [ -0.001373291015625, 30.864510226258346, 0.0 ], [ -0.001373291015625, 30.863331409575196, 0.0 ], [ -0.00274658203125, 30.863331409575196, 0.0 ], [ -0.00274658203125, 30.864510226258346, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3359, "task_x": 131070, "task_y": 107456, "task_z": 18, "center_y": 30.8261912646078, "area_in_sqm": 17178.595416367101, "perimeter_in_m": 524.27017405531205, "length_x": 131.391621189175, "length_y": 131.393227007647 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 30.826780904779774, 0.0 ], [ -0.001373291015625, 30.826780904779774, 0.0 ], [ -0.001373291015625, 30.825601624435883, 0.0 ], [ -0.00274658203125, 30.825601624435883, 0.0 ], [ -0.00274658203125, 30.826780904779774, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3360, "task_x": 131070, "task_y": 107488, "task_z": 18, "center_y": 30.7884468794235, "area_in_sqm": 17191.963139534, "perimeter_in_m": 524.47412037617596, "length_x": 131.44298952961901, "length_y": 131.44459419588199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 30.789036751261143, 0.0 ], [ -0.001373291015625, 30.789036751261143, 0.0 ], [ -0.001373291015625, 30.787857007585927, 0.0 ], [ -0.00274658203125, 30.787857007585927, 0.0 ], [ -0.00274658203125, 30.789036751261143, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3361, "task_x": 131070, "task_y": 107520, "task_z": 18, "center_y": 30.7506876729197, "area_in_sqm": 17205.3263696432, "perimeter_in_m": 524.67791891104105, "length_x": 131.49432094943799, "length_y": 131.49592446027 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 30.751277776257815, 0.0 ], [ -0.001373291015625, 30.751277776257815, 0.0 ], [ -0.001373291015625, 30.750097569581619, 0.0 ], [ -0.00274658203125, 30.750097569581619, 0.0 ], [ -0.00274658203125, 30.751277776257815, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3362, "task_x": 131070, "task_y": 107552, "task_z": 18, "center_y": 30.712913655682001, "area_in_sqm": 17218.685068249699, "perimeter_in_m": 524.88156925672195, "length_x": 131.54561534559201, "length_y": 131.54721769777501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 30.713503990354965, 0.0 ], [ -0.001373291015625, 30.713503990354965, 0.0 ], [ -0.001373291015625, 30.712323321009045, 0.0 ], [ -0.00274658203125, 30.712323321009045, 0.0 ], [ -0.00274658203125, 30.713503990354965, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3363, "task_x": 131070, "task_y": 107584, "task_z": 18, "center_y": 30.675124838325999, "area_in_sqm": 17232.0391973853, "perimeter_in_m": 525.08507100501595, "length_x": 131.59687261501699, "length_y": 131.59847380532801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 30.675715404167725, 0.0 ], [ -0.001373291015625, 30.675715404167725, 0.0 ], [ -0.001373291015625, 30.67453427248428, 0.0 ], [ -0.00274658203125, 30.67453427248428, 0.0 ], [ -0.00274658203125, 30.675715404167725, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3364, "task_x": 131070, "task_y": 107616, "task_z": 18, "center_y": 30.6373212314972, "area_in_sqm": 17245.388718605001, "perimeter_in_m": 525.28842374204703, "length_x": 131.64809265461901, "length_y": 131.64969267983699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 30.637912028341113, 0.0 ], [ -0.001373291015625, 30.637912028341113, 0.0 ], [ -0.001373291015625, 30.636730434653302, 0.0 ], [ -0.00274658203125, 30.636730434653302, 0.0 ], [ -0.00274658203125, 30.637912028341113, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3365, "task_x": 131070, "task_y": 107648, "task_z": 18, "center_y": 30.599502845871001, "area_in_sqm": 17258.733595252001, "perimeter_in_m": 525.49162707786502, "length_x": 131.69927536127599, "length_y": 131.700874218178 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 30.600093873550072, 0.0 ], [ -0.001373291015625, 30.600093873550072, 0.0 ], [ -0.001373291015625, 30.598911818191937, 0.0 ], [ -0.00274658203125, 30.598911818191937, 0.0 ], [ -0.00274658203125, 30.600093873550072, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3366, "task_x": 131070, "task_y": 107680, "task_z": 18, "center_y": 30.561669692152702, "area_in_sqm": 17272.073786914301, "perimeter_in_m": 525.69468058225402, "length_x": 131.750420631841, "length_y": 131.75201831720199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 30.562260950499429, 0.0 ], [ -0.001373291015625, 30.562260950499429, 0.0 ], [ -0.001373291015625, 30.561078433806017, 0.0 ], [ -0.00274658203125, 30.561078433806017, 0.0 ], [ -0.00274658203125, 30.562260950499429, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3367, "task_x": 131070, "task_y": 107712, "task_z": 18, "center_y": 30.523821781077601, "area_in_sqm": 17285.409257352399, "perimeter_in_m": 525.89758386588801, "length_x": 131.801528363138, "length_y": 131.80312487373499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 30.524413269923983, 0.0 ], [ -0.001373291015625, 30.524413269923983, 0.0 ], [ -0.001373291015625, 30.523230292231219, 0.0 ], [ -0.00274658203125, 30.523230292231219, 0.0 ], [ -0.00274658203125, 30.524413269923983, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3368, "task_x": 131070, "task_y": 107744, "task_z": 18, "center_y": 30.4859591234109, "area_in_sqm": 17298.739966928999, "perimeter_in_m": 526.10033651467802, "length_x": 131.852598451966, "length_y": 131.854193784572 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 30.486550842588471, 0.0 ], [ -0.001373291015625, 30.486550842588471, 0.0 ], [ -0.001373291015625, 30.485367404233237, 0.0 ], [ -0.00274658203125, 30.485367404233237, 0.0 ], [ -0.00274658203125, 30.486550842588471, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3369, "task_x": 131070, "task_y": 107776, "task_z": 18, "center_y": 30.448081729947599, "area_in_sqm": 17312.065878748901, "perimeter_in_m": 526.30293812084903, "length_x": 131.903630795098, "length_y": 131.90522494648701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 30.448673679287559, 0.0 ], [ -0.001373291015625, 30.448673679287559, 0.0 ], [ -0.001373291015625, 30.447489780607661, 0.0 ], [ -0.00274658203125, 30.447489780607661, 0.0 ], [ -0.00274658203125, 30.448673679287559, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3370, "task_x": 131070, "task_y": 107808, "task_z": 18, "center_y": 30.410189611513001, "area_in_sqm": 17325.3869535923, "perimeter_in_m": 526.50538827375203, "length_x": 131.95462528927999, "length_y": 131.95621825622499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 30.410781790845881, 0.0 ], [ -0.001373291015625, 30.410781790845881, 0.0 ], [ -0.001373291015625, 30.409597432180078, 0.0 ], [ -0.00274658203125, 30.409597432180078, 0.0 ], [ -0.00274658203125, 30.410781790845881, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3371, "task_x": 131070, "task_y": 107840, "task_z": 18, "center_y": 30.372282778961999, "area_in_sqm": 17338.7031531334, "perimeter_in_m": 526.70768657116798, "length_x": 132.005581831234, "length_y": 132.007173610508 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 30.372875188118016, 0.0 ], [ -0.001373291015625, 30.372875188118016, 0.0 ], [ -0.001373291015625, 30.371690369806004, 0.0 ], [ -0.00274658203125, 30.371690369806004, 0.0 ], [ -0.00274658203125, 30.372875188118016, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3372, "task_x": 131070, "task_y": 107872, "task_z": 18, "center_y": 30.334361243179799, "area_in_sqm": 17352.014438808001, "perimeter_in_m": 526.90983259600296, "length_x": 132.056500317657, "length_y": 132.058090906031 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 30.334953881988561, 0.0 ], [ -0.001373291015625, 30.334953881988561, 0.0 ], [ -0.001373291015625, 30.333768604370974, 0.0 ], [ -0.00274658203125, 30.333768604370974, 0.0 ], [ -0.00274658203125, 30.334953881988561, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3373, "task_x": 131070, "task_y": 107904, "task_z": 18, "center_y": 30.296425015081201, "area_in_sqm": 17365.320772826701, "perimeter_in_m": 527.111825953015, "length_x": 132.10738064522201, "length_y": 132.10897003946599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 30.297017883372042, 0.0 ], [ -0.001373291015625, 30.297017883372042, 0.0 ], [ -0.001373291015625, 30.295832146790431, 0.0 ], [ -0.00274658203125, 30.295832146790431, 0.0 ], [ -0.00274658203125, 30.297017883372042, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3374, "task_x": 131070, "task_y": 107936, "task_z": 18, "center_y": 30.258474105611398, "area_in_sqm": 17378.622116446499, "perimeter_in_m": 527.313666229256, "length_x": 132.15822271057701, "length_y": 132.159810907462 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 30.259067203213014, 0.0 ], [ -0.001373291015625, 30.259067203213014, 0.0 ], [ -0.001373291015625, 30.257881008009861, 0.0 ], [ -0.00274658203125, 30.257881008009861, 0.0 ], [ -0.00274658203125, 30.259067203213014, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3375, "task_x": 131070, "task_y": 107968, "task_z": 18, "center_y": 30.220508525745402, "area_in_sqm": 17391.918431222399, "perimeter_in_m": 527.51535301385695, "length_x": 132.209026410348, "length_y": 132.21061340664301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 30.221101852485987, 0.0 ], [ -0.001373291015625, 30.221101852485987, 0.0 ], [ -0.001373291015625, 30.219915199004753, 0.0 ], [ -0.00274658203125, 30.219915199004753, 0.0 ], [ -0.00274658203125, 30.221101852485987, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3376, "task_x": 131070, "task_y": 108000, "task_z": 18, "center_y": 30.182528286488001, "area_in_sqm": 17405.2096782923, "perimeter_in_m": 527.71688590015697, "length_x": 132.25979164113701, "length_y": 132.261377433609 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 30.183121842195504, 0.0 ], [ -0.001373291015625, 30.183121842195504, 0.0 ], [ -0.001373291015625, 30.181934730780561, 0.0 ], [ -0.00274658203125, 30.181934730780561, 0.0 ], [ -0.00274658203125, 30.183121842195504, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3377, "task_x": 131070, "task_y": 108032, "task_z": 18, "center_y": 30.144533398874401, "area_in_sqm": 17418.4958198071, "perimeter_in_m": 527.91826447790697, "length_x": 132.31051829952199, "length_y": 132.31210288494 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 30.145127183376118, 0.0 ], [ -0.001373291015625, 30.145127183376118, 0.0 ], [ -0.001373291015625, 30.143939614372776, 0.0 ], [ -0.00274658203125, 30.143939614372776, 0.0 ], [ -0.00274658203125, 30.145127183376118, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3378, "task_x": 131070, "task_y": 108064, "task_z": 18, "center_y": 30.1065238739696, "area_in_sqm": 17431.7768161893, "perimeter_in_m": 528.11948834036002, "length_x": 132.36120628206001, "length_y": 132.362789657191 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 30.107117887092372, 0.0 ], [ -0.001373291015625, 30.107117887092372, 0.0 ], [ -0.001373291015625, 30.105929860846878, 0.0 ], [ -0.00274658203125, 30.105929860846878, 0.0 ], [ -0.00274658203125, 30.107117887092372, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3379, "task_x": 131070, "task_y": 108096, "task_z": 18, "center_y": 30.068499722868602, "area_in_sqm": 17445.052629351601, "perimeter_in_m": 528.32055707859899, "length_x": 132.41185548528699, "length_y": 132.41343764689699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 30.069093964438856, 0.0 ], [ -0.001373291015625, 30.069093964438856, 0.0 ], [ -0.001373291015625, 30.067905481298418, 0.0 ], [ -0.00274658203125, 30.067905481298418, 0.0 ], [ -0.00274658203125, 30.069093964438856, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3380, "task_x": 131070, "task_y": 108128, "task_z": 18, "center_y": 30.030460956696601, "area_in_sqm": 17458.323220312599, "perimeter_in_m": 528.521470279445, "length_x": 132.462465805715, "length_y": 132.46404675056999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 30.031055426540206, 0.0 ], [ -0.001373291015625, 30.031055426540206, 0.0 ], [ -0.001373291015625, 30.029866486852946, 0.0 ], [ -0.00274658203125, 30.029866486852946, 0.0 ], [ -0.00274658203125, 30.031055426540206, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3381, "task_x": 131070, "task_y": 108160, "task_z": 18, "center_y": 29.9924075866085, "area_in_sqm": 17471.588550627199, "perimeter_in_m": 528.72222754733696, "length_x": 132.513037139837, "length_y": 132.514616864701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 29.993002284551061, 0.0 ], [ -0.001373291015625, 29.993002284551061, 0.0 ], [ -0.001373291015625, 29.991812888666033, 0.0 ], [ -0.00274658203125, 29.991812888666033, 0.0 ], [ -0.00274658203125, 29.993002284551061, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3382, "task_x": 131070, "task_y": 108192, "task_z": 18, "center_y": 29.9543396237897, "area_in_sqm": 17484.8485820889, "perimeter_in_m": 528.92282846548005, "length_x": 132.56356938412301, "length_y": 132.565147885762 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 29.954934549656144, 0.0 ], [ -0.001373291015625, 29.954934549656144, 0.0 ], [ -0.001373291015625, 29.953744697923341, 0.0 ], [ -0.00274658203125, 29.953744697923341, 0.0 ], [ -0.00274658203125, 29.954934549656144, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3383, "task_x": 131070, "task_y": 108224, "task_z": 18, "center_y": 29.916257079455399, "area_in_sqm": 17498.1032744646, "perimeter_in_m": 529.12327261563598, "length_x": 132.61406243502501, "length_y": 132.615639710202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 29.916852233070159, 0.0 ], [ -0.001373291015625, 29.916852233070159, 0.0 ], [ -0.001373291015625, 29.915661925840567, 0.0 ], [ -0.00274658203125, 29.915661925840567, 0.0 ], [ -0.00274658203125, 29.916852233070159, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3384, "task_x": 131070, "task_y": 108256, "task_z": 18, "center_y": 29.878159964850699, "area_in_sqm": 17511.352590143699, "perimeter_in_m": 529.32355960496102, "length_x": 132.664516188975, "length_y": 132.66609223445201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 29.878755346037963, 0.0 ], [ -0.001373291015625, 29.878755346037963, 0.0 ], [ -0.001373291015625, 29.877564583663435, 0.0 ], [ -0.00274658203125, 29.877564583663435, 0.0 ], [ -0.00274658203125, 29.878755346037963, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3385, "task_x": 131070, "task_y": 108288, "task_z": 18, "center_y": 29.840048291251101, "area_in_sqm": 17524.596489608299, "perimeter_in_m": 529.52368901443799, "length_x": 132.71493054238201, "length_y": 132.71650535492401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 29.840643899834419, 0.0 ], [ -0.001373291015625, 29.840643899834419, 0.0 ], [ -0.001373291015625, 29.83945268266779, 0.0 ], [ -0.00274658203125, 29.83945268266779, 0.0 ], [ -0.00274658203125, 29.840643899834419, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3386, "task_x": 131070, "task_y": 108320, "task_z": 18, "center_y": 29.801922069962, "area_in_sqm": 17537.8349344134, "perimeter_in_m": 529.72366044408898, "length_x": 132.76530539164099, "length_y": 132.766878968008 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 29.802517905764454, 0.0 ], [ -0.001373291015625, 29.802517905764454, 0.0 ], [ -0.001373291015625, 29.801326234159482, 0.0 ], [ -0.00274658203125, 29.801326234159482, 0.0 ], [ -0.00274658203125, 29.802517905764454, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3387, "task_x": 131070, "task_y": 108352, "task_z": 18, "center_y": 29.763781312318802, "area_in_sqm": 17551.0678848028, "perimeter_in_m": 529.92347347059899, "length_x": 132.81564063312399, "length_y": 132.817212970078 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 29.764377375163114, 0.0 ], [ -0.001373291015625, 29.764377375163114, 0.0 ], [ -0.001373291015625, 29.763185249474525, 0.0 ], [ -0.00274658203125, 29.763185249474525, 0.0 ], [ -0.00274658203125, 29.764377375163114, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3388, "task_x": 131070, "task_y": 108384, "task_z": 18, "center_y": 29.725626029687199, "area_in_sqm": 17564.295302808299, "perimeter_in_m": 530.12312769958305, "length_x": 132.865936163187, "length_y": 132.867507257489 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 29.726222319395497, 0.0 ], [ -0.001373291015625, 29.726222319395497, 0.0 ], [ -0.001373291015625, 29.725029739978908, 0.0 ], [ -0.00274658203125, 29.725029739978908, 0.0 ], [ -0.00274658203125, 29.726222319395497, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3389, "task_x": 131070, "task_y": 108416, "task_z": 18, "center_y": 29.6874562334628, "area_in_sqm": 17577.517149388801, "perimeter_in_m": 530.32262271754303, "length_x": 132.91619187816801, "length_y": 132.91776172657799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 29.688052749856809, 0.0 ], [ -0.001373291015625, 29.688052749856809, 0.0 ], [ -0.001373291015625, 29.686859717068792, 0.0 ], [ -0.00274658203125, 29.686859717068792, 0.0 ], [ -0.00274658203125, 29.688052749856809, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3390, "task_x": 131070, "task_y": 108448, "task_z": 18, "center_y": 29.6492719350714, "area_in_sqm": 17590.733384311199, "perimeter_in_m": 530.52195810459796, "length_x": 132.96640767438601, "length_y": 132.96797627366499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 29.649868677972293, 0.0 ], [ -0.001373291015625, 29.649868677972293, 0.0 ], [ -0.001373291015625, 29.648675192170415, 0.0 ], [ -0.00274658203125, 29.648675192170415, 0.0 ], [ -0.00274658203125, 29.649868677972293, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3391, "task_x": 131070, "task_y": 108480, "task_z": 18, "center_y": 29.6110731459687, "area_in_sqm": 17603.943969667002, "perimeter_in_m": 530.72113346415699, "length_x": 133.01658344814601, "length_y": 133.01815079505201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 29.611670115197391, 0.0 ], [ -0.001373291015625, 29.611670115197391, 0.0 ], [ -0.001373291015625, 29.6104761767401, 0.0 ], [ -0.00274658203125, 29.6104761767401, 0.0 ], [ -0.00274658203125, 29.611670115197391, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3392, "task_x": 131070, "task_y": 108512, "task_z": 18, "center_y": 29.572859877640902, "area_in_sqm": 17617.148865401701, "perimeter_in_m": 530.92014837980901, "length_x": 133.06671909573299, "length_y": 133.068285187024 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 29.573457073017565, 0.0 ], [ -0.001373291015625, 29.573457073017565, 0.0 ], [ -0.001373291015625, 29.572262682264274, 0.0 ], [ -0.00274658203125, 29.572262682264274, 0.0 ], [ -0.00274658203125, 29.573457073017565, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3393, "task_x": 131070, "task_y": 108544, "task_z": 18, "center_y": 29.534632141604, "area_in_sqm": 17630.348033428199, "perimeter_in_m": 531.119002446423, "length_x": 133.11681451341801, "length_y": 133.11837934585299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 29.535229562948444, 0.0 ], [ -0.001373291015625, 29.535229562948444, 0.0 ], [ -0.001373291015625, 29.534034720259505, 0.0 ], [ -0.00274658203125, 29.534034720259505, 0.0 ], [ -0.00274658203125, 29.535229562948444, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3394, "task_x": 131070, "task_y": 108576, "task_z": 18, "center_y": 29.496389949404101, "area_in_sqm": 17643.541433811199, "perimeter_in_m": 531.31769525602294, "length_x": 133.16686959745499, "length_y": 133.16843316779199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 29.496987596535746, 0.0 ], [ -0.001373291015625, 29.496987596535746, 0.0 ], [ -0.001373291015625, 29.495792302272434, 0.0 ], [ -0.00274658203125, 29.495792302272434, 0.0 ], [ -0.00274658203125, 29.496987596535746, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3395, "task_x": 131070, "task_y": 108608, "task_z": 18, "center_y": 29.458133312617601, "area_in_sqm": 17656.729027330901, "perimeter_in_m": 531.51622639353104, "length_x": 133.21688424408299, "length_y": 133.218446549079 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 29.458731185355319, 0.0 ], [ -0.001373291015625, 29.458731185355319, 0.0 ], [ -0.001373291015625, 29.457535439879877, 0.0 ], [ -0.00274658203125, 29.457535439879877, 0.0 ], [ -0.00274658203125, 29.458731185355319, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3396, "task_x": 131070, "task_y": 108640, "task_z": 18, "center_y": 29.4198622428509, "area_in_sqm": 17669.9107752442, "perimeter_in_m": 531.71459545302798, "length_x": 133.26685834952701, "length_y": 133.26841938593799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 29.420460341013133, 0.0 ], [ -0.001373291015625, 29.420460341013133, 0.0 ], [ -0.001373291015625, 29.419264144688718, 0.0 ], [ -0.00274658203125, 29.419264144688718, 0.0 ], [ -0.00274658203125, 29.420460341013133, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3397, "task_x": 131070, "task_y": 108672, "task_z": 18, "center_y": 29.381576751740599, "area_in_sqm": 17683.086637795001, "perimeter_in_m": 531.91280202081202, "length_x": 133.31679180999501, "length_y": 133.318351574578 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 29.382175075145277, 0.0 ], [ -0.001373291015625, 29.382175075145277, 0.0 ], [ -0.001373291015625, 29.380978428336022, 0.0 ], [ -0.00274658203125, 29.380978428336022, 0.0 ], [ -0.00274658203125, 29.382175075145277, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3398, "task_x": 131070, "task_y": 108704, "task_z": 18, "center_y": 29.343276850953501, "area_in_sqm": 17696.256575882398, "perimeter_in_m": 532.11084569515799, "length_x": 133.36668452168399, "length_y": 133.36824301119501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 29.343875399417996, 0.0 ], [ -0.001373291015625, 29.343875399417996, 0.0 ], [ -0.001373291015625, 29.342678302488942, 0.0 ], [ -0.00274658203125, 29.342678302488942, 0.0 ], [ -0.00274658203125, 29.343875399417996, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3399, "task_x": 131070, "task_y": 108736, "task_z": 18, "center_y": 29.3049625521863, "area_in_sqm": 17709.420550286799, "perimeter_in_m": 532.30872606089304, "length_x": 133.416536380775, "length_y": 133.41809359197001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 29.305561325527705, 0.0 ], [ -0.001373291015625, 29.305561325527705, 0.0 ], [ -0.001373291015625, 29.304363778844838, 0.0 ], [ -0.00274658203125, 29.304363778844838, 0.0 ], [ -0.00274658203125, 29.305561325527705, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3400, "task_x": 131070, "task_y": 108768, "task_z": 18, "center_y": 29.266633867166, "area_in_sqm": 17722.578521370899, "perimeter_in_m": 532.50644271060696, "length_x": 133.46634728343801, "length_y": 133.46790321307 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 29.267232865200882, 0.0 ], [ -0.001373291015625, 29.267232865200882, 0.0 ], [ -0.001373291015625, 29.266034869131147, 0.0 ], [ -0.00274658203125, 29.266034869131147, 0.0 ], [ -0.00274658203125, 29.267232865200882, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3401, "task_x": 131070, "task_y": 108800, "task_z": 18, "center_y": 29.228290807649898, "area_in_sqm": 17735.7304493189, "perimeter_in_m": 532.70399522696005, "length_x": 133.51611712582601, "length_y": 133.51767177065199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 29.228890030194229, 0.0 ], [ -0.001373291015625, 29.228890030194229, 0.0 ], [ -0.001373291015625, 29.227691585105518, 0.0 ], [ -0.00274658203125, 29.227691585105518, 0.0 ], [ -0.00274658203125, 29.228890030194229, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3402, "task_x": 131070, "task_y": 108832, "task_z": 18, "center_y": 29.1899333854251, "area_in_sqm": 17748.8762950897, "perimeter_in_m": 532.90138320391497, "length_x": 133.565845804085, "length_y": 133.567399160858 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 29.190532832294565, 0.0 ], [ -0.001373291015625, 29.190532832294565, 0.0 ], [ -0.001373291015625, 29.18933393855572, 0.0 ], [ -0.00274658203125, 29.18933393855572, 0.0 ], [ -0.00274658203125, 29.190532832294565, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3403, "task_x": 131070, "task_y": 108864, "task_z": 18, "center_y": 29.151561612309301, "area_in_sqm": 17762.016019702001, "perimeter_in_m": 533.09860624386999, "length_x": 133.615533214344, "length_y": 133.61708527981901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 29.152161283318918, 0.0 ], [ -0.001373291015625, 29.152161283318918, 0.0 ], [ -0.001373291015625, 29.150961941299663, 0.0 ], [ -0.00274658203125, 29.150961941299663, 0.0 ], [ -0.00274658203125, 29.152161283318918, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3404, "task_x": 131070, "task_y": 108896, "task_z": 18, "center_y": 29.1131755001499, "area_in_sqm": 17775.149582505201, "perimeter_in_m": 533.29566391389903, "length_x": 133.66517925272501, "length_y": 133.666730023654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 29.113775395114388, 0.0 ], [ -0.001373291015625, 29.113775395114388, 0.0 ], [ -0.001373291015625, 29.112575605185469, 0.0 ], [ -0.00274658203125, 29.112575605185469, 0.0 ], [ -0.00274658203125, 29.113775395114388, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3405, "task_x": 131070, "task_y": 108928, "task_z": 18, "center_y": 29.074775060824901, "area_in_sqm": 17788.276944339301, "perimeter_in_m": 533.49255581779903, "length_x": 133.71478381533501, "length_y": 133.71633328847199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 29.075375179558343, 0.0 ], [ -0.001373291015625, 29.075375179558343, 0.0 ], [ -0.001373291015625, 29.074174942091418, 0.0 ], [ -0.00274658203125, 29.074174942091418, 0.0 ], [ -0.00274658203125, 29.075375179558343, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3406, "task_x": 131070, "task_y": 108960, "task_z": 18, "center_y": 29.036360306242099, "area_in_sqm": 17801.398066759099, "perimeter_in_m": 533.68928155367996, "length_x": 133.76434679827199, "length_y": 133.76589497037 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 29.036960648558257, 0.0 ], [ -0.001373291015625, 29.036960648558257, 0.0 ], [ -0.001373291015625, 29.035759963925891, 0.0 ], [ -0.00274658203125, 29.035759963925891, 0.0 ], [ -0.00274658203125, 29.036960648558257, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3407, "task_x": 131070, "task_y": 108992, "task_z": 18, "center_y": 28.9979312483397, "area_in_sqm": 17814.512908637498, "perimeter_in_m": 533.88584069845194, "length_x": 133.81386809762401, "length_y": 133.815414965435 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 28.998531814051795, 0.0 ], [ -0.001373291015625, 28.998531814051795, 0.0 ], [ -0.001373291015625, 28.997330682627535, 0.0 ], [ -0.00274658203125, 28.997330682627535, 0.0 ], [ -0.00274658203125, 28.998531814051795, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3408, "task_x": 131070, "task_y": 109024, "task_z": 18, "center_y": 28.959487899086, "area_in_sqm": 17827.621431052699, "perimeter_in_m": 534.082232844553, "length_x": 133.86334760946801, "length_y": 133.86489316974499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 28.960088688006799, 0.0 ], [ -0.001373291015625, 28.960088688006799, 0.0 ], [ -0.001373291015625, 28.958887110165129, 0.0 ], [ -0.00274658203125, 28.958887110165129, 0.0 ], [ -0.00274658203125, 28.960088688006799, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3409, "task_x": 131070, "task_y": 109056, "task_z": 18, "center_y": 28.921030270479498, "area_in_sqm": 17840.723593831099, "perimeter_in_m": 534.278457582295, "length_x": 133.91278522987301, "length_y": 133.91432947936801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 28.921631282421295, 0.0 ], [ -0.001373291015625, 28.921631282421295, 0.0 ], [ -0.001373291015625, 28.920429258537645, 0.0 ], [ -0.00274658203125, 28.920429258537645, 0.0 ], [ -0.00274658203125, 28.921631282421295, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3410, "task_x": 131070, "task_y": 109088, "task_z": 18, "center_y": 28.8825583745489, "area_in_sqm": 17853.819358050801, "perimeter_in_m": 534.47451450195399, "length_x": 133.96218085489801, "length_y": 133.963723790362 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 28.883159609323485, 0.0 ], [ -0.001373291015625, 28.883159609323485, 0.0 ], [ -0.001373291015625, 28.881957139774222, 0.0 ], [ -0.00274658203125, 28.881957139774222, 0.0 ], [ -0.00274658203125, 28.883159609323485, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3411, "task_x": 131070, "task_y": 109120, "task_z": 18, "center_y": 28.844072223352999, "area_in_sqm": 17866.9086833, "perimeter_in_m": 534.67040319664295, "length_x": 134.01153438059299, "length_y": 134.01307599877899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 28.844673680771784, 0.0 ], [ -0.001373291015625, 28.844673680771784, 0.0 ], [ -0.001373291015625, 28.843470765934214, 0.0 ], [ -0.00274658203125, 28.843470765934214, 0.0 ], [ -0.00274658203125, 28.844673680771784, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3412, "task_x": 131070, "task_y": 109152, "task_z": 18, "center_y": 28.805571828981002, "area_in_sqm": 17879.9915300012, "perimeter_in_m": 534.86612325026795, "length_x": 134.060845703002, "length_y": 134.06238600066001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 28.806173508854762, 0.0 ], [ -0.001373291015625, 28.806173508854762, 0.0 ], [ -0.001373291015625, 28.804970149107149, 0.0 ], [ -0.00274658203125, 28.804970149107149, 0.0 ], [ -0.00274658203125, 28.806173508854762, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3413, "task_x": 131070, "task_y": 109184, "task_z": 18, "center_y": 28.767057203552, "area_in_sqm": 17893.0678580403, "perimeter_in_m": 535.06167425590695, "length_x": 134.110114718159, "length_y": 134.11165369203999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 28.767659105691237, 0.0 ], [ -0.001373291015625, 28.767659105691237, 0.0 ], [ -0.001373291015625, 28.766455301412769, 0.0 ], [ -0.00274658203125, 28.766455301412769, 0.0 ], [ -0.00274658203125, 28.767659105691237, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3414, "task_x": 131070, "task_y": 109216, "task_z": 18, "center_y": 28.728528359215598, "area_in_sqm": 17906.137628376498, "perimeter_in_m": 535.25705580875001, "length_x": 134.15934132209199, "length_y": 134.16087896894601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 28.729130483430154, 0.0 ], [ -0.001373291015625, 28.729130483430154, 0.0 ], [ -0.001373291015625, 28.727926235000965, 0.0 ], [ -0.00274658203125, 28.727926235000965, 0.0 ], [ -0.00274658203125, 28.729130483430154, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3415, "task_x": 131070, "task_y": 109248, "task_z": 18, "center_y": 28.6899853081513, "area_in_sqm": 17919.200800180399, "perimeter_in_m": 535.45226748208495, "length_x": 134.20852541082101, "length_y": 134.21006172739999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 28.690587654250685, 0.0 ], [ -0.001373291015625, 28.690587654250685, 0.0 ], [ -0.001373291015625, 28.689382962051894, 0.0 ], [ -0.00274658203125, 28.689382962051894, 0.0 ], [ -0.00274658203125, 28.690587654250685, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3416, "task_x": 131070, "task_y": 109280, "task_z": 18, "center_y": 28.651428062569099, "area_in_sqm": 17932.257334411101, "perimeter_in_m": 535.64730888732697, "length_x": 134.257666880361, "length_y": 134.259201863415 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 28.652030630362262, 0.0 ], [ -0.001373291015625, 28.652030630362262, 0.0 ], [ -0.001373291015625, 28.650825494775859, 0.0 ], [ -0.00274658203125, 28.650825494775859, 0.0 ], [ -0.00274658203125, 28.652030630362262, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3417, "task_x": 131070, "task_y": 109312, "task_z": 18, "center_y": 28.612856634708901, "area_in_sqm": 17945.307190358599, "perimeter_in_m": 535.84217959845296, "length_x": 134.30676562671999, "length_y": 134.30829927299899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 28.613459424004411, 0.0 ], [ -0.001373291015625, 28.613459424004411, 0.0 ], [ -0.001373291015625, 28.612253845413392, 0.0 ], [ -0.00274658203125, 28.612253845413392, 0.0 ], [ -0.00274658203125, 28.613459424004411, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3418, "task_x": 131070, "task_y": 109344, "task_z": 18, "center_y": 28.5742710368411, "area_in_sqm": 17958.350328624201, "perimeter_in_m": 536.03687921061805, "length_x": 134.35582154590199, "length_y": 134.357353852155 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 28.574874047446968, 0.0 ], [ -0.001373291015625, 28.574874047446968, 0.0 ], [ -0.001373291015625, 28.573668026235246, 0.0 ], [ -0.00274658203125, 28.573668026235246, 0.0 ], [ -0.00274658203125, 28.574874047446968, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3419, "task_x": 131070, "task_y": 109376, "task_z": 18, "center_y": 28.535671281266101, "area_in_sqm": 17971.3867092133, "perimeter_in_m": 536.23140731474098, "length_x": 134.404834533903, "length_y": 134.40636549688099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 28.536274512989912, 0.0 ], [ -0.001373291015625, 28.536274512989912, 0.0 ], [ -0.001373291015625, 28.535068049542353, 0.0 ], [ -0.00274658203125, 28.535068049542353, 0.0 ], [ -0.00274658203125, 28.536274512989912, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3420, "task_x": 131070, "task_y": 109408, "task_z": 18, "center_y": 28.4970573803147, "area_in_sqm": 17984.416291654099, "perimeter_in_m": 536.42576349748902, "length_x": 134.45380448671699, "length_y": 134.45533410317 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 28.497660832963462, 0.0 ], [ -0.001373291015625, 28.497660832963462, 0.0 ], [ -0.001373291015625, 28.496453927665868, 0.0 ], [ -0.00274658203125, 28.496453927665868, 0.0 ], [ -0.00274658203125, 28.497660832963462, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3421, "task_x": 131070, "task_y": 109440, "task_z": 18, "center_y": 28.4584293463476, "area_in_sqm": 17997.4390362501, "perimeter_in_m": 536.61994734906398, "length_x": 134.50273130033401, "length_y": 134.50425956701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 28.459033019728039, 0.0 ], [ -0.001373291015625, 28.459033019728039, 0.0 ], [ -0.001373291015625, 28.457825672967168, 0.0 ], [ -0.00274658203125, 28.457825672967168, 0.0 ], [ -0.00274658203125, 28.459033019728039, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3422, "task_x": 131070, "task_y": 109472, "task_z": 18, "center_y": 28.4197871917561, "area_in_sqm": 18010.4549024105, "perimeter_in_m": 536.81395846037401, "length_x": 134.55161487073701, "length_y": 134.55314178438701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 28.420391085674304, 0.0 ], [ -0.001373291015625, 28.420391085674304, 0.0 ], [ -0.001373291015625, 28.419183297837847, 0.0 ], [ -0.00274658203125, 28.419183297837847, 0.0 ], [ -0.00274658203125, 28.420391085674304, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3423, "task_x": 131070, "task_y": 109504, "task_z": 18, "center_y": 28.381130928961401, "area_in_sqm": 18023.463851034601, "perimeter_in_m": 537.007796422311, "length_x": 134.60045509390901, "length_y": 134.60198065128299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 28.381735043223081, 0.0 ], [ -0.001373291015625, 28.381735043223081, 0.0 ], [ -0.001373291015625, 28.380526814699671, 0.0 ], [ -0.00274658203125, 28.380526814699671, 0.0 ], [ -0.00274658203125, 28.381735043223081, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3424, "task_x": 131070, "task_y": 109536, "task_z": 18, "center_y": 28.342460570415099, "area_in_sqm": 18036.465841472102, "perimeter_in_m": 537.201460824371, "length_x": 134.64925186583, "length_y": 134.65077606367501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 28.343064904825475, 0.0 ], [ -0.001373291015625, 28.343064904825475, 0.0 ], [ -0.001373291015625, 28.341856236004695, 0.0 ], [ -0.00274658203125, 28.341856236004695, 0.0 ], [ -0.00274658203125, 28.343064904825475, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3425, "task_x": 131070, "task_y": 109568, "task_z": 18, "center_y": 28.303776128598901, "area_in_sqm": 18049.460833072699, "perimeter_in_m": 537.39495125462201, "length_x": 134.698005082474, "length_y": 134.69952791754099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 28.304380682962766, 0.0 ], [ -0.001373291015625, 28.304380682962766, 0.0 ], [ -0.001373291015625, 28.303171574235137, 0.0 ], [ -0.00274658203125, 28.303171574235137, 0.0 ], [ -0.00274658203125, 28.304380682962766, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3426, "task_x": 131070, "task_y": 109600, "task_z": 18, "center_y": 28.265077616025, "area_in_sqm": 18062.4487859607, "perimeter_in_m": 537.58826729760904, "length_x": 134.74671463981801, "length_y": 134.748236108855 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 28.265682390146459, 0.0 ], [ -0.001373291015625, 28.265682390146459, 0.0 ], [ -0.001373291015625, 28.264472841903483, 0.0 ], [ -0.00274658203125, 28.264472841903483, 0.0 ], [ -0.00274658203125, 28.265682390146459, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3427, "task_x": 131070, "task_y": 109632, "task_z": 18, "center_y": 28.226365045235401, "area_in_sqm": 18075.429660439499, "perimeter_in_m": 537.78140855836205, "length_x": 134.795380433833, "length_y": 134.79690053358999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 28.226970038918346, 0.0 ], [ -0.001373291015625, 28.226970038918346, 0.0 ], [ -0.001373291015625, 28.225760051552392, 0.0 ], [ -0.00274658203125, 28.225760051552392, 0.0 ], [ -0.00274658203125, 28.226970038918346, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3428, "task_x": 131070, "task_y": 109664, "task_z": 18, "center_y": 28.187638428802501, "area_in_sqm": 18088.403415441499, "perimeter_in_m": 537.974374607291, "length_x": 134.844002360492, "length_y": 134.845521087718 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 28.188243641850299, 0.0 ], [ -0.001373291015625, 28.188243641850299, 0.0 ], [ -0.001373291015625, 28.187033215754774, 0.0 ], [ -0.00274658203125, 28.187033215754774, 0.0 ], [ -0.00274658203125, 28.188243641850299, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3429, "task_x": 131070, "task_y": 109696, "task_z": 18, "center_y": 28.1488977793292, "area_in_sqm": 18101.370011269999, "perimeter_in_m": 538.16716505085299, "length_x": 134.892580315766, "length_y": 134.89409766720999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 28.14950321154457, 0.0 ], [ -0.001373291015625, 28.14950321154457, 0.0 ], [ -0.001373291015625, 28.148292347113745, 0.0 ], [ -0.00274658203125, 28.148292347113745, 0.0 ], [ -0.00274658203125, 28.14950321154457, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3430, "task_x": 131070, "task_y": 109728, "task_z": 18, "center_y": 28.110143109448099, "area_in_sqm": 18114.3294073939, "perimeter_in_m": 538.35977946723995, "length_x": 134.941114195625, "length_y": 134.942630168036 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 28.110748760633527, 0.0 ], [ -0.001373291015625, 28.110748760633527, 0.0 ], [ -0.001373291015625, 28.109537458262672, 0.0 ], [ -0.00274658203125, 28.109537458262672, 0.0 ], [ -0.00274658203125, 28.110748760633527, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3431, "task_x": 131070, "task_y": 109760, "task_z": 18, "center_y": 28.071374431822498, "area_in_sqm": 18127.28156358, "perimeter_in_m": 538.55221745160895, "length_x": 134.98960389604099, "length_y": 134.991118486169 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 28.071980301779845, 0.0 ], [ -0.001373291015625, 28.071980301779845, 0.0 ], [ -0.001373291015625, 28.070768561865151, 0.0 ], [ -0.00274658203125, 28.070768561865151, 0.0 ], [ -0.00274658203125, 28.071980301779845, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3432, "task_x": 131070, "task_y": 109792, "task_z": 18, "center_y": 28.032591759145699, "area_in_sqm": 18140.226439297199, "perimeter_in_m": 538.74447859416796, "length_x": 135.038049312986, "length_y": 135.03956251757899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 28.033197847676355, 0.0 ], [ -0.001373291015625, 28.033197847676355, 0.0 ], [ -0.001373291015625, 28.031985670614951, 0.0 ], [ -0.00274658203125, 28.031985670614951, 0.0 ], [ -0.00274658203125, 28.033197847676355, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3433, "task_x": 131070, "task_y": 109824, "task_z": 18, "center_y": 27.9937951041411, "area_in_sqm": 18153.163994610299, "perimeter_in_m": 538.936562483731, "length_x": 135.08645034243301, "length_y": 135.08796215824 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 27.994401411046162, 0.0 ], [ -0.001373291015625, 27.994401411046162, 0.0 ], [ -0.001373291015625, 27.99318879723613, 0.0 ], [ -0.00274658203125, 27.99318879723613, 0.0 ], [ -0.00274658203125, 27.994401411046162, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3434, "task_x": 131070, "task_y": 109856, "task_z": 18, "center_y": 27.9549844795627, "area_in_sqm": 18166.094188213301, "perimeter_in_m": 539.12846870275098, "length_x": 135.134806880356, "length_y": 135.136317304127 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 27.955591004642528, 0.0 ], [ -0.001373291015625, 27.955591004642528, 0.0 ], [ -0.001373291015625, 27.954377954482922, 0.0 ], [ -0.00274658203125, 27.954377954482922, 0.0 ], [ -0.00274658203125, 27.955591004642528, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3435, "task_x": 131070, "task_y": 109888, "task_z": 18, "center_y": 27.9161598981945, "area_in_sqm": 18179.016980230801, "perimeter_in_m": 539.32019685206501, "length_x": 135.18311882273099, "length_y": 135.184627851215 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 27.916766641249069, 0.0 ], [ -0.001373291015625, 27.916766641249069, 0.0 ], [ -0.001373291015625, 27.91555315513984, 0.0 ], [ -0.00274658203125, 27.91555315513984, 0.0 ], [ -0.00274658203125, 27.916766641249069, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3436, "task_x": 131070, "task_y": 109920, "task_z": 18, "center_y": 27.877321372850499, "area_in_sqm": 18191.9323307872, "perimeter_in_m": 539.51174652050599, "length_x": 135.231386065539, "length_y": 135.23289369548499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 27.877928333679499, 0.0 ], [ -0.001373291015625, 27.877928333679499, 0.0 ], [ -0.001373291015625, 27.876714412021549, 0.0 ], [ -0.00274658203125, 27.876714412021549, 0.0 ], [ -0.00274658203125, 27.877928333679499, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3437, "task_x": 131070, "task_y": 109952, "task_z": 18, "center_y": 27.838468916375401, "area_in_sqm": 18204.840198099599, "perimeter_in_m": 539.70311728702904, "length_x": 135.27960850476001, "length_y": 135.28111473291801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 27.839076094777802, 0.0 ], [ -0.001373291015625, 27.839076094777802, 0.0 ], [ -0.001373291015625, 27.837861737973036, 0.0 ], [ -0.00274658203125, 27.837861737973036, 0.0 ], [ -0.00274658203125, 27.839076094777802, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3438, "task_x": 131070, "task_y": 109984, "task_z": 18, "center_y": 27.7996025416438, "area_in_sqm": 18217.740542530999, "perimeter_in_m": 539.89430875391304, "length_x": 135.327786036379, "length_y": 135.329290859499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 27.800209937418238, 0.0 ], [ -0.001373291015625, 27.800209937418238, 0.0 ], [ -0.001373291015625, 27.798995145869434, 0.0 ], [ -0.00274658203125, 27.798995145869434, 0.0 ], [ -0.00274658203125, 27.800209937418238, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3439, "task_x": 131070, "task_y": 110016, "task_z": 18, "center_y": 27.760722261560701, "area_in_sqm": 18230.6333236098, "perimeter_in_m": 540.08532050718998, "length_x": 135.37591855638701, "length_y": 135.37742197121801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 27.761329874505236, 0.0 ], [ -0.001373291015625, 27.761329874505236, 0.0 ], [ -0.001373291015625, 27.760114648616138, 0.0 ], [ -0.00274658203125, 27.760114648616138, 0.0 ], [ -0.00274658203125, 27.761329874505236, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3440, "task_x": 131070, "task_y": 110048, "task_z": 18, "center_y": 27.721828089061098, "area_in_sqm": 18243.518500208898, "perimeter_in_m": 540.276152132216, "length_x": 135.42400596077701, "length_y": 135.425507964069 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 27.722435918973439, 0.0 ], [ -0.001373291015625, 27.722435918973439, 0.0 ], [ -0.001373291015625, 27.721220259148758, 0.0 ], [ -0.00274658203125, 27.721220259148758, 0.0 ], [ -0.00274658203125, 27.722435918973439, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3441, "task_x": 131070, "task_y": 110080, "task_z": 18, "center_y": 27.682920037110399, "area_in_sqm": 18256.3960318565, "perimeter_in_m": 540.46680322000395, "length_x": 135.47204814554601, "length_y": 135.47354873404899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 27.683528083787756, 0.0 ], [ -0.001373291015625, 27.683528083787756, 0.0 ], [ -0.001373291015625, 27.682311990433142, 0.0 ], [ -0.00274658203125, 27.682311990433142, 0.0 ], [ -0.00274658203125, 27.683528083787756, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3442, "task_x": 131070, "task_y": 110112, "task_z": 18, "center_y": 27.6439981187043, "area_in_sqm": 18269.265878677401, "perimeter_in_m": 540.65727336793304, "length_x": 135.52004500669801, "length_y": 135.52154417716301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 27.644606381943312, 0.0 ], [ -0.001373291015625, 27.644606381943312, 0.0 ], [ -0.001373291015625, 27.64338985546533, 0.0 ], [ -0.00274658203125, 27.64338985546533, 0.0 ], [ -0.00274658203125, 27.644606381943312, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3443, "task_x": 131070, "task_y": 110144, "task_z": 18, "center_y": 27.6050623468685, "area_in_sqm": 18282.127999186501, "perimeter_in_m": 540.84756215998698, "length_x": 135.56799644024301, "length_y": 135.569494189419 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 27.605670826465449, 0.0 ], [ -0.001373291015625, 27.605670826465449, 0.0 ], [ -0.001373291015625, 27.604453867271623, 0.0 ], [ -0.00274658203125, 27.604453867271623, 0.0 ], [ -0.00274658203125, 27.605670826465449, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3444, "task_x": 131070, "task_y": 110176, "task_z": 18, "center_y": 27.5661127346591, "area_in_sqm": 18294.982352614399, "perimeter_in_m": 541.03766918156896, "length_x": 135.615902342194, "length_y": 135.617398666832 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 27.566721430409707, 0.0 ], [ -0.001373291015625, 27.566721430409707, 0.0 ], [ -0.001373291015625, 27.565504038908543, 0.0 ], [ -0.00274658203125, 27.565504038908543, 0.0 ], [ -0.00274658203125, 27.566721430409707, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3445, "task_x": 131070, "task_y": 110208, "task_z": 18, "center_y": 27.5271492951623, "area_in_sqm": 18307.8288990855, "perimeter_in_m": 541.22759403364603, "length_x": 135.66376260857399, "length_y": 135.66525750542499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 27.527758206861883, 0.0 ], [ -0.001373291015625, 27.527758206861883, 0.0 ], [ -0.001373291015625, 27.526540383462773, 0.0 ], [ -0.00274658203125, 27.526540383462773, 0.0 ], [ -0.00274658203125, 27.527758206861883, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3446, "task_x": 131070, "task_y": 110240, "task_z": 18, "center_y": 27.4881720414946, "area_in_sqm": 18320.6675974727, "perimeter_in_m": 541.41733630237502, "length_x": 135.711577135412, "length_y": 135.713070601227 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 27.488781168937983, 0.0 ], [ -0.001373291015625, 27.488781168937983, 0.0 ], [ -0.001373291015625, 27.487562914051274, 0.0 ], [ -0.00274658203125, 27.487562914051274, 0.0 ], [ -0.00274658203125, 27.488781168937983, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3447, "task_x": 131070, "task_y": 110272, "task_z": 18, "center_y": 27.449180986802698, "area_in_sqm": 18333.498406827501, "perimeter_in_m": 541.60689557532896, "length_x": 135.75934581874299, "length_y": 135.76083785027299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 27.449790329784214, 0.0 ], [ -0.001373291015625, 27.449790329784214, 0.0 ], [ -0.001373291015625, 27.448571643821232, 0.0 ], [ -0.00274658203125, 27.448571643821232, 0.0 ], [ -0.00274658203125, 27.449790329784214, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3448, "task_x": 131070, "task_y": 110304, "task_z": 18, "center_y": 27.410176144263499, "area_in_sqm": 18346.3212864995, "perimeter_in_m": 541.79627144152903, "length_x": 135.80706855461099, "length_y": 135.80855914860899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 27.410785702577023, 0.0 ], [ -0.001373291015625, 27.410785702577023, 0.0 ], [ -0.001373291015625, 27.409566585950017, 0.0 ], [ -0.00274658203125, 27.409566585950017, 0.0 ], [ -0.00274658203125, 27.410785702577023, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3449, "task_x": 131070, "task_y": 110336, "task_z": 18, "center_y": 27.371157527084101, "area_in_sqm": 18359.136195957701, "perimeter_in_m": 541.98546349353705, "length_x": 135.85474523907001, "length_y": 135.85623439228601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 27.37176730052304, 0.0 ], [ -0.001373291015625, 27.37176730052304, 0.0 ], [ -0.001373291015625, 27.370547753645205, 0.0 ], [ -0.00274658203125, 27.370547753645205, 0.0 ], [ -0.00274658203125, 27.37176730052304, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3450, "task_x": 131070, "task_y": 110368, "task_z": 18, "center_y": 27.332125148501898, "area_in_sqm": 18371.943094134302, "perimeter_in_m": 542.17447132182303, "length_x": 135.90237576818001, "length_y": 135.903863477367 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 27.332735136859135, 0.0 ], [ -0.001373291015625, 27.332735136859135, 0.0 ], [ -0.001373291015625, 27.331515160144612, 0.0 ], [ -0.00274658203125, 27.331515160144612, 0.0 ], [ -0.00274658203125, 27.332735136859135, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3451, "task_x": 131070, "task_y": 110400, "task_z": 18, "center_y": 27.293079021784301, "area_in_sqm": 18384.741940081101, "perimeter_in_m": 542.36329451477297, "length_x": 135.94996003801299, "length_y": 135.951446299922 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 27.293689224852393, 0.0 ], [ -0.001373291015625, 27.293689224852393, 0.0 ], [ -0.001373291015625, 27.292468818716259, 0.0 ], [ -0.00274658203125, 27.292468818716259, 0.0 ], [ -0.00274658203125, 27.293689224852393, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3452, "task_x": 131070, "task_y": 110432, "task_z": 18, "center_y": 27.254019160229198, "area_in_sqm": 18397.532693326499, "perimeter_in_m": 542.55193266500601, "length_x": 135.99749794464699, "length_y": 135.998982756033 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 27.254629577800067, 0.0 ], [ -0.001373291015625, 27.254629577800067, 0.0 ], [ -0.001373291015625, 27.253408742658365, 0.0 ], [ -0.00274658203125, 27.253408742658365, 0.0 ], [ -0.00274658203125, 27.254629577800067, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3453, "task_x": 131070, "task_y": 110464, "task_z": 18, "center_y": 27.214945577164499, "area_in_sqm": 18410.3153128624, "perimeter_in_m": 542.74038536589603, "length_x": 136.04498938417601, "length_y": 136.04647274179001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 27.215556209029678, 0.0 ], [ -0.001373291015625, 27.215556209029678, 0.0 ], [ -0.001373291015625, 27.214334945299349, 0.0 ], [ -0.00274658203125, 27.214334945299349, 0.0 ], [ -0.00274658203125, 27.215556209029678, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3454, "task_x": 131070, "task_y": 110496, "task_z": 18, "center_y": 27.175858285948401, "area_in_sqm": 18423.089757561698, "perimeter_in_m": 542.92865219671, "length_x": 136.09243425269801, "length_y": 136.093916153294 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 27.17646913189887, 0.0 ], [ -0.001373291015625, 27.17646913189887, 0.0 ], [ -0.001373291015625, 27.175247439997854, 0.0 ], [ -0.00274658203125, 27.175247439997854, 0.0 ], [ -0.00274658203125, 27.17646913189887, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3455, "task_x": 131070, "task_y": 110528, "task_z": 18, "center_y": 27.136757299969201, "area_in_sqm": 18435.855986833601, "perimeter_in_m": 543.11673276428201, "length_x": 136.139832446328, "length_y": 136.14131288665999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 27.137368359795587, 0.0 ], [ -0.001373291015625, 27.137368359795587, 0.0 ], [ -0.001373291015625, 27.136146240142722, 0.0 ], [ -0.00274658203125, 27.136146240142722, 0.0 ], [ -0.00274658203125, 27.137368359795587, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3456, "task_x": 131070, "task_y": 110560, "task_z": 18, "center_y": 27.0976426326454, "area_in_sqm": 18448.613959372, "perimeter_in_m": 543.30462664510901, "length_x": 136.187183861189, "length_y": 136.188662838011 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 27.098253906137884, 0.0 ], [ -0.001373291015625, 27.098253906137884, 0.0 ], [ -0.001373291015625, 27.097031359152972, 0.0 ], [ -0.00274658203125, 27.097031359152972, 0.0 ], [ -0.00274658203125, 27.098253906137884, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3457, "task_x": 131070, "task_y": 110592, "task_z": 18, "center_y": 27.058514297426001, "area_in_sqm": 18461.3636342883, "perimeter_in_m": 543.49233343337301, "length_x": 136.23448839341799, "length_y": 136.23596590348399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 27.059125784374061, 0.0 ], [ -0.001373291015625, 27.059125784374061, 0.0 ], [ -0.001373291015625, 27.05790281047787, 0.0 ], [ -0.00274658203125, 27.05790281047787, 0.0 ], [ -0.00274658203125, 27.059125784374061, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3458, "task_x": 131070, "task_y": 110624, "task_z": 18, "center_y": 27.019372307789698, "area_in_sqm": 18474.104970872399, "perimeter_in_m": 543.67985272187104, "length_x": 136.28174593916299, "length_y": 136.28322197922799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 27.019984007982565, 0.0 ], [ -0.001373291015625, 27.019984007982565, 0.0 ], [ -0.001373291015625, 27.018760607596775, 0.0 ], [ -0.00274658203125, 27.018760607596775, 0.0 ], [ -0.00274658203125, 27.019984007982565, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3459, "task_x": 131070, "task_y": 110656, "task_z": 18, "center_y": 26.9802166772457, "area_in_sqm": 18486.8379279375, "perimeter_in_m": 543.86718410271499, "length_x": 136.32895639458701, "length_y": 136.33043096140599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 26.980828590472107, 0.0 ], [ -0.001373291015625, 26.980828590472107, 0.0 ], [ -0.001373291015625, 26.979604764019349, 0.0 ], [ -0.00274658203125, 26.979604764019349, 0.0 ], [ -0.00274658203125, 26.980828590472107, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3460, "task_x": 131070, "task_y": 110688, "task_z": 18, "center_y": 26.941047419333401, "area_in_sqm": 18499.562464118, "perimeter_in_m": 544.05432715888605, "length_x": 136.37611965586399, "length_y": 136.37759274619401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 26.941659545381498, 0.0 ], [ -0.001373291015625, 26.941659545381498, 0.0 ], [ -0.001373291015625, 26.940435293285354, 0.0 ], [ -0.00274658203125, 26.940435293285354, 0.0 ], [ -0.00274658203125, 26.941659545381498, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3461, "task_x": 131070, "task_y": 110720, "task_z": 18, "center_y": 26.901864547622299, "area_in_sqm": 18512.278539478801, "perimeter_in_m": 544.24128149668297, "length_x": 136.42323561918499, "length_y": 136.42470722978101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 26.902476886279807, 0.0 ], [ -0.001373291015625, 26.902476886279807, 0.0 ], [ -0.001373291015625, 26.901252208964777, 0.0 ], [ -0.00274658203125, 26.901252208964777, 0.0 ], [ -0.00274658203125, 26.902476886279807, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3462, "task_x": 131070, "task_y": 110752, "task_z": 18, "center_y": 26.862668075712001, "area_in_sqm": 18524.986111760099, "perimeter_in_m": 544.42804669207896, "length_x": 136.47030418075201, "length_y": 136.47177430837101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 26.86328062676624, 0.0 ], [ -0.001373291015625, 26.86328062676624, 0.0 ], [ -0.001373291015625, 26.862055524657791, 0.0 ], [ -0.00274658203125, 26.862055524657791, 0.0 ], [ -0.00274658203125, 26.86328062676624, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3463, "task_x": 131070, "task_y": 110784, "task_z": 18, "center_y": 26.8234580172325, "area_in_sqm": 18537.685140013698, "perimeter_in_m": 544.61462233874795, "length_x": 136.51732523678501, "length_y": 136.518793878184 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 26.82407078047018, 0.0 ], [ -0.001373291015625, 26.82407078047018, 0.0 ], [ -0.001373291015625, 26.822845253994736, 0.0 ], [ -0.00274658203125, 26.822845253994736, 0.0 ], [ -0.00274658203125, 26.82407078047018, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3464, "task_x": 131070, "task_y": 110816, "task_z": 18, "center_y": 26.7842343858436, "area_in_sqm": 18550.375583767898, "perimeter_in_m": 544.80100803601704, "length_x": 136.56429868351699, "length_y": 136.56576583545399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 26.784847361051192, 0.0 ], [ -0.001373291015625, 26.784847361051192, 0.0 ], [ -0.001373291015625, 26.78362141063608, 0.0 ], [ -0.00274658203125, 26.78362141063608, 0.0 ], [ -0.00274658203125, 26.784847361051192, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3465, "task_x": 131070, "task_y": 110848, "task_z": 18, "center_y": 26.744997195235801, "area_in_sqm": 18563.0574015975, "perimeter_in_m": 544.98720336563201, "length_x": 136.61122441719999, "length_y": 136.61269007643199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 26.745610382199011, 0.0 ], [ -0.001373291015625, 26.745610382199011, 0.0 ], [ -0.001373291015625, 26.744384008272533, 0.0 ], [ -0.00274658203125, 26.744384008272533, 0.0 ], [ -0.00274658203125, 26.745610382199011, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3466, "task_x": 131070, "task_y": 110880, "task_z": 18, "center_y": 26.705746459129202, "area_in_sqm": 18575.7305520177, "perimeter_in_m": 545.17320792417297, "length_x": 136.658102334098, "length_y": 136.65956649738399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 26.706359857633529, 0.0 ], [ -0.001373291015625, 26.706359857633529, 0.0 ], [ -0.001373291015625, 26.70513306062491, 0.0 ], [ -0.00274658203125, 26.70513306062491, 0.0 ], [ -0.00274658203125, 26.706359857633529, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3467, "task_x": 131070, "task_y": 110912, "task_z": 18, "center_y": 26.6664821912745, "area_in_sqm": 18588.394994497299, "perimeter_in_m": 545.35902130121895, "length_x": 136.70493233049501, "length_y": 136.706394994595 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 26.667095801104807, 0.0 ], [ -0.001373291015625, 26.667095801104807, 0.0 ], [ -0.001373291015625, 26.665868581444215, 0.0 ], [ -0.00274658203125, 26.665868581444215, 0.0 ], [ -0.00274658203125, 26.667095801104807, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3468, "task_x": 131070, "task_y": 110944, "task_z": 18, "center_y": 26.6272044054523, "area_in_sqm": 18601.050687134299, "perimeter_in_m": 545.54464308707395, "length_x": 136.75171430269199, "length_y": 136.75317546436401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 26.627818226393046, 0.0 ], [ -0.001373291015625, 26.627818226393046, 0.0 ], [ -0.001373291015625, 26.626590584511611, 0.0 ], [ -0.00274658203125, 26.626590584511611, 0.0 ], [ -0.00274658203125, 26.627818226393046, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3469, "task_x": 131070, "task_y": 110976, "task_z": 18, "center_y": 26.587913115473501, "area_in_sqm": 18613.697589159001, "perimeter_in_m": 545.73007287350902, "length_x": 136.79844814700601, "length_y": 136.799907803011 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 26.588527147308611, 0.0 ], [ -0.001373291015625, 26.588527147308611, 0.0 ], [ -0.001373291015625, 26.587299083638392, 0.0 ], [ -0.00274658203125, 26.587299083638392, 0.0 ], [ -0.00274658203125, 26.588527147308611, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3470, "task_x": 131070, "task_y": 111008, "task_z": 18, "center_y": 26.548608335179001, "area_in_sqm": 18626.3356595039, "perimeter_in_m": 545.915310256564, "length_x": 136.84513375977301, "length_y": 136.84659190687299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 26.549222577692028, 0.0 ], [ -0.001373291015625, 26.549222577692028, 0.0 ], [ -0.001373291015625, 26.547994092666016, 0.0 ], [ -0.00274658203125, 26.547994092666016, 0.0 ], [ -0.00274658203125, 26.549222577692028, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3471, "task_x": 131070, "task_y": 111040, "task_z": 18, "center_y": 26.509290078439999, "area_in_sqm": 18638.9648562074, "perimeter_in_m": 546.10035481679097, "length_x": 136.891771037349, "length_y": 136.89322767230399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 26.509904531413916, 0.0 ], [ -0.001373291015625, 26.509904531413916, 0.0 ], [ -0.001373291015625, 26.508675625466076, 0.0 ], [ -0.00274658203125, 26.508675625466076, 0.0 ], [ -0.00274658203125, 26.509904531413916, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3472, "task_x": 131070, "task_y": 111072, "task_z": 18, "center_y": 26.469958359157701, "area_in_sqm": 18651.585139215, "perimeter_in_m": 546.28520616302796, "length_x": 136.938359876108, "length_y": 136.93981499568 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 26.470573022375085, 0.0 ], [ -0.001373291015625, 26.470573022375085, 0.0 ], [ -0.001373291015625, 26.469343695940267, 0.0 ], [ -0.00274658203125, 26.469343695940267, 0.0 ], [ -0.00274658203125, 26.470573022375085, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3473, "task_x": 131070, "task_y": 111104, "task_z": 18, "center_y": 26.4306131912635, "area_in_sqm": 18664.1964657307, "perimeter_in_m": 546.46986386600997, "length_x": 136.98490017244299, "length_y": 136.98635377339599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 26.431228064506428, 0.0 ], [ -0.001373291015625, 26.431228064506428, 0.0 ], [ -0.001373291015625, 26.429998318020502, 0.0 ], [ -0.00274658203125, 26.429998318020502, 0.0 ], [ -0.00274658203125, 26.431228064506428, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3474, "task_x": 131070, "task_y": 111136, "task_z": 18, "center_y": 26.391254588718901, "area_in_sqm": 18676.798795878902, "perimeter_in_m": 546.65432753750201, "length_x": 137.031391822769, "length_y": 137.03284390186499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 26.391869671769022, 0.0 ], [ -0.001373291015625, 26.391869671769022, 0.0 ], [ -0.001373291015625, 26.390639505668723, 0.0 ], [ -0.00274658203125, 26.390639505668723, 0.0 ], [ -0.00274658203125, 26.391869671769022, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3475, "task_x": 131070, "task_y": 111168, "task_z": 18, "center_y": 26.351882565515499, "area_in_sqm": 18689.392087280801, "perimeter_in_m": 546.83859675821498, "length_x": 137.077834723519, "length_y": 137.07928527752199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 26.35249785815401, 0.0 ], [ -0.001373291015625, 26.35249785815401, 0.0 ], [ -0.001373291015625, 26.351267272877053, 0.0 ], [ -0.00274658203125, 26.351267272877053, 0.0 ], [ -0.00274658203125, 26.35249785815401, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3476, "task_x": 131070, "task_y": 111200, "task_z": 18, "center_y": 26.312497135675201, "area_in_sqm": 18701.976299166701, "perimeter_in_m": 547.02267111809795, "length_x": 137.12422877115, "length_y": 137.12567779682499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 26.313112637682671, 0.0 ], [ -0.001373291015625, 26.313112637682671, 0.0 ], [ -0.001373291015625, 26.311881633667724, 0.0 ], [ -0.00274658203125, 26.311881633667724, 0.0 ], [ -0.00274658203125, 26.313112637682671, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3477, "task_x": 131070, "task_y": 111232, "task_z": 18, "center_y": 26.273098313249701, "area_in_sqm": 18714.5513902903, "perimeter_in_m": 547.20655021915695, "length_x": 137.17057386213901, "length_y": 137.17202135625101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 26.273714024406416, 0.0 ], [ -0.001373291015625, 26.273714024406416, 0.0 ], [ -0.001373291015625, 26.272482602093056, 0.0 ], [ -0.00274658203125, 26.272482602093056, 0.0 ], [ -0.00274658203125, 26.273714024406416, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3478, "task_x": 131070, "task_y": 111264, "task_z": 18, "center_y": 26.233686112321099, "area_in_sqm": 18727.117318928202, "perimeter_in_m": 547.39023364789796, "length_x": 137.21686989298399, "length_y": 137.21831585229901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 26.234302032406731, 0.0 ], [ -0.001373291015625, 26.234302032406731, 0.0 ], [ -0.001373291015625, 26.233070192235481, 0.0 ], [ -0.00274658203125, 26.233070192235481, 0.0 ], [ -0.00274658203125, 26.234302032406731, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3479, "task_x": 131070, "task_y": 111296, "task_z": 18, "center_y": 26.194260547001399, "area_in_sqm": 18739.674043774601, "perimeter_in_m": 547.57372099370605, "length_x": 137.263116760207, "length_y": 137.26456118149201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 26.194876675795221, 0.0 ], [ -0.001373291015625, 26.194876675795221, 0.0 ], [ -0.001373291015625, 26.193644418207562, 0.0 ], [ -0.00274658203125, 26.193644418207562, 0.0 ], [ -0.00274658203125, 26.194876675795221, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3480, "task_x": 131070, "task_y": 111328, "task_z": 18, "center_y": 26.1548216314327, "area_in_sqm": 18752.221523165699, "perimeter_in_m": 547.75701184884599, "length_x": 137.30931436035399, "length_y": 137.31075724037601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 26.155437968713542, 0.0 ], [ -0.001373291015625, 26.155437968713542, 0.0 ], [ -0.001373291015625, 26.154205294151907, 0.0 ], [ -0.00274658203125, 26.154205294151907, 0.0 ], [ -0.00274658203125, 26.155437968713542, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3481, "task_x": 131070, "task_y": 111360, "task_z": 18, "center_y": 26.115369379787399, "area_in_sqm": 18764.7597163916, "perimeter_in_m": 547.94010581692203, "length_x": 137.35546258999199, "length_y": 137.35690392551899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 26.115985925333518, 0.0 ], [ -0.001373291015625, 26.115985925333518, 0.0 ], [ -0.001373291015625, 26.11475283424123, 0.0 ], [ -0.00274658203125, 26.11475283424123, 0.0 ], [ -0.00274658203125, 26.115985925333518, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3482, "task_x": 131070, "task_y": 111392, "task_z": 18, "center_y": 26.075903806267601, "area_in_sqm": 18777.288581550099, "perimeter_in_m": 548.12300247617395, "length_x": 137.401561345712, "length_y": 137.40300113351299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 26.076520559856959, 0.0 ], [ -0.001373291015625, 26.076520559856959, 0.0 ], [ -0.001373291015625, 26.075287052678334, 0.0 ], [ -0.00274658203125, 26.075287052678334, 0.0 ], [ -0.00274658203125, 26.076520559856959, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3483, "task_x": 131070, "task_y": 111424, "task_z": 18, "center_y": 26.036424925105901, "area_in_sqm": 18789.808077394999, "perimeter_in_m": 548.30570143243006, "length_x": 137.44761052413301, "length_y": 137.449048760978 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 26.037041886515823, 0.0 ], [ -0.001373291015625, 26.037041886515823, 0.0 ], [ -0.001373291015625, 26.035807963696065, 0.0 ], [ -0.00274658203125, 26.035807963696065, 0.0 ], [ -0.00274658203125, 26.037041886515823, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3484, "task_x": 131070, "task_y": 111456, "task_z": 18, "center_y": 25.996932750564699, "area_in_sqm": 18802.318162023999, "perimeter_in_m": 548.48820226757596, "length_x": 137.493610021894, "length_y": 137.495046704554 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 25.997549919572094, 0.0 ], [ -0.001373291015625, 25.997549919572094, 0.0 ], [ -0.001373291015625, 25.996315581557397, 0.0 ], [ -0.00274658203125, 25.996315581557397, 0.0 ], [ -0.00274658203125, 25.997549919572094, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3485, "task_x": 131070, "task_y": 111488, "task_z": 18, "center_y": 25.957427296936601, "area_in_sqm": 18814.818794906099, "perimeter_in_m": 548.67050458471499, "length_x": 137.539559735664, "length_y": 137.540994860908 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 25.958044673317843, 0.0 ], [ -0.001373291015625, 25.958044673317843, 0.0 ], [ -0.001373291015625, 25.956809920555301, 0.0 ], [ -0.00274658203125, 25.956809920555301, 0.0 ], [ -0.00274658203125, 25.958044673317843, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3486, "task_x": 131070, "task_y": 111520, "task_z": 18, "center_y": 25.917908578544001, "area_in_sqm": 18827.309933304801, "perimeter_in_m": 548.85260796371404, "length_x": 137.58545956213399, "length_y": 137.58689312673599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 25.918526162075153, 0.0 ], [ -0.001373291015625, 25.918526162075153, 0.0 ], [ -0.001373291015625, 25.917290995012834, 0.0 ], [ -0.00274658203125, 25.917290995012834, 0.0 ], [ -0.00274658203125, 25.918526162075153, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3487, "task_x": 131070, "task_y": 111552, "task_z": 18, "center_y": 25.8783766097396, "area_in_sqm": 18839.791536688801, "perimeter_in_m": 549.03451200992004, "length_x": 137.631309398024, "length_y": 137.63274139875699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 25.878994400196206, 0.0 ], [ -0.001373291015625, 25.878994400196206, 0.0 ], [ -0.001373291015625, 25.877758819283088, 0.0 ], [ -0.00274658203125, 25.877758819283088, 0.0 ], [ -0.00274658203125, 25.878994400196206, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3488, "task_x": 131070, "task_y": 111584, "task_z": 18, "center_y": 25.838831404906198, "area_in_sqm": 18852.2635630369, "perimeter_in_m": 549.21621630896595, "length_x": 137.67710914007901, "length_y": 137.67853957371599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 25.839449402063181, 0.0 ], [ -0.001373291015625, 25.839449402063181, 0.0 ], [ -0.001373291015625, 25.838213407749194, 0.0 ], [ -0.00274658203125, 25.838213407749194, 0.0 ], [ -0.00274658203125, 25.839449402063181, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3489, "task_x": 131070, "task_y": 111616, "task_z": 18, "center_y": 25.799272978456301, "area_in_sqm": 18864.725971043099, "perimeter_in_m": 549.39772045783195, "length_x": 137.72285868507399, "length_y": 137.72428754839001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 25.799891182088317, 0.0 ], [ -0.001373291015625, 25.799891182088317, 0.0 ], [ -0.001373291015625, 25.798654774824328, 0.0 ], [ -0.00274658203125, 25.798654774824328, 0.0 ], [ -0.00274658203125, 25.799891182088317, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3490, "task_x": 131070, "task_y": 111648, "task_z": 18, "center_y": 25.759701344832798, "area_in_sqm": 18877.178718984102, "perimeter_in_m": 549.57902404862, "length_x": 137.76855792980899, "length_y": 137.76998521957901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 25.760319754713876, 0.0 ], [ -0.001373291015625, 25.760319754713876, 0.0 ], [ -0.001373291015625, 25.759082934951692, 0.0 ], [ -0.00274658203125, 25.759082934951692, 0.0 ], [ -0.00274658203125, 25.760319754713876, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3491, "task_x": 131070, "task_y": 111680, "task_z": 18, "center_y": 25.720116518508298, "area_in_sqm": 18889.621765434698, "perimeter_in_m": 549.76012667561304, "length_x": 137.81420677111299, "length_y": 137.81563248411399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 25.720735134412095, 0.0 ], [ -0.001373291015625, 25.720735134412095, 0.0 ], [ -0.001373291015625, 25.719497902604459, 0.0 ], [ -0.00274658203125, 25.719497902604459, 0.0 ], [ -0.00274658203125, 25.720735134412095, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3492, "task_x": 131070, "task_y": 111712, "task_z": 18, "center_y": 25.6805185139856, "area_in_sqm": 18902.055069029298, "perimeter_in_m": 549.94102793668401, "length_x": 137.859805105845, "length_y": 137.86122923885401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 25.681137335685307, 0.0 ], [ -0.001373291015625, 25.681137335685307, 0.0 ], [ -0.001373291015625, 25.679899692285886, 0.0 ], [ -0.00274658203125, 25.679899692285886, 0.0 ], [ -0.00274658203125, 25.681137335685307, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3493, "task_x": 131070, "task_y": 111744, "task_z": 18, "center_y": 25.640907345797501, "area_in_sqm": 18914.478587448601, "perimeter_in_m": 550.12172741493498, "length_x": 137.90535283089201, "length_y": 137.90677538068701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 25.641526373065759, 0.0 ], [ -0.001373291015625, 25.641526373065759, 0.0 ], [ -0.001373291015625, 25.640288318529201, 0.0 ], [ -0.00274658203125, 25.640288318529201, 0.0 ], [ -0.00274658203125, 25.641526373065759, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3494, "task_x": 131070, "task_y": 111776, "task_z": 18, "center_y": 25.6012830285066, "area_in_sqm": 18926.892279922999, "perimeter_in_m": 550.30222471260095, "length_x": 137.95084984317199, "length_y": 137.952270806532 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 25.601902261115725, 0.0 ], [ -0.001373291015625, 25.601902261115725, 0.0 ], [ -0.001373291015625, 25.60066379589756, 0.0 ], [ -0.00274658203125, 25.60066379589756, 0.0 ], [ -0.00274658203125, 25.601902261115725, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3495, "task_x": 131070, "task_y": 111808, "task_z": 18, "center_y": 25.561645576705899, "area_in_sqm": 18939.2961046696, "perimeter_in_m": 550.482519428449, "length_x": 137.996296039632, "length_y": 137.997715413338 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 25.562265014427496, 0.0 ], [ -0.001373291015625, 25.562265014427496, 0.0 ], [ -0.001373291015625, 25.561026138984204, 0.0 ], [ -0.00274658203125, 25.561026138984204, 0.0 ], [ -0.00274658203125, 25.562265014427496, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3496, "task_x": 131070, "task_y": 111840, "task_z": 18, "center_y": 25.5219950050178, "area_in_sqm": 18951.6900199056, "perimeter_in_m": 550.66261114930796, "length_x": 138.04169131725101, "length_y": 138.04310909808299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 25.522614647623286, 0.0 ], [ -0.001373291015625, 25.522614647623286, 0.0 ], [ -0.001373291015625, 25.5213753624123, 0.0 ], [ -0.00274658203125, 25.5213753624123, 0.0 ], [ -0.00274658203125, 25.522614647623286, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3497, "task_x": 131070, "task_y": 111872, "task_z": 18, "center_y": 25.482331328095199, "area_in_sqm": 18964.073983609698, "perimeter_in_m": 550.84249946206899, "length_x": 138.08703557303801, "length_y": 138.08845175777799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 25.482951175355311, 0.0 ], [ -0.001373291015625, 25.482951175355311, 0.0 ], [ -0.001373291015625, 25.481711480835017, 0.0 ], [ -0.00274658203125, 25.481711480835017, 0.0 ], [ -0.00274658203125, 25.482951175355311, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3498, "task_x": 131070, "task_y": 111904, "task_z": 18, "center_y": 25.4426545606206, "area_in_sqm": 18976.4479550123, "perimeter_in_m": 551.02218398476498, "length_x": 138.13232870403399, "length_y": 138.133743289466 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 25.443274612305757, 0.0 ], [ -0.001373291015625, 25.443274612305757, 0.0 ], [ -0.001373291015625, 25.442034508935421, 0.0 ], [ -0.00274658203125, 25.442034508935421, 0.0 ], [ -0.00274658203125, 25.443274612305757, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3499, "task_x": 131070, "task_y": 111936, "task_z": 18, "center_y": 25.402964717306599, "area_in_sqm": 18988.8118914962, "perimeter_in_m": 551.20166428253106, "length_x": 138.17757060731299, "length_y": 138.17898359022101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 25.403584973186696, 0.0 ], [ -0.001373291015625, 25.403584973186696, 0.0 ], [ -0.001373291015625, 25.402344461426594, 0.0 ], [ -0.00274658203125, 25.402344461426594, 0.0 ], [ -0.00274658203125, 25.403584973186696, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3500, "task_x": 131070, "task_y": 111968, "task_z": 18, "center_y": 25.3632618128959, "area_in_sqm": 19001.165751814799, "perimeter_in_m": 551.38093996647603, "length_x": 138.222761179982, "length_y": 138.22417255715101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 25.363882272740241, 0.0 ], [ -0.001373291015625, 25.363882272740241, 0.0 ], [ -0.001373291015625, 25.362641353051544, 0.0 ], [ -0.00274658203125, 25.362641353051544, 0.0 ], [ -0.00274658203125, 25.363882272740241, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3501, "task_x": 131070, "task_y": 112000, "task_z": 18, "center_y": 25.323545862160799, "area_in_sqm": 19013.509495019902, "perimeter_in_m": 551.56001064000498, "length_x": 138.26790031917901, "length_y": 138.26931008739501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 25.324166525738391, 0.0 ], [ -0.001373291015625, 25.324166525738391, 0.0 ], [ -0.001373291015625, 25.322925198583164, 0.0 ], [ -0.00274658203125, 25.322925198583164, 0.0 ], [ -0.00274658203125, 25.324166525738391, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3502, "task_x": 131070, "task_y": 112032, "task_z": 18, "center_y": 25.2838168799037, "area_in_sqm": 19025.843077838399, "perimeter_in_m": 551.73887587764295, "length_x": 138.312987922079, "length_y": 138.31439607812899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 25.284437746983031, 0.0 ], [ -0.001373291015625, 25.284437746983031, 0.0 ], [ -0.001373291015625, 25.283196012824362, 0.0 ], [ -0.00274658203125, 25.283196012824362, 0.0 ], [ -0.00274658203125, 25.284437746983031, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3503, "task_x": 131070, "task_y": 112064, "task_z": 18, "center_y": 25.244074880956902, "area_in_sqm": 19038.166460037199, "perimeter_in_m": 551.91753529212701, "length_x": 138.358023885888, "length_y": 138.35943042656001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 25.244695951306028, 0.0 ], [ -0.001373291015625, 25.244695951306028, 0.0 ], [ -0.001373291015625, 25.243453810607861, 0.0 ], [ -0.00274658203125, 25.243453810607861, 0.0 ], [ -0.00274658203125, 25.244695951306028, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3504, "task_x": 131070, "task_y": 112096, "task_z": 18, "center_y": 25.204319880182702, "area_in_sqm": 19050.479599177801, "perimeter_in_m": 552.09598847012205, "length_x": 138.403008107848, "length_y": 138.40441302993301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 25.204941153569123, 0.0 ], [ -0.001373291015625, 25.204941153569123, 0.0 ], [ -0.001373291015625, 25.20369860679638, 0.0 ], [ -0.00274658203125, 25.20369860679638, 0.0 ], [ -0.00274658203125, 25.204941153569123, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3505, "task_x": 131070, "task_y": 112128, "task_z": 18, "center_y": 25.164551892473199, "area_in_sqm": 19062.782453894601, "perimeter_in_m": 552.27423500756402, "length_x": 138.44794048523801, "length_y": 138.449343785525 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 25.165173368663943, 0.0 ], [ -0.001373291015625, 25.165173368663943, 0.0 ], [ -0.001373291015625, 25.163930416282469, 0.0 ], [ -0.00274658203125, 25.163930416282469, 0.0 ], [ -0.00274658203125, 25.165173368663943, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3506, "task_x": 131070, "task_y": 112160, "task_z": 18, "center_y": 25.124770932750302, "area_in_sqm": 19075.074981510599, "perimeter_in_m": 552.45227449974698, "length_x": 138.49282091536901, "length_y": 138.49422259065 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 25.125392611512027, 0.0 ], [ -0.001373291015625, 25.125392611512027, 0.0 ], [ -0.001373291015625, 25.124149253988605, 0.0 ], [ -0.00274658203125, 25.124149253988605, 0.0 ], [ -0.00274658203125, 25.125392611512027, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3507, "task_x": 131070, "task_y": 112192, "task_z": 18, "center_y": 25.084977015965901, "area_in_sqm": 19087.357141614, "perimeter_in_m": 552.63010654698996, "length_x": 138.53764929559199, "length_y": 138.53904934265901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 25.08559889706477, 0.0 ], [ -0.001373291015625, 25.08559889706477, 0.0 ], [ -0.001373291015625, 25.08435513486711, 0.0 ], [ -0.00274658203125, 25.08435513486711, 0.0 ], [ -0.00274658203125, 25.08559889706477, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3508, "task_x": 131070, "task_y": 112224, "task_z": 18, "center_y": 25.045170157101801, "area_in_sqm": 19099.628891706499, "perimeter_in_m": 552.80773073908699, "length_x": 138.58242552329099, "length_y": 138.58382393893999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 25.045792240303442, 0.0 ], [ -0.001373291015625, 25.045792240303442, 0.0 ], [ -0.001373291015625, 25.044548073900188, 0.0 ], [ -0.00274658203125, 25.044548073900188, 0.0 ], [ -0.00274658203125, 25.045792240303442, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3509, "task_x": 131070, "task_y": 112256, "task_z": 18, "center_y": 25.005350371169499, "area_in_sqm": 19111.8901900649, "perimeter_in_m": 552.98514667863196, "length_x": 138.62714949589099, "length_y": 138.62854627691499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 25.00597265623918, 0.0 ], [ -0.001373291015625, 25.00597265623918, 0.0 ], [ -0.001373291015625, 25.004728086099917, 0.0 ], [ -0.00274658203125, 25.004728086099917, 0.0 ], [ -0.00274658203125, 25.00597265623918, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3510, "task_x": 131070, "task_y": 112288, "task_z": 18, "center_y": 24.965517673210599, "area_in_sqm": 19124.140995323702, "perimeter_in_m": 553.162353956988, "length_x": 138.671821110851, "length_y": 138.67321625404699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 24.966140159912968, 0.0 ], [ -0.001373291015625, 24.966140159912968, 0.0 ], [ -0.001373291015625, 24.964895186508201, 0.0 ], [ -0.00274658203125, 24.964895186508201, 0.0 ], [ -0.00274658203125, 24.966140159912968, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3511, "task_x": 131070, "task_y": 112320, "task_z": 18, "center_y": 24.925672078296198, "area_in_sqm": 19136.381264924999, "perimeter_in_m": 553.33935216913801, "length_x": 138.716440265671, "length_y": 138.717833767836 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 24.926294766395586, 0.0 ], [ -0.001373291015625, 24.926294766395586, 0.0 ], [ -0.001373291015625, 24.925049390196776, 0.0 ], [ -0.00274658203125, 24.925049390196776, 0.0 ], [ -0.00274658203125, 24.926294766395586, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3512, "task_x": 131070, "task_y": 112352, "task_z": 18, "center_y": 24.885813601527399, "area_in_sqm": 19148.610957860899, "perimeter_in_m": 553.51614091931401, "length_x": 138.76100685788899, "length_y": 138.762398715822 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 24.886436490787702, 0.0 ], [ -0.001373291015625, 24.886436490787702, 0.0 ], [ -0.001373291015625, 24.885190712267203, 0.0 ], [ -0.00274658203125, 24.885190712267203, 0.0 ], [ -0.00274658203125, 24.886436490787702, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3513, "task_x": 131070, "task_y": 112384, "task_z": 18, "center_y": 24.845942258035301, "area_in_sqm": 19160.8300319314, "perimeter_in_m": 553.69271979701296, "length_x": 138.80552078508001, "length_y": 138.80691099558101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 24.846565348219741, 0.0 ], [ -0.001373291015625, 24.846565348219741, 0.0 ], [ -0.001373291015625, 24.845319167850874, 0.0 ], [ -0.00274658203125, 24.845319167850874, 0.0 ], [ -0.00274658203125, 24.846565348219741, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3514, "task_x": 131070, "task_y": 112416, "task_z": 18, "center_y": 24.806058062980501, "area_in_sqm": 19173.038445711099, "perimeter_in_m": 553.86908840451497, "length_x": 138.84998194486101, "length_y": 138.85137050473099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 24.806681353851971, 0.0 ], [ -0.001373291015625, 24.806681353851971, 0.0 ], [ -0.001373291015625, 24.805434772108953, 0.0 ], [ -0.00274658203125, 24.805434772108953, 0.0 ], [ -0.00274658203125, 24.806681353851971, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3515, "task_x": 131070, "task_y": 112448, "task_z": 18, "center_y": 24.766161031553398, "area_in_sqm": 19185.236156821298, "perimeter_in_m": 554.04524633430105, "length_x": 138.89439023489001, "length_y": 138.89577714093099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 24.766784522874431, 0.0 ], [ -0.001373291015625, 24.766784522874431, 0.0 ], [ -0.001373291015625, 24.765537540232444, 0.0 ], [ -0.00274658203125, 24.765537540232444, 0.0 ], [ -0.00274658203125, 24.766784522874431, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3516, "task_x": 131070, "task_y": 112480, "task_z": 18, "center_y": 24.726251178974501, "area_in_sqm": 19197.423123776902, "perimeter_in_m": 554.22119318529599, "length_x": 138.938745552862, "length_y": 138.94013080187901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 24.726874870506961, 0.0 ], [ -0.001373291015625, 24.726874870506961, 0.0 ], [ -0.001373291015625, 24.725627487442111, 0.0 ], [ -0.00274658203125, 24.725627487442111, 0.0 ], [ -0.00274658203125, 24.726874870506961, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3517, "task_x": 131070, "task_y": 112512, "task_z": 18, "center_y": 24.686328520493799, "area_in_sqm": 19209.5993046761, "perimeter_in_m": 554.39692855367696, "length_x": 138.98304779651701, "length_y": 138.98443138531499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 24.686952411999144, 0.0 ], [ -0.001373291015625, 24.686952411999144, 0.0 ], [ -0.001373291015625, 24.685704628988461, 0.0 ], [ -0.00274658203125, 24.685704628988461, 0.0 ], [ -0.00274658203125, 24.686952411999144, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3518, "task_x": 131070, "task_y": 112544, "task_z": 18, "center_y": 24.646393071391099, "area_in_sqm": 19221.764657855001, "perimeter_in_m": 554.57245203995399, "length_x": 139.027296863635, "length_y": 139.02867878901901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 24.647017162630348, 0.0 ], [ -0.001373291015625, 24.647017162630348, 0.0 ], [ -0.001373291015625, 24.645768980151786, 0.0 ], [ -0.00274658203125, 24.645768980151786, 0.0 ], [ -0.00274658203125, 24.647017162630348, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3519, "task_x": 131070, "task_y": 112576, "task_z": 18, "center_y": 24.606444846975901, "area_in_sqm": 19233.919141709801, "perimeter_in_m": 554.74776324823995, "length_x": 139.07149265203799, "length_y": 139.07287291081599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 24.607069137709686, 0.0 ], [ -0.001373291015625, 24.607069137709686, 0.0 ], [ -0.001373291015625, 24.605820556242108, 0.0 ], [ -0.00274658203125, 24.605820556242108, 0.0 ], [ -0.00274658203125, 24.607069137709686, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3520, "task_x": 131070, "task_y": 112608, "task_z": 18, "center_y": 24.566483862587599, "area_in_sqm": 19246.062713027, "perimeter_in_m": 554.92286175309403, "length_x": 139.11563505959001, "length_y": 139.117013648572 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 24.567108352575971, 0.0 ], [ -0.001373291015625, 24.567108352575971, 0.0 ], [ -0.001373291015625, 24.565859372599249, 0.0 ], [ -0.00274658203125, 24.565859372599249, 0.0 ], [ -0.00274658203125, 24.567108352575971, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3521, "task_x": 131070, "task_y": 112640, "task_z": 18, "center_y": 24.526510133595199, "area_in_sqm": 19258.1953319311, "perimeter_in_m": 555.09774718141102, "length_x": 139.15972398420101, "length_y": 139.16110090019501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 24.527134822597802, 0.0 ], [ -0.001373291015625, 24.527134822597802, 0.0 ], [ -0.001373291015625, 24.525885444592632, 0.0 ], [ -0.00274658203125, 24.525885444592632, 0.0 ], [ -0.00274658203125, 24.527134822597802, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3522, "task_x": 131070, "task_y": 112672, "task_z": 18, "center_y": 24.4865236753975, "area_in_sqm": 19270.316955268401, "perimeter_in_m": 555.27241911075203, "length_x": 139.203759323821, "length_y": 139.205134563641 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 24.48714856317342, 0.0 ], [ -0.001373291015625, 24.48714856317342, 0.0 ], [ -0.001373291015625, 24.485898787621508, 0.0 ], [ -0.00274658203125, 24.485898787621508, 0.0 ], [ -0.00274658203125, 24.48714856317342, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3523, "task_x": 131070, "task_y": 112704, "task_z": 18, "center_y": 24.4465245034228, "area_in_sqm": 19282.427541554, "perimeter_in_m": 555.44687715477301, "length_x": 139.24774097644701, "length_y": 139.24911453690501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 24.447149589730827, 0.0 ], [ -0.001373291015625, 24.447149589730827, 0.0 ], [ -0.001373291015625, 24.445899417114745, 0.0 ], [ -0.00274658203125, 24.445899417114745, 0.0 ], [ -0.00274658203125, 24.447149589730827, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3524, "task_x": 131070, "task_y": 112736, "task_z": 18, "center_y": 24.406512633129299, "area_in_sqm": 19294.527048826199, "perimeter_in_m": 555.62112089898005, "length_x": 139.291668840119, "length_y": 139.29304071803 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 24.407137917727653, 0.0 ], [ -0.001373291015625, 24.407137917727653, 0.0 ], [ -0.001373291015625, 24.405887348530953, 0.0 ], [ -0.00274658203125, 24.405887348530953, 0.0 ], [ -0.00274658203125, 24.407137917727653, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3525, "task_x": 131070, "task_y": 112768, "task_z": 18, "center_y": 24.3664880800048, "area_in_sqm": 19306.615435183001, "perimeter_in_m": 555.79514994522003, "length_x": 139.33554281292299, "length_y": 139.33691300510301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 24.367113562651269, 0.0 ], [ -0.001373291015625, 24.367113562651269, 0.0 ], [ -0.001373291015625, 24.365862597358415, 0.0 ], [ -0.00274658203125, 24.365862597358415, 0.0 ], [ -0.00274658203125, 24.367113562651269, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3526, "task_x": 131070, "task_y": 112800, "task_z": 18, "center_y": 24.326450859566801, "area_in_sqm": 19318.6926586628, "perimeter_in_m": 555.96896389683798, "length_x": 139.379362792992, "length_y": 139.38073129625801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 24.327076540018638, 0.0 ], [ -0.001373291015625, 24.327076540018638, 0.0 ], [ -0.001373291015625, 24.325825179115014, 0.0 ], [ -0.00274658203125, 24.325825179115014, 0.0 ], [ -0.00274658203125, 24.327076540018638, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3527, "task_x": 131070, "task_y": 112832, "task_z": 18, "center_y": 24.286400987362398, "area_in_sqm": 19330.758677899801, "perimeter_in_m": 556.142562351636, "length_x": 139.423128678501, "length_y": 139.42449548967201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 24.287026865376419, 0.0 ], [ -0.001373291015625, 24.287026865376419, 0.0 ], [ -0.001373291015625, 24.285775109348336, 0.0 ], [ -0.00274658203125, 24.285775109348336, 0.0 ], [ -0.00274658203125, 24.287026865376419, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3528, "task_x": 131070, "task_y": 112864, "task_z": 18, "center_y": 24.246338478968202, "area_in_sqm": 19342.813450396101, "perimeter_in_m": 556.31594490678401, "length_x": 139.46684036767701, "length_y": 139.468205483573 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 24.246964554300902, 0.0 ], [ -0.001373291015625, 24.246964554300902, 0.0 ], [ -0.001373291015625, 24.245712403635594, 0.0 ], [ -0.00274658203125, 24.245712403635594, 0.0 ], [ -0.00274658203125, 24.246964554300902, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3529, "task_x": 131070, "task_y": 112896, "task_z": 18, "center_y": 24.206263349990799, "area_in_sqm": 19354.856935024301, "perimeter_in_m": 556.489111170873, "length_x": 139.51049775879099, "length_y": 139.51186117623399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 24.206889622398023, 0.0 ], [ -0.001373291015625, 24.206889622398023, 0.0 ], [ -0.001373291015625, 24.205637077583617, 0.0 ], [ -0.00274658203125, 24.205637077583617, 0.0 ], [ -0.00274658203125, 24.206889622398023, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3530, "task_x": 131070, "task_y": 112928, "task_z": 18, "center_y": 24.166175616065999, "area_in_sqm": 19366.889089047902, "perimeter_in_m": 556.66206073068895, "length_x": 139.55410075016101, "length_y": 139.55546246597399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 24.166802085303217, 0.0 ], [ -0.001373291015625, 24.166802085303217, 0.0 ], [ -0.001373291015625, 24.165549146828837, 0.0 ], [ -0.00274658203125, 24.165549146828837, 0.0 ], [ -0.00274658203125, 24.166802085303217, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3531, "task_x": 131070, "task_y": 112960, "task_z": 18, "center_y": 24.1260752928595, "area_in_sqm": 19378.9098710418, "perimeter_in_m": 556.834793195717, "length_x": 139.59764924015701, "length_y": 139.599009251165 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 24.126701958681679, 0.0 ], [ -0.001373291015625, 24.126701958681679, 0.0 ], [ -0.001373291015625, 24.125448627037315, 0.0 ], [ -0.00274658203125, 24.125448627037315, 0.0 ], [ -0.00274658203125, 24.126701958681679, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3532, "task_x": 131070, "task_y": 112992, "task_z": 18, "center_y": 24.0859623960663, "area_in_sqm": 19390.9192390442, "perimeter_in_m": 557.007308160707, "length_x": 139.641143127193, "length_y": 139.64250143022201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 24.086589258228031, 0.0 ], [ -0.001373291015625, 24.086589258228031, 0.0 ], [ -0.001373291015625, 24.085335533904626, 0.0 ], [ -0.00274658203125, 24.085335533904626, 0.0 ], [ -0.00274658203125, 24.086589258228031, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3533, "task_x": 131070, "task_y": 113024, "task_z": 18, "center_y": 24.045836941411299, "area_in_sqm": 19402.917151153099, "perimeter_in_m": 557.17960522899102, "length_x": 139.68458230973599, "length_y": 139.68593890161401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 24.046463999666571, 0.0 ], [ -0.001373291015625, 24.046463999666571, 0.0 ], [ -0.001373291015625, 24.045209883155991, 0.0 ], [ -0.00274658203125, 24.045209883155991, 0.0 ], [ -0.00274658203125, 24.046463999666571, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3534, "task_x": 131070, "task_y": 113056, "task_z": 18, "center_y": 24.0056989446486, "area_in_sqm": 19414.9035646915, "perimeter_in_m": 557.351683989874, "length_x": 139.72796668630099, "length_y": 139.72932156385801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 24.006326198751111, 0.0 ], [ -0.001373291015625, 24.006326198751111, 0.0 ], [ -0.001373291015625, 24.005071690546174, 0.0 ], [ -0.00274658203125, 24.005071690546174, 0.0 ], [ -0.00274658203125, 24.006326198751111, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3535, "task_x": 131070, "task_y": 113088, "task_z": 18, "center_y": 23.9655484215622, "area_in_sqm": 19426.8784394264, "perimeter_in_m": 557.52354406949405, "length_x": 139.771296155454, "length_y": 139.77264931552099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 23.966175871265037, 0.0 ], [ -0.001373291015625, 23.966175871265037, 0.0 ], [ -0.001373291015625, 23.964920971859385, 0.0 ], [ -0.00274658203125, 23.964920971859385, 0.0 ], [ -0.00274658203125, 23.966175871265037, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3536, "task_x": 131070, "task_y": 113120, "task_z": 18, "center_y": 23.925385387965299, "area_in_sqm": 19438.841732323199, "perimeter_in_m": 557.69518504888401, "length_x": 139.81457061581099, "length_y": 139.81592205522 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 23.926013033021192, 0.0 ], [ -0.001373291015625, 23.926013033021192, 0.0 ], [ -0.001373291015625, 23.924757742909478, 0.0 ], [ -0.00274658203125, 23.924757742909478, 0.0 ], [ -0.00274658203125, 23.926013033021192, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3537, "task_x": 131070, "task_y": 113152, "task_z": 18, "center_y": 23.8852098597009, "area_in_sqm": 19450.793401777701, "perimeter_in_m": 557.86660653462002, "length_x": 139.85778996604, "length_y": 139.85913968162501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 23.885837699861995, 0.0 ], [ -0.001373291015625, 23.885837699861995, 0.0 ], [ -0.001373291015625, 23.884582019539764, 0.0 ], [ -0.00274658203125, 23.884582019539764, 0.0 ], [ -0.00274658203125, 23.885837699861995, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3538, "task_x": 131070, "task_y": 113184, "task_z": 18, "center_y": 23.845021852641199, "area_in_sqm": 19462.733405590101, "perimeter_in_m": 558.03780812560399, "length_x": 139.90095410486001, "length_y": 139.902302093457 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 23.845649887659349, 0.0 ], [ -0.001373291015625, 23.845649887659349, 0.0 ], [ -0.001373291015625, 23.844393817623072, 0.0 ], [ -0.00274658203125, 23.844393817623072, 0.0 ], [ -0.00274658203125, 23.845649887659349, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3539, "task_x": 131070, "task_y": 113216, "task_z": 18, "center_y": 23.8048213826882, "area_in_sqm": 19474.661701679201, "perimeter_in_m": 558.20878942367801, "length_x": 139.94406293104399, "length_y": 139.94540918948999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 23.805449612314618, 0.0 ], [ -0.001373291015625, 23.805449612314618, 0.0 ], [ -0.001373291015625, 23.804193153061718, 0.0 ], [ -0.00274658203125, 23.804193153061718, 0.0 ], [ -0.00274658203125, 23.805449612314618, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3540, "task_x": 131070, "task_y": 113248, "task_z": 18, "center_y": 23.764608465773001, "area_in_sqm": 19486.578248977701, "perimeter_in_m": 558.37955003925902, "length_x": 139.98711634341501, "length_y": 139.98846086854999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 23.765236889758668, 0.0 ], [ -0.001373291015625, 23.765236889758668, 0.0 ], [ -0.001373291015625, 23.76398004178742, 0.0 ], [ -0.00274658203125, 23.76398004178742, 0.0 ], [ -0.00274658203125, 23.765236889758668, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3541, "task_x": 131070, "task_y": 113280, "task_z": 18, "center_y": 23.7243831178566, "area_in_sqm": 19498.483004748799, "perimeter_in_m": 558.55008956169195, "length_x": 140.03011424085099, "length_y": 140.03145702951599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 23.725011735951796, 0.0 ], [ -0.001373291015625, 23.725011735951796, 0.0 ], [ -0.001373291015625, 23.723754499761455, 0.0 ], [ -0.00274658203125, 23.723754499761455, 0.0 ], [ -0.00274658203125, 23.725011735951796, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3542, "task_x": 131070, "task_y": 113312, "task_z": 18, "center_y": 23.6841453549291, "area_in_sqm": 19510.375927507899, "perimeter_in_m": 558.72040760091102, "length_x": 140.07305652228499, "length_y": 140.07439757132201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 23.684774166883741, 0.0 ], [ -0.001373291015625, 23.684774166883741, 0.0 ], [ -0.001373291015625, 23.683516542974459, 0.0 ], [ -0.00274658203125, 23.683516542974459, 0.0 ], [ -0.00274658203125, 23.684774166883741, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3543, "task_x": 131070, "task_y": 113344, "task_z": 18, "center_y": 23.643895193010099, "area_in_sqm": 19522.256975471999, "perimeter_in_m": 558.89050376131604, "length_x": 140.115943086703, "length_y": 140.11728239295499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 23.644524198573677, 0.0 ], [ -0.001373291015625, 23.644524198573677, 0.0 ], [ -0.001373291015625, 23.643266187446514, 0.0 ], [ -0.00274658203125, 23.643266187446514, 0.0 ], [ -0.00274658203125, 23.644524198573677, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3544, "task_x": 131070, "task_y": 113376, "task_z": 18, "center_y": 23.6036326481487, "area_in_sqm": 19534.126105785399, "perimeter_in_m": 559.06037763399002, "length_x": 140.15877383314401, "length_y": 140.160111393459 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 23.604261847070177, 0.0 ], [ -0.001373291015625, 23.604261847070177, 0.0 ], [ -0.001373291015625, 23.60300344922716, 0.0 ], [ -0.00274658203125, 23.60300344922716, 0.0 ], [ -0.00274658203125, 23.604261847070177, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3545, "task_x": 131070, "task_y": 113408, "task_z": 18, "center_y": 23.5633577364232, "area_in_sqm": 19545.9832782745, "perimeter_in_m": 559.23002884120899, "length_x": 140.201548660707, "length_y": 140.20288447193099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 23.563987128451217, 0.0 ], [ -0.001373291015625, 23.563987128451217, 0.0 ], [ -0.001373291015625, 23.562728344395211, 0.0 ], [ -0.00274658203125, 23.562728344395211, 0.0 ], [ -0.00274658203125, 23.563987128451217, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3546, "task_x": 131070, "task_y": 113440, "task_z": 18, "center_y": 23.523070473941601, "area_in_sqm": 19557.828449368499, "perimeter_in_m": 559.39945696864697, "length_x": 140.244267468543, "length_y": 140.24560152752599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 23.523700058824133, 0.0 ], [ -0.001373291015625, 23.523700058824133, 0.0 ], [ -0.001373291015625, 23.522440889058984, 0.0 ], [ -0.00274658203125, 23.522440889058984, 0.0 ], [ -0.00274658203125, 23.523700058824133, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3547, "task_x": 131070, "task_y": 113472, "task_z": 18, "center_y": 23.482770876840899, "area_in_sqm": 19569.661577940002, "perimeter_in_m": 559.56866162537801, "length_x": 140.28693015586001, "length_y": 140.28826245945399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 23.483400654325635, 0.0 ], [ -0.001373291015625, 23.483400654325635, 0.0 ], [ -0.001373291015625, 23.482141099356099, 0.0 ], [ -0.00274658203125, 23.482141099356099, 0.0 ], [ -0.00274658203125, 23.483400654325635, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3548, "task_x": 131070, "task_y": 113504, "task_z": 18, "center_y": 23.442458961287599, "area_in_sqm": 19581.482621789, "perimeter_in_m": 559.73764241708898, "length_x": 140.32953662192401, "length_y": 140.33086716698099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 23.443088931121764, 0.0 ], [ -0.001373291015625, 23.443088931121764, 0.0 ], [ -0.001373291015625, 23.441828991453505, 0.0 ], [ -0.00274658203125, 23.441828991453505, 0.0 ], [ -0.00274658203125, 23.443088931121764, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3549, "task_x": 131070, "task_y": 113536, "task_z": 18, "center_y": 23.402134743477699, "area_in_sqm": 19593.2915394306, "perimeter_in_m": 559.90639894955996, "length_x": 140.372086766059, "length_y": 140.37341554943399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 23.402764905407935, 0.0 ], [ -0.001373291015625, 23.402764905407935, 0.0 ], [ -0.001373291015625, 23.401504581547513, 0.0 ], [ -0.00274658203125, 23.401504581547513, 0.0 ], [ -0.00274658203125, 23.402764905407935, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3550, "task_x": 131070, "task_y": 113568, "task_z": 18, "center_y": 23.3617982396363, "area_in_sqm": 19605.088288605199, "perimeter_in_m": 560.07493082304495, "length_x": 140.414580487645, "length_y": 140.415907506194 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 23.362428593408822, 0.0 ], [ -0.001373291015625, 23.362428593408822, 0.0 ], [ -0.001373291015625, 23.361167885863736, 0.0 ], [ -0.00274658203125, 23.361167885863736, 0.0 ], [ -0.00274658203125, 23.362428593408822, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3551, "task_x": 131070, "task_y": 113600, "task_z": 18, "center_y": 23.3214494660178, "area_in_sqm": 19616.872827589501, "perimeter_in_m": 560.24323764216899, "length_x": 140.45701768612, "length_y": 140.45834293670299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 23.322080011378432, 0.0 ], [ -0.001373291015625, 23.322080011378432, 0.0 ], [ -0.001373291015625, 23.320818920657089, 0.0 ], [ -0.00274658203125, 23.320818920657089, 0.0 ], [ -0.00274658203125, 23.322080011378432, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3552, "task_x": 131070, "task_y": 113632, "task_z": 18, "center_y": 23.281088438905901, "area_in_sqm": 19628.645114004601, "perimeter_in_m": 560.411319008129, "length_x": 140.499398260985, "length_y": 140.50072174046201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 23.281719175600003, 0.0 ], [ -0.001373291015625, 23.281719175600003, 0.0 ], [ -0.001373291015625, 23.280457702211748, 0.0 ], [ -0.00274658203125, 23.280457702211748, 0.0 ], [ -0.00274658203125, 23.281719175600003, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3553, "task_x": 131070, "task_y": 113664, "task_z": 18, "center_y": 23.240715174613701, "area_in_sqm": 19640.405106723301, "perimeter_in_m": 560.57917453495998, "length_x": 140.54172211179699, "length_y": 140.54304381702801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 23.241346102386132, 0.0 ], [ -0.001373291015625, 23.241346102386132, 0.0 ], [ -0.001373291015625, 23.240084246841178, 0.0 ], [ -0.00274658203125, 23.240084246841178, 0.0 ], [ -0.00274658203125, 23.241346102386132, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3554, "task_x": 131070, "task_y": 113696, "task_z": 18, "center_y": 23.200329689483301, "area_in_sqm": 19652.152763724302, "perimeter_in_m": 560.746803827642, "length_x": 140.583989138172, "length_y": 140.585309066024 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 23.200960808078563, 0.0 ], [ -0.001373291015625, 23.200960808078563, 0.0 ], [ -0.001373291015625, 23.199698570888046, 0.0 ], [ -0.00274658203125, 23.199698570888046, 0.0 ], [ -0.00274658203125, 23.200960808078563, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3555, "task_x": 131070, "task_y": 113728, "task_z": 18, "center_y": 23.1599319998863, "area_in_sqm": 19663.8880422115, "perimeter_in_m": 560.91420647432301, "length_x": 140.62619923979099, "length_y": 140.62751738712799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 23.1605633090483, 0.0 ], [ -0.001373291015625, 23.1605633090483, 0.0 ], [ -0.001373291015625, 23.159300690724336, 0.0 ], [ -0.00274658203125, 23.159300690724336, 0.0 ], [ -0.00274658203125, 23.1605633090483, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3556, "task_x": 131070, "task_y": 113760, "task_z": 18, "center_y": 23.119522122223401, "area_in_sqm": 19675.610901475, "perimeter_in_m": 561.08138210000197, "length_x": 140.668352316392, "length_y": 140.669668680082 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 23.120153621695607, 0.0 ], [ -0.001373291015625, 23.120153621695607, 0.0 ], [ -0.001373291015625, 23.118890622751138, 0.0 ], [ -0.00274658203125, 23.118890622751138, 0.0 ], [ -0.00274658203125, 23.120153621695607, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3557, "task_x": 131070, "task_y": 113792, "task_z": 18, "center_y": 23.079100072924302, "area_in_sqm": 19687.321298480001, "perimeter_in_m": 561.24833029944296, "length_x": 140.710448267776, "length_y": 140.71176284468899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 23.079731762449867, 0.0 ], [ -0.001373291015625, 23.079731762449867, 0.0 ], [ -0.001373291015625, 23.078468383398814, 0.0 ], [ -0.00274658203125, 23.078468383398814, 0.0 ], [ -0.00274658203125, 23.079731762449867, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3558, "task_x": 131070, "task_y": 113824, "task_z": 18, "center_y": 23.038665868448302, "area_in_sqm": 19699.0191927552, "perimeter_in_m": 561.41505068870299, "length_x": 140.752486993806, "length_y": 140.75379978081401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 23.039297747769723, 0.0 ], [ -0.001373291015625, 23.039297747769723, 0.0 ], [ -0.001373291015625, 23.038033989126845, 0.0 ], [ -0.00274658203125, 23.038033989126845, 0.0 ], [ -0.00274658203125, 23.039297747769723, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3559, "task_x": 131070, "task_y": 113856, "task_z": 18, "center_y": 22.9982195252834, "area_in_sqm": 19710.704541385199, "perimeter_in_m": 561.581542867743, "length_x": 140.794468394408, "length_y": 140.795779388385 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 22.99885159414292, 0.0 ], [ -0.001373291015625, 22.99885159414292, 0.0 ], [ -0.001373291015625, 22.997587456423943, 0.0 ], [ -0.00274658203125, 22.997587456423943, 0.0 ], [ -0.00274658203125, 22.99885159414292, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3560, "task_x": 131070, "task_y": 113888, "task_z": 18, "center_y": 22.957761059947099, "area_in_sqm": 19722.377302348599, "perimeter_in_m": 561.74780643735005, "length_x": 140.83639236957001, "length_y": 140.83770156739101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 22.958393318086337, 0.0 ], [ -0.001373291015625, 22.958393318086337, 0.0 ], [ -0.001373291015625, 22.957128801807897, 0.0 ], [ -0.00274658203125, 22.957128801807897, 0.0 ], [ -0.00274658203125, 22.958393318086337, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3561, "task_x": 131070, "task_y": 113920, "task_z": 18, "center_y": 22.917290488985799, "area_in_sqm": 19734.037434577898, "perimeter_in_m": 561.91384101680205, "length_x": 140.87825881934501, "length_y": 140.879566217888 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 22.917922936146027, 0.0 ], [ -0.001373291015625, 22.917922936146027, 0.0 ], [ -0.001373291015625, 22.916658041825642, 0.0 ], [ -0.00274658203125, 22.916658041825642, 0.0 ], [ -0.00274658203125, 22.917922936146027, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3562, "task_x": 131070, "task_y": 113952, "task_z": 18, "center_y": 22.876807828975199, "area_in_sqm": 19745.684895873099, "perimeter_in_m": 562.079646202199, "length_x": 140.92006764384999, "length_y": 140.92137323999401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 22.87744046489712, 0.0 ], [ -0.001373291015625, 22.87744046489712, 0.0 ], [ -0.001373291015625, 22.876175193053243, 0.0 ], [ -0.00274658203125, 22.876175193053243, 0.0 ], [ -0.00274658203125, 22.87744046489712, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3563, "task_x": 131070, "task_y": 113984, "task_z": 18, "center_y": 22.836313096519799, "area_in_sqm": 19757.3196443915, "perimeter_in_m": 562.24522161167999, "length_x": 140.96181874326501, "length_y": 140.963122533893 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 22.836945920943847, 0.0 ], [ -0.001373291015625, 22.836945920943847, 0.0 ], [ -0.001373291015625, 22.835680272095814, 0.0 ], [ -0.00274658203125, 22.835680272095814, 0.0 ], [ -0.00274658203125, 22.836945920943847, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3564, "task_x": 131070, "task_y": 114016, "task_z": 18, "center_y": 22.7958063082535, "area_in_sqm": 19768.941637992899, "perimeter_in_m": 562.41056684301202, "length_x": 141.00351201783701, "length_y": 141.00481399983201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 22.79643932091949, 0.0 ], [ -0.001373291015625, 22.79643932091949, 0.0 ], [ -0.001373291015625, 22.795173295587574, 0.0 ], [ -0.00274658203125, 22.795173295587574, 0.0 ], [ -0.00274658203125, 22.79643932091949, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3565, "task_x": 131070, "task_y": 114048, "task_z": 18, "center_y": 22.755287480839101, "area_in_sqm": 19780.550835073002, "perimeter_in_m": 562.57568150612406, "length_x": 141.045147367878, "length_y": 141.04644753812599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 22.755920681486387, 0.0 ], [ -0.001373291015625, 22.755920681486387, 0.0 ], [ -0.001373291015625, 22.754654280191758, 0.0 ], [ -0.00274658203125, 22.754654280191758, 0.0 ], [ -0.00274658203125, 22.755920681486387, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3566, "task_x": 131070, "task_y": 114080, "task_z": 18, "center_y": 22.714756630968299, "area_in_sqm": 19792.147194027901, "perimeter_in_m": 562.74056521600301, "length_x": 141.086724693766, "length_y": 141.088023049154 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 22.715390019335942, 0.0 ], [ -0.001373291015625, 22.715390019335942, 0.0 ], [ -0.001373291015625, 22.71412324260065, 0.0 ], [ -0.00274658203125, 22.71412324260065, 0.0 ], [ -0.00274658203125, 22.715390019335942, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3567, "task_x": 131070, "task_y": 114112, "task_z": 18, "center_y": 22.674213775361999, "area_in_sqm": 19803.7306728363, "perimeter_in_m": 562.90521757507202, "length_x": 141.12824389594601, "length_y": 141.12954043336501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 22.674847351188518, 0.0 ], [ -0.001373291015625, 22.674847351188518, 0.0 ], [ -0.001373291015625, 22.67358019953555, 0.0 ], [ -0.00274658203125, 22.67358019953555, 0.0 ], [ -0.00274658203125, 22.674847351188518, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3568, "task_x": 131070, "task_y": 114144, "task_z": 18, "center_y": 22.633658930770199, "area_in_sqm": 19815.301228821299, "perimeter_in_m": 563.06963818377506, "length_x": 141.169704874931, "length_y": 141.17099959127299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 22.634292693793512, 0.0 ], [ -0.001373291015625, 22.634292693793512, 0.0 ], [ -0.001373291015625, 22.633025167746794, 0.0 ], [ -0.00274658203125, 22.633025167746794, 0.0 ], [ -0.00274658203125, 22.634292693793512, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3569, "task_x": 131070, "task_y": 114176, "task_z": 18, "center_y": 22.593092113971402, "area_in_sqm": 19826.8588218689, "perimeter_in_m": 563.23382667092699, "length_x": 141.2111075313, "length_y": 141.212400423459 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 22.593726063929296, 0.0 ], [ -0.001373291015625, 22.593726063929296, 0.0 ], [ -0.001373291015625, 22.592458164013578, 0.0 ], [ -0.00274658203125, 22.592458164013578, 0.0 ], [ -0.00274658203125, 22.593726063929296, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3570, "task_x": 131070, "task_y": 114208, "task_z": 18, "center_y": 22.5525133417737, "area_in_sqm": 19838.403409004201, "perimeter_in_m": 563.39778263159803, "length_x": 141.25245176570201, "length_y": 141.253742830574 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 22.55314747840319, 0.0 ], [ -0.001373291015625, 22.55314747840319, 0.0 ], [ -0.001373291015625, 22.551879205144175, 0.0 ], [ -0.00274658203125, 22.551879205144175, 0.0 ], [ -0.00274658203125, 22.55314747840319, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3571, "task_x": 131070, "task_y": 114240, "task_z": 18, "center_y": 22.511922631013601, "area_in_sqm": 19849.9349489212, "perimeter_in_m": 563.56150568429098, "length_x": 141.29373747885401, "length_y": 141.29502671333799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 22.512556954051433, 0.0 ], [ -0.001373291015625, 22.512556954051433, 0.0 ], [ -0.001373291015625, 22.511288307975704, 0.0 ], [ -0.00274658203125, 22.511288307975704, 0.0 ], [ -0.00274658203125, 22.512556954051433, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3572, "task_x": 131070, "task_y": 114272, "task_z": 18, "center_y": 22.471319998556702, "area_in_sqm": 19861.4533994794, "perimeter_in_m": 563.72499543070603, "length_x": 141.334964571543, "length_y": 141.33625197254 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 22.471954507739213, 0.0 ], [ -0.001373291015625, 22.471954507739213, 0.0 ], [ -0.001373291015625, 22.47068548937429, 0.0 ], [ -0.00274658203125, 22.47068548937429, 0.0 ], [ -0.00274658203125, 22.471954507739213, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3573, "task_x": 131070, "task_y": 114304, "task_z": 18, "center_y": 22.430705461297698, "area_in_sqm": 19872.958718895901, "perimeter_in_m": 563.88825148328306, "length_x": 141.376132944624, "length_y": 141.377418509037 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 22.431340156360605, 0.0 ], [ -0.001373291015625, 22.431340156360605, 0.0 ], [ -0.001373291015625, 22.430070766234891, 0.0 ], [ -0.00274658203125, 22.430070766234891, 0.0 ], [ -0.00274658203125, 22.431340156360605, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3574, "task_x": 131070, "task_y": 114336, "task_z": 18, "center_y": 22.39007903616, "area_in_sqm": 19884.4508655071, "perimeter_in_m": 564.05127345105996, "length_x": 141.417242499026, "length_y": 141.41852622375899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 22.39071391683855, 0.0 ], [ -0.001373291015625, 22.39071391683855, 0.0 ], [ -0.001373291015625, 22.389444155481357, 0.0 ], [ -0.00274658203125, 22.389444155481357, 0.0 ], [ -0.00274658203125, 22.39071391683855, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3575, "task_x": 131070, "task_y": 114368, "task_z": 18, "center_y": 22.349440740095599, "area_in_sqm": 19895.929797470599, "perimeter_in_m": 564.21406094676001, "length_x": 141.45829313574501, "length_y": 141.45957501770499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 22.350075806124849, 0.0 ], [ -0.001373291015625, 22.350075806124849, 0.0 ], [ -0.001373291015625, 22.348805674066398, 0.0 ], [ -0.00274658203125, 22.348805674066398, 0.0 ], [ -0.00274658203125, 22.350075806124849, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3576, "task_x": 131070, "task_y": 114400, "task_z": 18, "center_y": 22.308790590085898, "area_in_sqm": 19907.395473897501, "perimeter_in_m": 564.37661358959895, "length_x": 141.49928475585, "length_y": 141.50056479194799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 22.309425841200181, 0.0 ], [ -0.001373291015625, 22.309425841200181, 0.0 ], [ -0.001373291015625, 22.308155338971531, 0.0 ], [ -0.00274658203125, 22.308155338971531, 0.0 ], [ -0.00274658203125, 22.309425841200181, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3577, "task_x": 131070, "task_y": 114432, "task_z": 18, "center_y": 22.2681286031406, "area_in_sqm": 19918.847851514802, "perimeter_in_m": 564.53893097493903, "length_x": 141.54021726048299, "length_y": 141.54149544763101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 22.268764039073972, 0.0 ], [ -0.001373291015625, 22.268764039073972, 0.0 ], [ -0.001373291015625, 22.267493167207178, 0.0 ], [ -0.00274658203125, 22.267493167207178, 0.0 ], [ -0.00274658203125, 22.268764039073972, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3578, "task_x": 131070, "task_y": 114464, "task_z": 18, "center_y": 22.227454796298499, "area_in_sqm": 19930.286889731899, "perimeter_in_m": 564.70101272299496, "length_x": 141.581090550857, "length_y": 141.58236688596801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 22.228090416784482, 0.0 ], [ -0.001373291015625, 22.228090416784482, 0.0 ], [ -0.001373291015625, 22.226819175812437, 0.0 ], [ -0.00274658203125, 22.226819175812437, 0.0 ], [ -0.00274658203125, 22.228090416784482, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3579, "task_x": 131070, "task_y": 114496, "task_z": 18, "center_y": 22.186769186627, "area_in_sqm": 19941.712546348601, "perimeter_in_m": 564.86285844494796, "length_x": 141.62190452825899, "length_y": 141.62317900824999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 22.187404991398779, 0.0 ], [ -0.001373291015625, 22.187404991398779, 0.0 ], [ -0.001373291015625, 22.186133381855299, 0.0 ], [ -0.00274658203125, 22.186133381855299, 0.0 ], [ -0.00274658203125, 22.187404991398779, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3580, "task_x": 131070, "task_y": 114528, "task_z": 18, "center_y": 22.1460717912225, "area_in_sqm": 19953.124779403199, "perimeter_in_m": 565.02446775213605, "length_x": 141.66265909404899, "length_y": 141.663931715839 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 22.146707780012619, 0.0 ], [ -0.001373291015625, 22.146707780012619, 0.0 ], [ -0.001373291015625, 22.145435802432416, 0.0 ], [ -0.00274658203125, 22.145435802432416, 0.0 ], [ -0.00274658203125, 22.146707780012619, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3581, "task_x": 131070, "task_y": 114560, "task_z": 18, "center_y": 22.1053626272099, "area_in_sqm": 19964.523547887798, "perimeter_in_m": 565.18584025745304, "length_x": 141.70335414966101, "length_y": 141.70462491017 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 22.105998799750552, 0.0 ], [ -0.001373291015625, 22.105998799750552, 0.0 ], [ -0.001373291015625, 22.104726454669219, 0.0 ], [ -0.00274658203125, 22.104726454669219, 0.0 ], [ -0.00274658203125, 22.105998799750552, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3582, "task_x": 131070, "task_y": 114592, "task_z": 18, "center_y": 22.064641711742802, "area_in_sqm": 19975.908809900298, "perimeter_in_m": 565.34697557536504, "length_x": 141.743989596604, "length_y": 141.74525849275599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 22.065278067765817, 0.0 ], [ -0.001373291015625, 22.065278067765817, 0.0 ], [ -0.001373291015625, 22.064005355719857, 0.0 ], [ -0.00274658203125, 22.064005355719857, 0.0 ], [ -0.00274658203125, 22.065278067765817, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3583, "task_x": 131070, "task_y": 114624, "task_z": 18, "center_y": 22.0239090620037, "area_in_sqm": 19987.280523240599, "perimeter_in_m": 565.50787331764604, "length_x": 141.78456533646099, "length_y": 141.78583236518199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 22.024545601240334, 0.0 ], [ -0.001373291015625, 22.024545601240334, 0.0 ], [ -0.001373291015625, 22.023272522767144, 0.0 ], [ -0.00274658203125, 22.023272522767144, 0.0 ], [ -0.00274658203125, 22.024545601240334, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3584, "task_x": 131070, "task_y": 114656, "task_z": 18, "center_y": 21.983164695203602, "area_in_sqm": 19998.6386467218, "perimeter_in_m": 565.66853309765099, "length_x": 141.82508127089301, "length_y": 141.82634642911 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 21.983801417384697, 0.0 ], [ -0.001373291015625, 21.983801417384697, 0.0 ], [ -0.001373291015625, 21.98252797302257, 0.0 ], [ -0.00274658203125, 21.98252797302257, 0.0 ], [ -0.00274658203125, 21.983801417384697, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3585, "task_x": 131070, "task_y": 114688, "task_z": 18, "center_y": 21.9424086285822, "area_in_sqm": 20009.983138561201, "perimeter_in_m": 565.82895452394405, "length_x": 141.86553730163399, "length_y": 141.866800586278 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 21.943045533438166, 0.0 ], [ -0.001373291015625, 21.943045533438166, 0.0 ], [ -0.001373291015625, 21.941771723726305, 0.0 ], [ -0.00274658203125, 21.941771723726305, 0.0 ], [ -0.00274658203125, 21.943045533438166, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3586, "task_x": 131070, "task_y": 114720, "task_z": 18, "center_y": 21.9016408794079, "area_in_sqm": 20021.313957095099, "perimeter_in_m": 565.98913721653901, "length_x": 141.90593333049699, "length_y": 141.907194738501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 21.90227796666862, 0.0 ], [ -0.001373291015625, 21.90227796666862, 0.0 ], [ -0.001373291015625, 21.901003792147094, 0.0 ], [ -0.00274658203125, 21.901003792147094, 0.0 ], [ -0.00274658203125, 21.90227796666862, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3587, "task_x": 131070, "task_y": 114752, "task_z": 18, "center_y": 21.8608614649774, "area_in_sqm": 20032.631060361899, "perimeter_in_m": 566.14908078712904, "length_x": 141.94626925937101, "length_y": 141.94752878767099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 21.861498734372546, 0.0 ], [ -0.001373291015625, 21.861498734372546, 0.0 ], [ -0.001373291015625, 21.860224195582347, 0.0 ], [ -0.00274658203125, 21.860224195582347, 0.0 ], [ -0.00274658203125, 21.861498734372546, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3588, "task_x": 131070, "task_y": 114784, "task_z": 18, "center_y": 21.820070402616501, "area_in_sqm": 20043.934408128302, "perimeter_in_m": 566.30878486310405, "length_x": 141.98654499022399, "length_y": 141.98780263575699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 21.820707853875021, 0.0 ], [ -0.001373291015625, 21.820707853875021, 0.0 ], [ -0.001373291015625, 21.819432951357967, 0.0 ], [ -0.00274658203125, 21.819432951357967, 0.0 ], [ -0.00274658203125, 21.820707853875021, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3589, "task_x": 131070, "task_y": 114816, "task_z": 18, "center_y": 21.7792677096791, "area_in_sqm": 20055.223956883001, "perimeter_in_m": 566.46824903529205, "length_x": 142.026760425101, "length_y": 142.028016184807 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 21.779905342529631, 0.0 ], [ -0.001373291015625, 21.779905342529631, 0.0 ], [ -0.001373291015625, 21.778630076828534, 0.0 ], [ -0.00274658203125, 21.778630076828534, 0.0 ], [ -0.00274658203125, 21.779905342529631, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3590, "task_x": 131070, "task_y": 114848, "task_z": 18, "center_y": 21.738453403547801, "area_in_sqm": 20066.4996656775, "perimeter_in_m": 566.627472931395, "length_x": 142.06691546612601, "length_y": 142.06816933694699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 21.739091217718567, 0.0 ], [ -0.001373291015625, 21.739091217718567, 0.0 ], [ -0.001373291015625, 21.737815589377078, 0.0 ], [ -0.00274658203125, 21.737815589377078, 0.0 ], [ -0.00274658203125, 21.739091217718567, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3591, "task_x": 131070, "task_y": 114880, "task_z": 18, "center_y": 21.6976275016338, "area_in_sqm": 20077.761493980899, "perimeter_in_m": 566.78645617716097, "length_x": 142.107010015502, "length_y": 142.108261994385 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 21.698265496852514, 0.0 ], [ -0.001373291015625, 21.698265496852514, 0.0 ], [ -0.001373291015625, 21.696989506415136, 0.0 ], [ -0.00274658203125, 21.696989506415136, 0.0 ], [ -0.00274658203125, 21.698265496852514, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3592, "task_x": 131070, "task_y": 114912, "task_z": 18, "center_y": 21.6567900213767, "area_in_sqm": 20089.009398996801, "perimeter_in_m": 566.94519837237203, "length_x": 142.14704397551299, "length_y": 142.148294059405 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 21.657428197370649, 0.0 ], [ -0.001373291015625, 21.657428197370649, 0.0 ], [ -0.001373291015625, 21.656151845382837, 0.0 ], [ -0.00274658203125, 21.656151845382837, 0.0 ], [ -0.00274658203125, 21.657428197370649, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3593, "task_x": 131070, "task_y": 114944, "task_z": 18, "center_y": 21.615940980244702, "area_in_sqm": 20100.2433395386, "perimeter_in_m": 567.10369914026501, "length_x": 142.18701724852301, "length_y": 142.18826543437399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 21.616579336740614, 0.0 ], [ -0.001373291015625, 21.616579336740614, 0.0 ], [ -0.001373291015625, 21.61530262374869, 0.0 ], [ -0.00274658203125, 21.61530262374869, 0.0 ], [ -0.00274658203125, 21.616579336740614, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3594, "task_x": 131070, "task_y": 114976, "task_z": 18, "center_y": 21.575080395734101, "area_in_sqm": 20111.463273823301, "perimeter_in_m": 567.261958090132, "length_x": 142.22692973697599, "length_y": 142.22817602173799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 21.575718932458471, 0.0 ], [ -0.001373291015625, 21.575718932458471, 0.0 ], [ -0.001373291015625, 21.574441859009667, 0.0 ], [ -0.00274658203125, 21.574441859009667, 0.0 ], [ -0.00274658203125, 21.575718932458471, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3595, "task_x": 131070, "task_y": 115008, "task_z": 18, "center_y": 21.534208285369999, "area_in_sqm": 20122.669161021699, "perimeter_in_m": 567.419974854722, "length_x": 142.26678134339801, "length_y": 142.26802572402701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 21.534847002048792, 0.0 ], [ -0.001373291015625, 21.534847002048792, 0.0 ], [ -0.001373291015625, 21.533569568691163, 0.0 ], [ -0.00274658203125, 21.533569568691163, 0.0 ], [ -0.00274658203125, 21.534847002048792, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3596, "task_x": 131070, "task_y": 115040, "task_z": 18, "center_y": 21.4933246667057, "area_in_sqm": 20133.860958933801, "perimeter_in_m": 567.57774903517202, "length_x": 142.30657197039699, "length_y": 142.30781444385099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 21.493963563064455, 0.0 ], [ -0.001373291015625, 21.493963563064455, 0.0 ], [ -0.001373291015625, 21.492685770347023, 0.0 ], [ -0.00274658203125, 21.492685770347023, 0.0 ], [ -0.00274658203125, 21.493963563064455, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3597, "task_x": 131070, "task_y": 115072, "task_z": 18, "center_y": 21.4524295573231, "area_in_sqm": 20145.038626670801, "perimeter_in_m": 567.73528025891903, "length_x": 142.34630152066401, "length_y": 142.347542083902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 21.453068633086772, 0.0 ], [ -0.001373291015625, 21.453068633086772, 0.0 ], [ -0.001373291015625, 21.451790481559399, 0.0 ], [ -0.00274658203125, 21.451790481559399, 0.0 ], [ -0.00274658203125, 21.453068633086772, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3598, "task_x": 131070, "task_y": 115104, "task_z": 18, "center_y": 21.411522974832099, "area_in_sqm": 20156.202121675, "perimeter_in_m": 567.89256813237296, "length_x": 142.38596989697001, "length_y": 142.387208546956 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 21.412162229725396, 0.0 ], [ -0.001373291015625, 21.412162229725396, 0.0 ], [ -0.001373291015625, 21.410883719938852, 0.0 ], [ -0.00274658203125, 21.410883719938852, 0.0 ], [ -0.00274658203125, 21.412162229725396, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3599, "task_x": 131070, "task_y": 115136, "task_z": 18, "center_y": 21.370604936871299, "area_in_sqm": 20167.351403593999, "perimeter_in_m": 568.04961228754803, "length_x": 142.42557700217401, "length_y": 142.42681373587399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 21.3712443706183, 0.0 ], [ -0.001373291015625, 21.3712443706183, 0.0 ], [ -0.001373291015625, 21.36996550312422, 0.0 ], [ -0.00274658203125, 21.36996550312422, 0.0 ], [ -0.00274658203125, 21.3712443706183, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3600, "task_x": 131070, "task_y": 115168, "task_z": 18, "center_y": 21.3296754611072, "area_in_sqm": 20178.486430823799, "perimeter_in_m": 568.206412337541, "length_x": 142.46512273921601, "length_y": 142.46635755359799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 21.330315073431791, 0.0 ], [ -0.001373291015625, 21.330315073431791, 0.0 ], [ -0.001373291015625, 21.329035848782695, 0.0 ], [ -0.00274658203125, 21.329035848782695, 0.0 ], [ -0.00274658203125, 21.330315073431791, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3601, "task_x": 131070, "task_y": 115200, "task_z": 18, "center_y": 21.288734565235099, "area_in_sqm": 20189.607161521901, "perimeter_in_m": 568.36296789917196, "length_x": 142.50460701112101, "length_y": 142.50583990315599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 21.289374355860417, 0.0 ], [ -0.001373291015625, 21.289374355860417, 0.0 ], [ -0.001373291015625, 21.288094774609718, 0.0 ], [ -0.00274658203125, 21.288094774609718, 0.0 ], [ -0.00274658203125, 21.289374355860417, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3602, "task_x": 131070, "task_y": 115232, "task_z": 18, "center_y": 21.247782266978, "area_in_sqm": 20200.7135544419, "perimeter_in_m": 568.51927859223304, "length_x": 142.54402972100101, "length_y": 142.54526068766199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 21.248422235627004, 0.0 ], [ -0.001373291015625, 21.248422235627004, 0.0 ], [ -0.001373291015625, 21.247142298328995, 0.0 ], [ -0.00274658203125, 21.247142298328995, 0.0 ], [ -0.00274658203125, 21.248422235627004, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3603, "task_x": 131070, "task_y": 115264, "task_z": 18, "center_y": 21.2068185840876, "area_in_sqm": 20211.805568516302, "perimeter_in_m": 568.67534403953505, "length_x": 142.58339077205, "length_y": 142.584619810314 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 21.207458730482642, 0.0 ], [ -0.001373291015625, 21.207458730482642, 0.0 ], [ -0.001373291015625, 21.2061784376925, 0.0 ], [ -0.00274658203125, 21.2061784376925, 0.0 ], [ -0.00274658203125, 21.207458730482642, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3604, "task_x": 131070, "task_y": 115296, "task_z": 18, "center_y": 21.165843534343502, "area_in_sqm": 20222.883161366, "perimeter_in_m": 568.83116385275503, "length_x": 142.62269006755201, "length_y": 142.62391717439701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 21.166483858206576, 0.0 ], [ -0.001373291015625, 21.166483858206576, 0.0 ], [ -0.001373291015625, 21.165203210480371, 0.0 ], [ -0.00274658203125, 21.165203210480371, 0.0 ], [ -0.00274658203125, 21.166483858206576, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3605, "task_x": 131070, "task_y": 115328, "task_z": 18, "center_y": 21.124857135553601, "area_in_sqm": 20233.946292638801, "perimeter_in_m": 568.98673766210095, "length_x": 142.66192751087499, "length_y": 142.66315268328401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 21.125497636606269, 0.0 ], [ -0.001373291015625, 21.125497636606269, 0.0 ], [ -0.001373291015625, 21.124216634500925, 0.0 ], [ -0.00274658203125, 21.124216634500925, 0.0 ], [ -0.00274658203125, 21.125497636606269, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3606, "task_x": 131070, "task_y": 115360, "task_z": 18, "center_y": 21.083859405554001, "area_in_sqm": 20244.994921147802, "perimeter_in_m": 569.14206508594498, "length_x": 142.70110300547501, "length_y": 142.70232624043101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 21.084500083517341, 0.0 ], [ -0.001373291015625, 21.084500083517341, 0.0 ], [ -0.001373291015625, 21.083218727590662, 0.0 ], [ -0.00274658203125, 21.083218727590662, 0.0 ], [ -0.00274658203125, 21.084500083517341, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3607, "task_x": 131070, "task_y": 115392, "task_z": 18, "center_y": 21.042850362208899, "area_in_sqm": 20256.029004514199, "perimeter_in_m": 569.29714573932699, "length_x": 142.740216454896, "length_y": 142.74143774938801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 21.043491216803531, 0.0 ], [ -0.001373291015625, 21.043491216803531, 0.0 ], [ -0.001373291015625, 21.042209507614231, 0.0 ], [ -0.00274658203125, 21.042209507614231, 0.0 ], [ -0.00274658203125, 21.043491216803531, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3608, "task_x": 131070, "task_y": 115424, "task_z": 18, "center_y": 21.001830023410498, "area_in_sqm": 20267.048501968398, "perimeter_in_m": 569.45197924591696, "length_x": 142.77926776277101, "length_y": 142.78048711378699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 21.002471054356718, 0.0 ], [ -0.001373291015625, 21.002471054356718, 0.0 ], [ -0.001373291015625, 21.001188992464364, 0.0 ], [ -0.00274658203125, 21.001188992464364, 0.0 ], [ -0.00274658203125, 21.002471054356718, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3609, "task_x": 131070, "task_y": 115456, "task_z": 18, "center_y": 20.960798407079398, "area_in_sqm": 20278.053372681101, "perimeter_in_m": 569.60656523098498, "length_x": 142.818256832819, "length_y": 142.81947423735301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 20.961439614096847, 0.0 ], [ -0.001373291015625, 20.961439614096847, 0.0 ], [ -0.001373291015625, 20.960157200061886, 0.0 ], [ -0.00274658203125, 20.960157200061886, 0.0 ], [ -0.00274658203125, 20.961439614096847, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3610, "task_x": 131070, "task_y": 115488, "task_z": 18, "center_y": 20.919755531163801, "area_in_sqm": 20289.043574392799, "perimeter_in_m": 569.76090331079899, "length_x": 142.85718356885101, "length_y": 142.85839902389799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 20.920396913971885, 0.0 ], [ -0.001373291015625, 20.920396913971885, 0.0 ], [ -0.001373291015625, 20.919114148355661, 0.0 ], [ -0.00274658203125, 20.919114148355661, 0.0 ], [ -0.00274658203125, 20.920396913971885, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3611, "task_x": 131070, "task_y": 115520, "task_z": 18, "center_y": 20.878701413640201, "area_in_sqm": 20300.0190672278, "perimeter_in_m": 569.91499311945995, "length_x": 142.89604787476799, "length_y": 142.897261377326 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 20.879342971957897, 0.0 ], [ -0.001373291015625, 20.879342971957897, 0.0 ], [ -0.001373291015625, 20.878059855322576, 0.0 ], [ -0.00274658203125, 20.878059855322576, 0.0 ], [ -0.00274658203125, 20.879342971957897, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3612, "task_x": 131070, "task_y": 115552, "task_z": 18, "center_y": 20.837636072513298, "area_in_sqm": 20310.979808569002, "perimeter_in_m": 570.06883426583101, "length_x": 142.934849654559, "length_y": 142.93606120163 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 20.838277806058926, 0.0 ], [ -0.001373291015625, 20.838277806058926, 0.0 ], [ -0.001373291015625, 20.836994338967614, 0.0 ], [ -0.00274658203125, 20.836994338967614, 0.0 ], [ -0.00274658203125, 20.838277806058926, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3613, "task_x": 131070, "task_y": 115584, "task_z": 18, "center_y": 20.796559525815301, "area_in_sqm": 20321.925757944598, "perimeter_in_m": 570.22242637519696, "length_x": 142.97358881230599, "length_y": 142.974798400894 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 20.797201434306984, 0.0 ], [ -0.001373291015625, 20.797201434306984, 0.0 ], [ -0.001373291015625, 20.795917617323639, 0.0 ], [ -0.00274658203125, 20.795917617323639, 0.0 ], [ -0.00274658203125, 20.797201434306984, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3614, "task_x": 131070, "task_y": 115616, "task_z": 18, "center_y": 20.755471791606801, "area_in_sqm": 20332.8568738699, "perimeter_in_m": 570.37576907938399, "length_x": 143.012265252182, "length_y": 143.01347287929201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 20.756113874762065, 0.0 ], [ -0.001373291015625, 20.756113874762065, 0.0 ], [ -0.001373291015625, 20.754829708451496, 0.0 ], [ -0.00274658203125, 20.754829708451496, 0.0 ], [ -0.00274658203125, 20.756113874762065, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3615, "task_x": 131070, "task_y": 115648, "task_z": 18, "center_y": 20.714372887976001, "area_in_sqm": 20343.773115336899, "perimeter_in_m": 570.52886199273905, "length_x": 143.05087887844999, "length_y": 143.05208454109399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 20.715015145512083, 0.0 ], [ -0.001373291015625, 20.715015145512083, 0.0 ], [ -0.001373291015625, 20.713730630439997, 0.0 ], [ -0.00274658203125, 20.713730630439997, 0.0 ], [ -0.00274658203125, 20.715015145512083, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3616, "task_x": 131070, "task_y": 115680, "task_z": 18, "center_y": 20.673262833039299, "area_in_sqm": 20354.674441218402, "perimeter_in_m": 570.68170474535202, "length_x": 143.089429595469, "length_y": 143.09063329065799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 20.673905264672825, 0.0 ], [ -0.001373291015625, 20.673905264672825, 0.0 ], [ -0.001373291015625, 20.672620401405794, 0.0 ], [ -0.00274658203125, 20.672620401405794, 0.0 ], [ -0.00274658203125, 20.673905264672825, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3617, "task_x": 131070, "task_y": 115712, "task_z": 18, "center_y": 20.632141644940699, "area_in_sqm": 20365.560810387102, "perimeter_in_m": 570.83429696323901, "length_x": 143.127917307687, "length_y": 143.12911903243901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 20.632784250388013, 0.0 ], [ -0.001373291015625, 20.632784250388013, 0.0 ], [ -0.001373291015625, 20.631499039493463, 0.0 ], [ -0.00274658203125, 20.631499039493463, 0.0 ], [ -0.00274658203125, 20.632784250388013, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3618, "task_x": 131070, "task_y": 115744, "task_z": 18, "center_y": 20.591009341852299, "area_in_sqm": 20376.4321820736, "perimeter_in_m": 570.98663826978998, "length_x": 143.16634191964999, "length_y": 143.167541670981 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 20.591652120829167, 0.0 ], [ -0.001373291015625, 20.591652120829167, 0.0 ], [ -0.001373291015625, 20.590366562875388, 0.0 ], [ -0.00274658203125, 20.590366562875388, 0.0 ], [ -0.00274658203125, 20.591652120829167, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3619, "task_x": 131070, "task_y": 115776, "task_z": 18, "center_y": 20.5498659419737, "area_in_sqm": 20387.288513839201, "perimeter_in_m": 571.1387282787, "length_x": 143.20470333599499, "length_y": 143.20590111092699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 20.55050889419563, 0.0 ], [ -0.001373291015625, 20.55050889419563, 0.0 ], [ -0.001373291015625, 20.549222989751854, 0.0 ], [ -0.00274658203125, 20.549222989751854, 0.0 ], [ -0.00274658203125, 20.55050889419563, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3620, "task_x": 131070, "task_y": 115808, "task_z": 18, "center_y": 20.508711463532698, "area_in_sqm": 20398.129766702699, "perimeter_in_m": 571.29056663562596, "length_x": 143.24300146145299, "length_y": 143.244197257011 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 20.509354588714586, 0.0 ], [ -0.001373291015625, 20.509354588714586, 0.0 ], [ -0.001373291015625, 20.50806833835081, 0.0 ], [ -0.00274658203125, 20.50806833835081, 0.0 ], [ -0.00274658203125, 20.509354588714586, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3621, "task_x": 131070, "task_y": 115840, "task_z": 18, "center_y": 20.467545924784499, "area_in_sqm": 20408.955898284901, "perimeter_in_m": 571.44215295674906, "length_x": 143.28123620085199, "length_y": 143.28243001406301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 20.468189222640959, 0.0 ], [ -0.001373291015625, 20.468189222640959, 0.0 ], [ -0.001373291015625, 20.466902626928103, 0.0 ], [ -0.00274658203125, 20.466902626928103, 0.0 ], [ -0.00274658203125, 20.468189222640959, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3622, "task_x": 131070, "task_y": 115872, "task_z": 18, "center_y": 20.426369344012301, "area_in_sqm": 20419.7668673396, "perimeter_in_m": 571.59348686411499, "length_x": 143.31940745911601, "length_y": 143.32059928701099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 20.427012814257381, 0.0 ], [ -0.001373291015625, 20.427012814257381, 0.0 ], [ -0.001373291015625, 20.425725873767249, 0.0 ], [ -0.00274658203125, 20.425725873767249, 0.0 ], [ -0.00274658203125, 20.427012814257381, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3623, "task_x": 131070, "task_y": 115904, "task_z": 18, "center_y": 20.385181739526899, "area_in_sqm": 20430.562633395199, "perimeter_in_m": 571.74456798558799, "length_x": 143.35751514126301, "length_y": 143.35870498087499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 20.385825381874255, 0.0 ], [ -0.001373291015625, 20.385825381874255, 0.0 ], [ -0.001373291015625, 20.384538097179487, 0.0 ], [ -0.00274658203125, 20.384538097179487, 0.0 ], [ -0.00274658203125, 20.385825381874255, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3624, "task_x": 131070, "task_y": 115936, "task_z": 18, "center_y": 20.3439831296667, "area_in_sqm": 20441.343155860901, "perimeter_in_m": 571.89539595982899, "length_x": 143.39555915240999, "length_y": 143.39674700077501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 20.344626943829667, 0.0 ], [ -0.001373291015625, 20.344626943829667, 0.0 ], [ -0.001373291015625, 20.343339315503755, 0.0 ], [ -0.00274658203125, 20.343339315503755, 0.0 ], [ -0.00274658203125, 20.344626943829667, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3625, "task_x": 131070, "task_y": 115968, "task_z": 18, "center_y": 20.302773532798, "area_in_sqm": 20452.1083930731, "perimeter_in_m": 572.04597040309295, "length_x": 143.43353939777001, "length_y": 143.434725251928 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 20.303417518489297, 0.0 ], [ -0.001373291015625, 20.303417518489297, 0.0 ], [ -0.001373291015625, 20.302129547106631, 0.0 ], [ -0.00274658203125, 20.302129547106631, 0.0 ], [ -0.00274658203125, 20.303417518489297, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3626, "task_x": 131070, "task_y": 116000, "task_z": 18, "center_y": 20.261552967314401, "area_in_sqm": 20462.858304977399, "perimeter_in_m": 572.19629095231198, "length_x": 143.47145578265301, "length_y": 143.47263963964599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 20.262197124246541, 0.0 ], [ -0.001373291015625, 20.262197124246541, 0.0 ], [ -0.001373291015625, 20.260908810382318, 0.0 ], [ -0.00274658203125, 20.260908810382318, 0.0 ], [ -0.00274658203125, 20.262197124246541, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3627, "task_x": 131070, "task_y": 116032, "task_z": 18, "center_y": 20.220321451637499, "area_in_sqm": 20473.592849373799, "perimeter_in_m": 572.34635722130997, "length_x": 143.50930821246899, "length_y": 143.51049006934301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 20.220965779522302, 0.0 ], [ -0.001373291015625, 20.220965779522302, 0.0 ], [ -0.001373291015625, 20.219677123752675, 0.0 ], [ -0.00274658203125, 20.219677123752675, 0.0 ], [ -0.00274658203125, 20.220965779522302, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3628, "task_x": 131070, "task_y": 116064, "task_z": 18, "center_y": 20.179079004216099, "area_in_sqm": 20484.3119863272, "perimeter_in_m": 572.49616885165597, "length_x": 143.54709659272601, "length_y": 143.54827644653 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 20.179723502765157, 0.0 ], [ -0.001373291015625, 20.179723502765157, 0.0 ], [ -0.001373291015625, 20.17843450566707, 0.0 ], [ -0.00274658203125, 20.17843450566707, 0.0 ], [ -0.00274658203125, 20.179723502765157, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3629, "task_x": 131070, "task_y": 116096, "task_z": 18, "center_y": 20.137825643526799, "area_in_sqm": 20495.0156749487, "perimeter_in_m": 572.64572546815805, "length_x": 143.584820829031, "length_y": 143.58599867681701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 20.138470312451162, 0.0 ], [ -0.001373291015625, 20.138470312451162, 0.0 ], [ -0.001373291015625, 20.13718097460243, 0.0 ], [ -0.00274658203125, 20.13718097460243, 0.0 ], [ -0.00274658203125, 20.138470312451162, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3630, "task_x": 131070, "task_y": 116128, "task_z": 18, "center_y": 20.0965613880735, "area_in_sqm": 20505.703873872801, "perimeter_in_m": 572.79502669795102, "length_x": 143.62248082709201, "length_y": 143.62365666591401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 20.097206227083888, 0.0 ], [ -0.001373291015625, 20.097206227083888, 0.0 ], [ -0.001373291015625, 20.095916549063205, 0.0 ], [ -0.00274658203125, 20.095916549063205, 0.0 ], [ -0.00274658203125, 20.097206227083888, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3631, "task_x": 131070, "task_y": 116160, "task_z": 18, "center_y": 20.055286256387902, "area_in_sqm": 20516.3765433431, "perimeter_in_m": 572.94407218037304, "length_x": 143.66007649271501, "length_y": 143.66125031963301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 20.055931265194445, 0.0 ], [ -0.001373291015625, 20.055931265194445, 0.0 ], [ -0.001373291015625, 20.05464124758133, 0.0 ], [ -0.00274658203125, 20.05464124758133, 0.0 ], [ -0.00274658203125, 20.055931265194445, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3632, "task_x": 131070, "task_y": 116192, "task_z": 18, "center_y": 20.014000267028798, "area_in_sqm": 20527.033641099901, "perimeter_in_m": 573.09286153024902, "length_x": 143.69760773181099, "length_y": 143.698779543885 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 20.014645445341344, 0.0 ], [ -0.001373291015625, 20.014645445341344, 0.0 ], [ -0.001373291015625, 20.013355088716224, 0.0 ], [ -0.00274658203125, 20.013355088716224, 0.0 ], [ -0.00274658203125, 20.014645445341344, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3633, "task_x": 131070, "task_y": 116224, "task_z": 18, "center_y": 19.972703438582599, "area_in_sqm": 20537.6751279235, "perimeter_in_m": 573.24139439720796, "length_x": 143.73507445038899, "length_y": 143.73624424468301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 19.973348786110606, 0.0 ], [ -0.001373291015625, 19.973348786110606, 0.0 ], [ -0.001373291015625, 19.972058091054691, 0.0 ], [ -0.00274658203125, 19.972058091054691, 0.0 ], [ -0.00274658203125, 19.973348786110606, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3634, "task_x": 131070, "task_y": 116256, "task_z": 18, "center_y": 19.931395789663199, "area_in_sqm": 20548.300961852099, "perimeter_in_m": 573.38967039294801, "length_x": 143.772476554561, "length_y": 143.77364432814301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 19.932041306115522, 0.0 ], [ -0.001373291015625, 19.932041306115522, 0.0 ], [ -0.001373291015625, 19.930750273210961, 0.0 ], [ -0.00274658203125, 19.930750273210961, 0.0 ], [ -0.00274658203125, 19.932041306115522, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3635, "task_x": 131070, "task_y": 116288, "task_z": 18, "center_y": 19.890077338911802, "area_in_sqm": 20558.9111032486, "perimeter_in_m": 573.53768916751699, "length_x": 143.80981395054101, "length_y": 143.81097970048199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 19.890723023996898, 0.0 ], [ -0.001373291015625, 19.890723023996898, 0.0 ], [ -0.001373291015625, 19.889431653826634, 0.0 ], [ -0.00274658203125, 19.889431653826634, 0.0 ], [ -0.00274658203125, 19.890723023996898, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3636, "task_x": 131070, "task_y": 116320, "task_z": 18, "center_y": 19.848748104996702, "area_in_sqm": 20569.505510449399, "perimeter_in_m": 573.68545033725502, "length_x": 143.84708654464799, "length_y": 143.84825026802201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 19.84939395842278, 0.0 ], [ -0.001373291015625, 19.84939395842278, 0.0 ], [ -0.001373291015625, 19.848102251570651, 0.0 ], [ -0.00274658203125, 19.848102251570651, 0.0 ], [ -0.00274658203125, 19.84939395842278, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3637, "task_x": 131070, "task_y": 116352, "task_z": 18, "center_y": 19.807408106613899, "area_in_sqm": 20580.084143698201, "perimeter_in_m": 573.83295354767301, "length_x": 143.88429424330201, "length_y": 143.88545593718601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 19.808054128088571, 0.0 ], [ -0.001373291015625, 19.808054128088571, 0.0 ], [ -0.001373291015625, 19.806762085139226, 0.0 ], [ -0.00274658203125, 19.806762085139226, 0.0 ], [ -0.00274658203125, 19.808054128088571, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3638, "task_x": 131070, "task_y": 116384, "task_z": 18, "center_y": 19.7660573624864, "area_in_sqm": 20590.646961927399, "perimeter_in_m": 573.98019842471399, "length_x": 143.921436953029, "length_y": 143.92259661450399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 19.766703551716958, 0.0 ], [ -0.001373291015625, 19.766703551716958, 0.0 ], [ -0.001373291015625, 19.765411173255913, 0.0 ], [ -0.00274658203125, 19.765411173255913, 0.0 ], [ -0.00274658203125, 19.766703551716958, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3639, "task_x": 131070, "task_y": 116416, "task_z": 18, "center_y": 19.7246958913647, "area_in_sqm": 20601.1939247847, "perimeter_in_m": 574.12718460089297, "length_x": 143.958514580458, "length_y": 143.95967220660901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 19.725342248057871, 0.0 ], [ -0.001373291015625, 19.725342248057871, 0.0 ], [ -0.001373291015625, 19.724049534671508, 0.0 ], [ -0.00274658203125, 19.724049534671508, 0.0 ], [ -0.00274658203125, 19.725342248057871, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3640, "task_x": 131070, "task_y": 116448, "task_z": 18, "center_y": 19.683323712026201, "area_in_sqm": 20611.724991261999, "perimeter_in_m": 574.27391171033901, "length_x": 143.99552703232601, "length_y": 143.996682620238 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 19.683970235888438, 0.0 ], [ -0.001373291015625, 19.683970235888438, 0.0 ], [ -0.001373291015625, 19.682677188163993, 0.0 ], [ -0.00274658203125, 19.682677188163993, 0.0 ], [ -0.00274658203125, 19.683970235888438, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3641, "task_x": 131070, "task_y": 116480, "task_z": 18, "center_y": 19.641940843275801, "area_in_sqm": 20622.240121424202, "perimeter_in_m": 574.420379393041, "length_x": 144.03247421547201, "length_y": 144.03362776223699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 19.642587534013032, 0.0 ], [ -0.001373291015625, 19.642587534013032, 0.0 ], [ -0.001373291015625, 19.641294152538563, 0.0 ], [ -0.00274658203125, 19.641294152538563, 0.0 ], [ -0.00274658203125, 19.642587534013032, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3642, "task_x": 131070, "task_y": 116512, "task_z": 18, "center_y": 19.600547303945401, "area_in_sqm": 20632.739274323001, "perimeter_in_m": 574.56658727438003, "length_x": 144.069356036844, "length_y": 144.070507539555 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 19.601194161263138, 0.0 ], [ -0.001373291015625, 19.601194161263138, 0.0 ], [ -0.001373291015625, 19.599900446627572, 0.0 ], [ -0.00274658203125, 19.599900446627572, 0.0 ], [ -0.00274658203125, 19.601194161263138, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3643, "task_x": 131070, "task_y": 116544, "task_z": 18, "center_y": 19.559143112893999, "area_in_sqm": 20643.222409665599, "perimeter_in_m": 574.71253499406498, "length_x": 144.10617240349501, "length_y": 144.107321859249 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 19.559790136497412, 0.0 ], [ -0.001373291015625, 19.559790136497412, 0.0 ], [ -0.001373291015625, 19.558496089290514, 0.0 ], [ -0.00274658203125, 19.558496089290514, 0.0 ], [ -0.00274658203125, 19.559790136497412, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3644, "task_x": 131070, "task_y": 116576, "task_z": 18, "center_y": 19.517728289007799, "area_in_sqm": 20653.689486801599, "perimeter_in_m": 574.85822218707801, "length_x": 144.142923222587, "length_y": 144.144070628485 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 19.518375478601556, 0.0 ], [ -0.001373291015625, 19.518375478601556, 0.0 ], [ -0.001373291015625, 19.517081099413957, 0.0 ], [ -0.00274658203125, 19.517081099413957, 0.0 ], [ -0.00274658203125, 19.518375478601556, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3645, "task_x": 131070, "task_y": 116608, "task_z": 18, "center_y": 19.4763028512, "area_in_sqm": 20664.1404657364, "perimeter_in_m": 575.00364848932804, "length_x": 144.17960840138801, "length_y": 144.18075375453401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 19.476950206488411, 0.0 ], [ -0.001373291015625, 19.476950206488411, 0.0 ], [ -0.001373291015625, 19.475655495911568, 0.0 ], [ -0.00274658203125, 19.475655495911568, 0.0 ], [ -0.00274658203125, 19.476950206488411, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3646, "task_x": 131070, "task_y": 116640, "task_z": 18, "center_y": 19.434866818410899, "area_in_sqm": 20674.5753058195, "perimeter_in_m": 575.148813536224, "length_x": 144.216227847276, "length_y": 144.21737114477699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 19.435514339097807, 0.0 ], [ -0.001373291015625, 19.435514339097807, 0.0 ], [ -0.001373291015625, 19.434219297724027, 0.0 ], [ -0.00274658203125, 19.434219297724027, 0.0 ], [ -0.00274658203125, 19.435514339097807, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3647, "task_x": 131070, "task_y": 116672, "task_z": 18, "center_y": 19.3934202096078, "area_in_sqm": 20684.993966758298, "perimeter_in_m": 575.29371696764099, "length_x": 144.25278146773601, "length_y": 144.25392270670301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 19.394067895396617, 0.0 ], [ -0.001373291015625, 19.394067895396617, 0.0 ], [ -0.001373291015625, 19.392772523819033, 0.0 ], [ -0.00274658203125, 19.392772523819033, 0.0 ], [ -0.00274658203125, 19.394067895396617, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3648, "task_x": 131070, "task_y": 116704, "task_z": 18, "center_y": 19.351963043784899, "area_in_sqm": 20695.3964083791, "perimeter_in_m": 575.43835841730402, "length_x": 144.28926917036401, "length_y": 144.29040834791201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 19.352610894378628, 0.0 ], [ -0.001373291015625, 19.352610894378628, 0.0 ], [ -0.001373291015625, 19.35131519319124, 0.0 ], [ -0.00274658203125, 19.35131519319124, 0.0 ], [ -0.00274658203125, 19.352610894378628, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3649, "task_x": 131070, "task_y": 116736, "task_z": 18, "center_y": 19.310495339963499, "area_in_sqm": 20705.782590031598, "perimeter_in_m": 575.58273752058699, "length_x": 144.325690862866, "length_y": 144.32682797611099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 19.311143355064644, 0.0 ], [ -0.001373291015625, 19.311143355064644, 0.0 ], [ -0.001373291015625, 19.309847324862289, 0.0 ], [ -0.00274658203125, 19.309847324862289, 0.0 ], [ -0.00274658203125, 19.311143355064644, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3650, "task_x": 131070, "task_y": 116768, "task_z": 18, "center_y": 19.269017117191499, "area_in_sqm": 20716.152471601999, "perimeter_in_m": 575.72685392154199, "length_x": 144.36204645305699, "length_y": 144.363181499121 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 19.269665296502325, 0.0 ], [ -0.001373291015625, 19.269665296502325, 0.0 ], [ -0.001373291015625, 19.26836893788068, 0.0 ], [ -0.00274658203125, 19.26836893788068, 0.0 ], [ -0.00274658203125, 19.269665296502325, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3651, "task_x": 131070, "task_y": 116800, "task_z": 18, "center_y": 19.227528394543999, "area_in_sqm": 20726.506013452999, "perimeter_in_m": 575.87070725738499, "length_x": 144.39833584886401, "length_y": 144.39946882487001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 19.228176737766248, 0.0 ], [ -0.001373291015625, 19.228176737766248, 0.0 ], [ -0.001373291015625, 19.226880051321814, 0.0 ], [ -0.00274658203125, 19.226880051321814, 0.0 ], [ -0.00274658203125, 19.228176737766248, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3652, "task_x": 131070, "task_y": 116832, "task_z": 18, "center_y": 19.186029191122898, "area_in_sqm": 20736.843174576799, "perimeter_in_m": 576.01429716132998, "length_x": 144.434558958325, "length_y": 144.43568986140201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 19.186677697957833, 0.0 ], [ -0.001373291015625, 19.186677697957833, 0.0 ], [ -0.001373291015625, 19.185380684287964, 0.0 ], [ -0.00274658203125, 19.185380684287964, 0.0 ], [ -0.00274658203125, 19.186677697957833, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3653, "task_x": 131070, "task_y": 116864, "task_z": 18, "center_y": 19.144519526056701, "area_in_sqm": 20747.163915097699, "perimeter_in_m": 576.15762327809398, "length_x": 144.47071568959001, "length_y": 144.47184451686999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 19.14516819620529, 0.0 ], [ -0.001373291015625, 19.14516819620529, 0.0 ], [ -0.001373291015625, 19.143870855908176, 0.0 ], [ -0.00274658203125, 19.143870855908176, 0.0 ], [ -0.00274658203125, 19.14516819620529, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3654, "task_x": 131070, "task_y": 116896, "task_z": 18, "center_y": 19.102999418501, "area_in_sqm": 20757.468194425099, "perimeter_in_m": 576.30068523851003, "length_x": 144.506805950923, "length_y": 144.50793269954099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 19.103648251663628, 0.0 ], [ -0.001373291015625, 19.103648251663628, 0.0 ], [ -0.001373291015625, 19.102350585338328, 0.0 ], [ -0.00274658203125, 19.102350585338328, 0.0 ], [ -0.00274658203125, 19.103648251663628, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3655, "task_x": 131070, "task_y": 116928, "task_z": 18, "center_y": 19.061468887637801, "area_in_sqm": 20767.755973994699, "perimeter_in_m": 576.44348270540297, "length_x": 144.542829650698, "length_y": 144.54395431779301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 19.062117883514659, 0.0 ], [ -0.001373291015625, 19.062117883514659, 0.0 ], [ -0.001373291015625, 19.060819891760971, 0.0 ], [ -0.00274658203125, 19.060819891760971, 0.0 ], [ -0.00274658203125, 19.062117883514659, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3656, "task_x": 131070, "task_y": 116960, "task_z": 18, "center_y": 19.019927952676099, "area_in_sqm": 20778.027211844899, "perimeter_in_m": 576.58601529028704, "length_x": 144.578786697407, "length_y": 144.57990928011901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 19.020577110966798, 0.0 ], [ -0.001373291015625, 19.020577110966798, 0.0 ], [ -0.001373291015625, 19.019278794385471, 0.0 ], [ -0.00274658203125, 19.019278794385471, 0.0 ], [ -0.00274658203125, 19.020577110966798, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3657, "task_x": 131070, "task_y": 116992, "task_z": 18, "center_y": 18.9783766328515, "area_in_sqm": 20788.2818695307, "perimeter_in_m": 576.72828265785301, "length_x": 144.61467699965101, "length_y": 144.61579749512799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 18.97902595325526, 0.0 ], [ -0.001373291015625, 18.97902595325526, 0.0 ], [ -0.001373291015625, 18.977727312447783, 0.0 ], [ -0.00274658203125, 18.977727312447783, 0.0 ], [ -0.00274658203125, 18.97902595325526, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3658, "task_x": 131070, "task_y": 117024, "task_z": 18, "center_y": 18.9368149474262, "area_in_sqm": 20798.5199058652, "perimeter_in_m": 576.870284435607, "length_x": 144.65050046614999, "length_y": 144.65161887153999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 18.937464429641864, 0.0 ], [ -0.001373291015625, 18.937464429641864, 0.0 ], [ -0.001373291015625, 18.936165465210621, 0.0 ], [ -0.00274658203125, 18.936165465210621, 0.0 ], [ -0.00274658203125, 18.937464429641864, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3659, "task_x": 131070, "task_y": 117056, "task_z": 18, "center_y": 18.895242915689099, "area_in_sqm": 20808.741281628601, "perimeter_in_m": 577.01202027316594, "length_x": 144.68625700573699, "length_y": 144.68737331819301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 18.895892559415032, 0.0 ], [ -0.001373291015625, 18.895892559415032, 0.0 ], [ -0.001373291015625, 18.894593271963203, 0.0 ], [ -0.00274658203125, 18.894593271963203, 0.0 ], [ -0.00274658203125, 18.895892559415032, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3660, "task_x": 131070, "task_y": 117088, "task_z": 18, "center_y": 18.8536605569556, "area_in_sqm": 20818.945956408999, "perimeter_in_m": 577.15348980555098, "length_x": 144.72194652736101, "length_y": 144.72306074404 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 18.854310361889802, 0.0 ], [ -0.001373291015625, 18.854310361889802, 0.0 ], [ -0.001373291015625, 18.853010752021419, 0.0 ], [ -0.00274658203125, 18.853010752021419, 0.0 ], [ -0.00274658203125, 18.854310361889802, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3661, "task_x": 131070, "task_y": 117120, "task_z": 18, "center_y": 18.8120678905677, "area_in_sqm": 20829.1338906288, "perimeter_in_m": 577.29469268072705, "length_x": 144.75756894008799, "length_y": 144.75868105814999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 18.812717856407758, 0.0 ], [ -0.001373291015625, 18.812717856407758, 0.0 ], [ -0.001373291015625, 18.811417924727678, 0.0 ], [ -0.00274658203125, 18.811417924727678, 0.0 ], [ -0.00274658203125, 18.812717856407758, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3662, "task_x": 131070, "task_y": 117152, "task_z": 18, "center_y": 18.770464935894001, "area_in_sqm": 20839.3050442934, "perimeter_in_m": 577.43562854336096, "length_x": 144.793124153099, "length_y": 144.79423416970801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 18.771115062337017, 0.0 ], [ -0.001373291015625, 18.771115062337017, 0.0 ], [ -0.001373291015625, 18.769814809450907, 0.0 ], [ -0.00274658203125, 18.769814809450907, 0.0 ], [ -0.00274658203125, 18.771115062337017, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3663, "task_x": 131070, "task_y": 117184, "task_z": 18, "center_y": 18.728851712329298, "area_in_sqm": 20849.459377944499, "perimeter_in_m": 577.57629703693601, "length_x": 144.82861207569499, "length_y": 144.82971998801801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 18.729501999072141, 0.0 ], [ -0.001373291015625, 18.729501999072141, 0.0 ], [ -0.001373291015625, 18.728201425586505, 0.0 ], [ -0.00274658203125, 18.728201425586505, 0.0 ], [ -0.00274658203125, 18.729501999072141, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3664, "task_x": 131070, "task_y": 117216, "task_z": 18, "center_y": 18.687228239295301, "area_in_sqm": 20859.596851050901, "perimeter_in_m": 577.71669779882802, "length_x": 144.864032617292, "length_y": 144.8651384225 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 18.687878686034182, 0.0 ], [ -0.001373291015625, 18.687878686034182, 0.0 ], [ -0.001373291015625, 18.686577792556378, 0.0 ], [ -0.00274658203125, 18.686577792556378, 0.0 ], [ -0.00274658203125, 18.687878686034182, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3665, "task_x": 131070, "task_y": 117248, "task_z": 18, "center_y": 18.645594536239699, "area_in_sqm": 20869.717424452301, "perimeter_in_m": 577.85683048287501, "length_x": 144.899385687425, "length_y": 144.90048938269501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 18.646245142670608, 0.0 ], [ -0.001373291015625, 18.646245142670608, 0.0 ], [ -0.001373291015625, 18.644943929808775, 0.0 ], [ -0.00274658203125, 18.644943929808775, 0.0 ], [ -0.00274658203125, 18.646245142670608, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3666, "task_x": 131070, "task_y": 117280, "task_z": 18, "center_y": 18.603950622636798, "area_in_sqm": 20879.821058690501, "perimeter_in_m": 577.996694731861, "length_x": 144.93467119575101, "length_y": 144.93577277825901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 18.604601388455251, 0.0 ], [ -0.001373291015625, 18.604601388455251, 0.0 ], [ -0.001373291015625, 18.603299856818367, 0.0 ], [ -0.00274658203125, 18.603299856818367, 0.0 ], [ -0.00274658203125, 18.604601388455251, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3667, "task_x": 131070, "task_y": 117312, "task_z": 18, "center_y": 18.5622965179872, "area_in_sqm": 20889.907713413199, "perimeter_in_m": 578.13629019092696, "length_x": 144.969889052041, "length_y": 144.97098851897101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 18.562947442888316, 0.0 ], [ -0.001373291015625, 18.562947442888316, 0.0 ], [ -0.001373291015625, 18.561645593086183, 0.0 ], [ -0.00274658203125, 18.561645593086183, 0.0 ], [ -0.00274658203125, 18.562947442888316, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3668, "task_x": 131070, "task_y": 117344, "task_z": 18, "center_y": 18.5206322418179, "area_in_sqm": 20899.977349162102, "perimeter_in_m": 578.27561650403698, "length_x": 145.00503916619101, "length_y": 145.00613651472801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 18.521283325496285, 0.0 ], [ -0.001373291015625, 18.521283325496285, 0.0 ], [ -0.001373291015625, 18.519981158139544, 0.0 ], [ -0.00274658203125, 18.519981158139544, 0.0 ], [ -0.00274658203125, 18.521283325496285, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3669, "task_x": 131070, "task_y": 117376, "task_z": 18, "center_y": 18.478957813682001, "area_in_sqm": 20910.029926121199, "perimeter_in_m": 578.41467331398997, "length_x": 145.04012144821399, "length_y": 145.04121667554799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 18.479609055831972, 0.0 ], [ -0.001373291015625, 18.479609055831972, 0.0 ], [ -0.001373291015625, 18.478306571532087, 0.0 ], [ -0.00274658203125, 18.478306571532087, 0.0 ], [ -0.00274658203125, 18.479609055831972, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3670, "task_x": 131070, "task_y": 117408, "task_z": 18, "center_y": 18.437273253158999, "area_in_sqm": 20920.065405428399, "perimeter_in_m": 578.55346028076303, "length_x": 145.07513580824499, "length_y": 145.07622891157001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 18.437924653474397, 0.0 ], [ -0.001373291015625, 18.437924653474397, 0.0 ], [ -0.001373291015625, 18.436621852843615, 0.0 ], [ -0.00274658203125, 18.436621852843615, 0.0 ], [ -0.00274658203125, 18.437924653474397, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3671, "task_x": 131070, "task_y": 117440, "task_z": 18, "center_y": 18.395578579854501, "area_in_sqm": 20930.0837469697, "perimeter_in_m": 578.69197704339797, "length_x": 145.11008215653999, "length_y": 145.111173133054 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 18.396230138028812, 0.0 ], [ -0.001373291015625, 18.396230138028812, 0.0 ], [ -0.001373291015625, 18.394927021680218, 0.0 ], [ -0.00274658203125, 18.394927021680218, 0.0 ], [ -0.00274658203125, 18.396230138028812, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3672, "task_x": 131070, "task_y": 117472, "task_z": 18, "center_y": 18.353873813400401, "area_in_sqm": 20940.0849117041, "perimeter_in_m": 578.83022325317995, "length_x": 145.14496040348001, "length_y": 145.14604925038401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 18.354525529126633, 0.0 ], [ -0.001373291015625, 18.354525529126633, 0.0 ], [ -0.001373291015625, 18.353222097674134, 0.0 ], [ -0.00274658203125, 18.353222097674134, 0.0 ], [ -0.00274658203125, 18.354525529126633, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3673, "task_x": 131070, "task_y": 117504, "task_z": 18, "center_y": 18.312158973454601, "area_in_sqm": 20950.068859577201, "perimeter_in_m": 578.96819855246497, "length_x": 145.179770459564, "length_y": 145.18085717406299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 18.312810846425435, 0.0 ], [ -0.001373291015625, 18.312810846425435, 0.0 ], [ -0.001373291015625, 18.311507100483766, 0.0 ], [ -0.00274658203125, 18.311507100483766, 0.0 ], [ -0.00274658203125, 18.312810846425435, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3674, "task_x": 131070, "task_y": 117536, "task_z": 18, "center_y": 18.2704340797012, "area_in_sqm": 20960.0355519652, "perimeter_in_m": 579.105902601499, "length_x": 145.214512235417, "length_y": 145.21559681471999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 18.271086109608873, 0.0 ], [ -0.001373291015625, 18.271086109608873, 0.0 ], [ -0.001373291015625, 18.269782049793534, 0.0 ], [ -0.00274658203125, 18.269782049793534, 0.0 ], [ -0.00274658203125, 18.271086109608873, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3675, "task_x": 131070, "task_y": 117568, "task_z": 18, "center_y": 18.2286991518504, "area_in_sqm": 20969.984948873502, "perimeter_in_m": 579.24333504100696, "length_x": 145.249185641786, "length_y": 145.25026808310599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 18.229351338386678, 0.0 ], [ -0.001373291015625, 18.229351338386678, 0.0 ], [ -0.001373291015625, 18.228046965314036, 0.0 ], [ -0.00274658203125, 18.228046965314036, 0.0 ], [ -0.00274658203125, 18.229351338386678, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3676, "task_x": 131070, "task_y": 117600, "task_z": 18, "center_y": 18.186954209638198, "area_in_sqm": 20979.9170110226, "perimeter_in_m": 579.38049552326004, "length_x": 145.283790589544, "length_y": 145.28487089009801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 18.187606552494614, 0.0 ], [ -0.001373291015625, 18.187606552494614, 0.0 ], [ -0.001373291015625, 18.186301866781832, 0.0 ], [ -0.00274658203125, 18.186301866781832, 0.0 ], [ -0.00274658203125, 18.187606552494614, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3677, "task_x": 131070, "task_y": 117632, "task_z": 18, "center_y": 18.145199272827, "area_in_sqm": 20989.831699550199, "perimeter_in_m": 579.51738370360204, "length_x": 145.31832698968699, "length_y": 145.319405146695 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 18.145851771694467, 0.0 ], [ -0.001373291015625, 18.145851771694467, 0.0 ], [ -0.001373291015625, 18.144546773959505, 0.0 ], [ -0.00274658203125, 18.144546773959505, 0.0 ], [ -0.00274658203125, 18.145851771694467, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3678, "task_x": 131070, "task_y": 117664, "task_z": 18, "center_y": 18.103434361204801, "area_in_sqm": 20999.728974580801, "perimeter_in_m": 579.65399922067297, "length_x": 145.35279475333701, "length_y": 145.35387076402299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 18.104087015773942, 0.0 ], [ -0.001373291015625, 18.104087015773942, 0.0 ], [ -0.001373291015625, 18.102781706635611, 0.0 ], [ -0.00274658203125, 18.102781706635611, 0.0 ], [ -0.00274658203125, 18.104087015773942, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3679, "task_x": 131070, "task_y": 117696, "task_z": 18, "center_y": 18.061659494585601, "area_in_sqm": 21009.6087972522, "perimeter_in_m": 579.79034173949503, "length_x": 145.38719379174, "length_y": 145.388267653334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 18.062312304546708, 0.0 ], [ -0.001373291015625, 18.062312304546708, 0.0 ], [ -0.001373291015625, 18.061006684624587, 0.0 ], [ -0.00274658203125, 18.061006684624587, 0.0 ], [ -0.00274658203125, 18.062312304546708, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3680, "task_x": 131070, "task_y": 117728, "task_z": 18, "center_y": 18.019874692809601, "area_in_sqm": 21019.471128523401, "perimeter_in_m": 579.92641090839595, "length_x": 145.42152401627101, "length_y": 145.422595726005 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 18.020527657852327, 0.0 ], [ -0.001373291015625, 18.020527657852327, 0.0 ], [ -0.001373291015625, 18.019221727766819, 0.0 ], [ -0.00274658203125, 18.019221727766819, 0.0 ], [ -0.00274658203125, 18.020527657852327, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3681, "task_x": 131070, "task_y": 117760, "task_z": 18, "center_y": 17.9780799757423, "area_in_sqm": 21029.315929174401, "perimeter_in_m": 580.06220638018499, "length_x": 145.45578533842999, "length_y": 145.456854893539 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 17.978733095556166, 0.0 ], [ -0.001373291015625, 17.978733095556166, 0.0 ], [ -0.001373291015625, 17.977426855928471, 0.0 ], [ -0.00274658203125, 17.977426855928471, 0.0 ], [ -0.00274658203125, 17.978733095556166, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3682, "task_x": 131070, "task_y": 117792, "task_z": 18, "center_y": 17.936275363275499, "area_in_sqm": 21039.143159568299, "perimeter_in_m": 580.19772779946402, "length_x": 145.489977669843, "length_y": 145.49104506756899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 17.936928637549428, 0.0 ], [ -0.001373291015625, 17.936928637549428, 0.0 ], [ -0.001373291015625, 17.935622089001583, 0.0 ], [ -0.00274658203125, 17.935622089001583, 0.0 ], [ -0.00274658203125, 17.936928637549428, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3683, "task_x": 131070, "task_y": 117824, "task_z": 18, "center_y": 17.894460875326502, "area_in_sqm": 21048.952781558, "perimeter_in_m": 580.33297483437696, "length_x": 145.524100922266, "length_y": 145.525166159854 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 17.895114303749139, 0.0 ], [ -0.001373291015625, 17.895114303749139, 0.0 ], [ -0.001373291015625, 17.893807446903949, 0.0 ], [ -0.00274658203125, 17.893807446903949, 0.0 ], [ -0.00274658203125, 17.895114303749139, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3684, "task_x": 131070, "task_y": 117856, "task_z": 18, "center_y": 17.852636531838499, "area_in_sqm": 21058.744755625699, "perimeter_in_m": 580.46794712861504, "length_x": 145.558155007583, "length_y": 145.55921808228001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 17.853290114098002, 0.0 ], [ -0.001373291015625, 17.853290114098002, 0.0 ], [ -0.001373291015625, 17.851982949579096, 0.0 ], [ -0.00274658203125, 17.851982949579096, 0.0 ], [ -0.00274658203125, 17.853290114098002, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3685, "task_x": 131070, "task_y": 117888, "task_z": 18, "center_y": 17.810802352780399, "area_in_sqm": 21068.519042849501, "perimeter_in_m": 580.60264433671705, "length_x": 145.592139837806, "length_y": 145.593200746864 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 17.811456088564469, 0.0 ], [ -0.001373291015625, 17.811456088564469, 0.0 ], [ -0.001373291015625, 17.810148616996287, 0.0 ], [ -0.00274658203125, 17.810148616996287, 0.0 ], [ -0.00274658203125, 17.811456088564469, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3686, "task_x": 131070, "task_y": 117920, "task_z": 18, "center_y": 17.768958358146499, "area_in_sqm": 21078.2756046057, "perimeter_in_m": 580.73706612618798, "length_x": 145.62605532507601, "length_y": 145.62711406575301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 17.769612247142661, 0.0 ], [ -0.001373291015625, 17.769612247142661, 0.0 ], [ -0.001373291015625, 17.768304469150394, 0.0 ], [ -0.00274658203125, 17.768304469150394, 0.0 ], [ -0.00274658203125, 17.769612247142661, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3687, "task_x": 131070, "task_y": 117952, "task_z": 18, "center_y": 17.727104567957099, "area_in_sqm": 21088.014401197401, "perimeter_in_m": 580.87121213302601, "length_x": 145.65990138166401, "length_y": 145.66095795122001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 17.727758609852273, 0.0 ], [ -0.001373291015625, 17.727758609852273, 0.0 ], [ -0.001373291015625, 17.726450526061996, 0.0 ], [ -0.00274658203125, 17.726450526061996, 0.0 ], [ -0.00274658203125, 17.727758609852273, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3688, "task_x": 131070, "task_y": 117984, "task_z": 18, "center_y": 17.6852410022579, "area_in_sqm": 21097.735394477801, "perimeter_in_m": 581.00508202736398, "length_x": 145.693677919973, "length_y": 145.69473231567301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 17.68589519673867, 0.0 ], [ -0.001373291015625, 17.68589519673867, 0.0 ], [ -0.001373291015625, 17.684586807777194, 0.0 ], [ -0.00274658203125, 17.684586807777194, 0.0 ], [ -0.00274658203125, 17.68589519673867, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3689, "task_x": 131070, "task_y": 118016, "task_z": 18, "center_y": 17.6433676811202, "area_in_sqm": 21107.4385457635, "perimeter_in_m": 581.13867546477695, "length_x": 145.72738485253399, "length_y": 145.72843707164699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 17.644022027872722, 0.0 ], [ -0.001373291015625, 17.644022027872722, 0.0 ], [ -0.001373291015625, 17.642713334367656, 0.0 ], [ -0.00274658203125, 17.642713334367656, 0.0 ], [ -0.00274658203125, 17.644022027872722, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3690, "task_x": 131070, "task_y": 118048, "task_z": 18, "center_y": 17.601484624640701, "area_in_sqm": 21117.123815953699, "perimeter_in_m": 581.27199210039601, "length_x": 145.76102209201301, "length_y": 145.76207213180999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 17.602139123350838, 0.0 ], [ -0.001373291015625, 17.602139123350838, 0.0 ], [ -0.001373291015625, 17.600830125930628, 0.0 ], [ -0.00274658203125, 17.600830125930628, 0.0 ], [ -0.00274658203125, 17.602139123350838, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3691, "task_x": 131070, "task_y": 118080, "task_z": 18, "center_y": 17.5595918529418, "area_in_sqm": 21126.791166365099, "perimeter_in_m": 581.40503159173102, "length_x": 145.79458955120401, "length_y": 145.79563740896401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 17.560246503294906, 0.0 ], [ -0.001373291015625, 17.560246503294906, 0.0 ], [ -0.001373291015625, 17.558937202588751, 0.0 ], [ -0.00274658203125, 17.558937202588751, 0.0 ], [ -0.00274658203125, 17.560246503294906, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3692, "task_x": 131070, "task_y": 118112, "task_z": 18, "center_y": 17.517689386171199, "area_in_sqm": 21136.440558254701, "perimeter_in_m": 581.53779359302303, "length_x": 145.82808714303599, "length_y": 145.82913281603899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 17.518344187852207, 0.0 ], [ -0.001373291015625, 17.518344187852207, 0.0 ], [ -0.001373291015625, 17.517034584490148, 0.0 ], [ -0.00274658203125, 17.517034584490148, 0.0 ], [ -0.00274658203125, 17.518344187852207, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3693, "task_x": 131070, "task_y": 118144, "task_z": 18, "center_y": 17.475777244501899, "area_in_sqm": 21146.071953535102, "perimeter_in_m": 581.67027777290104, "length_x": 145.86151478056999, "length_y": 145.86255826610201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 17.476432197195521, 0.0 ], [ -0.001373291015625, 17.476432197195521, 0.0 ], [ -0.001373291015625, 17.475122291808333, 0.0 ], [ -0.00274658203125, 17.475122291808333, 0.0 ], [ -0.00274658203125, 17.476432197195521, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3694, "task_x": 131070, "task_y": 118176, "task_z": 18, "center_y": 17.433855448132501, "area_in_sqm": 21155.685312867201, "perimeter_in_m": 581.80248377978398, "length_x": 145.89487237700101, "length_y": 145.89591367235101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 17.434510551522891, 0.0 ], [ -0.001373291015625, 17.434510551522891, 0.0 ], [ -0.001373291015625, 17.433200344742204, 0.0 ], [ -0.00274658203125, 17.433200344742204, 0.0 ], [ -0.00274658203125, 17.434510551522891, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3695, "task_x": 131070, "task_y": 118208, "task_z": 18, "center_y": 17.3919240172869, "area_in_sqm": 21165.280598223198, "perimeter_in_m": 581.93441128353902, "length_x": 145.92815984565701, "length_y": 145.92919894811899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 17.39257927105777, 0.0 ], [ -0.001373291015625, 17.39257927105777, 0.0 ], [ -0.001373291015625, 17.391268763515953, 0.0 ], [ -0.00274658203125, 17.391268763515953, 0.0 ], [ -0.00274658203125, 17.39257927105777, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3696, "task_x": 131070, "task_y": 118240, "task_z": 18, "center_y": 17.349982972213901, "area_in_sqm": 21174.857771337, "perimeter_in_m": 582.06605993946505, "length_x": 145.96137710000201, "length_y": 145.96241400687401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 17.350638376048835, 0.0 ], [ -0.001373291015625, 17.350638376048835, 0.0 ], [ -0.001373291015625, 17.349327568379067, 0.0 ], [ -0.00274658203125, 17.349327568379067, 0.0 ], [ -0.00274658203125, 17.350638376048835, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3697, "task_x": 131070, "task_y": 118272, "task_z": 18, "center_y": 17.308032333188201, "area_in_sqm": 21184.416792571501, "perimeter_in_m": 582.19742940173103, "length_x": 145.994524053633, "length_y": 145.995558762218 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 17.308687886770016, 0.0 ], [ -0.001373291015625, 17.308687886770016, 0.0 ], [ -0.001373291015625, 17.307376779606287, 0.0 ], [ -0.00274658203125, 17.307376779606287, 0.0 ], [ -0.00274658203125, 17.308687886770016, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3698, "task_x": 131070, "task_y": 118304, "task_z": 18, "center_y": 17.266072120509001, "area_in_sqm": 21193.957625269901, "perimeter_in_m": 582.328519350183, "length_x": 146.027600620285, "length_y": 146.02863312788801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 17.266727823520526, 0.0 ], [ -0.001373291015625, 17.266727823520526, 0.0 ], [ -0.001373291015625, 17.265416417497548, 0.0 ], [ -0.00274658203125, 17.265416417497548, 0.0 ], [ -0.00274658203125, 17.266727823520526, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3699, "task_x": 131070, "task_y": 118336, "task_z": 18, "center_y": 17.224102354501301, "area_in_sqm": 21203.4802297354, "perimeter_in_m": 582.45932942822697, "length_x": 146.06060671382701, "length_y": 146.06163701775901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 17.224758206624628, 0.0 ], [ -0.001373291015625, 17.224758206624628, 0.0 ], [ -0.001373291015625, 17.223446502377982, 0.0 ], [ -0.00274658203125, 17.223446502377982, 0.0 ], [ -0.00274658203125, 17.224758206624628, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3700, "task_x": 131070, "task_y": 118368, "task_z": 18, "center_y": 17.182123055514801, "area_in_sqm": 21212.984568238298, "perimeter_in_m": 582.58985930778397, "length_x": 146.09354224826501, "length_y": 146.09457034584099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 17.182779056431826, 0.0 ], [ -0.001373291015625, 17.182779056431826, 0.0 ], [ -0.001373291015625, 17.181467054597817, 0.0 ], [ -0.00274658203125, 17.181467054597817, 0.0 ], [ -0.00274658203125, 17.182779056431826, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3701, "task_x": 131070, "task_y": 118400, "task_z": 18, "center_y": 17.1401342439245, "area_in_sqm": 21222.470602452799, "perimeter_in_m": 582.72010864903405, "length_x": 146.126407137743, "length_y": 146.12743302628201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 17.140790393316649, 0.0 ], [ -0.001373291015625, 17.140790393316649, 0.0 ], [ -0.001373291015625, 17.139478094532393, 0.0 ], [ -0.00274658203125, 17.139478094532393, 0.0 ], [ -0.00274658203125, 17.140790393316649, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3702, "task_x": 131070, "task_y": 118432, "task_z": 18, "center_y": 17.098135940130401, "area_in_sqm": 21231.938293993499, "perimeter_in_m": 582.85007711597802, "length_x": 146.15920129654199, "length_y": 146.16022497336701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 17.098792237678694, 0.0 ], [ -0.001373291015625, 17.098792237678694, 0.0 ], [ -0.001373291015625, 17.097479642582087, 0.0 ], [ -0.00274658203125, 17.097479642582087, 0.0 ], [ -0.00274658203125, 17.098792237678694, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3703, "task_x": 131070, "task_y": 118464, "task_z": 18, "center_y": 17.0561281645574, "area_in_sqm": 21241.387605071101, "perimeter_in_m": 582.97976437499403, "length_x": 146.19192463908001, "length_y": 146.192946101519 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 17.05678460994254, 0.0 ], [ -0.001373291015625, 17.05678460994254, 0.0 ], [ -0.001373291015625, 17.055471719172246, 0.0 ], [ -0.00274658203125, 17.055471719172246, 0.0 ], [ -0.00274658203125, 17.05678460994254, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3704, "task_x": 131070, "task_y": 118496, "task_z": 18, "center_y": 17.014110937655602, "area_in_sqm": 21250.8184973598, "perimeter_in_m": 583.10917008991896, "length_x": 146.22457707991501, "length_y": 146.22559632530101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 17.014767530557833, 0.0 ], [ -0.001373291015625, 17.014767530557833, 0.0 ], [ -0.001373291015625, 17.013454344753299, 0.0 ], [ -0.00274658203125, 17.013454344753299, 0.0 ], [ -0.00274658203125, 17.014767530557833, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3705, "task_x": 131070, "task_y": 118528, "task_z": 18, "center_y": 16.9720842798997, "area_in_sqm": 21260.230932712599, "perimeter_in_m": 583.23829392415405, "length_x": 146.25715853374399, "length_y": 146.25817555941299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 16.972741019999006, 0.0 ], [ -0.001373291015625, 16.972741019999006, 0.0 ], [ -0.001373291015625, 16.971427539800473, 0.0 ], [ -0.00274658203125, 16.971427539800473, 0.0 ], [ -0.00274658203125, 16.972741019999006, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3706, "task_x": 131070, "task_y": 118560, "task_z": 18, "center_y": 16.930048211789799, "area_in_sqm": 21269.6248732805, "perimeter_in_m": 583.36713554915502, "length_x": 146.28966891540301, "length_y": 146.29068371869599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 16.930705098765529, 0.0 ], [ -0.001373291015625, 16.930705098765529, 0.0 ], [ -0.001373291015625, 16.929391324813992, 0.0 ], [ -0.00274658203125, 16.929391324813992, 0.0 ], [ -0.00274658203125, 16.930705098765529, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3707, "task_x": 131070, "task_y": 118592, "task_z": 18, "center_y": 16.888002753850198, "area_in_sqm": 21279.0002810359, "perimeter_in_m": 583.49569462110696, "length_x": 146.32210813986899, "length_y": 146.32312071813101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 16.888659787381599, 0.0 ], [ -0.001373291015625, 16.888659787381599, 0.0 ], [ -0.001373291015625, 16.887345720318848, 0.0 ], [ -0.00274658203125, 16.887345720318848, 0.0 ], [ -0.00274658203125, 16.888659787381599, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3708, "task_x": 131070, "task_y": 118624, "task_z": 18, "center_y": 16.8459479266306, "area_in_sqm": 21288.357118010499, "perimeter_in_m": 583.62397081696895, "length_x": 146.354476122259, "length_y": 146.35548647284 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 16.846605106396296, 0.0 ], [ -0.001373291015625, 16.846605106396296, 0.0 ], [ -0.001373291015625, 16.845290746864876, 0.0 ], [ -0.00274658203125, 16.845290746864876, 0.0 ], [ -0.00274658203125, 16.846605106396296, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3709, "task_x": 131070, "task_y": 118656, "task_z": 18, "center_y": 16.803883750705101, "area_in_sqm": 21297.695346414999, "perimeter_in_m": 583.75196379984197, "length_x": 146.386772777831, "length_y": 146.387780898085 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 16.804541076383444, 0.0 ], [ -0.001373291015625, 16.804541076383444, 0.0 ], [ -0.001373291015625, 16.803226425026693, 0.0 ], [ -0.00274658203125, 16.803226425026693, 0.0 ], [ -0.00274658203125, 16.804541076383444, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3710, "task_x": 131070, "task_y": 118688, "task_z": 18, "center_y": 16.761810246672599, "area_in_sqm": 21307.014928102501, "perimeter_in_m": 583.879673233826, "length_x": 146.418998021986, "length_y": 146.420003909271 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 16.76246771794159, 0.0 ], [ -0.001373291015625, 16.76246771794159, 0.0 ], [ -0.001373291015625, 16.76115277540363, 0.0 ], [ -0.00274658203125, 16.76115277540363, 0.0 ], [ -0.00274658203125, 16.76246771794159, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3711, "task_x": 131070, "task_y": 118720, "task_z": 18, "center_y": 16.719727435156798, "area_in_sqm": 21316.315826058399, "perimeter_in_m": 584.00709879741703, "length_x": 146.451151770265, "length_y": 146.45215542194501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 16.720385051693981, 0.0 ], [ -0.001373291015625, 16.720385051693981, 0.0 ], [ -0.001373291015625, 16.719069818619658, 0.0 ], [ -0.00274658203125, 16.719069818619658, 0.0 ], [ -0.00274658203125, 16.720385051693981, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3712, "task_x": 131070, "task_y": 118752, "task_z": 18, "center_y": 16.677635336805999, "area_in_sqm": 21325.598002195398, "perimeter_in_m": 584.13424015528005, "length_x": 146.48323393835301, "length_y": 146.48423535179501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 16.67829309828852, 0.0 ], [ -0.001373291015625, 16.67829309828852, 0.0 ], [ -0.001373291015625, 16.676977575323477, 0.0 ], [ -0.00274658203125, 16.676977575323477, 0.0 ], [ -0.00274658203125, 16.67829309828852, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3713, "task_x": 131070, "task_y": 118784, "task_z": 18, "center_y": 16.635533972293, "area_in_sqm": 21334.861418247201, "perimeter_in_m": 584.26109696953097, "length_x": 146.51524444207899, "length_y": 146.516243614655 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 16.636191878397653, 0.0 ], [ -0.001373291015625, 16.636191878397653, 0.0 ], [ -0.001373291015625, 16.634876066188326, 0.0 ], [ -0.00274658203125, 16.634876066188326, 0.0 ], [ -0.00274658203125, 16.636191878397653, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3714, "task_x": 131070, "task_y": 118816, "task_z": 18, "center_y": 16.5934233623152, "area_in_sqm": 21344.106037735899, "perimeter_in_m": 584.38766892587603, "length_x": 146.547183197414, "length_y": 146.54818012650099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 16.594081412718467, 0.0 ], [ -0.001373291015625, 16.594081412718467, 0.0 ], [ -0.001373291015625, 16.592765311912004, 0.0 ], [ -0.00274658203125, 16.592765311912004, 0.0 ], [ -0.00274658203125, 16.594081412718467, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3715, "task_x": 131070, "task_y": 118848, "task_z": 18, "center_y": 16.551303527594701, "area_in_sqm": 21353.331822156899, "perimeter_in_m": 584.51395568277599, "length_x": 146.57905012047499, "length_y": 146.58004480345301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 16.551961721972518, 0.0 ], [ -0.001373291015625, 16.551961721972518, 0.0 ], [ -0.001373291015625, 16.550645333216877, 0.0 ], [ -0.00274658203125, 16.550645333216877, 0.0 ], [ -0.00274658203125, 16.551961721972518, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3716, "task_x": 131070, "task_y": 118880, "task_z": 18, "center_y": 16.5091744888778, "area_in_sqm": 21362.538733780399, "perimeter_in_m": 584.639956907444, "length_x": 146.610845127522, "length_y": 146.61183756177701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 16.509832826905836, 0.0 ], [ -0.001373291015625, 16.509832826905836, 0.0 ], [ -0.001373291015625, 16.508516150849758, 0.0 ], [ -0.00274658203125, 16.508516150849758, 0.0 ], [ -0.00274658203125, 16.509832826905836, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3717, "task_x": 131070, "task_y": 118912, "task_z": 18, "center_y": 16.467036266935398, "area_in_sqm": 21371.7267366052, "perimeter_in_m": 584.76567229209797, "length_x": 146.642568134962, "length_y": 146.64355831788399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 16.467694748288963, 0.0 ], [ -0.001373291015625, 16.467694748288963, 0.0 ], [ -0.001373291015625, 16.466377785581869, 0.0 ], [ -0.00274658203125, 16.466377785581869, 0.0 ], [ -0.00274658203125, 16.467694748288963, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3718, "task_x": 131070, "task_y": 118944, "task_z": 18, "center_y": 16.424888882562801, "area_in_sqm": 21380.895792067098, "perimeter_in_m": 584.89110149323005, "length_x": 146.674219059346, "length_y": 146.67520698832999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 16.425547506916715, 0.0 ], [ -0.001373291015625, 16.425547506916715, 0.0 ], [ -0.001373291015625, 16.424230258208851, 0.0 ], [ -0.00274658203125, 16.424230258208851, 0.0 ], [ -0.00274658203125, 16.425547506916715, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3719, "task_x": 131070, "task_y": 118976, "task_z": 18, "center_y": 16.382732356579599, "area_in_sqm": 21390.045863151601, "perimeter_in_m": 585.01624419022505, "length_x": 146.705797817373, "length_y": 146.70678348981701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 16.383391123608391, 0.0 ], [ -0.001373291015625, 16.383391123608391, 0.0 ], [ -0.001373291015625, 16.382073589550743, 0.0 ], [ -0.00274658203125, 16.382073589550743, 0.0 ], [ -0.00274658203125, 16.383391123608391, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3720, "task_x": 131070, "task_y": 119008, "task_z": 18, "center_y": 16.340566709829702, "area_in_sqm": 21399.1769121289, "perimeter_in_m": 585.14110005216298, "length_x": 146.73730432588599, "length_y": 146.73828773919499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 16.341225619207492, 0.0 ], [ -0.001373291015625, 16.341225619207492, 0.0 ], [ -0.001373291015625, 16.339907800451826, 0.0 ], [ -0.00274658203125, 16.339907800451826, 0.0 ], [ -0.00274658203125, 16.341225619207492, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3721, "task_x": 131070, "task_y": 119040, "task_z": 18, "center_y": 16.298391963181199, "area_in_sqm": 21408.288902103901, "perimeter_in_m": 585.26566875406695, "length_x": 146.768738501879, "length_y": 146.76971965346101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 16.299051014581806, 0.0 ], [ -0.001373291015625, 16.299051014581806, 0.0 ], [ -0.001373291015625, 16.297732911780642, 0.0 ], [ -0.00274658203125, 16.297732911780642, 0.0 ], [ -0.00274658203125, 16.299051014581806, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3722, "task_x": 131070, "task_y": 119072, "task_z": 18, "center_y": 16.256208137526698, "area_in_sqm": 21417.381795585199, "perimeter_in_m": 585.38994997124803, "length_x": 146.80010026249201, "length_y": 146.801079149759 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 16.256867330623422, 0.0 ], [ -0.001373291015625, 16.256867330623422, 0.0 ], [ -0.001373291015625, 16.255548944430032, 0.0 ], [ -0.00274658203125, 16.255548944430032, 0.0 ], [ -0.00274658203125, 16.256867330623422, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3723, "task_x": 131070, "task_y": 119104, "task_z": 18, "center_y": 16.214015253782701, "area_in_sqm": 21426.455556392699, "perimeter_in_m": 585.51394338920102, "length_x": 146.83138952501201, "length_y": 146.832366145382 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 16.214674588248542, 0.0 ], [ -0.001373291015625, 16.214674588248542, 0.0 ], [ -0.001373291015625, 16.213355919316911, 0.0 ], [ -0.00274658203125, 16.213355919316911, 0.0 ], [ -0.00274658203125, 16.214674588248542, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3724, "task_x": 131070, "task_y": 119136, "task_z": 18, "center_y": 16.17181333289, "area_in_sqm": 21435.5101466179, "perimeter_in_m": 585.63764867112002, "length_x": 146.86260620687599, "length_y": 146.86358055777299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 16.172472808397501, 0.0 ], [ -0.001373291015625, 16.172472808397501, 0.0 ], [ -0.001373291015625, 16.171153857382421, 0.0 ], [ -0.00274658203125, 16.171153857382421, 0.0 ], [ -0.00274658203125, 16.172472808397501, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3725, "task_x": 131070, "task_y": 119168, "task_z": 18, "center_y": 16.129602395813201, "area_in_sqm": 21444.545528650298, "perimeter_in_m": 585.76106549603003, "length_x": 146.89375022567199, "length_y": 146.894722304521 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 16.130262012034734, 0.0 ], [ -0.001373291015625, 16.130262012034734, 0.0 ], [ -0.001373291015625, 16.128942779591753, 0.0 ], [ -0.00274658203125, 16.128942779591753, 0.0 ], [ -0.00274658203125, 16.130262012034734, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3726, "task_x": 131070, "task_y": 119200, "task_z": 18, "center_y": 16.087382463541498, "area_in_sqm": 21453.561667323102, "perimeter_in_m": 585.88419355243002, "length_x": 146.924821499134, "length_y": 146.92579130336699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 16.088042220148807, 0.0 ], [ -0.001373291015625, 16.088042220148807, 0.0 ], [ -0.001373291015625, 16.086722706934154, 0.0 ], [ -0.00274658203125, 16.086722706934154, 0.0 ], [ -0.00274658203125, 16.088042220148807, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3727, "task_x": 131070, "task_y": 119232, "task_z": 18, "center_y": 16.045153557087499, "area_in_sqm": 21462.5585242212, "perimeter_in_m": 586.00703250581796, "length_x": 146.95581994515001, "length_y": 146.95678747220401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 16.045813453752174, 0.0 ], [ -0.001373291015625, 16.045813453752174, 0.0 ], [ -0.001373291015625, 16.044493660422901, 0.0 ], [ -0.00274658203125, 16.044493660422901, 0.0 ], [ -0.00274658203125, 16.045813453752174, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3728, "task_x": 131070, "task_y": 119264, "task_z": 18, "center_y": 16.002915697488302, "area_in_sqm": 21471.536062479001, "perimeter_in_m": 586.12958203328799, "length_x": 146.986745481756, "length_y": 146.98771072907201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 16.00357573388132, 0.0 ], [ -0.001373291015625, 16.00357573388132, 0.0 ], [ -0.001373291015625, 16.002255661095219, 0.0 ], [ -0.00274658203125, 16.002255661095219, 0.0 ], [ -0.00274658203125, 16.00357573388132, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3729, "task_x": 131070, "task_y": 119296, "task_z": 18, "center_y": 15.9606689058044, "area_in_sqm": 21480.4942460358, "perimeter_in_m": 586.25184182423402, "length_x": 147.01759802714099, "length_y": 147.01856099216499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 15.961329081596645, 0.0 ], [ -0.001373291015625, 15.961329081596645, 0.0 ], [ -0.001373291015625, 15.96000873001222, 0.0 ], [ -0.00274658203125, 15.96000873001222, 0.0 ], [ -0.00274658203125, 15.961329081596645, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3730, "task_x": 131070, "task_y": 119328, "task_z": 18, "center_y": 15.9184132031207, "area_in_sqm": 21489.433037400198, "perimeter_in_m": 586.37381154858997, "length_x": 147.04837749964599, "length_y": 147.049338179828 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 15.919073517982412, 0.0 ], [ -0.001373291015625, 15.919073517982412, 0.0 ], [ -0.001373291015625, 15.917752888258946, 0.0 ], [ -0.00274658203125, 15.917752888258946, 0.0 ], [ -0.00274658203125, 15.919073517982412, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3731, "task_x": 131070, "task_y": 119360, "task_z": 18, "center_y": 15.876148610545499, "area_in_sqm": 21498.352400600899, "perimeter_in_m": 586.49549089564005, "length_x": 147.07908381776301, "length_y": 147.08004221055899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 15.876809064146755, 0.0 ], [ -0.001373291015625, 15.876809064146755, 0.0 ], [ -0.001373291015625, 15.875488156944243, 0.0 ], [ -0.00274658203125, 15.875488156944243, 0.0 ], [ -0.00274658203125, 15.876809064146755, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3732, "task_x": 131070, "task_y": 119392, "task_z": 18, "center_y": 15.833875149211201, "area_in_sqm": 21507.252298682899, "perimeter_in_m": 586.61687954016202, "length_x": 147.10971690013699, "length_y": 147.11067300300601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 15.834535741221558, 0.0 ], [ -0.001373291015625, 15.834535741221558, 0.0 ], [ -0.001373291015625, 15.833214557200762, 0.0 ], [ -0.00274658203125, 15.833214557200762, 0.0 ], [ -0.00274658203125, 15.834535741221558, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3733, "task_x": 131070, "task_y": 119424, "task_z": 18, "center_y": 15.791592840273699, "area_in_sqm": 21516.132694989399, "perimeter_in_m": 586.73797716993499, "length_x": 147.140276665567, "length_y": 147.14123047597499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 15.792253570362448, 0.0 ], [ -0.001373291015625, 15.792253570362448, 0.0 ], [ -0.001373291015625, 15.790932110184855, 0.0 ], [ -0.00274658203125, 15.790932110184855, 0.0 ], [ -0.00274658203125, 15.792253570362448, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3734, "task_x": 131070, "task_y": 119456, "task_z": 18, "center_y": 15.7493017049127, "area_in_sqm": 21524.993552714601, "perimeter_in_m": 586.858783453981, "length_x": 147.17076303300601, "length_y": 147.17171454842301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 15.749962572748757, 0.0 ], [ -0.001373291015625, 15.749962572748757, 0.0 ], [ -0.001373291015625, 15.748640837076621, 0.0 ], [ -0.00274658203125, 15.748640837076621, 0.0 ], [ -0.00274658203125, 15.749962572748757, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3735, "task_x": 131070, "task_y": 119488, "task_z": 18, "center_y": 15.707001764331601, "area_in_sqm": 21533.834835976399, "perimeter_in_m": 586.97929809128198, "length_x": 147.20117592156001, "length_y": 147.20212513946001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 15.707662769583507, 0.0 ], [ -0.001373291015625, 15.707662769583507, 0.0 ], [ -0.001373291015625, 15.706340759079779, 0.0 ], [ -0.00274658203125, 15.706340759079779, 0.0 ], [ -0.00274658203125, 15.707662769583507, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3736, "task_x": 131070, "task_y": 119520, "task_z": 18, "center_y": 15.6646930397575, "area_in_sqm": 21542.656507909302, "perimeter_in_m": 587.09952075359502, "length_x": 147.23151525049201, "length_y": 147.232462168355 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 15.665354182093282, 0.0 ], [ -0.001373291015625, 15.665354182093282, 0.0 ], [ -0.001373291015625, 15.664031897421694, 0.0 ], [ -0.00274658203125, 15.664031897421694, 0.0 ], [ -0.00274658203125, 15.665354182093282, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3737, "task_x": 131070, "task_y": 119552, "task_z": 18, "center_y": 15.622375552440801, "area_in_sqm": 21551.458532422799, "perimeter_in_m": 587.21945113063202, "length_x": 147.261780939218, "length_y": 147.262725554528 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 15.623036831528253, 0.0 ], [ -0.001373291015625, 15.623036831528253, 0.0 ], [ -0.001373291015625, 15.621714273353248, 0.0 ], [ -0.00274658203125, 15.621714273353248, 0.0 ], [ -0.00274658203125, 15.623036831528253, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3738, "task_x": 131070, "task_y": 119584, "task_z": 18, "center_y": 15.5800493236555, "area_in_sqm": 21560.240872919599, "perimeter_in_m": 587.33908890323403, "length_x": 147.29197290731099, "length_y": 147.29291521755599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 15.580710739162114, 0.0 ], [ -0.001373291015625, 15.580710739162114, 0.0 ], [ -0.001373291015625, 15.579387908148874, 0.0 ], [ -0.00274658203125, 15.579387908148874, 0.0 ], [ -0.00274658203125, 15.580710739162114, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3739, "task_x": 131070, "task_y": 119616, "task_z": 18, "center_y": 15.5377143746993, "area_in_sqm": 21569.003493577198, "perimeter_in_m": 587.45843376244, "length_x": 147.32209107450001, "length_y": 147.32303107717499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 15.538375926292048, 0.0 ], [ -0.001373291015625, 15.538375926292048, 0.0 ], [ -0.001373291015625, 15.537052823106478, 0.0 ], [ -0.00274658203125, 15.537052823106478, 0.0 ], [ -0.00274658203125, 15.538375926292048, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3740, "task_x": 131070, "task_y": 119648, "task_z": 18, "center_y": 15.495370726893, "area_in_sqm": 21577.746357977401, "perimeter_in_m": 587.57748538830003, "length_x": 147.35213536067101, "length_y": 147.35307305327501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 15.496032414238627, 0.0 ], [ -0.001373291015625, 15.496032414238627, 0.0 ], [ -0.001373291015625, 15.494709039547374, 0.0 ], [ -0.00274658203125, 15.494709039547374, 0.0 ], [ -0.00274658203125, 15.496032414238627, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3741, "task_x": 131070, "task_y": 119680, "task_z": 18, "center_y": 15.453018401581099, "area_in_sqm": 21586.469429820801, "perimeter_in_m": 587.69624346753199, "length_x": 147.38210568586601, "length_y": 147.383041065904 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 15.453680224345831, 0.0 ], [ -0.001373291015625, 15.453680224345831, 0.0 ], [ -0.001373291015625, 15.452356578816278, 0.0 ], [ -0.00274658203125, 15.452356578816278, 0.0 ], [ -0.00274658203125, 15.453680224345831, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3742, "task_x": 131070, "task_y": 119712, "task_z": 18, "center_y": 15.4106574201311, "area_in_sqm": 21595.172673583002, "perimeter_in_m": 587.81470769704697, "length_x": 147.412001970288, "length_y": 147.412935035267 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 15.411319377981002, 0.0 ], [ -0.001373291015625, 15.411319377981002, 0.0 ], [ -0.001373291015625, 15.409995462281231, 0.0 ], [ -0.00274658203125, 15.409995462281231, 0.0 ], [ -0.00274658203125, 15.411319377981002, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3743, "task_x": 131070, "task_y": 119744, "task_z": 18, "center_y": 15.3682878039341, "area_in_sqm": 21603.856052577499, "perimeter_in_m": 587.93287774866599, "length_x": 147.44182413429499, "length_y": 147.442754881729 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 15.368949896534701, 0.0 ], [ -0.001373291015625, 15.368949896534701, 0.0 ], [ -0.001373291015625, 15.367625711333574, 0.0 ], [ -0.00274658203125, 15.367625711333574, 0.0 ], [ -0.00274658203125, 15.368949896534701, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3744, "task_x": 131070, "task_y": 119776, "task_z": 18, "center_y": 15.325909574404401, "area_in_sqm": 21612.5195311606, "perimeter_in_m": 588.05075331709099, "length_x": 147.47157209840501, "length_y": 147.47250052581299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 15.326571801420826, 0.0 ], [ -0.001373291015625, 15.326571801420826, 0.0 ], [ -0.001373291015625, 15.325247347387887, 0.0 ], [ -0.00274658203125, 15.325247347387887, 0.0 ], [ -0.00274658203125, 15.326571801420826, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3745, "task_x": 131070, "task_y": 119808, "task_z": 18, "center_y": 15.2835227529792, "area_in_sqm": 21621.163073331099, "perimeter_in_m": 588.16833409312903, "length_x": 147.501245783294, "length_y": 147.50217188820099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 15.284185114076422, 0.0 ], [ -0.001373291015625, 15.284185114076422, 0.0 ], [ -0.001373291015625, 15.282860391881968, 0.0 ], [ -0.00274658203125, 15.282860391881968, 0.0 ], [ -0.00274658203125, 15.284185114076422, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3746, "task_x": 131070, "task_y": 119840, "task_z": 18, "center_y": 15.241127361119201, "area_in_sqm": 21629.7866437435, "perimeter_in_m": 588.28561977141703, "length_x": 147.53084510980199, "length_y": 147.53176888973499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 15.241789855961713, 0.0 ], [ -0.001373291015625, 15.241789855961713, 0.0 ], [ -0.001373291015625, 15.240464866276724, 0.0 ], [ -0.00274658203125, 15.240464866276724, 0.0 ], [ -0.00274658203125, 15.241789855961713, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3747, "task_x": 131070, "task_y": 119872, "task_z": 18, "center_y": 15.198723420308101, "area_in_sqm": 21638.3902065158, "perimeter_in_m": 588.402610037042, "length_x": 147.56036999892299, "length_y": 147.56129145141699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 15.199386048560001, 0.0 ], [ -0.001373291015625, 15.199386048560001, 0.0 ], [ -0.001373291015625, 15.198060792056197, 0.0 ], [ -0.00274658203125, 15.198060792056197, 0.0 ], [ -0.00274658203125, 15.199386048560001, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3748, "task_x": 131070, "task_y": 119904, "task_z": 18, "center_y": 15.1563109520526, "area_in_sqm": 21646.973725050699, "perimeter_in_m": 588.51930457397805, "length_x": 147.58982037181801, "length_y": 147.590739494411 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 15.156973713377667, 0.0 ], [ -0.001373291015625, 15.156973713377667, 0.0 ], [ -0.001373291015625, 15.155648190727518, 0.0 ], [ -0.00274658203125, 15.155648190727518, 0.0 ], [ -0.00274658203125, 15.156973713377667, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3749, "task_x": 131070, "task_y": 119936, "task_z": 18, "center_y": 15.113889977882399, "area_in_sqm": 21655.537164986101, "perimeter_in_m": 588.63570308699798, "length_x": 147.619196149803, "length_y": 147.62011294003901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 15.114552871944113, 0.0 ], [ -0.001373291015625, 15.114552871944113, 0.0 ], [ -0.001373291015625, 15.11322708382076, 0.0 ], [ -0.00274658203125, 15.11322708382076, 0.0 ], [ -0.00274658203125, 15.114552871944113, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3750, "task_x": 131070, "task_y": 119968, "task_z": 18, "center_y": 15.071460519350399, "area_in_sqm": 21664.080489754699, "perimeter_in_m": 588.75180525508597, "length_x": 147.64849725436099, "length_y": 147.64941170978901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 15.072123545811692, 0.0 ], [ -0.001373291015625, 15.072123545811692, 0.0 ], [ -0.001373291015625, 15.070797492889042, 0.0 ], [ -0.00274658203125, 15.070797492889042, 0.0 ], [ -0.00274658203125, 15.072123545811692, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3751, "task_x": 131070, "task_y": 120000, "task_z": 18, "center_y": 15.029022598032, "area_in_sqm": 21672.603664189599, "perimeter_in_m": 588.86761077588505, "length_x": 147.67772360713499, "length_y": 147.67863572530899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 15.029685756555665, 0.0 ], [ -0.001373291015625, 15.029685756555665, 0.0 ], [ -0.001373291015625, 15.028359439508321, 0.0 ], [ -0.00274658203125, 15.028359439508321, 0.0 ], [ -0.00274658203125, 15.029685756555665, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3752, "task_x": 131070, "task_y": 120032, "task_z": 18, "center_y": 14.9865762355259, "area_in_sqm": 21681.106653660499, "perimeter_in_m": 588.983119355491, "length_x": 147.70687512993001, "length_y": 147.707784908409 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 14.987239525774243, 0.0 ], [ -0.001373291015625, 14.987239525774243, 0.0 ], [ -0.001373291015625, 14.985912945277462, 0.0 ], [ -0.00274658203125, 14.985912945277462, 0.0 ], [ -0.00274658203125, 14.987239525774243, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3753, "task_x": 131070, "task_y": 120064, "task_z": 18, "center_y": 14.944121453453301, "area_in_sqm": 21689.589421242501, "perimeter_in_m": 589.098330666783, "length_x": 147.73595174471501, "length_y": 147.73685918106301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 14.944784875088359, 0.0 ], [ -0.001373291015625, 14.944784875088359, 0.0 ], [ -0.001373291015625, 14.94345803181821, 0.0 ], [ -0.00274658203125, 14.94345803181821, 0.0 ], [ -0.00274658203125, 14.944784875088359, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3754, "task_x": 131070, "task_y": 120096, "task_z": 18, "center_y": 14.9016582734584, "area_in_sqm": 21698.0519327521, "perimeter_in_m": 589.213244418974, "length_x": 147.764953373623, "length_y": 147.76585846540999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 14.902321826141801, 0.0 ], [ -0.001373291015625, 14.902321826141801, 0.0 ], [ -0.001373291015625, 14.900994720775003, 0.0 ], [ -0.00274658203125, 14.900994720775003, 0.0 ], [ -0.00274658203125, 14.902321826141801, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3755, "task_x": 131070, "task_y": 120128, "task_z": 18, "center_y": 14.859186717208001, "area_in_sqm": 21706.494152009502, "perimeter_in_m": 589.327860297592, "length_x": 147.79387993895099, "length_y": 147.79478268375101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 14.859850400601033, 0.0 ], [ -0.001373291015625, 14.859850400601033, 0.0 ], [ -0.001373291015625, 14.858523033815047, 0.0 ], [ -0.00274658203125, 14.858523033815047, 0.0 ], [ -0.00274658203125, 14.859850400601033, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3756, "task_x": 131070, "task_y": 120160, "task_z": 18, "center_y": 14.8167068063917, "area_in_sqm": 21714.916044920701, "perimeter_in_m": 589.44217800967397, "length_x": 147.82273136315999, "length_y": 147.82363175855201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 14.817370620155259, 0.0 ], [ -0.001373291015625, 14.817370620155259, 0.0 ], [ -0.001373291015625, 14.816042992628212, 0.0 ], [ -0.00274658203125, 14.816042992628212, 0.0 ], [ -0.00274658203125, 14.817370620155259, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3757, "task_x": 131070, "task_y": 120192, "task_z": 18, "center_y": 14.7742185627216, "area_in_sqm": 21723.317575544101, "perimeter_in_m": 589.55619724493602, "length_x": 147.851507568877, "length_y": 147.85240561244601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 14.774882506516263, 0.0 ], [ -0.001373291015625, 14.774882506516263, 0.0 ], [ -0.001373291015625, 14.773554618927022, 0.0 ], [ -0.00274658203125, 14.773554618927022, 0.0 ], [ -0.00274658203125, 14.774882506516263, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3758, "task_x": 131070, "task_y": 120224, "task_z": 18, "center_y": 14.7317220079325, "area_in_sqm": 21731.698709189899, "perimeter_in_m": 589.66991770083098, "length_x": 147.88020847889399, "length_y": 147.88110416823 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 14.732386081418454, 0.0 ], [ -0.001373291015625, 14.732386081418454, 0.0 ], [ -0.001373291015625, 14.731057934446582, 0.0 ], [ -0.00274658203125, 14.731057934446582, 0.0 ], [ -0.00274658203125, 14.732386081418454, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3759, "task_x": 131070, "task_y": 120256, "task_z": 18, "center_y": 14.689217163781599, "area_in_sqm": 21740.059410423, "perimeter_in_m": 589.78333907549495, "length_x": 147.90883401616901, "length_y": 147.90972734886699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 14.689881366618764, 0.0 ], [ -0.001373291015625, 14.689881366618764, 0.0 ], [ -0.001373291015625, 14.688552960944534, 0.0 ], [ -0.00274658203125, 14.688552960944534, 0.0 ], [ -0.00274658203125, 14.689881366618764, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3760, "task_x": 131070, "task_y": 120288, "task_z": 18, "center_y": 14.646704052048801, "area_in_sqm": 21748.399644613299, "perimeter_in_m": 589.89646106739303, "length_x": 147.93738410382599, "length_y": 147.93827507748799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 14.64736838389662, 0.0 ], [ -0.001373291015625, 14.64736838389662, 0.0 ], [ -0.001373291015625, 14.646039720201003, 0.0 ], [ -0.00274658203125, 14.646039720201003, 0.0 ], [ -0.00274658203125, 14.64736838389662, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3761, "task_x": 131070, "task_y": 120320, "task_z": 18, "center_y": 14.604182694536201, "area_in_sqm": 21756.719377249501, "perimeter_in_m": 590.00928338167296, "length_x": 147.965858665159, "length_y": 147.96674727738801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 14.604847155053903, 0.0 ], [ -0.001373291015625, 14.604847155053903, 0.0 ], [ -0.001373291015625, 14.603518234018551, 0.0 ], [ -0.00274658203125, 14.603518234018551, 0.0 ], [ -0.00274658203125, 14.604847155053903, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3762, "task_x": 131070, "task_y": 120352, "task_z": 18, "center_y": 14.5616531130685, "area_in_sqm": 21765.0185725093, "perimeter_in_m": 590.12180570652401, "length_x": 147.994257623626, "length_y": 147.99514387203399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 14.562317701914836, 0.0 ], [ -0.001373291015625, 14.562317701914836, 0.0 ], [ -0.001373291015625, 14.56098852422214, 0.0 ], [ -0.00274658203125, 14.56098852422214, 0.0 ], [ -0.00274658203125, 14.562317701914836, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3763, "task_x": 131070, "task_y": 120384, "task_z": 18, "center_y": 14.5191153294926, "area_in_sqm": 21773.297196924701, "perimeter_in_m": 590.23402775622799, "length_x": 148.022580902854, "length_y": 148.023464785058 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 14.51978004632609, 0.0 ], [ -0.001373291015625, 14.51978004632609, 0.0 ], [ -0.001373291015625, 14.518450612659095, 0.0 ], [ -0.00274658203125, 14.518450612659095, 0.0 ], [ -0.00274658203125, 14.51978004632609, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3764, "task_x": 131070, "task_y": 120416, "task_z": 18, "center_y": 14.476569365677699, "area_in_sqm": 21781.555214554101, "perimeter_in_m": 590.34594921858195, "length_x": 148.050828426641, "length_y": 148.05170994026 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 14.477234210156496, 0.0 ], [ -0.001373291015625, 14.477234210156496, 0.0 ], [ -0.001373291015625, 14.475904521198984, 0.0 ], [ -0.00274658203125, 14.475904521198984, 0.0 ], [ -0.00274658203125, 14.477234210156496, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3765, "task_x": 131070, "task_y": 120448, "task_z": 18, "center_y": 14.4340152435155, "area_in_sqm": 21789.7925921977, "perimeter_in_m": 590.45756981206205, "length_x": 148.07900011894901, "length_y": 148.07987926161201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 14.434680215297277, 0.0 ], [ -0.001373291015625, 14.434680215297277, 0.0 ], [ -0.001373291015625, 14.433350271733673, 0.0 ], [ -0.00274658203125, 14.433350271733673, 0.0 ], [ -0.00274658203125, 14.434680215297277, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3766, "task_x": 131070, "task_y": 120480, "task_z": 18, "center_y": 14.3914529849195, "area_in_sqm": 21798.0092938542, "perimeter_in_m": 590.56888922125097, "length_x": 148.107095903915, "length_y": 148.10797267325199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 14.392118083661728, 0.0 ], [ -0.001373291015625, 14.392118083661728, 0.0 ], [ -0.001373291015625, 14.390787886177208, 0.0 ], [ -0.00274658203125, 14.390787886177208, 0.0 ], [ -0.00274658203125, 14.392118083661728, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3767, "task_x": 131070, "task_y": 120512, "task_z": 18, "center_y": 14.3488826118256, "area_in_sqm": 21806.205285728, "perimeter_in_m": 590.67990715682902, "length_x": 148.135115705842, "length_y": 148.13599009949201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 14.349547837185355, 0.0 ], [ -0.001373291015625, 14.349547837185355, 0.0 ], [ -0.001373291015625, 14.348217386465763, 0.0 ], [ -0.00274658203125, 14.348217386465763, 0.0 ], [ -0.00274658203125, 14.349547837185355, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3768, "task_x": 131070, "task_y": 120544, "task_z": 18, "center_y": 14.3063041461917, "area_in_sqm": 21814.380533486601, "perimeter_in_m": 590.790623326993, "length_x": 148.16305944920501, "length_y": 148.163931464809 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 14.30696949782579, 0.0 ], [ -0.001373291015625, 14.30696949782579, 0.0 ], [ -0.001373291015625, 14.305638794557638, 0.0 ], [ -0.00274658203125, 14.305638794557638, 0.0 ], [ -0.00274658203125, 14.30696949782579, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3769, "task_x": 131070, "task_y": 120576, "task_z": 18, "center_y": 14.263717609997901, "area_in_sqm": 21822.535002529599, "perimeter_in_m": 590.90103742933502, "length_x": 148.19092705864901, "length_y": 148.19179669385599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 14.264383087562635, 0.0 ], [ -0.001373291015625, 14.264383087562635, 0.0 ], [ -0.001373291015625, 14.26305213243316, 0.0 ], [ -0.00274658203125, 14.26305213243316, 0.0 ], [ -0.00274658203125, 14.264383087562635, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3770, "task_x": 131070, "task_y": 120608, "task_z": 18, "center_y": 14.221123025246101, "area_in_sqm": 21830.668658852599, "perimeter_in_m": 591.01114917589996, "length_x": 148.21871845899199, "length_y": 148.21958571145501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 14.221788628397576, 0.0 ], [ -0.001373291015625, 14.221788628397576, 0.0 ], [ -0.001373291015625, 14.220457422094668, 0.0 ], [ -0.00274658203125, 14.220457422094668, 0.0 ], [ -0.00274658203125, 14.221788628397576, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3771, "task_x": 131070, "task_y": 120640, "task_z": 18, "center_y": 14.1785204139603, "area_in_sqm": 21838.7814682424, "perimeter_in_m": 591.12095826990196, "length_x": 148.246433575222, "length_y": 148.2472984426 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 14.179186142354169, 0.0 ], [ -0.001373291015625, 14.179186142354169, 0.0 ], [ -0.001373291015625, 14.177854685566416, 0.0 ], [ -0.00274658203125, 14.177854685566416, 0.0 ], [ -0.00274658203125, 14.179186142354169, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3772, "task_x": 131070, "task_y": 120672, "task_z": 18, "center_y": 14.135909798186299, "area_in_sqm": 21846.873396277399, "perimeter_in_m": 591.23046441489396, "length_x": 148.27407233250099, "length_y": 148.27493481245801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 14.136575651477941, 0.0 ], [ -0.001373291015625, 14.136575651477941, 0.0 ], [ -0.001373291015625, 14.135243944894626, 0.0 ], [ -0.00274658203125, 14.135243944894626, 0.0 ], [ -0.00274658203125, 14.136575651477941, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3773, "task_x": 131070, "task_y": 120704, "task_z": 18, "center_y": 14.0932911999918, "area_in_sqm": 21854.9444084764, "perimeter_in_m": 591.33966731582802, "length_x": 148.30163465616201, "length_y": 148.30249474636699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 14.093957177836216, 0.0 ], [ -0.001373291015625, 14.093957177836216, 0.0 ], [ -0.001373291015625, 14.092625222147319, 0.0 ], [ -0.00274658203125, 14.092625222147319, 0.0 ], [ -0.00274658203125, 14.093957177836216, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3774, "task_x": 131070, "task_y": 120736, "task_z": 18, "center_y": 14.0506646414662, "area_in_sqm": 21862.9944721758, "perimeter_in_m": 591.44856669282103, "length_x": 148.329120471713, "length_y": 148.32997816984101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 14.051330743518164, 0.0 ], [ -0.001373291015625, 14.051330743518164, 0.0 ], [ -0.001373291015625, 14.04999853941429, 0.0 ], [ -0.00274658203125, 14.04999853941429, 0.0 ], [ -0.00274658203125, 14.051330743518164, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3775, "task_x": 131070, "task_y": 120768, "task_z": 18, "center_y": 14.0080301447209, "area_in_sqm": 21871.023552507198, "perimeter_in_m": 591.55716224728303, "length_x": 148.356529704834, "length_y": 148.35738500856601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 14.008696370634681, 0.0 ], [ -0.001373291015625, 14.008696370634681, 0.0 ], [ -0.001373291015625, 14.007363918807144, 0.0 ], [ -0.00274658203125, 14.007363918807144, 0.0 ], [ -0.00274658203125, 14.008696370634681, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3776, "task_x": 131070, "task_y": 120800, "task_z": 18, "center_y": 13.965387731888701, "area_in_sqm": 21879.031615674499, "perimeter_in_m": 591.66545368589595, "length_x": 148.383862281381, "length_y": 148.384715188402 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 13.966054081318305, 0.0 ], [ -0.001373291015625, 13.966054081318305, 0.0 ], [ -0.001373291015625, 13.964721382459103, 0.0 ], [ -0.00274658203125, 13.964721382459103, 0.0 ], [ -0.00274658203125, 13.966054081318305, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3777, "task_x": 131070, "task_y": 120832, "task_z": 18, "center_y": 13.9227374251242, "area_in_sqm": 21887.018627941601, "perimeter_in_m": 591.77344072381504, "length_x": 148.41111812738299, "length_y": 148.411968635384 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 13.923403897723347, 0.0 ], [ -0.001373291015625, 13.923403897723347, 0.0 ], [ -0.001373291015625, 13.922070952525146, 0.0 ], [ -0.00274658203125, 13.922070952525146, 0.0 ], [ -0.00274658203125, 13.923403897723347, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3778, "task_x": 131070, "task_y": 120864, "task_z": 18, "center_y": 13.8800792466037, "area_in_sqm": 21894.9845554233, "perimeter_in_m": 591.881123063833, "length_x": 148.438297169045, "length_y": 148.439145275724 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 13.88074584202559, 0.0 ], [ -0.001373291015625, 13.88074584202559, 0.0 ], [ -0.001373291015625, 13.879412651181752, 0.0 ], [ -0.00274658203125, 13.879412651181752, 0.0 ], [ -0.00274658203125, 13.88074584202559, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3779, "task_x": 131070, "task_y": 120896, "task_z": 18, "center_y": 13.8374132185247, "area_in_sqm": 21902.929365128301, "perimeter_in_m": 591.98850043238804, "length_x": 148.465399332749, "length_y": 148.466245035806 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 13.83807993642246, 0.0 ], [ -0.001373291015625, 13.83807993642246, 0.0 ], [ -0.001373291015625, 13.836746500626973, 0.0 ], [ -0.00274658203125, 13.836746500626973, 0.0 ], [ -0.00274658203125, 13.83807993642246, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3780, "task_x": 131070, "task_y": 120928, "task_z": 18, "center_y": 13.794739363106601, "area_in_sqm": 21910.853022783998, "perimeter_in_m": 592.09557252660795, "length_x": 148.492424545049, "length_y": 148.493267842194 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 13.795406203132828, 0.0 ], [ -0.001373291015625, 13.795406203132828, 0.0 ], [ -0.001373291015625, 13.794072523080388, 0.0 ], [ -0.00274658203125, 13.794072523080388, 0.0 ], [ -0.00274658203125, 13.795406203132828, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3781, "task_x": 131070, "task_y": 120960, "task_z": 18, "center_y": 13.752057702589999, "area_in_sqm": 21918.755494475401, "perimeter_in_m": 592.20233905986197, "length_x": 148.51937273268001, "length_y": 148.520213621626 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 13.752724664396965, 0.0 ], [ -0.001373291015625, 13.752724664396965, 0.0 ], [ -0.001373291015625, 13.751390740782952, 0.0 ], [ -0.00274658203125, 13.751390740782952, 0.0 ], [ -0.00274658203125, 13.752724664396965, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3782, "task_x": 131070, "task_y": 120992, "task_z": 18, "center_y": 13.7093682592369, "area_in_sqm": 21926.636748135101, "perimeter_in_m": 592.308799757158, "length_x": 148.54624382255199, "length_y": 148.54708230101599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 13.710035342476672, 0.0 ], [ -0.001373291015625, 13.710035342476672, 0.0 ], [ -0.001373291015625, 13.708701175997078, 0.0 ], [ -0.00274658203125, 13.708701175997078, 0.0 ], [ -0.00274658203125, 13.710035342476672, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3783, "task_x": 131070, "task_y": 121024, "task_z": 18, "center_y": 13.666671055330699, "area_in_sqm": 21934.496749609702, "perimeter_in_m": 592.41495432727299, "length_x": 148.57303774175199, "length_y": 148.57387380745999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 13.667338259654954, 0.0 ], [ -0.001373291015625, 13.667338259654954, 0.0 ], [ -0.001373291015625, 13.666003851006465, 0.0 ], [ -0.00274658203125, 13.666003851006465, 0.0 ], [ -0.00274658203125, 13.667338259654954, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3784, "task_x": 131070, "task_y": 121056, "task_z": 18, "center_y": 13.623966113176101, "area_in_sqm": 21942.335465252399, "perimeter_in_m": 592.52080248073901, "length_x": 148.599754417546, "length_y": 148.60058806822701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 13.624633438236145, 0.0 ], [ -0.001373291015625, 13.624633438236145, 0.0 ], [ -0.001373291015625, 13.623298788116131, 0.0 ], [ -0.00274658203125, 13.623298788116131, 0.0 ], [ -0.00274658203125, 13.624633438236145, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3785, "task_x": 131070, "task_y": 121088, "task_z": 18, "center_y": 13.5812534550991, "area_in_sqm": 21950.1528621912, "perimeter_in_m": 592.62634393515202, "length_x": 148.62639377737801, "length_y": 148.627225010768 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 13.581920900545839, 0.0 ], [ -0.001373291015625, 13.581920900545839, 0.0 ], [ -0.001373291015625, 13.580586009652322, 0.0 ], [ -0.00274658203125, 13.580586009652322, 0.0 ], [ -0.00274658203125, 13.581920900545839, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3786, "task_x": 131070, "task_y": 121120, "task_z": 18, "center_y": 13.5385331034466, "area_in_sqm": 21957.9489078224, "perimeter_in_m": 592.73157841657803, "length_x": 148.65295574887, "length_y": 148.653784562711 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 13.539200668930818, 0.0 ], [ -0.001373291015625, 13.539200668930818, 0.0 ], [ -0.001373291015625, 13.537865537962446, 0.0 ], [ -0.00274658203125, 13.537865537962446, 0.0 ], [ -0.00274658203125, 13.539200668930818, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3787, "task_x": 131070, "task_y": 121152, "task_z": 18, "center_y": 13.495805080586999, "area_in_sqm": 21965.723568081899, "perimeter_in_m": 592.83650562496803, "length_x": 148.67944025982499, "length_y": 148.68026665186301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 13.496472765758952, 0.0 ], [ -0.001373291015625, 13.496472765758952, 0.0 ], [ -0.001373291015625, 13.495137395415085, 0.0 ], [ -0.00274658203125, 13.495137395415085, 0.0 ], [ -0.00274658203125, 13.496472765758952, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3788, "task_x": 131070, "task_y": 121184, "task_z": 18, "center_y": 13.453069408909601, "area_in_sqm": 21973.476810425502, "perimeter_in_m": 592.94112528885705, "length_x": 148.705847238226, "length_y": 148.70667120621201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 13.453737213419245, 0.0 ], [ -0.001373291015625, 13.453737213419245, 0.0 ], [ -0.001373291015625, 13.452401604399881, 0.0 ], [ -0.00274658203125, 13.452401604399881, 0.0 ], [ -0.00274658203125, 13.453737213419245, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3789, "task_x": 131070, "task_y": 121216, "task_z": 18, "center_y": 13.410326110824601, "area_in_sqm": 21981.208602249601, "perimeter_in_m": 593.045437130084, "length_x": 148.73217661223299, "length_y": 148.73299815392701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 13.410994034321703, 0.0 ], [ -0.001373291015625, 13.410994034321703, 0.0 ], [ -0.001373291015625, 13.409658187327466, 0.0 ], [ -0.00274658203125, 13.409658187327466, 0.0 ], [ -0.00274658203125, 13.410994034321703, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3790, "task_x": 131070, "task_y": 121248, "task_z": 18, "center_y": 13.3675752087634, "area_in_sqm": 21988.918909788099, "perimeter_in_m": 593.14944085320099, "length_x": 148.75842831019, "length_y": 148.75924742335499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 13.368243250897279, 0.0 ], [ -0.001373291015625, 13.368243250897279, 0.0 ], [ -0.001373291015625, 13.366907166629517, 0.0 ], [ -0.00274658203125, 13.366907166629517, 0.0 ], [ -0.00274658203125, 13.368243250897279, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3791, "task_x": 131070, "task_y": 121280, "task_z": 18, "center_y": 13.3248167251783, "area_in_sqm": 21996.607701331399, "perimeter_in_m": 593.25313619486894, "length_x": 148.784602260621, "length_y": 148.785418943026 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 13.32548488559793, 0.0 ], [ -0.001373291015625, 13.32548488559793, 0.0 ], [ -0.001373291015625, 13.324148564758573, 0.0 ], [ -0.00274658203125, 13.324148564758573, 0.0 ], [ -0.00274658203125, 13.32548488559793, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3792, "task_x": 131070, "task_y": 121312, "task_z": 18, "center_y": 13.2820506825422, "area_in_sqm": 22004.274943649802, "perimeter_in_m": 593.35652286882896, "length_x": 148.81069839223201, "length_y": 148.811512641652 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 13.282718960896403, 0.0 ], [ -0.001373291015625, 13.282718960896403, 0.0 ], [ -0.001373291015625, 13.281382404188051, 0.0 ], [ -0.00274658203125, 13.281382404188051, 0.0 ], [ -0.00274658203125, 13.282718960896403, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3793, "task_x": 131070, "task_y": 121344, "task_z": 18, "center_y": 13.2392771033493, "area_in_sqm": 22011.920603603099, "perimeter_in_m": 593.45960058881701, "length_x": 148.83671663391101, "length_y": 148.83752844812699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 13.239945499286293, 0.0 ], [ -0.001373291015625, 13.239945499286293, 0.0 ], [ -0.001373291015625, 13.23860870741224, 0.0 ], [ -0.00274658203125, 13.23860870741224, 0.0 ], [ -0.00274658203125, 13.239945499286293, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3794, "task_x": 131070, "task_y": 121376, "task_z": 18, "center_y": 13.196496010114, "area_in_sqm": 22019.544649720199, "perimeter_in_m": 593.56236909082099, "length_x": 148.86265691472701, "length_y": 148.86346629152499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 13.197164523281984, 0.0 ], [ -0.001373291015625, 13.197164523281984, 0.0 ], [ -0.001373291015625, 13.195827496946109, 0.0 ], [ -0.00274658203125, 13.195827496946109, 0.0 ], [ -0.00274658203125, 13.197164523281984, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3795, "task_x": 131070, "task_y": 121408, "task_z": 18, "center_y": 13.1537074253719, "area_in_sqm": 22027.147048711799, "perimeter_in_m": 593.66482808895296, "length_x": 148.888519163935, "length_y": 148.889326101107 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 13.15437605541851, 0.0 ], [ -0.001373291015625, 13.15437605541851, 0.0 ], [ -0.001373291015625, 13.153038795325372, 0.0 ], [ -0.00274658203125, 13.153038795325372, 0.0 ], [ -0.00274658203125, 13.15437605541851, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3796, "task_x": 131070, "task_y": 121440, "task_z": 18, "center_y": 13.110911371679, "area_in_sqm": 22034.7277682126, "perimeter_in_m": 593.76697730508897, "length_x": 148.91430331097101, "length_y": 148.91510780631501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 13.111580118251638, 0.0 ], [ -0.001373291015625, 13.111580118251638, 0.0 ], [ -0.001373291015625, 13.110242625106451, 0.0 ], [ -0.00274658203125, 13.110242625106451, 0.0 ], [ -0.00274658203125, 13.111580118251638, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3797, "task_x": 131070, "task_y": 121472, "task_z": 18, "center_y": 13.068107871612, "area_in_sqm": 22042.286776363901, "perimeter_in_m": 593.86881647136602, "length_x": 148.940009285456, "length_y": 148.94081133677599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 13.068776734357684, 0.0 ], [ -0.001373291015625, 13.068776734357684, 0.0 ], [ -0.001373291015625, 13.067439008866273, 0.0 ], [ -0.00274658203125, 13.067439008866273, 0.0 ], [ -0.00274658203125, 13.068776734357684, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3798, "task_x": 131070, "task_y": 121504, "task_z": 18, "center_y": 13.025296947768, "area_in_sqm": 22049.824040383101, "perimeter_in_m": 593.97034530545295, "length_x": 148.96563701719401, "length_y": 148.966436622299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 13.025965926333527, 0.0 ], [ -0.001373291015625, 13.025965926333527, 0.0 ], [ -0.001373291015625, 13.024627969202385, 0.0 ], [ -0.00274658203125, 13.024627969202385, 0.0 ], [ -0.00274658203125, 13.025965926333527, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3799, "task_x": 131070, "task_y": 121536, "task_z": 18, "center_y": 12.982478622764701, "area_in_sqm": 22057.339528918299, "perimeter_in_m": 594.07156354267602, "length_x": 148.99118643617601, "length_y": 148.99198359288101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 12.98314771679658, 0.0 ], [ -0.001373291015625, 12.98314771679658, 0.0 ], [ -0.001373291015625, 12.981809528732796, 0.0 ], [ -0.00274658203125, 12.981809528732796, 0.0 ], [ -0.00274658203125, 12.98314771679658, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3800, "task_x": 131070, "task_y": 121568, "task_z": 18, "center_y": 12.9396529192403, "area_in_sqm": 22064.8332082331, "perimeter_in_m": 594.17247088873296, "length_x": 149.01665747257599, "length_y": 149.017452178703 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 12.940322128384608, 0.0 ], [ -0.001373291015625, 12.940322128384608, 0.0 ], [ -0.001373291015625, 12.938983710096011, 0.0 ], [ -0.00274658203125, 12.938983710096011, 0.0 ], [ -0.00274658203125, 12.940322128384608, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3801, "task_x": 131070, "task_y": 121600, "task_z": 18, "center_y": 12.8968198598534, "area_in_sqm": 22072.3050480485, "perimeter_in_m": 594.27306709556501, "length_x": 149.04205005675701, "length_y": 149.04284231013099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 12.897489183755894, 0.0 ], [ -0.001373291015625, 12.897489183755894, 0.0 ], [ -0.001373291015625, 12.896150535950824, 0.0 ], [ -0.00274658203125, 12.896150535950824, 0.0 ], [ -0.00274658203125, 12.897489183755894, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3802, "task_x": 131070, "task_y": 121632, "task_z": 18, "center_y": 12.8539794672827, "area_in_sqm": 22079.755015492399, "perimeter_in_m": 594.37335187737301, "length_x": 149.067364119263, "length_y": 149.068153917719 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 12.854648905588945, 0.0 ], [ -0.001373291015625, 12.854648905588945, 0.0 ], [ -0.001373291015625, 12.853310028976452, 0.0 ], [ -0.00274658203125, 12.853310028976452, 0.0 ], [ -0.00274658203125, 12.854648905588945, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3803, "task_x": 131070, "task_y": 121664, "task_z": 18, "center_y": 12.8111317642275, "area_in_sqm": 22087.183078765898, "perimeter_in_m": 594.47332496494801, "length_x": 149.09259959082999, "length_y": 149.093386932204 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 12.811801316582617, 0.0 ], [ -0.001373291015625, 12.811801316582617, 0.0 ], [ -0.001373291015625, 12.810462211872363, 0.0 ], [ -0.00274658203125, 12.810462211872363, 0.0 ], [ -0.00274658203125, 12.811801316582617, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3804, "task_x": 131070, "task_y": 121696, "task_z": 18, "center_y": 12.7682767734071, "area_in_sqm": 22094.5892062485, "perimeter_in_m": 594.57298608663405, "length_x": 149.11775640237701, "length_y": 149.118541284515 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 12.768946439455945, 0.0 ], [ -0.001373291015625, 12.768946439455945, 0.0 ], [ -0.001373291015625, 12.767607107358231, 0.0 ], [ -0.00274658203125, 12.767607107358231, 0.0 ], [ -0.00274658203125, 12.768946439455945, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3805, "task_x": 131070, "task_y": 121728, "task_z": 18, "center_y": 12.7254145175611, "area_in_sqm": 22101.973366051901, "perimeter_in_m": 594.67233497397206, "length_x": 149.142834485013, "length_y": 149.14361690576399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 12.726084296948187, 0.0 ], [ -0.001373291015625, 12.726084296948187, 0.0 ], [ -0.001373291015625, 12.724744738173939, 0.0 ], [ -0.00274658203125, 12.724744738173939, 0.0 ], [ -0.00274658203125, 12.726084296948187, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3806, "task_x": 131070, "task_y": 121760, "task_z": 18, "center_y": 12.682545019449, "area_in_sqm": 22109.335526645202, "perimeter_in_m": 594.77137135922101, "length_x": 149.16783377003401, "length_y": 149.16861372725501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 12.683214911818652, 0.0 ], [ -0.001373291015625, 12.683214911818652, 0.0 ], [ -0.001373291015625, 12.681875127079422, 0.0 ], [ -0.00274658203125, 12.681875127079422, 0.0 ], [ -0.00274658203125, 12.683214911818652, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3807, "task_x": 131070, "task_y": 121792, "task_z": 18, "center_y": 12.639668301850801, "area_in_sqm": 22116.675656467702, "perimeter_in_m": 594.87009497113104, "length_x": 149.192754188924, "length_y": 149.19353168047601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 12.640338306846786, 0.0 ], [ -0.001373291015625, 12.640338306846786, 0.0 ], [ -0.001373291015625, 12.638998296854751, 0.0 ], [ -0.00274658203125, 12.638998296854751, 0.0 ], [ -0.00274658203125, 12.640338306846786, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3808, "task_x": 131070, "task_y": 121824, "task_z": 18, "center_y": 12.596784387566, "area_in_sqm": 22123.993724018299, "perimeter_in_m": 594.96850554235505, "length_x": 149.21759567335701, "length_y": 149.21837069710801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 12.597454504832001, 0.0 ], [ -0.001373291015625, 12.597454504832001, 0.0 ], [ -0.001373291015625, 12.596114270299964, 0.0 ], [ -0.00274658203125, 12.596114270299964, 0.0 ], [ -0.00274658203125, 12.597454504832001, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3809, "task_x": 131070, "task_y": 121856, "task_z": 18, "center_y": 12.553893299414399, "area_in_sqm": 22131.2896979451, "perimeter_in_m": 595.06660280909705, "length_x": 149.24235815519401, "length_y": 149.243130709019 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 12.554563528593661, 0.0 ], [ -0.001373291015625, 12.554563528593661, 0.0 ], [ -0.001373291015625, 12.553223070235049, 0.0 ], [ -0.00274658203125, 12.553223070235049, 0.0 ], [ -0.00274658203125, 12.554563528593661, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3810, "task_x": 131070, "task_y": 121888, "task_z": 18, "center_y": 12.5109950602354, "area_in_sqm": 22138.563546687401, "perimeter_in_m": 595.16438650157897, "length_x": 149.26704156648901, "length_y": 149.26781164826599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 12.511665400971012, 0.0 ], [ -0.001373291015625, 12.511665400971012, 0.0 ], [ -0.001373291015625, 12.510324719499877, 0.0 ], [ -0.00274658203125, 12.510324719499877, 0.0 ], [ -0.00274658203125, 12.511665400971012, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3811, "task_x": 131070, "task_y": 121920, "task_z": 18, "center_y": 12.4680896928887, "area_in_sqm": 22145.815239191099, "perimeter_in_m": 595.26185635499098, "length_x": 149.291645839484, "length_y": 149.29241344709899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 12.468760144823221, 0.0 ], [ -0.001373291015625, 12.468760144823221, 0.0 ], [ -0.001373291015625, 12.467419240954229, 0.0 ], [ -0.00274658203125, 12.467419240954229, 0.0 ], [ -0.00274658203125, 12.468760144823221, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3812, "task_x": 131070, "task_y": 121952, "task_z": 18, "center_y": 12.425177220253399, "area_in_sqm": 22153.044744342598, "perimeter_in_m": 595.35901210630698, "length_x": 149.31617090661101, "length_y": 149.316936037956 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 12.425847783029141, 0.0 ], [ -0.001373291015625, 12.425847783029141, 0.0 ], [ -0.001373291015625, 12.424506657477565, 0.0 ], [ -0.00274658203125, 12.424506657477565, 0.0 ], [ -0.00274658203125, 12.425847783029141, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3813, "task_x": 131070, "task_y": 121984, "task_z": 18, "center_y": 12.3822576652283, "area_in_sqm": 22160.252030760101, "perimeter_in_m": 595.45585348899897, "length_x": 149.34061670049499, "length_y": 149.341379353468 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 12.382928338487389, 0.0 ], [ -0.001373291015625, 12.382928338487389, 0.0 ], [ -0.001373291015625, 12.381586991969144, 0.0 ], [ -0.00274658203125, 12.381586991969144, 0.0 ], [ -0.00274658203125, 12.382928338487389, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3814, "task_x": 131070, "task_y": 122016, "task_z": 18, "center_y": 12.339331050732101, "area_in_sqm": 22167.437067687501, "perimeter_in_m": 595.55238024008997, "length_x": 149.36498315395099, "length_y": 149.365743326455 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 12.340001834116308, 0.0 ], [ -0.001373291015625, 12.340001834116308, 0.0 ], [ -0.001373291015625, 12.338660267347905, 0.0 ], [ -0.00274658203125, 12.338660267347905, 0.0 ], [ -0.00274658203125, 12.340001834116308, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3815, "task_x": 131070, "task_y": 122048, "task_z": 18, "center_y": 12.2963973997031, "area_in_sqm": 22174.5998243988, "perimeter_in_m": 595.64859210369298, "length_x": 149.38927019998599, "length_y": 149.39002788993099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 12.297068292853808, 0.0 ], [ -0.001373291015625, 12.297068292853808, 0.0 ], [ -0.001373291015625, 12.295726506552356, 0.0 ], [ -0.00274658203125, 12.295726506552356, 0.0 ], [ -0.00274658203125, 12.297068292853808, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3816, "task_x": 131070, "task_y": 122080, "task_z": 18, "center_y": 12.253456735099, "area_in_sqm": 22181.740269661001, "perimeter_in_m": 595.74448880982095, "length_x": 149.41347777180101, "length_y": 149.41423297710199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 12.25412773765737, 0.0 ], [ -0.001373291015625, 12.25412773765737, 0.0 ], [ -0.001373291015625, 12.252785732540616, 0.0 ], [ -0.00274658203125, 12.252785732540616, 0.0 ], [ -0.00274658203125, 12.25412773765737, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3817, "task_x": 131070, "task_y": 122112, "task_z": 18, "center_y": 12.210509079897101, "area_in_sqm": 22188.858372837301, "perimeter_in_m": 595.84007010052096, "length_x": 149.437605802787, "length_y": 149.43835852136701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 12.211180191503985, 0.0 ], [ -0.001373291015625, 12.211180191503985, 0.0 ], [ -0.001373291015625, 12.209837968290273, 0.0 ], [ -0.00274658203125, 12.209837968290273, 0.0 ], [ -0.00274658203125, 12.211180191503985, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3818, "task_x": 131070, "task_y": 122144, "task_z": 18, "center_y": 12.167554457094299, "area_in_sqm": 22195.9541031718, "perimeter_in_m": 595.935335713634, "length_x": 149.46165422653101, "length_y": 149.46240445631599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 12.168225677390112, 0.0 ], [ -0.001373291015625, 12.168225677390112, 0.0 ], [ -0.001373291015625, 12.166883236798398, 0.0 ], [ -0.00274658203125, 12.166883236798398, 0.0 ], [ -0.00274658203125, 12.168225677390112, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3819, "task_x": 131070, "task_y": 122176, "task_z": 18, "center_y": 12.1245928897065, "area_in_sqm": 22203.0274301469, "perimeter_in_m": 596.03028539337697, "length_x": 149.48562297681201, "length_y": 149.486370715736 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 12.12526421833158, 0.0 ], [ -0.001373291015625, 12.12526421833158, 0.0 ], [ -0.001373291015625, 12.123921561081417, 0.0 ], [ -0.00274658203125, 12.123921561081417, 0.0 ], [ -0.00274658203125, 12.12526421833158, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3820, "task_x": 131070, "task_y": 122208, "task_z": 18, "center_y": 12.0816244007694, "area_in_sqm": 22210.078323006601, "perimeter_in_m": 596.12491887518195, "length_x": 149.50951198760299, "length_y": 149.51025723360601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 12.082295837363574, 0.0 ], [ -0.001373291015625, 12.082295837363574, 0.0 ], [ -0.001373291015625, 12.08095296417514, 0.0 ], [ -0.00274658203125, 12.08095296417514, 0.0 ], [ -0.00274658203125, 12.082295837363574, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3821, "task_x": 131070, "task_y": 122240, "task_z": 18, "center_y": 12.038649013337601, "area_in_sqm": 22217.106752186999, "perimeter_in_m": 596.21923591461803, "length_x": 149.533321193072, "length_y": 149.53406394410001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 12.039320557540577, 0.0 ], [ -0.001373291015625, 12.039320557540577, 0.0 ], [ -0.001373291015625, 12.037977469134589, 0.0 ], [ -0.00274658203125, 12.037977469134589, 0.0 ], [ -0.00274658203125, 12.039320557540577, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3822, "task_x": 131070, "task_y": 122272, "task_z": 18, "center_y": 11.995666750485199, "area_in_sqm": 22224.112686157201, "perimeter_in_m": 596.31323623870696, "length_x": 149.55705052758199, "length_y": 149.55779078158699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 11.996338401936228, 0.0 ], [ -0.001373291015625, 11.996338401936228, 0.0 ], [ -0.001373291015625, 11.994995099034085, 0.0 ], [ -0.00274658203125, 11.994995099034085, 0.0 ], [ -0.00274658203125, 11.996338401936228, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3823, "task_x": 131070, "task_y": 122304, "task_z": 18, "center_y": 11.952677635305299, "area_in_sqm": 22231.096095144701, "perimeter_in_m": 596.40691959779497, "length_x": 149.58069992569099, "length_y": 149.58143768063101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 11.953349393643421, 0.0 ], [ -0.001373291015625, 11.953349393643421, 0.0 ], [ -0.001373291015625, 11.952005876967078, 0.0 ], [ -0.00274658203125, 11.952005876967078, 0.0 ], [ -0.00274658203125, 11.953349393643421, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3824, "task_x": 131070, "task_y": 122336, "task_z": 18, "center_y": 11.9096816909101, "area_in_sqm": 22238.056949138601, "perimeter_in_m": 596.50028573696397, "length_x": 149.60426932215299, "length_y": 149.60500457599301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 11.910353555774094, 0.0 ], [ -0.001373291015625, 11.910353555774094, 0.0 ], [ -0.001373291015625, 11.909009826046102, 0.0 ], [ -0.00274658203125, 11.909009826046102, 0.0 ], [ -0.00274658203125, 11.910353555774094, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3825, "task_x": 131070, "task_y": 122368, "task_z": 18, "center_y": 11.8666789404311, "area_in_sqm": 22244.995218157801, "perimeter_in_m": 596.59333440486398, "length_x": 149.62775865191799, "length_y": 149.62849140262799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 11.867350911459312, 0.0 ], [ -0.001373291015625, 11.867350911459312, 0.0 ], [ -0.001373291015625, 11.866006969402804, 0.0 ], [ -0.00274658203125, 11.866006969402804, 0.0 ], [ -0.00274658203125, 11.867350911459312, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3826, "task_x": 131070, "task_y": 122400, "task_z": 18, "center_y": 11.8236694070184, "area_in_sqm": 22251.910871475899, "perimeter_in_m": 596.68606533676495, "length_x": 149.65116785013399, "length_y": 149.65189809569 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 11.824341483849054, 0.0 ], [ -0.001373291015625, 11.824341483849054, 0.0 ], [ -0.001373291015625, 11.822997330187803, 0.0 ], [ -0.00274658203125, 11.822997330187803, 0.0 ], [ -0.00274658203125, 11.824341483849054, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3827, "task_x": 131070, "task_y": 122432, "task_z": 18, "center_y": 11.780653113841399, "area_in_sqm": 22258.803879439802, "perimeter_in_m": 596.77847828456095, "length_x": 149.67449685214299, "length_y": 149.67522459052799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 11.781325296112271, 0.0 ], [ -0.001373291015625, 11.781325296112271, 0.0 ], [ -0.001373291015625, 11.77998093157062, 0.0 ], [ -0.00274658203125, 11.77998093157062, 0.0 ], [ -0.00274658203125, 11.781325296112271, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3828, "task_x": 131070, "task_y": 122464, "task_z": 18, "center_y": 11.7376300840883, "area_in_sqm": 22265.6742126346, "perimeter_in_m": 596.87057300159597, "length_x": 149.69774559348801, "length_y": 149.69847082269101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 11.738302371436845, 0.0 ], [ -0.001373291015625, 11.738302371436845, 0.0 ], [ -0.001373291015625, 11.736957796739688, 0.0 ], [ -0.00274658203125, 11.736957796739688, 0.0 ], [ -0.00274658203125, 11.738302371436845, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3829, "task_x": 131070, "task_y": 122496, "task_z": 18, "center_y": 11.694600340965801, "area_in_sqm": 22272.52184093, "perimeter_in_m": 596.96234923066299, "length_x": 149.72091400990701, "length_y": 149.721636727923 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 11.695272733029398, 0.0 ], [ -0.001373291015625, 11.695272733029398, 0.0 ], [ -0.001373291015625, 11.693927948902257, 0.0 ], [ -0.00274658203125, 11.693927948902257, 0.0 ], [ -0.00274658203125, 11.695272733029398, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3830, "task_x": 131070, "task_y": 122528, "task_z": 18, "center_y": 11.6515639076999, "area_in_sqm": 22279.346734851599, "perimeter_in_m": 597.05380672270701, "length_x": 149.74400203733899, "length_y": 149.744722242168 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 11.652236404115385, 0.0 ], [ -0.001373291015625, 11.652236404115385, 0.0 ], [ -0.001373291015625, 11.650891411284348, 0.0 ], [ -0.00274658203125, 11.650891411284348, 0.0 ], [ -0.00274658203125, 11.652236404115385, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3831, "task_x": 131070, "task_y": 122560, "task_z": 18, "center_y": 11.6085208075348, "area_in_sqm": 22286.1488643587, "perimeter_in_m": 597.14494522483596, "length_x": 149.76700961191901, "length_y": 149.76772730157001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 11.609193407938946, 0.0 ], [ -0.001373291015625, 11.609193407938946, 0.0 ], [ -0.001373291015625, 11.607848207130701, 0.0 ], [ -0.00274658203125, 11.607848207130701, 0.0 ], [ -0.00274658203125, 11.609193407938946, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3832, "task_x": 131070, "task_y": 122592, "task_z": 18, "center_y": 11.565471063733799, "area_in_sqm": 22292.928199946899, "perimeter_in_m": 597.23576448489996, "length_x": 149.78993666998301, "length_y": 149.79065184247 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 11.566143767762838, 0.0 ], [ -0.001373291015625, 11.566143767762838, 0.0 ], [ -0.001373291015625, 11.564798359704668, 0.0 ], [ -0.00274658203125, 11.564798359704668, 0.0 ], [ -0.00274658203125, 11.566143767762838, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3833, "task_x": 131070, "task_y": 122624, "task_z": 18, "center_y": 11.5224146995784, "area_in_sqm": 22299.6847130358, "perimeter_in_m": 597.326264267375, "length_x": 149.81278314806701, "length_y": 149.81349580140801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 11.523087506868507, 0.0 ], [ -0.001373291015625, 11.523087506868507, 0.0 ], [ -0.001373291015625, 11.521741892288219, 0.0 ], [ -0.00274658203125, 11.521741892288219, 0.0 ], [ -0.00274658203125, 11.523087506868507, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3834, "task_x": 131070, "task_y": 122656, "task_z": 18, "center_y": 11.4793517383688, "area_in_sqm": 22306.4183735847, "perimeter_in_m": 597.41644431490397, "length_x": 149.83554898290501, "length_y": 149.83625911512701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 11.480024648555812, 0.0 ], [ -0.001373291015625, 11.480024648555812, 0.0 ], [ -0.001373291015625, 11.478678828181827, 0.0 ], [ -0.00274658203125, 11.478678828181827, 0.0 ], [ -0.00274658203125, 11.480024648555812, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3835, "task_x": 131070, "task_y": 122688, "task_z": 18, "center_y": 11.436282203423801, "area_in_sqm": 22313.129152238402, "perimeter_in_m": 597.50630437722305, "length_x": 149.85823411143201, "length_y": 149.85894172056899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 11.436955216143176, 0.0 ], [ -0.001373291015625, 11.436955216143176, 0.0 ], [ -0.001373291015625, 11.435609190704511, 0.0 ], [ -0.00274658203125, 11.435609190704511, 0.0 ], [ -0.00274658203125, 11.436955216143176, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3836, "task_x": 131070, "task_y": 122720, "task_z": 18, "center_y": 11.393206118080499, "area_in_sqm": 22319.817019939401, "perimeter_in_m": 597.59584421223099, "length_x": 149.88083847078599, "length_y": 149.88154355487501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 11.393879232967407, 0.0 ], [ -0.001373291015625, 11.393879232967407, 0.0 ], [ -0.001373291015625, 11.392533003193634, 0.0 ], [ -0.00274658203125, 11.392533003193634, 0.0 ], [ -0.00274658203125, 11.393879232967407, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3837, "task_x": 131070, "task_y": 122752, "task_z": 18, "center_y": 11.350123505694301, "area_in_sqm": 22326.481947869099, "perimeter_in_m": 597.68506357610897, "length_x": 149.90336199830301, "length_y": 149.90406455538999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 11.350796722383677, 0.0 ], [ -0.001373291015625, 11.350796722383677, 0.0 ], [ -0.001373291015625, 11.349450289004935, 0.0 ], [ -0.00274658203125, 11.349450289004935, 0.0 ], [ -0.00274658203125, 11.350796722383677, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3838, "task_x": 131070, "task_y": 122784, "task_z": 18, "center_y": 11.307034389638901, "area_in_sqm": 22333.1239069402, "perimeter_in_m": 597.77396222296102, "length_x": 149.92580463152299, "length_y": 149.926504659659 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 11.307707707765445, 0.0 ], [ -0.001373291015625, 11.307707707765445, 0.0 ], [ -0.001373291015625, 11.306361071512441, 0.0 ], [ -0.00274658203125, 11.306361071512441, 0.0 ], [ -0.00274658203125, 11.307707707765445, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3839, "task_x": 131070, "task_y": 122816, "task_z": 18, "center_y": 11.2639387933064, "area_in_sqm": 22339.742867946599, "perimeter_in_m": 597.86253990941202, "length_x": 149.94816630818701, "length_y": 149.94886380542999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 11.264612212504431, 0.0 ], [ -0.001373291015625, 11.264612212504431, 0.0 ], [ -0.001373291015625, 11.263265374108457, 0.0 ], [ -0.00274658203125, 11.263265374108457, 0.0 ], [ -0.00274658203125, 11.264612212504431, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3840, "task_x": 131070, "task_y": 122848, "task_z": 18, "center_y": 11.220836740107, "area_in_sqm": 22346.338802456899, "perimeter_in_m": 597.95079639177504, "length_x": 149.97044696623999, "length_y": 149.971141930653 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 11.221510260010547, 0.0 ], [ -0.001373291015625, 11.221510260010547, 0.0 ], [ -0.001373291015625, 11.220163220203446, 0.0 ], [ -0.00274658203125, 11.220163220203446, 0.0 ], [ -0.00274658203125, 11.221510260010547, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3841, "task_x": 131070, "task_y": 122880, "task_z": 18, "center_y": 11.177728253468899, "area_in_sqm": 22352.9116813242, "perimeter_in_m": 598.03873142499901, "length_x": 149.99264654382699, "length_y": 149.993338973481 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 11.178401873711778, 0.0 ], [ -0.001373291015625, 11.178401873711778, 0.0 ], [ -0.001373291015625, 11.177054633225978, 0.0 ], [ -0.00274658203125, 11.177054633225978, 0.0 ], [ -0.00274658203125, 11.178401873711778, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3842, "task_x": 131070, "task_y": 122912, "task_z": 18, "center_y": 11.1346133568385, "area_in_sqm": 22359.461476117402, "perimeter_in_m": 598.12634477149595, "length_x": 150.01476497929801, "length_y": 150.01545487227 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 11.135287077054244, 0.0 ], [ -0.001373291015625, 11.135287077054244, 0.0 ], [ -0.001373291015625, 11.133939636622728, 0.0 ], [ -0.00274658203125, 11.133939636622728, 0.0 ], [ -0.00274658203125, 11.135287077054244, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3843, "task_x": 131070, "task_y": 122944, "task_z": 18, "center_y": 11.091492073680101, "area_in_sqm": 22365.9881581068, "perimeter_in_m": 598.21363618631199, "length_x": 150.036802211208, "length_y": 150.03748956558101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 11.092165893501985, 0.0 ], [ -0.001373291015625, 11.092165893501985, 0.0 ], [ -0.001373291015625, 11.090818253858302, 0.0 ], [ -0.00274658203125, 11.090818253858302, 0.0 ], [ -0.00274658203125, 11.092165893501985, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3844, "task_x": 131070, "task_y": 122976, "task_z": 18, "center_y": 11.0483644274762, "area_in_sqm": 22372.491699159102, "perimeter_in_m": 598.300605435835, "length_x": 150.05875817831401, "length_y": 150.059442992177 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 11.049038346537088, 0.0 ], [ -0.001373291015625, 11.049038346537088, 0.0 ], [ -0.001373291015625, 11.047690508415329, 0.0 ], [ -0.00274658203125, 11.047690508415329, 0.0 ], [ -0.00274658203125, 11.049038346537088, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3845, "task_x": 131070, "task_y": 123008, "task_z": 18, "center_y": 11.0052304417269, "area_in_sqm": 22378.972070843, "perimeter_in_m": 598.38725227838995, "length_x": 150.080632819578, "length_y": 150.08131509102699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 11.005904459659448, 0.0 ], [ -0.001373291015625, 11.005904459659448, 0.0 ], [ -0.001373291015625, 11.00455642379427, 0.0 ], [ -0.00274658203125, 11.00455642379427, 0.0 ], [ -0.00274658203125, 11.005904459659448, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3846, "task_x": 131070, "task_y": 123040, "task_z": 18, "center_y": 10.962090139950099, "area_in_sqm": 22385.429244875901, "perimeter_in_m": 598.47357647905596, "length_x": 150.102426074167, "length_y": 150.10310580130499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 10.962764256386819, 0.0 ], [ -0.001373291015625, 10.962764256386819, 0.0 ], [ -0.001373291015625, 10.961416023513422, 0.0 ], [ -0.00274658203125, 10.961416023513422, 0.0 ], [ -0.00274658203125, 10.962764256386819, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3847, "task_x": 131070, "task_y": 123072, "task_z": 18, "center_y": 10.918943545681801, "area_in_sqm": 22391.863192558299, "perimeter_in_m": 598.559577790258, "length_x": 150.124137881455, "length_y": 150.12481506239001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 10.919617760254681, 0.0 ], [ -0.001373291015625, 10.919617760254681, 0.0 ], [ -0.001373291015625, 10.91826933110886, 0.0 ], [ -0.00274658203125, 10.91826933110886, 0.0 ], [ -0.00274658203125, 10.919617760254681, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3848, "task_x": 131070, "task_y": 123104, "task_z": 18, "center_y": 10.8757906824753, "area_in_sqm": 22398.273886203799, "perimeter_in_m": 598.645255983178, "length_x": 150.14576818101801, "length_y": 150.14644281386501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 10.876464994816274, 0.0 ], [ -0.001373291015625, 10.876464994816274, 0.0 ], [ -0.001373291015625, 10.87511637013435, 0.0 ], [ -0.00274658203125, 10.87511637013435, 0.0 ], [ -0.00274658203125, 10.876464994816274, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3849, "task_x": 131070, "task_y": 123136, "task_z": 18, "center_y": 10.832631573901899, "area_in_sqm": 22404.661297708801, "perimeter_in_m": 598.73061082234597, "length_x": 150.16731691264201, "length_y": 150.16798899552299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 10.833305983642489, 0.0 ], [ -0.001373291015625, 10.833305983642489, 0.0 ], [ -0.001373291015625, 10.831957164161324, 0.0 ], [ -0.00274658203125, 10.831957164161324, 0.0 ], [ -0.00274658203125, 10.833305983642489, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3850, "task_x": 131070, "task_y": 123168, "task_z": 18, "center_y": 10.7894662435502, "area_in_sqm": 22411.025399386901, "perimeter_in_m": 598.81564207235101, "length_x": 150.18878401631801, "length_y": 150.18945354735999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 10.79014075032174, 0.0 ], [ -0.001373291015625, 10.79014075032174, 0.0 ], [ -0.001373291015625, 10.788791736778748, 0.0 ], [ -0.00274658203125, 10.788791736778748, 0.0 ], [ -0.00274658203125, 10.79014075032174, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3851, "task_x": 131070, "task_y": 123200, "task_z": 18, "center_y": 10.7462947150266, "area_in_sqm": 22417.3661625981, "perimeter_in_m": 598.900349491827, "length_x": 150.210169432242, "length_y": 150.21083640958099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 10.746969318459989, 0.0 ], [ -0.001373291015625, 10.746969318459989, 0.0 ], [ -0.001373291015625, 10.745620111593169, 0.0 ], [ -0.00274658203125, 10.745620111593169, 0.0 ], [ -0.00274658203125, 10.746969318459989, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3852, "task_x": 131070, "task_y": 123232, "task_z": 18, "center_y": 10.7031170119546, "area_in_sqm": 22423.683560311802, "perimeter_in_m": 598.98473285535397, "length_x": 150.23147310082001, "length_y": 150.23213752259699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 10.703791711680722, 0.0 ], [ -0.001373291015625, 10.703791711680722, 0.0 ], [ -0.001373291015625, 10.70244231222857, 0.0 ], [ -0.00274658203125, 10.70244231222857, 0.0 ], [ -0.00274658203125, 10.703791711680722, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3853, "task_x": 131070, "task_y": 123264, "task_z": 18, "center_y": 10.6599331579755, "area_in_sqm": 22429.977564930901, "perimeter_in_m": 599.06879193156703, "length_x": 150.252694962666, "length_y": 150.25335682702701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 10.660607953624762, 0.0 ], [ -0.001373291015625, 10.660607953624762, 0.0 ], [ -0.001373291015625, 10.659258362326327, 0.0 ], [ -0.00274658203125, 10.659258362326327, 0.0 ], [ -0.00274658203125, 10.660607953624762, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3854, "task_x": 131070, "task_y": 123296, "task_z": 18, "center_y": 10.616743176747701, "area_in_sqm": 22436.248148560499, "perimeter_in_m": 599.15252648492105, "length_x": 150.273834958598, "length_y": 150.27449426369901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 10.617418067950311, 0.0 ], [ -0.001373291015625, 10.617418067950311, 0.0 ], [ -0.001373291015625, 10.616068285545182, 0.0 ], [ -0.00274658203125, 10.616068285545182, 0.0 ], [ -0.00274658203125, 10.617418067950311, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3855, "task_x": 131070, "task_y": 123328, "task_z": 18, "center_y": 10.573547091947001, "area_in_sqm": 22442.495283484499, "perimeter_in_m": 599.23593628168999, "length_x": 150.29489302964799, "length_y": 150.29554977364799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 10.574222078332809, 0.0 ], [ -0.001373291015625, 10.574222078332809, 0.0 ], [ -0.001373291015625, 10.572872105561146, 0.0 ], [ -0.00274658203125, 10.572872105561146, 0.0 ], [ -0.00274658203125, 10.574222078332809, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3856, "task_x": 131070, "task_y": 123360, "task_z": 18, "center_y": 10.530344927266199, "area_in_sqm": 22448.718942403801, "perimeter_in_m": 599.31902109174496, "length_x": 150.31586911705401, "length_y": 150.31652329811999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 10.531020008464978, 0.0 ], [ -0.001373291015625, 10.531020008464978, 0.0 ], [ -0.001373291015625, 10.529669846067463, 0.0 ], [ -0.00274658203125, 10.529669846067463, 0.0 ], [ -0.00274658203125, 10.531020008464978, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3857, "task_x": 131070, "task_y": 123392, "task_z": 18, "center_y": 10.487136706415599, "area_in_sqm": 22454.919098913699, "perimeter_in_m": 599.40178069841795, "length_x": 150.336763162262, "length_y": 150.33741477856799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 10.48781188205669, 0.0 ], [ -0.001373291015625, 10.48781188205669, 0.0 ], [ -0.001373291015625, 10.486461530774491, 0.0 ], [ -0.00274658203125, 10.486461530774491, 0.0 ], [ -0.00274658203125, 10.48781188205669, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3858, "task_x": 131070, "task_y": 123424, "task_z": 18, "center_y": 10.443922453122299, "area_in_sqm": 22461.095724463499, "perimeter_in_m": 599.484214855814, "length_x": 150.35757510693, "length_y": 150.358224156657 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 10.444597722834871, 0.0 ], [ -0.001373291015625, 10.444597722834871, 0.0 ], [ -0.001373291015625, 10.443247183409767, 0.0 ], [ -0.00274658203125, 10.443247183409767, 0.0 ], [ -0.00274658203125, 10.444597722834871, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3859, "task_x": 131070, "task_y": 123456, "task_z": 18, "center_y": 10.4007021911307, "area_in_sqm": 22467.248792529099, "perimeter_in_m": 599.56632334386097, "length_x": 150.378304892925, "length_y": 150.378951374259 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 10.401377554543544, 0.0 ], [ -0.001373291015625, 10.401377554543544, 0.0 ], [ -0.001373291015625, 10.400026827717809, 0.0 ], [ -0.00274658203125, 10.400026827717809, 0.0 ], [ -0.00274658203125, 10.401377554543544, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3860, "task_x": 131070, "task_y": 123488, "task_z": 18, "center_y": 10.3574759442019, "area_in_sqm": 22473.378276348099, "perimeter_in_m": 599.648105940081, "length_x": 150.39895246232501, "length_y": 150.39959637345899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 10.358151400943669, 0.0 ], [ -0.001373291015625, 10.358151400943669, 0.0 ], [ -0.001373291015625, 10.356800487460092, 0.0 ], [ -0.00274658203125, 10.356800487460092, 0.0 ], [ -0.00274658203125, 10.358151400943669, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3861, "task_x": 131070, "task_y": 123520, "task_z": 18, "center_y": 10.314243736114101, "area_in_sqm": 22479.484148740801, "perimeter_in_m": 599.72956241463896, "length_x": 150.41951775741799, "length_y": 150.42015909655299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 10.314919285813161, 0.0 ], [ -0.001373291015625, 10.314919285813161, 0.0 ], [ -0.001373291015625, 10.313568186415068, 0.0 ], [ -0.00274658203125, 10.313568186415068, 0.0 ], [ -0.00274658203125, 10.314919285813161, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3862, "task_x": 131070, "task_y": 123552, "task_z": 18, "center_y": 10.2710055906624, "area_in_sqm": 22485.566383034002, "perimeter_in_m": 599.81069254377098, "length_x": 150.44000072070401, "length_y": 150.440639486046 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 10.271681232946733, 0.0 ], [ -0.001373291015625, 10.271681232946733, 0.0 ], [ -0.001373291015625, 10.270329948377977, 0.0 ], [ -0.00274658203125, 10.270329948377977, 0.0 ], [ -0.00274658203125, 10.271681232946733, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3863, "task_x": 131070, "task_y": 123584, "task_z": 18, "center_y": 10.2277615316584, "area_in_sqm": 22491.624951928901, "perimeter_in_m": 599.891496095305, "length_x": 150.46040129489401, "length_y": 150.461037484656 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 10.22843726615595, 0.0 ], [ -0.001373291015625, 10.22843726615595, 0.0 ], [ -0.001373291015625, 10.227085797160939, 0.0 ], [ -0.00274658203125, 10.227085797160939, 0.0 ], [ -0.00274658203125, 10.22843726615595, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3864, "task_x": 131070, "task_y": 123616, "task_z": 18, "center_y": 10.184511582930901, "area_in_sqm": 22497.659829288699, "perimeter_in_m": 599.97197285512698, "length_x": 150.48071942291199, "length_y": 150.48135303531299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 10.185187409269048, 0.0 ], [ -0.001373291015625, 10.185187409269048, 0.0 ], [ -0.001373291015625, 10.183835756592671, 0.0 ], [ -0.00274658203125, 10.183835756592671, 0.0 ], [ -0.00274658203125, 10.185187409269048, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3865, "task_x": 131070, "task_y": 123648, "task_z": 18, "center_y": 10.1412557683249, "area_in_sqm": 22503.670988559701, "perimeter_in_m": 600.05212259825498, "length_x": 150.500955047893, "length_y": 150.50158608116001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 10.141931686131016, 0.0 ], [ -0.001373291015625, 10.141931686131016, 0.0 ], [ -0.001373291015625, 10.140579850518691, 0.0 ], [ -0.00274658203125, 10.140579850518691, 0.0 ], [ -0.00274658203125, 10.141931686131016, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3866, "task_x": 131070, "task_y": 123680, "task_z": 18, "center_y": 10.097994111702199, "area_in_sqm": 22509.658403039, "perimeter_in_m": 600.13194510223798, "length_x": 150.52110811318499, "length_y": 150.52173656555101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 10.098670120603373, 0.0 ], [ -0.001373291015625, 10.098670120603373, 0.0 ], [ -0.001373291015625, 10.09731810280104, 0.0 ], [ -0.00274658203125, 10.09731810280104, 0.0 ], [ -0.00274658203125, 10.098670120603373, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3867, "task_x": 131070, "task_y": 123712, "task_z": 18, "center_y": 10.0547266369413, "area_in_sqm": 22515.622046560002, "perimeter_in_m": 600.21144014646097, "length_x": 150.54117856235001, "length_y": 150.54180443205499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 10.055402736564218, 0.0 ], [ -0.001373291015625, 10.055402736564218, 0.0 ], [ -0.001373291015625, 10.054050537318332, 0.0 ], [ -0.00274658203125, 10.054050537318332, 0.0 ], [ -0.00274658203125, 10.055402736564218, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3868, "task_x": 131070, "task_y": 123744, "task_z": 18, "center_y": 10.0114533679369, "area_in_sqm": 22521.561892449899, "perimeter_in_m": 600.29060750895997, "length_x": 150.56116633916201, "length_y": 150.56178962445301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 10.012129557908125, 0.0 ], [ -0.001373291015625, 10.012129557908125, 0.0 ], [ -0.001373291015625, 10.010777177965664, 0.0 ], [ -0.00274658203125, 10.010777177965664, 0.0 ], [ -0.00274658203125, 10.012129557908125, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3869, "task_x": 131070, "task_y": 123776, "task_z": 18, "center_y": 9.9681743286003304, "area_in_sqm": 22527.477915018801, "perimeter_in_m": 600.369446972432, "length_x": 150.58107138761099, "length_y": 150.58169208673999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 9.968850608546106, 0.0 ], [ -0.001373291015625, 9.968850608546106, 0.0 ], [ -0.001373291015625, 9.967498048654548, 0.0 ], [ -0.00274658203125, 9.967498048654548, 0.0 ], [ -0.00274658203125, 9.968850608546106, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3870, "task_x": 131070, "task_y": 123808, "task_z": 18, "center_y": 9.9248895428591606, "area_in_sqm": 22533.370088100401, "perimeter_in_m": 600.44795831823001, "length_x": 150.60089365189901, "length_y": 150.60151176312701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 9.925565912405489, 0.0 ], [ -0.001373291015625, 9.925565912405489, 0.0 ], [ -0.001373291015625, 9.924213173312822, 0.0 ], [ -0.00274658203125, 9.924213173312822, 0.0 ], [ -0.00274658203125, 9.925565912405489, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3871, "task_x": 131070, "task_y": 123840, "task_z": 18, "center_y": 9.8815990346573006, "area_in_sqm": 22539.238385260101, "perimeter_in_m": 600.52614132600797, "length_x": 150.62063307644499, "length_y": 150.621248598037 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 9.88227549342993, 0.0 ], [ -0.001373291015625, 9.88227549342993, 0.0 ], [ -0.001373291015625, 9.880922575884668, 0.0 ], [ -0.00274658203125, 9.880922575884668, 0.0 ], [ -0.00274658203125, 9.88227549342993, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3872, "task_x": 131070, "task_y": 123872, "task_z": 18, "center_y": 9.8383028279548999, "area_in_sqm": 22545.082781165798, "perimeter_in_m": 600.60399578431702, "length_x": 150.64028960588001, "length_y": 150.64090253610999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 9.838979375579328, 0.0 ], [ -0.001373291015625, 9.838979375579328, 0.0 ], [ -0.001373291015625, 9.837626280330468, 0.0 ], [ -0.00274658203125, 9.837626280330468, 0.0 ], [ -0.00274658203125, 9.838979375579328, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3873, "task_x": 131070, "task_y": 123904, "task_z": 18, "center_y": 9.7950009467282495, "area_in_sqm": 22550.903249710798, "perimeter_in_m": 600.68152147366402, "length_x": 150.65986318505301, "length_y": 150.66047352220099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 9.795677582829725, 0.0 ], [ -0.001373291015625, 9.795677582829725, 0.0 ], [ -0.001373291015625, 9.794324310626777, 0.0 ], [ -0.00274658203125, 9.794324310626777, 0.0 ], [ -0.00274658203125, 9.795677582829725, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3874, "task_x": 131070, "task_y": 123936, "task_z": 18, "center_y": 9.7516934149697594, "area_in_sqm": 22556.699765414, "perimeter_in_m": 600.75871818168002, "length_x": 150.67935375902701, "length_y": 150.67996150138001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 9.75237013917328, 0.0 ], [ -0.001373291015625, 9.75237013917328, 0.0 ], [ -0.001373291015625, 9.751016690766249, 0.0 ], [ -0.00274658203125, 9.751016690766249, 0.0 ], [ -0.00274658203125, 9.75237013917328, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3875, "task_x": 131070, "task_y": 123968, "task_z": 18, "center_y": 9.7083802566879207, "area_in_sqm": 22562.472302108999, "perimeter_in_m": 600.83558568619401, "length_x": 150.698761273082, "length_y": 150.69936641893301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 9.709057068618208, 0.0 ], [ -0.001373291015625, 9.709057068618208, 0.0 ], [ -0.001373291015625, 9.707703444757627, 0.0 ], [ -0.00274658203125, 9.707703444757627, 0.0 ], [ -0.00274658203125, 9.709057068618208, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3876, "task_x": 131070, "task_y": 124000, "task_z": 18, "center_y": 9.6650614959071195, "area_in_sqm": 22568.220834910899, "perimeter_in_m": 600.91212378345301, "length_x": 150.71808567271401, "length_y": 150.71868822036399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 9.665738395188683, 0.0 ], [ -0.001373291015625, 9.665738395188683, 0.0 ], [ -0.001373291015625, 9.664384596625553, 0.0 ], [ -0.00274658203125, 9.664384596625553, 0.0 ], [ -0.00274658203125, 9.665738395188683, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3877, "task_x": 131070, "task_y": 124032, "task_z": 18, "center_y": 9.6217371566677201, "area_in_sqm": 22573.945338249199, "perimeter_in_m": 600.988332259549, "length_x": 150.73732690363701, "length_y": 150.73792685139199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 9.622414142924811, 0.0 ], [ -0.001373291015625, 9.622414142924811, 0.0 ], [ -0.001373291015625, 9.62106017041063, 0.0 ], [ -0.00274658203125, 9.62106017041063, 0.0 ], [ -0.00274658203125, 9.622414142924811, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3878, "task_x": 131070, "task_y": 124064, "task_z": 18, "center_y": 9.5784072630259391, "area_in_sqm": 22579.6457864642, "perimeter_in_m": 601.06421089535104, "length_x": 150.75648491178001, "length_y": 150.75708225795401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 9.579084335882541, 0.0 ], [ -0.001373291015625, 9.579084335882541, 0.0 ], [ -0.001373291015625, 9.577730190169334, 0.0 ], [ -0.00274658203125, 9.577730190169334, 0.0 ], [ -0.00274658203125, 9.579084335882541, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3879, "task_x": 131070, "task_y": 124096, "task_z": 18, "center_y": 9.5350718390537406, "area_in_sqm": 22585.3221544027, "perimeter_in_m": 601.13975948521795, "length_x": 150.77555964329099, "length_y": 150.77615438620501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 9.535748998133613, 0.0 ], [ -0.001373291015625, 9.535748998133613, 0.0 ], [ -0.001373291015625, 9.534394679973872, 0.0 ], [ -0.00274658203125, 9.534394679973872, 0.0 ], [ -0.00274658203125, 9.535748998133613, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3880, "task_x": 131070, "task_y": 124128, "task_z": 18, "center_y": 9.4917309088388908, "area_in_sqm": 22590.974417001002, "perimeter_in_m": 601.21497781405299, "length_x": 150.794551044537, "length_y": 150.79514318251799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 9.492408153765524, 0.0 ], [ -0.001373291015625, 9.492408153765524, 0.0 ], [ -0.001373291015625, 9.491053663912254, 0.0 ], [ -0.00274658203125, 9.491053663912254, 0.0 ], [ -0.00274658203125, 9.492408153765524, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3881, "task_x": 131070, "task_y": 124160, "task_z": 18, "center_y": 9.4483844964847403, "area_in_sqm": 22596.602549731699, "perimeter_in_m": 601.28986568483401, "length_x": 150.81345906210001, "length_y": 150.81404859348299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 9.449061826881419, 0.0 ], [ -0.001373291015625, 9.449061826881419, 0.0 ], [ -0.001373291015625, 9.447707166088065, 0.0 ], [ -0.00274658203125, 9.447707166088065, 0.0 ], [ -0.00274658203125, 9.449061826881419, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3882, "task_x": 131070, "task_y": 124192, "task_z": 18, "center_y": 9.4050326261102803, "area_in_sqm": 22602.206527084101, "perimeter_in_m": 601.36442288015405, "length_x": 150.83228364278401, "length_y": 150.83287056591001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 9.405710041600017, 0.0 ], [ -0.001373291015625, 9.405710041600017, 0.0 ], [ -0.001373291015625, 9.404355210620551, 0.0 ], [ -0.00274658203125, 9.404355210620551, 0.0 ], [ -0.00274658203125, 9.405710041600017, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3883, "task_x": 131070, "task_y": 124224, "task_z": 18, "center_y": 9.3616753218500293, "area_in_sqm": 22607.7863244414, "perimeter_in_m": 601.438649196087, "length_x": 150.85102473360999, "length_y": 150.85160904682701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 9.362352822055598, 0.0 ], [ -0.001373291015625, 9.362352822055598, 0.0 ], [ -0.001373291015625, 9.36099782164446, 0.0 ], [ -0.00274658203125, 9.36099782164446, 0.0 ], [ -0.00274658203125, 9.362352822055598, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3884, "task_x": 131070, "task_y": 124256, "task_z": 18, "center_y": 9.3183126078539598, "area_in_sqm": 22613.341917038, "perimeter_in_m": 601.512544423843, "length_x": 150.86968228181999, "length_y": 150.870263983482 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 9.318990192397905, 0.0 ], [ -0.001373291015625, 9.318990192397905, 0.0 ], [ -0.001373291015625, 9.317635023310018, 0.0 ], [ -0.00274658203125, 9.317635023310018, 0.0 ], [ -0.00274658203125, 9.318990192397905, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3885, "task_x": 131070, "task_y": 124288, "task_z": 18, "center_y": 9.27494450828749, "area_in_sqm": 22618.873280137799, "perimeter_in_m": 601.58610835578395, "length_x": 150.88825623487199, "length_y": 150.88883532334199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 9.275622176792098, 0.0 ], [ -0.001373291015625, 9.275622176792098, 0.0 ], [ -0.001373291015625, 9.274266839782882, 0.0 ], [ -0.00274658203125, 9.274266839782882, 0.0 ], [ -0.00274658203125, 9.275622176792098, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3886, "task_x": 131070, "task_y": 124320, "task_z": 18, "center_y": 9.2315710473313395, "area_in_sqm": 22624.3803890944, "perimeter_in_m": 601.65934078927705, "length_x": 150.90674654045, "length_y": 150.907323014095 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 9.23224879941867, 0.0 ], [ -0.001373291015625, 9.23224879941867, 0.0 ], [ -0.001373291015625, 9.230893295244016, 0.0 ], [ -0.00274658203125, 9.230893295244016, 0.0 ], [ -0.00274658203125, 9.23224879941867, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3887, "task_x": 131070, "task_y": 124352, "task_z": 18, "center_y": 9.1881922491815295, "area_in_sqm": 22629.8632197976, "perimeter_in_m": 601.73224152284001, "length_x": 150.925153146452, "length_y": 150.925727003649 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 9.188870084473393, 0.0 ], [ -0.001373291015625, 9.188870084473393, 0.0 ], [ -0.001373291015625, 9.187514413889659, 0.0 ], [ -0.00274658203125, 9.187514413889659, 0.0 ], [ -0.00274658203125, 9.188870084473393, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3888, "task_x": 131070, "task_y": 124384, "task_z": 18, "center_y": 9.1448081380492905, "area_in_sqm": 22635.321747690399, "perimeter_in_m": 601.80481034906597, "length_x": 150.94347600100201, "length_y": 150.94404724013199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 9.145486056167272, 0.0 ], [ -0.001373291015625, 9.145486056167272, 0.0 ], [ -0.001373291015625, 9.144130219931299, 0.0 ], [ -0.00274658203125, 9.144130219931299, 0.0 ], [ -0.00274658203125, 9.145486056167272, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3889, "task_x": 131070, "task_y": 124416, "task_z": 18, "center_y": 9.1014187381609908, "area_in_sqm": 22640.755948782, "perimeter_in_m": 601.87704707192904, "length_x": 150.961715052443, "length_y": 150.96228367189499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 9.102096738726445, 0.0 ], [ -0.001373291015625, 9.102096738726445, 0.0 ], [ -0.001373291015625, 9.10074073759553, 0.0 ], [ -0.00274658203125, 9.10074073759553, 0.0 ], [ -0.00274658203125, 9.102096738726445, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3890, "task_x": 131070, "task_y": 124448, "task_z": 18, "center_y": 9.0580240737581104, "area_in_sqm": 22646.165798217098, "perimeter_in_m": 601.94895147889599, "length_x": 150.97987024933801, "length_y": 150.980436247509 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 9.05870215639213, 0.0 ], [ -0.001373291015625, 9.05870215639213, 0.0 ], [ -0.001373291015625, 9.05734599112408, 0.0 ], [ -0.00274658203125, 9.05734599112408, 0.0 ], [ -0.00274658203125, 9.05870215639213, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3891, "task_x": 131070, "task_y": 124480, "task_z": 18, "center_y": 9.0146241690971092, "area_in_sqm": 22651.551272720098, "perimeter_in_m": 602.02052338116096, "length_x": 150.99794154047299, "length_y": 150.998504915767 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 9.015302333420578, 0.0 ], [ -0.001373291015625, 9.015302333420578, 0.0 ], [ -0.001373291015625, 9.013946004773629, 0.0 ], [ -0.00274658203125, 9.013946004773629, 0.0 ], [ -0.00274658203125, 9.015302333420578, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3892, "task_x": 131070, "task_y": 124512, "task_z": 18, "center_y": 8.9712190484494503, "area_in_sqm": 22656.912348240599, "perimeter_in_m": 602.09176257624097, "length_x": 151.01592887485799, "length_y": 151.01648962568501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 8.971897294083021, 0.0 ], [ -0.001373291015625, 8.971897294083021, 0.0 ], [ -0.001373291015625, 8.970540802815876, 0.0 ], [ -0.00274658203125, 8.970540802815876, 0.0 ], [ -0.00274658203125, 8.971897294083021, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3893, "task_x": 131070, "task_y": 124544, "task_z": 18, "center_y": 8.9278087361014205, "area_in_sqm": 22662.249000787699, "perimeter_in_m": 602.16266886244603, "length_x": 151.03383220172299, "length_y": 151.03439032649899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 8.928487062665496, 0.0 ], [ -0.001373291015625, 8.928487062665496, 0.0 ], [ -0.001373291015625, 8.927130409537341, 0.0 ], [ -0.00274658203125, 8.927130409537341, 0.0 ], [ -0.00274658203125, 8.928487062665496, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3894, "task_x": 131070, "task_y": 124576, "task_z": 18, "center_y": 8.8843932563542207, "area_in_sqm": 22667.561206609, "perimeter_in_m": 602.23324204416497, "length_x": 151.05165147052199, "length_y": 151.052206967671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 8.885071663468978, 0.0 ], [ -0.001373291015625, 8.885071663468978, 0.0 ], [ -0.001373291015625, 8.883714849239453, 0.0 ], [ -0.00274658203125, 8.883714849239453, 0.0 ], [ -0.00274658203125, 8.885071663468978, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3895, "task_x": 131070, "task_y": 124608, "task_z": 18, "center_y": 8.8409726335237604, "area_in_sqm": 22672.848941803, "perimeter_in_m": 602.30348192023303, "length_x": 151.06938663093101, "length_y": 151.06993949888499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 8.841651120809146, 0.0 ], [ -0.001373291015625, 8.841651120809146, 0.0 ], [ -0.001373291015625, 8.840294146238364, 0.0 ], [ -0.00274658203125, 8.840294146238364, 0.0 ], [ -0.00274658203125, 8.841651120809146, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3896, "task_x": 131070, "task_y": 124640, "task_z": 18, "center_y": 8.7975468919406001, "area_in_sqm": 22678.112183064201, "perimeter_in_m": 602.37338829839098, "length_x": 151.087037632852, "length_y": 151.087587870048 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 8.798225459016337, 0.0 ], [ -0.001373291015625, 8.798225459016337, 0.0 ], [ -0.001373291015625, 8.79686832486486, 0.0 ], [ -0.00274658203125, 8.79686832486486, 0.0 ], [ -0.00274658203125, 8.798225459016337, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3897, "task_x": 131070, "task_y": 124672, "task_z": 18, "center_y": 8.7541160559500195, "area_in_sqm": 22683.350907236301, "perimeter_in_m": 602.44296098364396, "length_x": 151.10460442640701, "length_y": 151.105152031291 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 8.754794702435603, 0.0 ], [ -0.001373291015625, 8.754794702435603, 0.0 ], [ -0.001373291015625, 8.753437409464439, 0.0 ], [ -0.00274658203125, 8.753437409464439, 0.0 ], [ -0.00274658203125, 8.754794702435603, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3898, "task_x": 131070, "task_y": 124704, "task_z": 18, "center_y": 8.7106801499118198, "area_in_sqm": 22688.5650907159, "perimeter_in_m": 602.51219978390895, "length_x": 151.12208696194699, "length_y": 151.122631932969 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 8.711358875426512, 0.0 ], [ -0.001373291015625, 8.711358875426512, 0.0 ], [ -0.001373291015625, 8.71000142439712, 0.0 ], [ -0.00274658203125, 8.71000142439712, 0.0 ], [ -0.00274658203125, 8.711358875426512, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3899, "task_x": 131070, "task_y": 124736, "task_z": 18, "center_y": 8.6672391982002797, "area_in_sqm": 22693.754709780202, "perimeter_in_m": 602.58110449449202, "length_x": 151.139485190042, "length_y": 151.14002752566401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 8.667918002363109, 0.0 ], [ -0.001373291015625, 8.667918002363109, 0.0 ], [ -0.001373291015625, 8.666560394037447, 0.0 ], [ -0.00274658203125, 8.666560394037447, 0.0 ], [ -0.00274658203125, 8.667918002363109, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3900, "task_x": 131070, "task_y": 124768, "task_z": 18, "center_y": 8.6237932252041301, "area_in_sqm": 22698.919742465001, "perimeter_in_m": 602.64967494113, "length_x": 151.15679906149299, "length_y": 151.15733876017799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 8.624472107633935, 0.0 ], [ -0.001373291015625, 8.624472107633935, 0.0 ], [ -0.001373291015625, 8.623114342774329, 0.0 ], [ -0.00274658203125, 8.623114342774329, 0.0 ], [ -0.00274658203125, 8.624472107633935, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3901, "task_x": 131070, "task_y": 124800, "task_z": 18, "center_y": 8.5803422553264905, "area_in_sqm": 22704.060164481401, "perimeter_in_m": 602.71791091436501, "length_x": 151.17402852731999, "length_y": 151.17456558754299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 8.58102121564184, 0.0 ], [ -0.001373291015625, 8.58102121564184, 0.0 ], [ -0.001373291015625, 8.579663295011144, 0.0 ], [ -0.00274658203125, 8.579663295011144, 0.0 ], [ -0.00274658203125, 8.58102121564184, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3902, "task_x": 131070, "task_y": 124832, "task_z": 18, "center_y": 8.5368863129847501, "area_in_sqm": 22709.175953745798, "perimeter_in_m": 602.78581223482604, "length_x": 151.191173538774, "length_y": 151.19170795901499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 8.537565350804016, 0.0 ], [ -0.001373291015625, 8.537565350804016, 0.0 ], [ -0.001373291015625, 8.536207275165481, 0.0 ], [ -0.00274658203125, 8.536207275165481, 0.0 ], [ -0.00274658203125, 8.537565350804016, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3903, "task_x": 131070, "task_y": 124864, "task_z": 18, "center_y": 8.4934254226105494, "area_in_sqm": 22714.267086923101, "perimeter_in_m": 602.85337870523404, "length_x": 151.20823404732801, "length_y": 151.208765826074 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 8.494104537551877, 0.0 ], [ -0.001373291015625, 8.494104537551877, 0.0 ], [ -0.001373291015625, 8.492746307669222, 0.0 ], [ -0.00274658203125, 8.492746307669222, 0.0 ], [ -0.00274658203125, 8.494104537551877, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3904, "task_x": 131070, "task_y": 124896, "task_z": 18, "center_y": 8.4499596086496904, "area_in_sqm": 22719.333541393298, "perimeter_in_m": 602.92061013969601, "length_x": 151.22521000468299, "length_y": 151.225739140428 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 8.450638800330992, 0.0 ], [ -0.001373291015625, 8.450638800330992, 0.0 ], [ -0.001373291015625, 8.449280416968378, 0.0 ], [ -0.00274658203125, 8.449280416968378, 0.0 ], [ -0.00274658203125, 8.450638800330992, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3905, "task_x": 131070, "task_y": 124928, "task_z": 18, "center_y": 8.4064888955620702, "area_in_sqm": 22724.375295370799, "perimeter_in_m": 602.98750636052898, "length_x": 151.24210136276699, "length_y": 151.242627854012 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 8.407168163601085, 0.0 ], [ -0.001373291015625, 8.407168163601085, 0.0 ], [ -0.001373291015625, 8.405809627523055, 0.0 ], [ -0.00274658203125, 8.405809627523055, 0.0 ], [ -0.00274658203125, 8.407168163601085, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3906, "task_x": 131070, "task_y": 124960, "task_z": 18, "center_y": 8.3630133078216495, "area_in_sqm": 22729.3923247159, "perimeter_in_m": 603.05406715732295, "length_x": 151.25890807373199, "length_y": 151.25943191898699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 8.363692651835834, 0.0 ], [ -0.001373291015625, 8.363692651835834, 0.0 ], [ -0.001373291015625, 8.362333963807473, 0.0 ], [ -0.00274658203125, 8.362333963807473, 0.0 ], [ -0.00274658203125, 8.363692651835834, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3907, "task_x": 131070, "task_y": 124992, "task_z": 18, "center_y": 8.3195328699163191, "area_in_sqm": 22734.384608030301, "perimeter_in_m": 603.12029235999205, "length_x": 151.275630089961, "length_y": 151.27615128773999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 8.320212289522942, 0.0 ], [ -0.001373291015625, 8.320212289522942, 0.0 ], [ -0.001373291015625, 8.318853450309703, 0.0 ], [ -0.00274658203125, 8.318853450309703, 0.0 ], [ -0.00274658203125, 8.320212289522942, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3908, "task_x": 131070, "task_y": 125024, "task_z": 18, "center_y": 8.2760476063479302, "area_in_sqm": 22739.352122843298, "perimeter_in_m": 603.18618177948804, "length_x": 151.29226736406201, "length_y": 151.29278591288801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 8.276727101164042, 0.0 ], [ -0.001373291015625, 8.276727101164042, 0.0 ], [ -0.001373291015625, 8.275368111531819, 0.0 ], [ -0.00274658203125, 8.275368111531819, 0.0 ], [ -0.00274658203125, 8.276727101164042, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3909, "task_x": 131070, "task_y": 125056, "task_z": 18, "center_y": 8.2325575416321009, "area_in_sqm": 22744.2948471606, "perimeter_in_m": 603.25173523356398, "length_x": 151.308819848871, "length_y": 151.30933574727499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 8.233237111274548, 0.0 ], [ -0.001373291015625, 8.233237111274548, 0.0 ], [ -0.001373291015625, 8.231877971989661, 0.0 ], [ -0.00274658203125, 8.231877971989661, 0.0 ], [ -0.00274658203125, 8.233237111274548, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3910, "task_x": 131070, "task_y": 125088, "task_z": 18, "center_y": 8.1890627002982992, "area_in_sqm": 22749.212758332498, "perimeter_in_m": 603.316952532659, "length_x": 151.32528749745299, "length_y": 151.325800743971 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 8.189742344383689, 0.0 ], [ -0.001373291015625, 8.189742344383689, 0.0 ], [ -0.001373291015625, 8.188383056212913, 0.0 ], [ -0.00274658203125, 8.188383056212913, 0.0 ], [ -0.00274658203125, 8.189742344383689, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3911, "task_x": 131070, "task_y": 125120, "task_z": 18, "center_y": 8.1455631068896395, "area_in_sqm": 22754.105834633101, "perimeter_in_m": 603.38183349753695, "length_x": 151.34167026310101, "length_y": 151.342180856277 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 8.146242825034378, 0.0 ], [ -0.001373291015625, 8.146242825034378, 0.0 ], [ -0.001373291015625, 8.144883388744901, 0.0 ], [ -0.00274658203125, 8.144883388744901, 0.0 ], [ -0.00274658203125, 8.146242825034378, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3912, "task_x": 131070, "task_y": 125152, "task_z": 18, "center_y": 8.1020587859628606, "area_in_sqm": 22758.9740546346, "perimeter_in_m": 603.44637795224503, "length_x": 151.35796809933601, "length_y": 151.358476037722 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 8.102738577783157, 0.0 ], [ -0.001373291015625, 8.102738577783157, 0.0 ], [ -0.001373291015625, 8.101378994142564, 0.0 ], [ -0.00274658203125, 8.101378994142564, 0.0 ], [ -0.00274658203125, 8.102738577783157, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3913, "task_x": 131070, "task_y": 125184, "task_z": 18, "center_y": 8.0585497620883508, "area_in_sqm": 22763.817395567901, "perimeter_in_m": 603.51058570256896, "length_x": 151.374180959911, "length_y": 151.374686242064 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 8.059229627200168, 0.0 ], [ -0.001373291015625, 8.059229627200168, 0.0 ], [ -0.001373291015625, 8.057869896976527, 0.0 ], [ -0.00274658203125, 8.057869896976527, 0.0 ], [ -0.00274658203125, 8.059229627200168, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3914, "task_x": 131070, "task_y": 125216, "task_z": 18, "center_y": 8.0150360598499297, "area_in_sqm": 22768.6358364224, "perimeter_in_m": 603.57445657839105, "length_x": 151.390308798804, "length_y": 151.39081142329101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 8.015715997869052, 0.0 ], [ -0.001373291015625, 8.015715997869052, 0.0 ], [ -0.001373291015625, 8.014356121830801, 0.0 ], [ -0.00274658203125, 8.014356121830801, 0.0 ], [ -0.00274658203125, 8.015715997869052, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3915, "task_x": 131070, "task_y": 125248, "task_z": 18, "center_y": 7.9715177038448699, "area_in_sqm": 22773.429355472301, "perimeter_in_m": 603.63799039769503, "length_x": 151.406351570227, "length_y": 151.40685153562001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 7.972197714386866, 0.0 ], [ -0.001373291015625, 7.972197714386866, 0.0 ], [ -0.001373291015625, 7.970837693302883, 0.0 ], [ -0.00274658203125, 7.970837693302883, 0.0 ], [ -0.00274658203125, 7.972197714386866, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3916, "task_x": 131070, "task_y": 125280, "task_z": 18, "center_y": 7.9279947186838102, "area_in_sqm": 22778.197931230101, "perimeter_in_m": 603.70118698210001, "length_x": 151.42230922861799, "length_y": 151.422806533498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 7.928674801364025, 0.0 ], [ -0.001373291015625, 7.928674801364025, 0.0 ], [ -0.001373291015625, 7.927314636003601, 0.0 ], [ -0.00274658203125, 7.927314636003601, 0.0 ], [ -0.00274658203125, 7.928674801364025, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3917, "task_x": 131070, "task_y": 125312, "task_z": 18, "center_y": 7.8844671289907398, "area_in_sqm": 22782.941542774399, "perimeter_in_m": 603.76404616213301, "length_x": 151.438181728649, "length_y": 151.43867637160201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 7.885147283424331, 0.0 ], [ -0.001373291015625, 7.885147283424331, 0.0 ], [ -0.001373291015625, 7.88378697455714, 0.0 ], [ -0.00274658203125, 7.88378697455714, 0.0 ], [ -0.00274658203125, 7.885147283424331, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3918, "task_x": 131070, "task_y": 125344, "task_z": 18, "center_y": 7.8409349594027899, "area_in_sqm": 22787.6601674706, "perimeter_in_m": 603.82656774055397, "length_x": 151.453969025221, "length_y": 151.45446100484099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 7.841615185204688, 0.0 ], [ -0.001373291015625, 7.841615185204688, 0.0 ], [ -0.001373291015625, 7.840254733600901, 0.0 ], [ -0.00274658203125, 7.840254733600901, 0.0 ], [ -0.00274658203125, 7.841615185204688, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3919, "task_x": 131070, "task_y": 125376, "task_z": 18, "center_y": 7.7973982345703599, "area_in_sqm": 22792.353785514799, "perimeter_in_m": 603.88875156151005, "length_x": 151.46967107346501, "length_y": 151.470160388355 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 7.798078531355301, 0.0 ], [ -0.001373291015625, 7.798078531355301, 0.0 ], [ -0.001373291015625, 7.796717937785417, 0.0 ], [ -0.00274658203125, 7.796717937785417, 0.0 ], [ -0.00274658203125, 7.798078531355301, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3920, "task_x": 131070, "task_y": 125408, "task_z": 18, "center_y": 7.7538569791568497, "area_in_sqm": 22797.022375553799, "perimeter_in_m": 603.95059744666696, "length_x": 151.48528782874499, "length_y": 151.48577447751299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 7.754537346539379, 0.0 ], [ -0.001373291015625, 7.754537346539379, 0.0 ], [ -0.001373291015625, 7.753176611774322, 0.0 ], [ -0.00274658203125, 7.753176611774322, 0.0 ], [ -0.00274658203125, 7.754537346539379, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3921, "task_x": 131070, "task_y": 125440, "task_z": 18, "center_y": 7.7103112178387896, "area_in_sqm": 22801.6659159958, "perimeter_in_m": 604.012105212493, "length_x": 151.50081924665599, "length_y": 151.50130322791799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 7.710991655433219, 0.0 ], [ -0.001373291015625, 7.710991655433219, 0.0 ], [ -0.001373291015625, 7.709630780244353, 0.0 ], [ -0.00274658203125, 7.709630780244353, 0.0 ], [ -0.00274658203125, 7.710991655433219, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3922, "task_x": 131070, "task_y": 125472, "task_z": 18, "center_y": 7.6667609753055999, "area_in_sqm": 22806.2843865305, "perimeter_in_m": 604.07327469391805, "length_x": 151.51626528302401, "length_y": 151.51674659540399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 7.667441482726062, 0.0 ], [ -0.001373291015625, 7.667441482726062, 0.0 ], [ -0.001373291015625, 7.666080467885138, 0.0 ], [ -0.00274658203125, 7.666080467885138, 0.0 ], [ -0.00274658203125, 7.667441482726062, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3923, "task_x": 131070, "task_y": 125504, "task_z": 18, "center_y": 7.6232062762596202, "area_in_sqm": 22810.877766519799, "perimeter_in_m": 604.13410572103101, "length_x": 151.531625893908, "length_y": 151.532104536036 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 7.623886853120041, 0.0 ], [ -0.001373291015625, 7.623886853120041, 0.0 ], [ -0.001373291015625, 7.622525699399191, 0.0 ], [ -0.00274658203125, 7.622525699399191, 0.0 ], [ -0.00274658203125, 7.623886853120041, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3924, "task_x": 131070, "task_y": 125536, "task_z": 18, "center_y": 7.5796471454160201, "area_in_sqm": 22815.4460346997, "perimeter_in_m": 604.19459811414299, "length_x": 151.5469010356, "length_y": 151.547377006114 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 7.58032779133012, 0.0 ], [ -0.001373291015625, 7.58032779133012, 0.0 ], [ -0.001373291015625, 7.578966499501917, 0.0 ], [ -0.00274658203125, 7.578966499501917, 0.0 ], [ -0.00274658203125, 7.58032779133012, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3925, "task_x": 131070, "task_y": 125568, "task_z": 18, "center_y": 7.5360836075027597, "area_in_sqm": 22819.989171505, "perimeter_in_m": 604.25475171484402, "length_x": 151.56209066462401, "length_y": 151.56256396216901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 7.536764322084082, 0.0 ], [ -0.001373291015625, 7.536764322084082, 0.0 ], [ -0.001373291015625, 7.535402892921439, 0.0 ], [ -0.00274658203125, 7.535402892921439, 0.0 ], [ -0.00274658203125, 7.536764322084082, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3926, "task_x": 131070, "task_y": 125600, "task_z": 18, "center_y": 7.4925156872604202, "area_in_sqm": 22824.507155254501, "perimeter_in_m": 604.31456633942696, "length_x": 151.57719473773599, "length_y": 151.577665360965 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 7.493196470122271, 0.0 ], [ -0.001373291015625, 7.493196470122271, 0.0 ], [ -0.001373291015625, 7.491834904398573, 0.0 ], [ -0.00274658203125, 7.491834904398573, 0.0 ], [ -0.00274658203125, 7.493196470122271, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3927, "task_x": 131070, "task_y": 125632, "task_z": 18, "center_y": 7.44894340944228, "area_in_sqm": 22828.9999670088, "perimeter_in_m": 604.37404183533602, "length_x": 151.59221321192899, "length_y": 151.59268115949999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 7.449624260197808, 0.0 ], [ -0.001373291015625, 7.449624260197808, 0.0 ], [ -0.001373291015625, 7.44826255868675, 0.0 ], [ -0.00274658203125, 7.44826255868675, 0.0 ], [ -0.00274658203125, 7.449624260197808, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3928, "task_x": 131070, "task_y": 125664, "task_z": 18, "center_y": 7.4053667988141196, "area_in_sqm": 22833.467585817001, "perimeter_in_m": 604.43317802613001, "length_x": 151.60714604442501, "length_y": 151.60761131500701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 7.406047717076262, 0.0 ], [ -0.001373291015625, 7.406047717076262, 0.0 ], [ -0.001373291015625, 7.40468588055198, 0.0 ], [ -0.00274658203125, 7.40468588055198, 0.0 ], [ -0.00274658203125, 7.406047717076262, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3929, "task_x": 131070, "task_y": 125696, "task_z": 18, "center_y": 7.3617858801542502, "area_in_sqm": 22837.9099911749, "perimeter_in_m": 604.49197474182802, "length_x": 151.621993192682, "length_y": 151.62245578494901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 7.362466865535737, 0.0 ], [ -0.001373291015625, 7.362466865535737, 0.0 ], [ -0.001373291015625, 7.361104894772765, 0.0 ], [ -0.00274658203125, 7.361104894772765, 0.0 ], [ -0.00274658203125, 7.362466865535737, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3930, "task_x": 131070, "task_y": 125728, "task_z": 18, "center_y": 7.3182006782533602, "area_in_sqm": 22842.327163711201, "perimeter_in_m": 604.55043182314296, "length_x": 151.63675461439499, "length_y": 151.63721452702799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 7.318881730366741, 0.0 ], [ -0.001373291015625, 7.318881730366741, 0.0 ], [ -0.001373291015625, 7.317519626139983, 0.0 ], [ -0.00274658203125, 7.317519626139983, 0.0 ], [ -0.00274658203125, 7.318881730366741, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3931, "task_x": 131070, "task_y": 125760, "task_z": 18, "center_y": 7.2746112179145301, "area_in_sqm": 22846.719083949902, "perimeter_in_m": 604.60854911159697, "length_x": 151.65143026748899, "length_y": 151.65188749917701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 7.275292336372175, 0.0 ], [ -0.001373291015625, 7.275292336372175, 0.0 ], [ -0.001373291015625, 7.273930099456877, 0.0 ], [ -0.00274658203125, 7.273930099456877, 0.0 ], [ -0.00274658203125, 7.275292336372175, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3932, "task_x": 131070, "task_y": 125792, "task_z": 18, "center_y": 7.2310175239530698, "area_in_sqm": 22851.0857309401, "perimeter_in_m": 604.66632642712602, "length_x": 151.666020110125, "length_y": 151.66647465956501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 7.231698708367134, 0.0 ], [ -0.001373291015625, 7.231698708367134, 0.0 ], [ -0.001373291015625, 7.230336339539008, 0.0 ], [ -0.00274658203125, 7.230336339539008, 0.0 ], [ -0.00274658203125, 7.231698708367134, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3933, "task_x": 131070, "task_y": 125824, "task_z": 18, "center_y": 7.1874196211965602, "area_in_sqm": 22855.427085742402, "perimeter_in_m": 604.72376361817703, "length_x": 151.680524100702, "length_y": 151.680975966598 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 7.188100871179017, 0.0 ], [ -0.001373291015625, 7.188100871179017, 0.0 ], [ -0.001373291015625, 7.186738371214105, 0.0 ], [ -0.00274658203125, 7.186738371214105, 0.0 ], [ -0.00274658203125, 7.188100871179017, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3934, "task_x": 131070, "task_y": 125856, "task_z": 18, "center_y": 7.1438175344846897, "area_in_sqm": 22859.743128493399, "perimeter_in_m": 604.780860517782, "length_x": 151.69494219785199, "length_y": 151.695391378913 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 7.14449884964732, 0.0 ], [ -0.001373291015625, 7.14449884964732, 0.0 ], [ -0.001373291015625, 7.143136219322059, 0.0 ], [ -0.00274658203125, 7.143136219322059, 0.0 ], [ -0.00274658203125, 7.14449884964732, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3935, "task_x": 131070, "task_y": 125888, "task_z": 18, "center_y": 7.1002112886692199, "area_in_sqm": 22864.033840358301, "perimeter_in_m": 604.83761697337297, "length_x": 151.70927436044099, "length_y": 151.70972085538801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 7.100892668623629, 0.0 ], [ -0.001373291015625, 7.100892668623629, 0.0 ], [ -0.001373291015625, 7.0995299087148, 0.0 ], [ -0.00274658203125, 7.0995299087148, 0.0 ], [ -0.00274658203125, 7.100892668623629, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3936, "task_x": 131070, "task_y": 125920, "task_z": 18, "center_y": 7.0566009086139703, "area_in_sqm": 22868.299201428901, "perimeter_in_m": 604.89403281697105, "length_x": 151.72352054757499, "length_y": 151.72396435513201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 7.057282352971569, 0.0 ], [ -0.001373291015625, 7.057282352971569, 0.0 ], [ -0.001373291015625, 7.055919464256363, 0.0 ], [ -0.00274658203125, 7.055919464256363, 0.0 ], [ -0.00274658203125, 7.057282352971569, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3937, "task_x": 131070, "task_y": 125952, "task_z": 18, "center_y": 7.0129864191946103, "area_in_sqm": 22872.5391926169, "perimeter_in_m": 604.95010789252694, "length_x": 151.73768071859399, "length_y": 151.73812183749399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 7.01366792756663, 0.0 ], [ -0.001373291015625, 7.01366792756663, 0.0 ], [ -0.001373291015625, 7.012304910822593, 0.0 ], [ -0.00274658203125, 7.012304910822593, 0.0 ], [ -0.00274658203125, 7.01366792756663, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3938, "task_x": 131070, "task_y": 125984, "task_z": 18, "center_y": 6.9693678452987697, "area_in_sqm": 22876.753794163498, "perimeter_in_m": 605.00584203263304, "length_x": 151.75175483307299, "length_y": 151.752193262058 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 6.970049417296224, 0.0 ], [ -0.001373291015625, 6.970049417296224, 0.0 ], [ -0.001373291015625, 6.968686273301316, 0.0 ], [ -0.00274658203125, 6.968686273301316, 0.0 ], [ -0.00274658203125, 6.970049417296224, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3939, "task_x": 131070, "task_y": 126016, "task_z": 18, "center_y": 6.9257452118257801, "area_in_sqm": 22880.942988216899, "perimeter_in_m": 605.06123509558302, "length_x": 151.765742850827, "length_y": 151.766178588645 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 6.926426847059545, 0.0 ], [ -0.001373291015625, 6.926426847059545, 0.0 ], [ -0.001373291015625, 6.925063576592024, 0.0 ], [ -0.00274658203125, 6.925063576592024, 0.0 ], [ -0.00274658203125, 6.926426847059545, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3940, "task_x": 131070, "task_y": 126048, "task_z": 18, "center_y": 6.8821185436868202, "area_in_sqm": 22885.106755524899, "perimeter_in_m": 605.11628691983901, "length_x": 151.77964473190701, "length_y": 151.78007777731199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 6.882800241767569, 0.0 ], [ -0.001373291015625, 6.882800241767569, 0.0 ], [ -0.001373291015625, 6.881436845606075, 0.0 ], [ -0.00274658203125, 6.881436845606075, 0.0 ], [ -0.00274658203125, 6.882800241767569, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3941, "task_x": 131070, "task_y": 126080, "task_z": 18, "center_y": 6.8384878658046002, "area_in_sqm": 22889.245076432799, "perimeter_in_m": 605.17099734151702, "length_x": 151.79346043659899, "length_y": 151.79389078835499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 6.839169626342809, 0.0 ], [ -0.001373291015625, 6.839169626342809, 0.0 ], [ -0.001373291015625, 6.837806105266395, 0.0 ], [ -0.00274658203125, 6.837806105266395, 0.0 ], [ -0.00274658203125, 6.839169626342809, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3942, "task_x": 131070, "task_y": 126112, "task_z": 18, "center_y": 6.7948532031135302, "area_in_sqm": 22893.357933625601, "perimeter_in_m": 605.22536622065502, "length_x": 151.807189925431, "length_y": 151.80761758230801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 6.795535025719531, 0.0 ], [ -0.001373291015625, 6.795535025719531, 0.0 ], [ -0.001373291015625, 6.794171380507535, 0.0 ], [ -0.00274658203125, 6.794171380507535, 0.0 ], [ -0.00274658203125, 6.795535025719531, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3943, "task_x": 131070, "task_y": 126144, "task_z": 18, "center_y": 6.7512145805594796, "area_in_sqm": 22897.445307433602, "perimeter_in_m": 605.27939339094803, "length_x": 151.82083315916401, "length_y": 151.82125811994001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 6.751896464843384, 0.0 ], [ -0.001373291015625, 6.751896464843384, 0.0 ], [ -0.001373291015625, 6.75053269627557, 0.0 ], [ -0.00274658203125, 6.75053269627557, 0.0 ], [ -0.00274658203125, 6.751896464843384, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3944, "task_x": 131070, "task_y": 126176, "task_z": 18, "center_y": 6.7075720230997797, "area_in_sqm": 22901.507179543401, "perimeter_in_m": 605.33307870208296, "length_x": 151.834390098802, "length_y": 151.834812362261 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 6.708253968671542, 0.0 ], [ -0.001373291015625, 6.708253968671542, 0.0 ], [ -0.001373291015625, 6.706890077528016, 0.0 ], [ -0.00274658203125, 6.706890077528016, 0.0 ], [ -0.00274658203125, 6.708253968671542, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3945, "task_x": 131070, "task_y": 126208, "task_z": 18, "center_y": 6.6639255557031696, "area_in_sqm": 22905.5435314924, "perimeter_in_m": 605.38642200192203, "length_x": 151.847860705583, "length_y": 151.84828027051799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 6.664607562172563, 0.0 ], [ -0.001373291015625, 6.664607562172563, 0.0 ], [ -0.001373291015625, 6.663243549233783, 0.0 ], [ -0.00274658203125, 6.663243549233783, 0.0 ], [ -0.00274658203125, 6.664607562172563, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3946, "task_x": 131070, "task_y": 126240, "task_z": 18, "center_y": 6.6202752033496903, "area_in_sqm": 22909.5543459654, "perimeter_in_m": 605.43942314902904, "length_x": 151.86124494098701, "length_y": 151.86166180619901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 6.620957270326315, 0.0 ], [ -0.001373291015625, 6.620957270326315, 0.0 ], [ -0.001373291015625, 6.619593136373055, 0.0 ], [ -0.00274658203125, 6.619593136373055, 0.0 ], [ -0.00274658203125, 6.620957270326315, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3947, "task_x": 131070, "task_y": 126272, "task_z": 18, "center_y": 6.5766209910305804, "area_in_sqm": 22913.539604350899, "perimeter_in_m": 605.49208199008694, "length_x": 151.874542766731, "length_y": 151.87495693102699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 6.577303118123879, 0.0 ], [ -0.001373291015625, 6.577303118123879, 0.0 ], [ -0.001373291015625, 6.575938863937282, 0.0 ], [ -0.00274658203125, 6.575938863937282, 0.0 ], [ -0.00274658203125, 6.577303118123879, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3948, "task_x": 131070, "task_y": 126304, "task_z": 18, "center_y": 6.5329629437483199, "area_in_sqm": 22917.499287754301, "perimeter_in_m": 605.54439836378197, "length_x": 151.887754144773, "length_y": 151.88816560696699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 6.533645130567521, 0.0 ], [ -0.001373291015625, 6.533645130567521, 0.0 ], [ -0.001373291015625, 6.532280756929126, 0.0 ], [ -0.00274658203125, 6.532280756929126, 0.0 ], [ -0.00274658203125, 6.533645130567521, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3949, "task_x": 131070, "task_y": 126336, "task_z": 18, "center_y": 6.48930108651646, "area_in_sqm": 22921.4333796352, "perimeter_in_m": 605.59637214032102, "length_x": 151.90087903730799, "length_y": 151.90128779622401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 6.489983332670647, 0.0 ], [ -0.001373291015625, 6.489983332670647, 0.0 ], [ -0.001373291015625, 6.488618840362264, 0.0 ], [ -0.00274658203125, 6.488618840362264, 0.0 ], [ -0.00274658203125, 6.489983332670647, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3950, "task_x": 131070, "task_y": 126368, "task_z": 18, "center_y": 6.44563544435956, "area_in_sqm": 22925.3418609947, "perimeter_in_m": 605.64800315650803, "length_x": 151.91391740677301, "length_y": 151.914323461241 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 6.446317749457634, 0.0 ], [ -0.001373291015625, 6.446317749457634, 0.0 ], [ -0.001373291015625, 6.444953139261486, 0.0 ], [ -0.00274658203125, 6.444953139261486, 0.0 ], [ -0.00274658203125, 6.446317749457634, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3951, "task_x": 131070, "task_y": 126400, "task_z": 18, "center_y": 6.4019660423131803, "area_in_sqm": 22929.2247153223, "perimeter_in_m": 605.69929128367096, "length_x": 151.92686921584499, "length_y": 151.92727256470101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 6.402648405963888, 0.0 ], [ -0.001373291015625, 6.402648405963888, 0.0 ], [ -0.001373291015625, 6.401283678662466, 0.0 ], [ -0.00274658203125, 6.401283678662466, 0.0 ], [ -0.00274658203125, 6.402648405963888, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3952, "task_x": 131070, "task_y": 126432, "task_z": 18, "center_y": 6.3582929054237702, "area_in_sqm": 22933.081924080801, "perimeter_in_m": 605.750236360793, "length_x": 151.939734427438, "length_y": 151.94013506952899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 6.358975327235669, 0.0 ], [ -0.001373291015625, 6.358975327235669, 0.0 ], [ -0.001373291015625, 6.357610483611865, 0.0 ], [ -0.00274658203125, 6.357610483611865, 0.0 ], [ -0.00274658203125, 6.358975327235669, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3953, "task_x": 131070, "task_y": 126464, "task_z": 18, "center_y": 6.31461605874855, "area_in_sqm": 22936.913470163901, "perimeter_in_m": 605.80083825238205, "length_x": 151.95251300471199, "length_y": 151.952910938889 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 6.31529853833004, 0.0 ], [ -0.001373291015625, 6.31529853833004, 0.0 ], [ -0.001373291015625, 6.313933579167056, 0.0 ], [ -0.00274658203125, 6.313933579167056, 0.0 ], [ -0.00274658203125, 6.31529853833004, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3954, "task_x": 131070, "task_y": 126496, "task_z": 18, "center_y": 6.2709355273555598, "area_in_sqm": 22940.7193359435, "perimeter_in_m": 605.85109680895403, "length_x": 151.96520491106301, "length_y": 151.965600136186 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 6.271618064314865, 0.0 ], [ -0.001373291015625, 6.271618064314865, 0.0 ], [ -0.001373291015625, 6.270252990396258, 0.0 ], [ -0.00274658203125, 6.270252990396258, 0.0 ], [ -0.00274658203125, 6.271618064314865, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3955, "task_x": 131070, "task_y": 126528, "task_z": 18, "center_y": 6.2272513363234996, "area_in_sqm": 22944.499504491701, "perimeter_in_m": 605.901011892611, "length_x": 151.97781011013001, "length_y": 151.97820262506701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 6.227933930268676, 0.0 ], [ -0.001373291015625, 6.227933930268676, 0.0 ], [ -0.001373291015625, 6.226568742378319, 0.0 ], [ -0.00274658203125, 6.226568742378319, 0.0 ], [ -0.00274658203125, 6.227933930268676, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3956, "task_x": 131070, "task_y": 126560, "task_z": 18, "center_y": 6.1835635107416298, "area_in_sqm": 22948.253958702098, "perimeter_in_m": 605.950583363992, "length_x": 151.99032856579299, "length_y": 151.99071836941999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 6.184246161280583, 0.0 ], [ -0.001373291015625, 6.184246161280583, 0.0 ], [ -0.001373291015625, 6.182880860202673, 0.0 ], [ -0.00274658203125, 6.182880860202673, 0.0 ], [ -0.00274658203125, 6.184246161280583, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3957, "task_x": 131070, "task_y": 126592, "task_z": 18, "center_y": 6.1398720757098202, "area_in_sqm": 22951.9826816022, "perimeter_in_m": 605.99981108173699, "length_x": 152.00276024217499, "length_y": 152.00314733337299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 6.140554782450295, 0.0 ], [ -0.001373291015625, 6.140554782450295, 0.0 ], [ -0.001373291015625, 6.139189368969355, 0.0 ], [ -0.00274658203125, 6.139189368969355, 0.0 ], [ -0.00274658203125, 6.140554782450295, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3958, "task_x": 131070, "task_y": 126624, "task_z": 18, "center_y": 6.0961770563383997, "area_in_sqm": 22955.685655474699, "perimeter_in_m": 606.04869489702503, "length_x": 152.01510510363701, "length_y": 152.015489481298 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 6.096859818887935, 0.0 ], [ -0.001373291015625, 6.096859818887935, 0.0 ], [ -0.001373291015625, 6.09549429378886, 0.0 ], [ -0.00274658203125, 6.09549429378886, 0.0 ], [ -0.00274658203125, 6.096859818887935, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3959, "task_x": 131070, "task_y": 126656, "task_z": 18, "center_y": 6.05247847774804, "area_in_sqm": 22959.362864598599, "perimeter_in_m": 606.09723468409095, "length_x": 152.027363114786, "length_y": 152.02774477780699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 6.053161295714062, 0.0 ], [ -0.001373291015625, 6.053161295714062, 0.0 ], [ -0.001373291015625, 6.051795659782016, 0.0 ], [ -0.00274658203125, 6.051795659782016, 0.0 ], [ -0.00274658203125, 6.053161295714062, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3960, "task_x": 131070, "task_y": 126688, "task_z": 18, "center_y": 6.0087763650698101, "area_in_sqm": 22963.014291852702, "perimeter_in_m": 606.14543030088703, "length_x": 152.03953424047, "length_y": 152.03991318775601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 6.009459238059563, 0.0 ], [ -0.001373291015625, 6.009459238059563, 0.0 ], [ -0.001373291015625, 6.00809349208005, 0.0 ], [ -0.00274658203125, 6.00809349208005, 0.0 ], [ -0.00274658203125, 6.009459238059563, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3961, "task_x": 131070, "task_y": 126720, "task_z": 18, "center_y": 5.9650707434449401, "area_in_sqm": 22966.639921039299, "perimeter_in_m": 606.19328161483895, "length_x": 152.05161844577901, "length_y": 152.051994676243 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 5.965753671065528, 0.0 ], [ -0.001373291015625, 5.965753671065528, 0.0 ], [ -0.001373291015625, 5.964387815824352, 0.0 ], [ -0.00274658203125, 5.964387815824352, 0.0 ], [ -0.00274658203125, 5.965753671065528, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3962, "task_x": 131070, "task_y": 126752, "task_z": 18, "center_y": 5.9213616380249698, "area_in_sqm": 22970.239735037099, "perimeter_in_m": 606.24078848220302, "length_x": 152.06361569604499, "length_y": 152.06398920860801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 5.922044619883309, 0.0 ], [ -0.001373291015625, 5.922044619883309, 0.0 ], [ -0.001373291015625, 5.920678656166629, 0.0 ], [ -0.00274658203125, 5.920678656166629, 0.0 ], [ -0.00274658203125, 5.922044619883309, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3963, "task_x": 131070, "task_y": 126784, "task_z": 18, "center_y": 5.8776490739714697, "area_in_sqm": 22973.813717335499, "perimeter_in_m": 606.28795076624499, "length_x": 152.07552595684501, "length_y": 152.07589675043499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 5.878332109674318, 0.0 ], [ -0.001373291015625, 5.878332109674318, 0.0 ], [ -0.001373291015625, 5.87696603826862, 0.0 ], [ -0.00274658203125, 5.87696603826862, 0.0 ], [ -0.00274658203125, 5.878332109674318, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3964, "task_x": 131070, "task_y": 126816, "task_z": 18, "center_y": 5.8339330764560602, "area_in_sqm": 22977.361852452199, "perimeter_in_m": 606.33476834076203, "length_x": 152.087349193997, "length_y": 152.087717267551 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 5.834616165610043, 0.0 ], [ -0.001373291015625, 5.834616165610043, 0.0 ], [ -0.001373291015625, 5.833249987302082, 0.0 ], [ -0.00274658203125, 5.833249987302082, 0.0 ], [ -0.00274658203125, 5.834616165610043, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3965, "task_x": 131070, "task_y": 126848, "task_z": 18, "center_y": 5.7902136706603704, "area_in_sqm": 22980.884124189601, "perimeter_in_m": 606.38124107526801, "length_x": 152.099085373565, "length_y": 152.099450726025 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 5.790896812871949, 0.0 ], [ -0.001373291015625, 5.790896812871949, 0.0 ], [ -0.001373291015625, 5.789530528448793, 0.0 ], [ -0.00274658203125, 5.789530528448793, 0.0 ], [ -0.00274658203125, 5.790896812871949, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3966, "task_x": 131070, "task_y": 126880, "task_z": 18, "center_y": 5.7464908817758804, "area_in_sqm": 22984.3805167377, "perimeter_in_m": 606.42736883798898, "length_x": 152.110734461855, "length_y": 152.111097092172 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 5.747174076651376, 0.0 ], [ -0.001373291015625, 5.747174076651376, 0.0 ], [ -0.001373291015625, 5.745807686900392, 0.0 ], [ -0.00274658203125, 5.745807686900392, 0.0 ], [ -0.00274658203125, 5.747174076651376, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3967, "task_x": 131070, "task_y": 126912, "task_z": 18, "center_y": 5.7027647350039699, "area_in_sqm": 22987.851013392199, "perimeter_in_m": 606.47315148863504, "length_x": 152.12229642541701, "length_y": 152.12265633255001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 5.703447982149513, 0.0 ], [ -0.001373291015625, 5.703447982149513, 0.0 ], [ -0.001373291015625, 5.702081487858422, 0.0 ], [ -0.00274658203125, 5.702081487858422, 0.0 ], [ -0.00274658203125, 5.703447982149513, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3968, "task_x": 131070, "task_y": 126944, "task_z": 18, "center_y": 5.65903525555568, "area_in_sqm": 22991.295598343, "perimeter_in_m": 606.51858889656796, "length_x": 152.13377123104601, "length_y": 152.13412841396101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 5.659718554577267, 0.0 ], [ -0.001373291015625, 5.659718554577267, 0.0 ], [ -0.001373291015625, 5.658351956534091, 0.0 ], [ -0.00274658203125, 5.658351956534091, 0.0 ], [ -0.00274658203125, 5.659718554577267, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3969, "task_x": 131070, "task_y": 126976, "task_z": 18, "center_y": 5.61530246865183, "area_in_sqm": 22994.714257195599, "perimeter_in_m": 606.56368094803997, "length_x": 152.14515884578, "length_y": 152.14551330345199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 5.615985819155327, 0.0 ], [ -0.001373291015625, 5.615985819155327, 0.0 ], [ -0.001373291015625, 5.614619118148326, 0.0 ], [ -0.00274658203125, 5.614619118148326, 0.0 ], [ -0.00274658203125, 5.615985819155327, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3970, "task_x": 131070, "task_y": 127008, "task_z": 18, "center_y": 5.5715663995227898, "area_in_sqm": 22998.106972992398, "perimeter_in_m": 606.60842749908397, "length_x": 152.156459236904, "length_y": 152.15681096831301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 5.572249801113884, 0.0 ], [ -0.001373291015625, 5.572249801113884, 0.0 ], [ -0.001373291015625, 5.57088299793169, 0.0 ], [ -0.00274658203125, 5.57088299793169, 0.0 ], [ -0.00274658203125, 5.572249801113884, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3971, "task_x": 131070, "task_y": 127040, "task_z": 18, "center_y": 5.5278270734085204, "area_in_sqm": 23001.4737318158, "perimeter_in_m": 606.65282844079297, "length_x": 152.167672371945, "length_y": 152.16802137608099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 5.528510525692795, 0.0 ], [ -0.001373291015625, 5.528510525692795, 0.0 ], [ -0.001373291015625, 5.527143621124253, 0.0 ], [ -0.00274658203125, 5.527143621124253, 0.0 ], [ -0.00274658203125, 5.528510525692795, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3972, "task_x": 131070, "task_y": 127072, "task_z": 18, "center_y": 5.4840845155584299, "area_in_sqm": 23004.8145170957, "perimeter_in_m": 606.696883630868, "length_x": 152.178798218677, "length_y": 152.17914449453701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 5.484768018141267, 0.0 ], [ -0.001373291015625, 5.484768018141267, 0.0 ], [ -0.001373291015625, 5.483401012975591, 0.0 ], [ -0.00274658203125, 5.483401012975591, 0.0 ], [ -0.00274658203125, 5.484768018141267, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3973, "task_x": 131070, "task_y": 127104, "task_z": 18, "center_y": 5.4403387512313097, "area_in_sqm": 23008.129313498699, "perimeter_in_m": 606.74059294196104, "length_x": 152.18983674511901, "length_y": 152.19018029170701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 5.441022303717958, 0.0 ], [ -0.001373291015625, 5.441022303717958, 0.0 ], [ -0.001373291015625, 5.43965519874466, 0.0 ], [ -0.00274658203125, 5.43965519874466, 0.0 ], [ -0.00274658203125, 5.441022303717958, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3974, "task_x": 131070, "task_y": 127136, "task_z": 18, "center_y": 5.3965898056953101, "area_in_sqm": 23011.418107032801, "perimeter_in_m": 606.78395626519796, "length_x": 152.200787919535, "length_y": 152.20112873586399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 5.397273407690903, 0.0 ], [ -0.001373291015625, 5.397273407690903, 0.0 ], [ -0.001373291015625, 5.395906203699724, 0.0 ], [ -0.00274658203125, 5.395906203699724, 0.0 ], [ -0.00274658203125, 5.397273407690903, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3975, "task_x": 131070, "task_y": 127168, "task_z": 18, "center_y": 5.3528377042278503, "area_in_sqm": 23014.680881380998, "perimeter_in_m": 606.82697345937595, "length_x": 152.21165171043501, "length_y": 152.211989795524 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 5.353521355337321, 0.0 ], [ -0.001373291015625, 5.353521355337321, 0.0 ], [ -0.001373291015625, 5.352154053118369, 0.0 ], [ -0.00274658203125, 5.352154053118369, 0.0 ], [ -0.00274658203125, 5.353521355337321, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3976, "task_x": 131070, "task_y": 127200, "task_z": 18, "center_y": 5.3090824721154597, "area_in_sqm": 23017.917623326201, "perimeter_in_m": 606.86964442382305, "length_x": 152.22242808657501, "length_y": 152.222763439452 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 5.309766171943679, 0.0 ], [ -0.001373291015625, 5.309766171943679, 0.0 ], [ -0.001373291015625, 5.308398772287248, 0.0 ], [ -0.00274658203125, 5.308398772287248, 0.0 ], [ -0.00274658203125, 5.309766171943679, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3977, "task_x": 131070, "task_y": 127232, "task_z": 18, "center_y": 5.2653241346538797, "area_in_sqm": 23021.128316938899, "perimeter_in_m": 606.911969020946, "length_x": 152.233117016958, "length_y": 152.23344963665801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 5.266007882805511, 0.0 ], [ -0.001373291015625, 5.266007882805511, 0.0 ], [ -0.001373291015625, 5.264640386502251, 0.0 ], [ -0.00274658203125, 5.264640386502251, 0.0 ], [ -0.00274658203125, 5.266007882805511, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3978, "task_x": 131070, "task_y": 127264, "task_z": 18, "center_y": 5.2215627171477896, "area_in_sqm": 23024.312947839499, "perimeter_in_m": 606.95394713481096, "length_x": 152.243718470831, "length_y": 152.244048356398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 5.222246513227375, 0.0 ], [ -0.001373291015625, 5.222246513227375, 0.0 ], [ -0.001373291015625, 5.220878921068206, 0.0 ], [ -0.00274658203125, 5.220878921068206, 0.0 ], [ -0.00274658203125, 5.222246513227375, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3979, "task_x": 131070, "task_y": 127296, "task_z": 18, "center_y": 5.1777982449109299, "area_in_sqm": 23027.471501380202, "perimeter_in_m": 606.99557864361395, "length_x": 152.25423241769099, "length_y": 152.25455956817399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 5.17848208852287, 0.0 ], [ -0.001373291015625, 5.17848208852287, 0.0 ], [ -0.001373291015625, 5.177114401298994, 0.0 ], [ -0.00274658203125, 5.177114401298994, 0.0 ], [ -0.00274658203125, 5.17848208852287, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3980, "task_x": 131070, "task_y": 127328, "task_z": 18, "center_y": 5.13403074326588, "area_in_sqm": 23030.603963077101, "perimeter_in_m": 607.03686342780099, "length_x": 152.264658827278, "length_y": 152.26498324173701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 5.134714634014429, 0.0 ], [ -0.001373291015625, 5.134714634014429, 0.0 ], [ -0.001373291015625, 5.133346852517334, 0.0 ], [ -0.00274658203125, 5.133346852517334, 0.0 ], [ -0.00274658203125, 5.134714634014429, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3981, "task_x": 131070, "task_y": 127360, "task_z": 18, "center_y": 5.0902602375440704, "area_in_sqm": 23033.710320144899, "perimeter_in_m": 607.07780138912403, "length_x": 152.274997669583, "length_y": 152.27531934708401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 5.090944175033385, 0.0 ], [ -0.001373291015625, 5.090944175033385, 0.0 ], [ -0.001373291015625, 5.089576300054745, 0.0 ], [ -0.00274658203125, 5.089576300054745, 0.0 ], [ -0.00274658203125, 5.090944175033385, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3982, "task_x": 131070, "task_y": 127392, "task_z": 18, "center_y": 5.0464867530856496, "area_in_sqm": 23036.790555834799, "perimeter_in_m": 607.11839237741594, "length_x": 152.28524891484199, "length_y": 152.28556785445801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 5.047170736919696, 0.0 ], [ -0.001373291015625, 5.047170736919696, 0.0 ], [ -0.001373291015625, 5.045802769251608, 0.0 ], [ -0.00274658203125, 5.045802769251608, 0.0 ], [ -0.00274658203125, 5.047170736919696, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3983, "task_x": 131070, "task_y": 127424, "task_z": 18, "center_y": 5.0027103152394803, "area_in_sqm": 23039.844658762198, "perimeter_in_m": 607.15863631322202, "length_x": 152.29541253353801, "length_y": 152.29572873435001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 5.003394345022144, 0.0 ], [ -0.001373291015625, 5.003394345022144, 0.0 ], [ -0.001373291015625, 5.002026285456822, 0.0 ], [ -0.00274658203125, 5.002026285456822, 0.0 ], [ -0.00274658203125, 5.003394345022144, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3984, "task_x": 131070, "task_y": 127456, "task_z": 18, "center_y": 4.9589309493630402, "area_in_sqm": 23042.8726132214, "perimeter_in_m": 607.19853305722802, "length_x": 152.30548849640201, "length_y": 152.30580195750099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 4.959615024698024, 0.0 ], [ -0.001373291015625, 4.959615024698024, 0.0 ], [ -0.001373291015625, 4.958246874028049, 0.0 ], [ -0.00274658203125, 4.958246874028049, 0.0 ], [ -0.00274658203125, 4.959615024698024, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3985, "task_x": 131070, "task_y": 127488, "task_z": 18, "center_y": 4.9151486808222602, "area_in_sqm": 23045.8744056225, "perimeter_in_m": 607.23808249972103, "length_x": 152.31547677441401, "length_y": 152.31578749489699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 4.915832801313158, 0.0 ], [ -0.001373291015625, 4.915832801313158, 0.0 ], [ -0.001373291015625, 4.914464560331368, 0.0 ], [ -0.00274658203125, 4.914464560331368, 0.0 ], [ -0.00274658203125, 4.915832801313158, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3986, "task_x": 131070, "task_y": 127520, "task_z": 18, "center_y": 4.8713635349916498, "area_in_sqm": 23048.850023225001, "perimeter_in_m": 607.27728453853194, "length_x": 152.32537733880201, "length_y": 152.32568531777301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 4.872047700241922, 0.0 ], [ -0.001373291015625, 4.872047700241922, 0.0 ], [ -0.001373291015625, 4.870679369741367, 0.0 ], [ -0.00274658203125, 4.870679369741367, 0.0 ], [ -0.00274658203125, 4.872047700241922, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3987, "task_x": 131070, "task_y": 127552, "task_z": 18, "center_y": 4.8275755372539999, "area_in_sqm": 23051.7994513661, "perimeter_in_m": 607.31613905098402, "length_x": 152.335190161041, "length_y": 152.33549539761299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 4.828259746866976, 0.0 ], [ -0.001373291015625, 4.828259746866976, 0.0 ], [ -0.001373291015625, 4.826891327641022, 0.0 ], [ -0.00274658203125, 4.826891327641022, 0.0 ], [ -0.00274658203125, 4.828259746866976, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3988, "task_x": 131070, "task_y": 127584, "task_z": 18, "center_y": 4.7837847130005002, "area_in_sqm": 23054.722676709302, "perimeter_in_m": 607.354645926535, "length_x": 152.344915212855, "length_y": 152.34521770614799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 4.784468966579368, 0.0 ], [ -0.001373291015625, 4.784468966579368, 0.0 ], [ -0.001373291015625, 4.783100459421632, 0.0 ], [ -0.00274658203125, 4.783100459421632, 0.0 ], [ -0.00274658203125, 4.784468966579368, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3989, "task_x": 131070, "task_y": 127616, "task_z": 18, "center_y": 4.7399910876305098, "area_in_sqm": 23057.619686752601, "perimeter_in_m": 607.39280506641796, "length_x": 152.35455246621601, "length_y": 152.35485221535899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 4.740675384778356, 0.0 ], [ -0.001373291015625, 4.740675384778356, 0.0 ], [ -0.001373291015625, 4.739306790482672, 0.0 ], [ -0.00274658203125, 4.739306790482672, 0.0 ], [ -0.00274658203125, 4.740675384778356, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3990, "task_x": 131070, "task_y": 127648, "task_z": 18, "center_y": 4.6961946865516602, "area_in_sqm": 23060.490467354699, "perimeter_in_m": 607.43061635048002, "length_x": 152.364101893347, "length_y": 152.36439889747501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 4.696879026871414, 0.0 ], [ -0.001373291015625, 4.696879026871414, 0.0 ], [ -0.001373291015625, 4.695510346231913, 0.0 ], [ -0.00274658203125, 4.695510346231913, 0.0 ], [ -0.00274658203125, 4.696879026871414, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3991, "task_x": 131070, "task_y": 127680, "task_z": 18, "center_y": 4.6523955351795596, "area_in_sqm": 23063.335005730401, "perimeter_in_m": 607.46807967493896, "length_x": 152.373563466718, "length_y": 152.37385772497501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 4.653079918274031, 0.0 ], [ -0.001373291015625, 4.653079918274031, 0.0 ], [ -0.001373291015625, 4.651711152085085, 0.0 ], [ -0.00274658203125, 4.651711152085085, 0.0 ], [ -0.00274658203125, 4.653079918274031, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3992, "task_x": 131070, "task_y": 127712, "task_z": 18, "center_y": 4.6085936589379202, "area_in_sqm": 23066.1532894224, "perimeter_in_m": 607.50519494002401, "length_x": 152.382937159048, "length_y": 152.38322867058599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 4.609278084409823, 0.0 ], [ -0.001373291015625, 4.609278084409823, 0.0 ], [ -0.001373291015625, 4.607909233466017, 0.0 ], [ -0.00274658203125, 4.607909233466017, 0.0 ], [ -0.00274658203125, 4.609278084409823, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3993, "task_x": 131070, "task_y": 127744, "task_z": 18, "center_y": 4.56478908325838, "area_in_sqm": 23068.945304900401, "perimeter_in_m": 607.54196203164304, "length_x": 152.39222294330801, "length_y": 152.39251170728599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 4.56547355071028, 0.0 ], [ -0.001373291015625, 4.56547355071028, 0.0 ], [ -0.001373291015625, 4.564104615806485, 0.0 ], [ -0.00274658203125, 4.564104615806485, 0.0 ], [ -0.00274658203125, 4.56547355071028, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3994, "task_x": 131070, "task_y": 127776, "task_z": 18, "center_y": 4.5209818335804597, "area_in_sqm": 23071.711039319602, "perimeter_in_m": 607.57838084341597, "length_x": 152.40142079271601, "length_y": 152.40170680829999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 4.521666342614793, 0.0 ], [ -0.001373291015625, 4.521666342614793, 0.0 ], [ -0.001373291015625, 4.520297324546135, 0.0 ], [ -0.00274658203125, 4.520297324546135, 0.0 ], [ -0.00274658203125, 4.521666342614793, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3995, "task_x": 131070, "task_y": 127808, "task_z": 18, "center_y": 4.4771719353514898, "area_in_sqm": 23074.450480729301, "perimeter_in_m": 607.61445128163905, "length_x": 152.41053068074001, "length_y": 152.41081394710699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 4.477856485570584, 0.0 ], [ -0.001373291015625, 4.477856485570584, 0.0 ], [ -0.001373291015625, 4.476487385132387, 0.0 ], [ -0.00274658203125, 4.476487385132387, 0.0 ], [ -0.00274658203125, 4.477856485570584, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3996, "task_x": 131070, "task_y": 127840, "task_z": 18, "center_y": 4.43335941402652, "area_in_sqm": 23077.163616180402, "perimeter_in_m": 607.65017323615302, "length_x": 152.419552581099, "length_y": 152.419833097431 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 4.43404400503259, 0.0 ], [ -0.001373291015625, 4.43404400503259, 0.0 ], [ -0.001373291015625, 4.432674823020449, 0.0 ], [ -0.00274658203125, 4.432674823020449, 0.0 ], [ -0.00274658203125, 4.43404400503259, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3997, "task_x": 131070, "task_y": 127872, "task_z": 18, "center_y": 4.3895442950682604, "area_in_sqm": 23079.8504328132, "perimeter_in_m": 607.68554660082498, "length_x": 152.42848646776301, "length_y": 152.42876423325001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 4.390228926463379, 0.0 ], [ -0.001373291015625, 4.390228926463379, 0.0 ], [ -0.001373291015625, 4.388859663673145, 0.0 ], [ -0.00274658203125, 4.388859663673145, 0.0 ], [ -0.00274658203125, 4.390228926463379, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3998, "task_x": 131070, "task_y": 127904, "task_z": 18, "center_y": 4.3457266039470399, "area_in_sqm": 23082.5109186769, "perimeter_in_m": 607.72057127742096, "length_x": 152.43733231495099, "length_y": 152.43760732879099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 4.346411275333168, 0.0 ], [ -0.001373291015625, 4.346411275333168, 0.0 ], [ -0.001373291015625, 4.345041932560918, 0.0 ], [ -0.00274658203125, 4.345041932560918, 0.0 ], [ -0.00274658203125, 4.346411275333168, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 3999, "task_x": 131070, "task_y": 127936, "task_z": 18, "center_y": 4.3019063661406598, "area_in_sqm": 23085.145062550899, "perimeter_in_m": 607.75524718107602, "length_x": 152.44609009713099, "length_y": 152.44636235853201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 4.302591077119672, 0.0 ], [ -0.001373291015625, 4.302591077119672, 0.0 ], [ -0.001373291015625, 4.301221655161655, 0.0 ], [ -0.00274658203125, 4.301221655161655, 0.0 ], [ -0.00274658203125, 4.302591077119672, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4000, "task_x": 131070, "task_y": 127968, "task_z": 18, "center_y": 4.2580836071343704, "area_in_sqm": 23087.752851530899, "perimeter_in_m": 607.78957419919504, "length_x": 152.45475978902499, "length_y": 152.45502929720001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 4.258768357308, 0.0 ], [ -0.001373291015625, 4.258768357308, 0.0 ], [ -0.001373291015625, 4.257398856960748, 0.0 ], [ -0.00274658203125, 4.257398856960748, 0.0 ], [ -0.00274658203125, 4.258768357308, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4001, "task_x": 131070, "task_y": 128000, "task_z": 18, "center_y": 4.2142583524208002, "area_in_sqm": 23090.3342732489, "perimeter_in_m": 607.82355222937099, "length_x": 152.463341365605, "length_y": 152.46360811977499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 4.214943141390648, 0.0 ], [ -0.001373291015625, 4.214943141390648, 0.0 ], [ -0.001373291015625, 4.21357356345095, 0.0 ], [ -0.00274658203125, 4.21357356345095, 0.0 ], [ -0.00274658203125, 4.214943141390648, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4002, "task_x": 131070, "task_y": 128032, "task_z": 18, "center_y": 4.1704306274998402, "area_in_sqm": 23092.889316290599, "perimeter_in_m": 607.85718117957697, "length_x": 152.47183480209199, "length_y": 152.47209880148699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 4.171115454867419, 0.0 ], [ -0.001373291015625, 4.171115454867419, 0.0 ], [ -0.001373291015625, 4.169745800132262, 0.0 ], [ -0.00274658203125, 4.169745800132262, 0.0 ], [ -0.00274658203125, 4.171115454867419, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4003, "task_x": 131070, "task_y": 128064, "task_z": 18, "center_y": 4.1266004578786504, "area_in_sqm": 23095.417969018199, "perimeter_in_m": 607.89046095404296, "length_x": 152.48024007395901, "length_y": 152.48050131781901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 4.127285323245346, 0.0 ], [ -0.001373291015625, 4.127285323245346, 0.0 ], [ -0.001373291015625, 4.125915592511944, 0.0 ], [ -0.00274658203125, 4.125915592511944, 0.0 ], [ -0.00274658203125, 4.127285323245346, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4004, "task_x": 131070, "task_y": 128096, "task_z": 18, "center_y": 4.0827678690714997, "area_in_sqm": 23097.920220285701, "perimeter_in_m": 607.92339146366601, "length_x": 152.48855715693401, "length_y": 152.48881564450099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 4.083452772038612, 0.0 ], [ -0.001373291015625, 4.083452772038612, 0.0 ], [ -0.001373291015625, 4.08208296610438, 0.0 ], [ -0.00274658203125, 4.08208296610438, 0.0 ], [ -0.00274658203125, 4.083452772038612, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4005, "task_x": 131070, "task_y": 128128, "task_z": 18, "center_y": 4.0389328865997198, "area_in_sqm": 23100.396058112401, "perimeter_in_m": 607.95597260836996, "length_x": 152.49678602699001, "length_y": 152.49704175752001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 4.039617826768421, 0.0 ], [ -0.001373291015625, 4.039617826768421, 0.0 ], [ -0.001373291015625, 4.038247946431014, 0.0 ], [ -0.00274658203125, 4.038247946431014, 0.0 ], [ -0.00274658203125, 4.039617826768421, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4006, "task_x": 131070, "task_y": 128160, "task_z": 18, "center_y": 3.9950955359916702, "area_in_sqm": 23102.8454715759, "perimeter_in_m": 607.98820429986597, "length_x": 152.50492666035899, "length_y": 152.50517963311199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 3.995780512963037, 0.0 ], [ -0.001373291015625, 3.995780512963037, 0.0 ], [ -0.001373291015625, 3.994410559020309, 0.0 ], [ -0.00274658203125, 3.994410559020309, 0.0 ], [ -0.00274658203125, 3.995780512963037, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4007, "task_x": 131070, "task_y": 128192, "task_z": 18, "center_y": 3.9512558427826101, "area_in_sqm": 23105.268448531599, "perimeter_in_m": 608.02008643395004, "length_x": 152.51297903351801, "length_y": 152.51322924776301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 3.951940856157577, 0.0 ], [ -0.001373291015625, 3.951940856157577, 0.0 ], [ -0.001373291015625, 3.950570829407653, 0.0 ], [ -0.00274658203125, 3.950570829407653, 0.0 ], [ -0.00274658203125, 3.951940856157577, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4008, "task_x": 131070, "task_y": 128224, "task_z": 18, "center_y": 3.9074138325146901, "area_in_sqm": 23107.664979048099, "perimeter_in_m": 608.05161893496802, "length_x": 152.52094312320199, "length_y": 152.52119057821599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 3.908098881894119, 0.0 ], [ -0.001373291015625, 3.908098881894119, 0.0 ], [ -0.001373291015625, 3.906728783135264, 0.0 ], [ -0.00274658203125, 3.906728783135264, 0.0 ], [ -0.00274658203125, 3.908098881894119, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4009, "task_x": 131070, "task_y": 128256, "task_z": 18, "center_y": 3.8635695307367599, "area_in_sqm": 23110.035051405401, "perimeter_in_m": 608.08280170323303, "length_x": 152.52881890639401, "length_y": 152.52906360146201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 3.864254615721393, 0.0 ], [ -0.001373291015625, 3.864254615721393, 0.0 ], [ -0.001373291015625, 3.86288444575213, 0.0 ], [ -0.00274658203125, 3.86288444575213, 0.0 ], [ -0.00274658203125, 3.864254615721393, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4010, "task_x": 131070, "task_y": 128288, "task_z": 18, "center_y": 3.8197229630044398, "area_in_sqm": 23112.378655455999, "perimeter_in_m": 608.113634658259, "length_x": 152.53660636033101, "length_y": 152.53684829474699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 3.820408083194934, 0.0 ], [ -0.001373291015625, 3.820408083194934, 0.0 ], [ -0.001373291015625, 3.819037842813955, 0.0 ], [ -0.00274658203125, 3.819037842813955, 0.0 ], [ -0.00274658203125, 3.820408083194934, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4011, "task_x": 131070, "task_y": 128320, "task_z": 18, "center_y": 3.7758741548799799, "area_in_sqm": 23114.6957796961, "perimeter_in_m": 608.14411770382299, "length_x": 152.54430546250401, "length_y": 152.54454463556601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 3.776559309876859, 0.0 ], [ -0.001373291015625, 3.776559309876859, 0.0 ], [ -0.001373291015625, 3.775188999883099, 0.0 ], [ -0.00274658203125, 3.775188999883099, 0.0 ], [ -0.00274658203125, 3.776559309876859, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4012, "task_x": 131070, "task_y": 128352, "task_z": 18, "center_y": 3.73202313193213, "area_in_sqm": 23116.986413724699, "perimeter_in_m": 608.17425075372705, "length_x": 152.551916190654, "length_y": 152.55215260167199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 3.732708321335835, 0.0 ], [ -0.001373291015625, 3.732708321335835, 0.0 ], [ -0.001373291015625, 3.731337942528427, 0.0 ], [ -0.00274658203125, 3.731337942528427, 0.0 ], [ -0.00274658203125, 3.732708321335835, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4013, "task_x": 131070, "task_y": 128384, "task_z": 18, "center_y": 3.6881699197361799, "area_in_sqm": 23119.250547125899, "perimeter_in_m": 608.20403372402996, "length_x": 152.55943852277599, "length_y": 152.55967217106701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 3.688855143147038, 0.0 ], [ -0.001373291015625, 3.688855143147038, 0.0 ], [ -0.001373291015625, 3.687484696325313, 0.0 ], [ -0.00274658203125, 3.687484696325313, 0.0 ], [ -0.00274658203125, 3.688855143147038, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4014, "task_x": 131070, "task_y": 128416, "task_z": 18, "center_y": 3.6443145438737701, "area_in_sqm": 23121.488169834, "perimeter_in_m": 608.23346653305498, "length_x": 152.56687243712, "length_y": 152.567103322007 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 3.644999800892037, 0.0 ], [ -0.001373291015625, 3.644999800892037, 0.0 ], [ -0.001373291015625, 3.6436292868555, 0.0 ], [ -0.00274658203125, 3.6436292868555, 0.0 ], [ -0.00274658203125, 3.644999800892037, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4015, "task_x": 131070, "task_y": 128448, "task_z": 18, "center_y": 3.6004570299329202, "area_in_sqm": 23123.699270695401, "perimeter_in_m": 608.26254908621399, "length_x": 152.57421791218499, "length_y": 152.57444603300101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 3.601142320158715, 0.0 ], [ -0.001373291015625, 3.601142320158715, 0.0 ], [ -0.001373291015625, 3.599771739707123, 0.0 ], [ -0.00274658203125, 3.599771739707123, 0.0 ], [ -0.00274658203125, 3.601142320158715, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4016, "task_x": 131070, "task_y": 128480, "task_z": 18, "center_y": 3.5565974035079102, "area_in_sqm": 23125.883840687598, "perimeter_in_m": 608.29128131358596, "length_x": 152.581474926727, "length_y": 152.58170028281199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 3.557282726541288, 0.0 ], [ -0.001373291015625, 3.557282726541288, 0.0 ], [ -0.001373291015625, 3.555912080474528, 0.0 ], [ -0.00274658203125, 3.555912080474528, 0.0 ], [ -0.00274658203125, 3.557282726541288, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4017, "task_x": 131070, "task_y": 128512, "task_z": 18, "center_y": 3.51273569019913, "area_in_sqm": 23128.041868984699, "perimeter_in_m": 608.31966312281099, "length_x": 152.588643459754, "length_y": 152.58886605045601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 3.51342104564003, 0.0 ], [ -0.001373291015625, 3.51342104564003, 0.0 ], [ -0.001373291015625, 3.512050334758229, 0.0 ], [ -0.00274658203125, 3.512050334758229, 0.0 ], [ -0.00274658203125, 3.51342104564003, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4018, "task_x": 131070, "task_y": 128544, "task_z": 18, "center_y": 3.4688719156132, "area_in_sqm": 23130.1733457148, "perimeter_in_m": 608.34769443402502, "length_x": 152.59572349052701, "length_y": 152.59594331520299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 3.469557303061464, 0.0 ], [ -0.001373291015625, 3.469557303061464, 0.0 ], [ -0.001373291015625, 3.468186528164935, 0.0 ], [ -0.00274658203125, 3.468186528164935, 0.0 ], [ -0.00274658203125, 3.469557303061464, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4019, "task_x": 131070, "task_y": 128576, "task_z": 18, "center_y": 3.4250061053626601, "area_in_sqm": 23132.2782619223, "perimeter_in_m": 608.37537517677299, "length_x": 152.60271499856299, "length_y": 152.60293205657601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 3.425691524418056, 0.0 ], [ -0.001373291015625, 3.425691524418056, 0.0 ], [ -0.001373291015625, 3.424320686307254, 0.0 ], [ -0.00274658203125, 3.424320686307254, 0.0 ], [ -0.00274658203125, 3.425691524418056, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4020, "task_x": 131070, "task_y": 128608, "task_z": 18, "center_y": 3.3811382850660898, "area_in_sqm": 23134.3566072211, "perimeter_in_m": 608.40270526274799, "length_x": 152.609617963631, "length_y": 152.60983225435299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 3.381823735328283, 0.0 ], [ -0.001373291015625, 3.381823735328283, 0.0 ], [ -0.001373291015625, 3.38045283480389, 0.0 ], [ -0.00274658203125, 3.38045283480389, 0.0 ], [ -0.00274658203125, 3.381823735328283, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4021, "task_x": 131070, "task_y": 128640, "task_z": 18, "center_y": 3.3372684803479098, "area_in_sqm": 23136.4083722383, "perimeter_in_m": 608.42968461605301, "length_x": 152.61643236575401, "length_y": 152.616643888564 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 3.337953961416474, 0.0 ], [ -0.001373291015625, 3.337953961416474, 0.0 ], [ -0.001373291015625, 3.336582999279344, 0.0 ], [ -0.00274658203125, 3.336582999279344, 0.0 ], [ -0.00274658203125, 3.337953961416474, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4022, "task_x": 131070, "task_y": 128672, "task_z": 18, "center_y": 3.29339671683839, "area_in_sqm": 23138.4335473254, "perimeter_in_m": 608.45631315643504, "length_x": 152.62315818520901, "length_y": 152.623366939497 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 3.294082228312803, 0.0 ], [ -0.001373291015625, 3.294082228312803, 0.0 ], [ -0.001373291015625, 3.292711205363986, 0.0 ], [ -0.00274658203125, 3.292711205363986, 0.0 ], [ -0.00274658203125, 3.294082228312803, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4023, "task_x": 131070, "task_y": 128704, "task_z": 18, "center_y": 3.2495230201735099, "area_in_sqm": 23140.4321239889, "perimeter_in_m": 608.48259081808203, "length_x": 152.62979540252999, "length_y": 152.63000138768999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 3.250208561653167, 0.0 ], [ -0.001373291015625, 3.250208561653167, 0.0 ], [ -0.001373291015625, 3.248837478693844, 0.0 ], [ -0.00274658203125, 3.248837478693844, 0.0 ], [ -0.00274658203125, 3.250208561653167, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4024, "task_x": 131070, "task_y": 128736, "task_z": 18, "center_y": 3.2056474159949202, "area_in_sqm": 23142.4040919617, "perimeter_in_m": 608.50851751194796, "length_x": 152.63634399850301, "length_y": 152.636547213939 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 3.206332987079122, 0.0 ], [ -0.001373291015625, 3.206332987079122, 0.0 ], [ -0.001373291015625, 3.204961844910713, 0.0 ], [ -0.00274658203125, 3.204961844910713, 0.0 ], [ -0.00274658203125, 3.206332987079122, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4025, "task_x": 131070, "task_y": 128768, "task_z": 18, "center_y": 3.1617699299498798, "area_in_sqm": 23144.3494427279, "perimeter_in_m": 608.53409317013302, "length_x": 152.64280395416799, "length_y": 152.64300439929201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 3.16245553023785, 0.0 ], [ -0.001373291015625, 3.16245553023785, 0.0 ], [ -0.001373291015625, 3.161084329661918, 0.0 ], [ -0.00274658203125, 3.161084329661918, 0.0 ], [ -0.00274658203125, 3.16245553023785, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4026, "task_x": 131070, "task_y": 128800, "task_z": 18, "center_y": 3.11789058769113, "area_in_sqm": 23146.268167309499, "perimeter_in_m": 608.55931771976498, "length_x": 152.649175250822, "length_y": 152.649372925053 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 3.118576216781989, 0.0 ], [ -0.001373291015625, 3.118576216781989, 0.0 ], [ -0.001373291015625, 3.117204958600269, 0.0 ], [ -0.00274658203125, 3.117204958600269, 0.0 ], [ -0.00274658203125, 3.118576216781989, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4027, "task_x": 131070, "task_y": 128832, "task_z": 18, "center_y": 3.0740094148768602, "area_in_sqm": 23148.160257414002, "perimeter_in_m": 608.58419109473596, "length_x": 152.655457870015, "length_y": 152.655652772781 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 3.074695072369678, 0.0 ], [ -0.001373291015625, 3.074695072369678, 0.0 ], [ -0.001373291015625, 3.073323757384046, 0.0 ], [ -0.00274658203125, 3.073323757384046, 0.0 ], [ -0.00274658203125, 3.074695072369678, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4028, "task_x": 131070, "task_y": 128864, "task_z": 18, "center_y": 3.03012643717065, "area_in_sqm": 23150.025703340802, "perimeter_in_m": 608.60871321073705, "length_x": 152.66165179355301, "length_y": 152.661843924289 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 3.030812122664372, 0.0 ], [ -0.001373291015625, 3.030812122664372, 0.0 ], [ -0.001373291015625, 3.02944075167693, 0.0 ], [ -0.00274658203125, 3.02944075167693, 0.0 ], [ -0.00274658203125, 3.030812122664372, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4029, "task_x": 131070, "task_y": 128896, "task_z": 18, "center_y": 2.9862416802413398, "area_in_sqm": 23151.864497549799, "perimeter_in_m": 608.63288401157297, "length_x": 152.667757003497, "length_y": 152.66794636164701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 2.986927393334867, 0.0 ], [ -0.001373291015625, 2.986927393334867, 0.0 ], [ -0.001373291015625, 2.985555967147818, 0.0 ], [ -0.00274658203125, 2.985555967147818, 0.0 ], [ -0.00274658203125, 2.986927393334867, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4030, "task_x": 131070, "task_y": 128928, "task_z": 18, "center_y": 2.9423551697630099, "area_in_sqm": 23153.676630780101, "perimeter_in_m": 608.65670341720102, "length_x": 152.673773482163, "length_y": 152.673960067178 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 2.943040910055132, 0.0 ], [ -0.001373291015625, 2.943040910055132, 0.0 ], [ -0.001373291015625, 2.941669429470892, 0.0 ], [ -0.00274658203125, 2.941669429470892, 0.0 ], [ -0.00274658203125, 2.943040910055132, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4031, "task_x": 131070, "task_y": 128960, "task_z": 18, "center_y": 2.8984669314148501, "area_in_sqm": 23155.4620951787, "perimeter_in_m": 608.68017136501601, "length_x": 152.67970121212301, "length_y": 152.67988502346299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 2.899152698504295, 0.0 ], [ -0.001373291015625, 2.899152698504295, 0.0 ], [ -0.001373291015625, 2.897781164325409, 0.0 ], [ -0.00274658203125, 2.897781164325409, 0.0 ], [ -0.00274658203125, 2.899152698504295, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4032, "task_x": 131070, "task_y": 128992, "task_z": 18, "center_y": 2.85457699088116, "area_in_sqm": 23157.220882155001, "perimeter_in_m": 608.70328778356497, "length_x": 152.68554017620301, "length_y": 152.685721213335 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 2.855262784366559, 0.0 ], [ -0.001373291015625, 2.855262784366559, 0.0 ], [ -0.001373291015625, 2.853891197395754, 0.0 ], [ -0.00274658203125, 2.853891197395754, 0.0 ], [ -0.00274658203125, 2.855262784366559, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4033, "task_x": 131070, "task_y": 129024, "task_z": 18, "center_y": 2.8106853738511899, "area_in_sqm": 23158.952984042498, "perimeter_in_m": 608.72605261186595, "length_x": 152.691290357486, "length_y": 152.691468619886 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 2.811371193331127, 0.0 ], [ -0.001373291015625, 2.811371193331127, 0.0 ], [ -0.001373291015625, 2.809999554371259, 0.0 ], [ -0.00274658203125, 2.809999554371259, 0.0 ], [ -0.00274658203125, 2.811371193331127, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4034, "task_x": 131070, "task_y": 129056, "task_z": 18, "center_y": 2.7667921060191198, "area_in_sqm": 23160.6583925784, "perimeter_in_m": 608.74846578035101, "length_x": 152.69695173931001, "length_y": 152.69712722646199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 2.767477951092076, 0.0 ], [ -0.001373291015625, 2.767477951092076, 0.0 ], [ -0.001373291015625, 2.766106260946174, 0.0 ], [ -0.00274658203125, 2.766106260946174, 0.0 ], [ -0.00274658203125, 2.767477951092076, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4035, "task_x": 131070, "task_y": 129088, "task_z": 18, "center_y": 2.7228972130839901, "area_in_sqm": 23162.3371005431, "perimeter_in_m": 608.77052723345105, "length_x": 152.702524305271, "length_y": 152.70269701666501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 2.723583083348387, 0.0 ], [ -0.001373291015625, 2.723583083348387, 0.0 ], [ -0.001373291015625, 2.722211342819591, 0.0 ], [ -0.00274658203125, 2.722211342819591, 0.0 ], [ -0.00274658203125, 2.723583083348387, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4036, "task_x": 131070, "task_y": 129120, "task_z": 18, "center_y": 2.6790007207495798, "area_in_sqm": 23163.989099353599, "perimeter_in_m": 608.79223689669402, "length_x": 152.70800803921699, "length_y": 152.70817797435299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 2.67968661580376, 0.0 ], [ -0.001373291015625, 2.67968661580376, 0.0 ], [ -0.001373291015625, 2.678314825695409, 0.0 ], [ -0.00274658203125, 2.678314825695409, 0.0 ], [ -0.00274658203125, 2.67968661580376, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4037, "task_x": 131070, "task_y": 129152, "task_z": 18, "center_y": 2.6351026547243901, "area_in_sqm": 23165.614381723099, "perimeter_in_m": 608.81359471163501, "length_x": 152.713402925255, "length_y": 152.713570083641 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 2.635788574166611, 0.0 ], [ -0.001373291015625, 2.635788574166611, 0.0 ], [ -0.001373291015625, 2.634416735282173, 0.0 ], [ -0.00274658203125, 2.634416735282173, 0.0 ], [ -0.00274658203125, 2.635788574166611, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4038, "task_x": 131070, "task_y": 129184, "task_z": 18, "center_y": 2.5912030407214899, "area_in_sqm": 23167.212940178801, "perimeter_in_m": 608.834600617246, "length_x": 152.71870894774801, "length_y": 152.71887332889901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 2.591888984149946, 0.0 ], [ -0.001373291015625, 2.591888984149946, 0.0 ], [ -0.001373291015625, 2.590517097293031, 0.0 ], [ -0.00274658203125, 2.590517097293031, 0.0 ], [ -0.00274658203125, 2.591888984149946, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4039, "task_x": 131070, "task_y": 129216, "task_z": 18, "center_y": 2.5473019044585499, "area_in_sqm": 23168.784767642599, "perimeter_in_m": 608.85525455679203, "length_x": 152.72392609131299, "length_y": 152.724087694753 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 2.547987871471378, 0.0 ], [ -0.001373291015625, 2.547987871471378, 0.0 ], [ -0.001373291015625, 2.546615937445722, 0.0 ], [ -0.00274658203125, 2.546615937445722, 0.0 ], [ -0.00274658203125, 2.547987871471378, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4040, "task_x": 131070, "task_y": 129248, "task_z": 18, "center_y": 2.5033992716576501, "area_in_sqm": 23170.3298567161, "perimeter_in_m": 608.87555646937005, "length_x": 152.72905434082799, "length_y": 152.72921316608699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 2.504085261852907, 0.0 ], [ -0.001373291015625, 2.504085261852907, 0.0 ], [ -0.001373291015625, 2.502713281462391, 0.0 ], [ -0.00274658203125, 2.502713281462391, 0.0 ], [ -0.00274658203125, 2.504085261852907, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4041, "task_x": 131070, "task_y": 129280, "task_z": 18, "center_y": 2.4594951680453199, "area_in_sqm": 23171.848200060402, "perimeter_in_m": 608.89550629254904, "length_x": 152.734093681422, "length_y": 152.73424972804099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 2.460181181020985, 0.0 ], [ -0.001373291015625, 2.460181181020985, 0.0 ], [ -0.001373291015625, 2.458809155069645, 0.0 ], [ -0.00274658203125, 2.458809155069645, 0.0 ], [ -0.00274658203125, 2.460181181020985, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4042, "task_x": 131070, "task_y": 129312, "task_z": 18, "center_y": 2.4155896193523598, "area_in_sqm": 23173.3397914544, "perimeter_in_m": 608.91510398107596, "length_x": 152.73904409848501, "length_y": 152.73919736601101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 2.416275654706382, 0.0 ], [ -0.001373291015625, 2.416275654706382, 0.0 ], [ -0.001373291015625, 2.414903583998338, 0.0 ], [ -0.00274658203125, 2.414903583998338, 0.0 ], [ -0.00274658203125, 2.416275654706382, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4043, "task_x": 131070, "task_y": 129344, "task_z": 18, "center_y": 2.3716826513138298, "area_in_sqm": 23174.8046231642, "perimeter_in_m": 608.93434946567697, "length_x": 152.743905577661, "length_y": 152.74405606565 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 2.372368708644046, 0.0 ], [ -0.001373291015625, 2.372368708644046, 0.0 ], [ -0.001373291015625, 2.370996593983605, 0.0 ], [ -0.00274658203125, 2.370996593983605, 0.0 ], [ -0.00274658203125, 2.372368708644046, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4044, "task_x": 131070, "task_y": 129376, "task_z": 18, "center_y": 2.3277742896689402, "area_in_sqm": 23176.242688484501, "perimeter_in_m": 608.95324269213597, "length_x": 152.74867810485199, "length_y": 152.74882581286701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 2.328460368573147, 0.0 ], [ -0.001373291015625, 2.328460368573147, 0.0 ], [ -0.001373291015625, 2.327088210764742, 0.0 ], [ -0.00274658203125, 2.327088210764742, 0.0 ], [ -0.00274658203125, 2.328460368573147, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4045, "task_x": 131070, "task_y": 129408, "task_z": 18, "center_y": 2.2838645601610299, "area_in_sqm": 23177.653981670701, "perimeter_in_m": 608.97178361803799, "length_x": 152.75336166621801, "length_y": 152.75350659383 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 2.28455066023696, 0.0 ], [ -0.001373291015625, 2.28455066023696, 0.0 ], [ -0.001373291015625, 2.283178460085097, 0.0 ], [ -0.00274658203125, 2.283178460085097, 0.0 ], [ -0.00274658203125, 2.28455066023696, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4046, "task_x": 131070, "task_y": 129440, "task_z": 18, "center_y": 2.2399534885374099, "area_in_sqm": 23179.038494750901, "perimeter_in_m": 608.98997217076806, "length_x": 152.757956248173, "length_y": 152.75809839496301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 2.240639609382711, 0.0 ], [ -0.001373291015625, 2.240639609382711, 0.0 ], [ -0.001373291015625, 2.239267367692108, 0.0 ], [ -0.00274658203125, 2.239267367692108, 0.0 ], [ -0.00274658203125, 2.240639609382711, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4047, "task_x": 131070, "task_y": 129472, "task_z": 18, "center_y": 2.1960411005493499, "area_in_sqm": 23180.396223023501, "perimeter_in_m": 609.00780831985605, "length_x": 152.76246183739099, "length_y": 152.762601202946 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 2.19672724176165, 0.0 ], [ -0.001373291015625, 2.19672724176165, 0.0 ], [ -0.001373291015625, 2.195354959337052, 0.0 ], [ -0.00274658203125, 2.195354959337052, 0.0 ], [ -0.00274658203125, 2.19672724176165, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4048, "task_x": 131070, "task_y": 129504, "task_z": 18, "center_y": 2.1521274219519899, "area_in_sqm": 23181.7271595001, "perimeter_in_m": 609.025292004991, "length_x": 152.76687842080199, "length_y": 152.76701500471799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 2.152813583128832, 0.0 ], [ -0.001373291015625, 2.152813583128832, 0.0 ], [ -0.001373291015625, 2.151441260775144, 0.0 ], [ -0.00274658203125, 2.151441260775144, 0.0 ], [ -0.00274658203125, 2.152813583128832, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4049, "task_x": 131070, "task_y": 129536, "task_z": 18, "center_y": 2.10821247850425, "area_in_sqm": 23183.031297944501, "perimeter_in_m": 609.04242317395301, "length_x": 152.77120598559401, "length_y": 152.77133978747401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 2.108898659243124, 0.0 ], [ -0.001373291015625, 2.108898659243124, 0.0 ], [ -0.001373291015625, 2.107526297765375, 0.0 ], [ -0.00274658203125, 2.107526297765375, 0.0 ], [ -0.00274658203125, 2.108898659243124, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4050, "task_x": 131070, "task_y": 129568, "task_z": 18, "center_y": 2.0642962959687701, "area_in_sqm": 23184.308632120501, "perimeter_in_m": 609.05920177511496, "length_x": 152.77544451921, "length_y": 152.775575538667 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 2.064982495867099, 0.0 ], [ -0.001373291015625, 2.064982495867099, 0.0 ], [ -0.001373291015625, 2.063610096070448, 0.0 ], [ -0.00274658203125, 2.063610096070448, 0.0 ], [ -0.00274658203125, 2.064982495867099, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4051, "task_x": 131070, "task_y": 129600, "task_z": 18, "center_y": 2.0203789001118402, "area_in_sqm": 23185.5591568649, "perimeter_in_m": 609.07562776944201, "length_x": 152.77959400935401, "length_y": 152.779722246007 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 2.021065118766998, 0.0 ], [ -0.001373291015625, 2.021065118766998, 0.0 ], [ -0.001373291015625, 2.019692681456675, 0.0 ], [ -0.00274658203125, 2.019692681456675, 0.0 ], [ -0.00274658203125, 2.021065118766998, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4052, "task_x": 131070, "task_y": 129632, "task_z": 18, "center_y": 1.97646031670325, "area_in_sqm": 23186.782865576399, "perimeter_in_m": 609.09170109899503, "length_x": 152.78365444398599, "length_y": 152.78377989746201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 1.977146553712558, 0.0 ], [ -0.001373291015625, 1.977146553712558, 0.0 ], [ -0.001373291015625, 1.975774079693949, 0.0 ], [ -0.00274658203125, 1.975774079693949, 0.0 ], [ -0.00274658203125, 1.977146553712558, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4053, "task_x": 131070, "task_y": 129664, "task_z": 18, "center_y": 1.9325405715163799, "area_in_sqm": 23187.979753565, "perimeter_in_m": 609.10742172989706, "length_x": 152.78762581132199, "length_y": 152.78774848125801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 1.93322682647711, 0.0 ], [ -0.001373291015625, 1.93322682647711, 0.0 ], [ -0.001373291015625, 1.931854316555658, 0.0 ], [ -0.00274658203125, 1.931854316555658, 0.0 ], [ -0.00274658203125, 1.93322682647711, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4054, "task_x": 131070, "task_y": 129696, "task_z": 18, "center_y": 1.88861969032796, "area_in_sqm": 23189.149814408302, "perimeter_in_m": 609.12278960513402, "length_x": 152.79150809983801, "length_y": 152.79162798587899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 1.889305962837312, 0.0 ], [ -0.001373291015625, 1.889305962837312, 0.0 ], [ -0.001373291015625, 1.887933417818616, 0.0 ], [ -0.00274658203125, 1.887933417818616, 0.0 ], [ -0.00274658203125, 1.889305962837312, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4055, "task_x": 131070, "task_y": 129728, "task_z": 18, "center_y": 1.8446976989180499, "area_in_sqm": 23190.293043088201, "perimeter_in_m": 609.13780468522202, "length_x": 152.79530129826799, "length_y": 152.79541840006399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 1.845383988573175, 0.0 ], [ -0.001373291015625, 1.845383988573175, 0.0 ], [ -0.001373291015625, 1.844011409262919, 0.0 ], [ -0.00274658203125, 1.844011409262919, 0.0 ], [ -0.00274658203125, 1.845383988573175, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4056, "task_x": 131070, "task_y": 129760, "task_z": 18, "center_y": 1.8007746230699999, "area_in_sqm": 23191.409434519701, "perimeter_in_m": 609.15246693003905, "length_x": 152.79900539560199, "length_y": 152.79911971281501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 1.801460929468021, 0.0 ], [ -0.001373291015625, 1.801460929468021, 0.0 ], [ -0.001373291015625, 1.800088316671975, 0.0 ], [ -0.00274658203125, 1.800088316671975, 0.0 ], [ -0.00274658203125, 1.801460929468021, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4057, "task_x": 131070, "task_y": 129792, "task_z": 18, "center_y": 1.75685048857032, "area_in_sqm": 23192.498984321999, "perimeter_in_m": 609.166776307026, "length_x": 152.80262038108901, "length_y": 152.802731913386 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 1.757536811308327, 0.0 ], [ -0.001373291015625, 1.757536811308327, 0.0 ], [ -0.001373291015625, 1.756164165832317, 0.0 ], [ -0.00274658203125, 1.756164165832317, 0.0 ], [ -0.00274658203125, 1.757536811308327, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4058, "task_x": 131070, "task_y": 129824, "task_z": 18, "center_y": 1.7129253212086599, "area_in_sqm": 23193.5616852231, "perimeter_in_m": 609.18073274623998, "length_x": 152.806146244237, "length_y": 152.806254991294 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 1.713611659883625, 0.0 ], [ -0.001373291015625, 1.713611659883625, 0.0 ], [ -0.001373291015625, 1.712238982533705, 0.0 ], [ -0.00274658203125, 1.712238982533705, 0.0 ], [ -0.00274658203125, 1.713611659883625, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4059, "task_x": 131070, "task_y": 129856, "task_z": 18, "center_y": 1.6689991467776699, "area_in_sqm": 23194.597534395802, "perimeter_in_m": 609.19433623408599, "length_x": 152.80958297480899, "length_y": 152.809688936312 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 1.669685500986574, 0.0 ], [ -0.001373291015625, 1.669685500986574, 0.0 ], [ -0.001373291015625, 1.66831279256877, 0.0 ], [ -0.00274658203125, 1.66831279256877, 0.0 ], [ -0.00274658203125, 1.669685500986574, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4060, "task_x": 131070, "task_y": 129888, "task_z": 18, "center_y": 1.62507199107301, "area_in_sqm": 23195.606525991101, "perimeter_in_m": 609.20758671733995, "length_x": 152.81293056283101, "length_y": 152.81303373847101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 1.62575836041276, 0.0 ], [ -0.001373291015625, 1.62575836041276, 0.0 ], [ -0.001373291015625, 1.624385621733254, 0.0 ], [ -0.00274658203125, 1.624385621733254, 0.0 ], [ -0.00274658203125, 1.62575836041276, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4061, "task_x": 131070, "task_y": 129920, "task_z": 18, "center_y": 1.5811438798931501, "area_in_sqm": 23196.588656384502, "perimeter_in_m": 609.22048417199505, "length_x": 152.81618899858299, "length_y": 152.81628938806099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 1.581830263960654, 0.0 ], [ -0.001373291015625, 1.581830263960654, 0.0 ], [ -0.001373291015625, 1.580457495825655, 0.0 ], [ -0.00274658203125, 1.580457495825655, 0.0 ], [ -0.00274658203125, 1.581830263960654, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4062, "task_x": 131070, "task_y": 129952, "task_z": 18, "center_y": 1.53721483903942, "area_in_sqm": 23197.543919861298, "perimeter_in_m": 609.23302854513497, "length_x": 152.819358272605, "length_y": 152.81945587562899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 1.537901237431484, 0.0 ], [ -0.001373291015625, 1.537901237431484, 0.0 ], [ -0.001373291015625, 1.536528440647359, 0.0 ], [ -0.00274658203125, 1.536528440647359, 0.0 ], [ -0.00274658203125, 1.537901237431484, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4063, "task_x": 131070, "task_y": 129984, "task_z": 18, "center_y": 1.4932848943159001, "area_in_sqm": 23198.472312212001, "perimeter_in_m": 609.24521980353495, "length_x": 152.82243837569601, "length_y": 152.82253319198301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 1.493971306629305, 0.0 ], [ -0.001373291015625, 1.493971306629305, 0.0 ], [ -0.001373291015625, 1.492598482002492, 0.0 ], [ -0.00274658203125, 1.492598482002492, 0.0 ], [ -0.00274658203125, 1.493971306629305, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4064, "task_x": 131070, "task_y": 130016, "task_z": 18, "center_y": 1.4493540715292801, "area_in_sqm": 23199.373830363202, "perimeter_in_m": 609.25705792753502, "length_x": 152.82542929891201, "length_y": 152.82552132818699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 1.450040497360803, 0.0 ], [ -0.001373291015625, 1.450040497360803, 0.0 ], [ -0.001373291015625, 1.448667645697753, 0.0 ], [ -0.00274658203125, 1.448667645697753, 0.0 ], [ -0.00274658203125, 1.450040497360803, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4065, "task_x": 131070, "task_y": 130048, "task_z": 18, "center_y": 1.4054223964888199, "area_in_sqm": 23200.248468816299, "perimeter_in_m": 609.26854286582795, "length_x": 152.82833103356899, "length_y": 152.82842027556401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 1.406108835435163, 0.0 ], [ -0.001373291015625, 1.406108835435163, 0.0 ], [ -0.001373291015625, 1.404735957542485, 0.0 ], [ -0.00274658203125, 1.404735957542485, 0.0 ], [ -0.00274658203125, 1.406108835435163, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4066, "task_x": 131070, "task_y": 130080, "task_z": 18, "center_y": 1.3614898950063401, "area_in_sqm": 23201.0962238871, "perimeter_in_m": 609.27967459006197, "length_x": 152.83114357124001, "length_y": 152.83123002569701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 1.362176346664157, 0.0 ], [ -0.001373291015625, 1.362176346664157, 0.0 ], [ -0.001373291015625, 1.360803443348516, 0.0 ], [ -0.00274658203125, 1.360803443348516, 0.0 ], [ -0.00274658203125, 1.362176346664157, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4067, "task_x": 131070, "task_y": 130112, "task_z": 18, "center_y": 1.31755659289605, "area_in_sqm": 23201.917092487201, "perimeter_in_m": 609.29045307892704, "length_x": 152.833866903759, "length_y": 152.833950570426 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 1.318243056862002, 0.0 ], [ -0.001373291015625, 1.318243056862002, 0.0 ], [ -0.001373291015625, 1.316870128930091, 0.0 ], [ -0.00274658203125, 1.316870128930091, 0.0 ], [ -0.00274658203125, 1.318243056862002, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4068, "task_x": 131070, "task_y": 130144, "task_z": 18, "center_y": 1.27362251597454, "area_in_sqm": 23202.7110698707, "perimeter_in_m": 609.30087828876594, "length_x": 152.83650102321599, "length_y": 152.83658190185 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 1.274308991845217, 0.0 ], [ -0.001373291015625, 1.274308991845217, 0.0 ], [ -0.001373291015625, 1.272936040103858, 0.0 ], [ -0.00274658203125, 1.272936040103858, 0.0 ], [ -0.00274658203125, 1.274308991845217, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4069, "task_x": 131070, "task_y": 130176, "task_z": 18, "center_y": 1.2296876900606399, "area_in_sqm": 23203.4781521074, "perimeter_in_m": 609.31095018658004, "length_x": 152.839045921962, "length_y": 152.839124012328 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 1.230374177432594, 0.0 ], [ -0.001373291015625, 1.230374177432594, 0.0 ], [ -0.001373291015625, 1.229001202688693, 0.0 ], [ -0.00274658203125, 1.229001202688693, 0.0 ], [ -0.00274658203125, 1.230374177432594, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4070, "task_x": 131070, "task_y": 130208, "task_z": 18, "center_y": 1.1857521409754199, "area_in_sqm": 23204.218337107501, "perimeter_in_m": 609.320668761663, "length_x": 152.841501592605, "length_y": 152.84157689447699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 1.1864386394452, 0.0 ], [ -0.001373291015625, 1.1864386394452, 0.0 ], [ -0.001373291015625, 1.185065642505648, 0.0 ], [ -0.00274658203125, 1.185065642505648, 0.0 ], [ -0.00274658203125, 1.1864386394452, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4071, "task_x": 131070, "task_y": 130240, "task_z": 18, "center_y": 1.14181589454206, "area_in_sqm": 23204.9316200502, "perimeter_in_m": 609.33003396835795, "length_x": 152.84386802801399, "length_y": 152.843940541172 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 1.142502403706146, 0.0 ], [ -0.001373291015625, 1.142502403706146, 0.0 ], [ -0.001373291015625, 1.14112938537798, 0.0 ], [ -0.00274658203125, 1.14112938537798, 0.0 ], [ -0.00274658203125, 1.142502403706146, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4072, "task_x": 131070, "task_y": 130272, "task_z": 18, "center_y": 1.0978789765857999, "area_in_sqm": 23205.6179981194, "perimeter_in_m": 609.33904578542104, "length_x": 152.846145221314, "length_y": 152.84621494554801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 1.098565496040649, 0.0 ], [ -0.001373291015625, 1.098565496040649, 0.0 ], [ -0.001373291015625, 1.097192457130944, 0.0 ], [ -0.00274658203125, 1.097192457130944, 0.0 ], [ -0.00274658203125, 1.098565496040649, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4073, "task_x": 131070, "task_y": 130304, "task_z": 18, "center_y": 1.0539414129338101, "area_in_sqm": 23206.2774683647, "perimeter_in_m": 609.34770419039398, "length_x": 152.84833316589101, "length_y": 152.84840010100001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 1.054627942275872, 0.0 ], [ -0.001373291015625, 1.054627942275872, 0.0 ], [ -0.001373291015625, 1.053254883591748, 0.0 ], [ -0.00274658203125, 1.053254883591748, 0.0 ], [ -0.00274658203125, 1.054627942275872, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4074, "task_x": 131070, "task_y": 130336, "task_z": 18, "center_y": 1.0100032294152199, "area_in_sqm": 23206.910028021801, "perimeter_in_m": 609.35600916119904, "length_x": 152.85043185539101, "length_y": 152.85049600117799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 1.010689768240908, 0.0 ], [ -0.001373291015625, 1.010689768240908, 0.0 ], [ -0.001373291015625, 1.009316690589529, 0.0 ], [ -0.00274658203125, 1.009316690589529, 0.0 ], [ -0.00274658203125, 1.010689768240908, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4075, "task_x": 131070, "task_y": 130368, "task_z": 18, "center_y": 0.96606445186095102, "area_in_sqm": 23207.515673218299, "perimeter_in_m": 609.36396066219299, "length_x": 152.85244128371599, "length_y": 152.852502639997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 0.966750999766631, 0.0 ], [ -0.001373291015625, 0.966750999766631, 0.0 ], [ -0.001373291015625, 0.965377903955272, 0.0 ], [ -0.00274658203125, 0.965377903955272, 0.0 ], [ -0.00274658203125, 0.966750999766631, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4076, "task_x": 131070, "task_y": 130400, "task_z": 18, "center_y": 0.92212510610365706, "area_in_sqm": 23208.094402061801, "perimeter_in_m": 609.37155868223795, "length_x": 152.85436144503001, "length_y": 152.854420011625 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 0.922811662685689, 0.0 ], [ -0.001373291015625, 0.922811662685689, 0.0 ], [ -0.001373291015625, 0.921438549521625, 0.0 ], [ -0.00274658203125, 0.921438549521625, 0.0 ], [ -0.00274658203125, 0.922811662685689, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4077, "task_x": 131070, "task_y": 130432, "task_z": 18, "center_y": 0.87818521797771598, "area_in_sqm": 23208.646210819501, "perimeter_in_m": 609.37880318527505, "length_x": 152.856192333754, "length_y": 152.85624811049399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 0.878871782832405, 0.0 ], [ -0.001373291015625, 0.878871782832405, 0.0 ], [ -0.001373291015625, 0.877498653123027, 0.0 ], [ -0.00274658203125, 0.877498653123027, 0.0 ], [ -0.00274658203125, 0.878871782832405, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4078, "task_x": 131070, "task_y": 130464, "task_z": 18, "center_y": 0.834244813319031, "area_in_sqm": 23209.171098239702, "perimeter_in_m": 609.38569416773203, "length_x": 152.85793394456999, "length_y": 152.857986931292 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 0.834931386042697, 0.0 ], [ -0.001373291015625, 0.834931386042697, 0.0 ], [ -0.001373291015625, 0.833558240595366, 0.0 ], [ -0.00274658203125, 0.833558240595366, 0.0 ], [ -0.00274658203125, 0.834931386042697, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4079, "task_x": 131070, "task_y": 130496, "task_z": 18, "center_y": 0.79030391796509103, "area_in_sqm": 23209.669061522902, "perimeter_in_m": 609.39223160462598, "length_x": 152.859586272418, "length_y": 152.859636468969 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 0.790990498154017, 0.0 ], [ -0.001373291015625, 0.790990498154017, 0.0 ], [ -0.001373291015625, 0.789617337776164, 0.0 ], [ -0.00274658203125, 0.789617337776164, 0.0 ], [ -0.00274658203125, 0.790990498154017, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4080, "task_x": 131070, "task_y": 130528, "task_z": 18, "center_y": 0.74636255775475702, "area_in_sqm": 23210.140097366599, "perimeter_in_m": 609.39841546420098, "length_x": 152.86114931249699, "length_y": 152.86119671873101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 0.747049145005178, 0.0 ], [ -0.001373291015625, 0.747049145005178, 0.0 ], [ -0.001373291015625, 0.745675970504337, 0.0 ], [ -0.00274658203125, 0.745675970504337, 0.0 ], [ -0.00274658203125, 0.747049145005178, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4081, "task_x": 131070, "task_y": 130560, "task_z": 18, "center_y": 0.70242075852831998, "area_in_sqm": 23210.584205085401, "perimeter_in_m": 609.40424574801, "length_x": 152.862623060267, "length_y": 152.86266767604499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 0.70310735243649, 0.0 ], [ -0.001373291015625, 0.70310735243649, 0.0 ], [ -0.001373291015625, 0.701734164620149, 0.0 ], [ -0.00274658203125, 0.701734164620149, 0.0 ], [ -0.00274658203125, 0.70310735243649, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4082, "task_x": 131070, "task_y": 130592, "task_z": 18, "center_y": 0.65847854612732704, "area_in_sqm": 23211.001381577898, "perimeter_in_m": 609.40972242566795, "length_x": 152.86400751144501, "length_y": 152.864049336639 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 0.659165146289453, 0.0 ], [ -0.001373291015625, 0.659165146289453, 0.0 ], [ -0.001373291015625, 0.657791945965201, 0.0 ], [ -0.00274658203125, 0.657791945965201, 0.0 ], [ -0.00274658203125, 0.659165146289453, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4083, "task_x": 131070, "task_y": 130624, "task_z": 18, "center_y": 0.61453594639456099, "area_in_sqm": 23211.391625549601, "perimeter_in_m": 609.41484548964104, "length_x": 152.86530266201001, "length_y": 152.86534169649701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 0.615222552406848, 0.0 ], [ -0.001373291015625, 0.615222552406848, 0.0 ], [ -0.001373291015625, 0.613849340382274, 0.0 ], [ -0.00274658203125, 0.613849340382274, 0.0 ], [ -0.00274658203125, 0.615222552406848, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4084, "task_x": 131070, "task_y": 130656, "task_z": 18, "center_y": 0.57059298517392398, "area_in_sqm": 23211.754934379798, "perimeter_in_m": 609.41961491435995, "length_x": 152.866508508197, "length_y": 152.86654475186501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 0.571279596632536, 0.0 ], [ -0.001373291015625, 0.571279596632536, 0.0 ], [ -0.001373291015625, 0.569906373715312, 0.0 ], [ -0.00274658203125, 0.569906373715312, 0.0 ], [ -0.00274658203125, 0.571279596632536, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4085, "task_x": 131070, "task_y": 130688, "task_z": 18, "center_y": 0.52664968831037895, "area_in_sqm": 23212.091307589799, "perimeter_in_m": 609.42403070195405, "length_x": 152.867625046504, "length_y": 152.867658499247 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 0.527336304811499, 0.0 ], [ -0.001373291015625, 0.527336304811499, 0.0 ], [ -0.001373291015625, 0.525963071809258, 0.0 ], [ -0.00274658203125, 0.525963071809258, 0.0 ], [ -0.00274658203125, 0.527336304811499, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4086, "task_x": 131070, "task_y": 130720, "task_z": 18, "center_y": 0.48270608164992201, "area_in_sqm": 23212.400742943399, "perimeter_in_m": 609.42809283077997, "length_x": 152.868652273686, "length_y": 152.86868293540701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 0.4833927027897, 0.0 ], [ -0.001373291015625, 0.4833927027897, 0.0 ], [ -0.001373291015625, 0.482019460510145, 0.0 ], [ -0.00274658203125, 0.482019460510145, 0.0 ], [ -0.00274658203125, 0.4833927027897, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4087, "task_x": 131070, "task_y": 130752, "task_z": 18, "center_y": 0.438762191039409, "area_in_sqm": 23212.683238813701, "perimeter_in_m": 609.43180128643201, "length_x": 152.86959018675799, "length_y": 152.869618057368 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 0.439448816413972, 0.0 ], [ -0.001373291015625, 0.439448816413972, 0.0 ], [ -0.001373291015625, 0.438075565664846, 0.0 ], [ -0.00274658203125, 0.438075565664846, 0.0 ], [ -0.00274658203125, 0.439448816413972, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4088, "task_x": 131070, "task_y": 130784, "task_z": 18, "center_y": 0.39481804232652701, "area_in_sqm": 23212.938794000998, "perimeter_in_m": 609.43515605967798, "length_x": 152.87043878299599, "length_y": 152.870463862414 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 0.395504671531995, 0.0 ], [ -0.001373291015625, 0.395504671531995, 0.0 ], [ -0.001373291015625, 0.394131413121059, 0.0 ], [ -0.00274658203125, 0.394131413121059, 0.0 ], [ -0.00274658203125, 0.395504671531995, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4089, "task_x": 131070, "task_y": 130816, "task_z": 18, "center_y": 0.35087366135976999, "area_in_sqm": 23213.1674077436, "perimeter_in_m": 609.43815714641403, "length_x": 152.87119805993299, "length_y": 152.87122034808601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 0.351560293992264, 0.0 ], [ -0.001373291015625, 0.351560293992264, 0.0 ], [ -0.001373291015625, 0.350187028727277, 0.0 ], [ -0.00274658203125, 0.350187028727277, 0.0 ], [ -0.00274658203125, 0.351560293992264, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4090, "task_x": 131070, "task_y": 130848, "task_z": 18, "center_y": 0.306929073988293, "area_in_sqm": 23213.3690781677, "perimeter_in_m": 609.44080452717697, "length_x": 152.87186801536299, "length_y": 152.87188751218599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 0.307615709643898, 0.0 ], [ -0.001373291015625, 0.307615709643898, 0.0 ], [ -0.001373291015625, 0.306242438332688, 0.0 ], [ -0.00274658203125, 0.306242438332688, 0.0 ], [ -0.00274658203125, 0.307615709643898, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4091, "task_x": 131070, "task_y": 130880, "task_z": 18, "center_y": 0.262984306061817, "area_in_sqm": 23213.543805772399, "perimeter_in_m": 609.44309821312004, "length_x": 152.87244864733901, "length_y": 152.87246535277501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 0.263670944336653, 0.0 ], [ -0.001373291015625, 0.263670944336653, 0.0 ], [ -0.001373291015625, 0.262297667786981, 0.0 ], [ -0.00274658203125, 0.262297667786981, 0.0 ], [ -0.00274658203125, 0.263670944336653, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4092, "task_x": 131070, "task_y": 130912, "task_z": 18, "center_y": 0.219039383430676, "area_in_sqm": 23213.6915883375, "perimeter_in_m": 609.44503817918701, "length_x": 152.872939954174, "length_y": 152.87295386817601 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 0.219726023920813, 0.0 ], [ -0.001373291015625, 0.219726023920813, 0.0 ], [ -0.001373291015625, 0.218352742940539, 0.0 ], [ -0.00274658203125, 0.218352742940539, 0.0 ], [ -0.00274658203125, 0.219726023920813, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4093, "task_x": 131070, "task_y": 130944, "task_z": 18, "center_y": 0.17509433194556601, "area_in_sqm": 23213.812425946799, "perimeter_in_m": 609.44662442976505, "length_x": 152.87334193444099, "length_y": 152.87335305696701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 0.17578097424709, 0.0 ], [ -0.001373291015625, 0.17578097424709, 0.0 ], [ -0.001373291015625, 0.174407689644042, 0.0 ], [ -0.00274658203125, 0.174407689644042, 0.0 ], [ -0.00274658203125, 0.17578097424709, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4094, "task_x": 131070, "task_y": 130976, "task_z": 18, "center_y": 0.13114917745763699, "area_in_sqm": 23213.9063176825, "perimeter_in_m": 609.44785695559403, "length_x": 152.87365458697101, "length_y": 152.87366291798901 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 0.131835821166618, 0.0 ], [ -0.001373291015625, 0.131835821166618, 0.0 ], [ -0.001373291015625, 0.130462533748656, 0.0 ], [ -0.00274658203125, 0.130462533748656, 0.0 ], [ -0.00274658203125, 0.131835821166618, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4095, "task_x": 131070, "task_y": 131008, "task_z": 18, "center_y": 0.087203945818317002, "area_in_sqm": 23213.973263044099, "perimeter_in_m": 609.44873575227098, "length_x": 152.87387791085499, "length_y": 152.87388345034199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 0.087890590530819, 0.0 ], [ -0.001373291015625, 0.087890590530819, 0.0 ], [ -0.001373291015625, 0.086517301105815, 0.0 ], [ -0.00274658203125, 0.086517301105815, 0.0 ], [ -0.00274658203125, 0.087890590530819, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "_uid_": 4096, "task_x": 131070, "task_y": 131040, "task_z": 18, "center_y": 0.043258662879260501, "area_in_sqm": 23214.013262045599, "perimeter_in_m": 609.44926082150096, "length_x": 152.874011905446, "length_y": 152.87401465338399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00274658203125, 0.043945308191354, 0.0 ], [ -0.001373291015625, 0.043945308191354, 0.0 ], [ -0.001373291015625, 0.042572017567167, 0.0 ], [ -0.00274658203125, 0.042572017567167, 0.0 ], [ -0.00274658203125, 0.043945308191354, 0.0 ] ] ] } } +] +} diff --git a/assets/docs/tile_size/img/area-plot.png b/assets/docs/tile_size/img/area-plot.png new file mode 100644 index 0000000..1ff357e Binary files /dev/null and b/assets/docs/tile_size/img/area-plot.png differ diff --git a/assets/docs/tile_size/img/chad_area.png b/assets/docs/tile_size/img/chad_area.png new file mode 100644 index 0000000..cc0b6a0 Binary files /dev/null and b/assets/docs/tile_size/img/chad_area.png differ diff --git a/assets/docs/tile_size/img/length-plot.png b/assets/docs/tile_size/img/length-plot.png new file mode 100644 index 0000000..5c5c45f Binary files /dev/null and b/assets/docs/tile_size/img/length-plot.png differ diff --git a/assets/docs/use_cases/img/building_example1.JPG b/assets/docs/use_cases/img/building_example1.JPG new file mode 100644 index 0000000..518128e Binary files /dev/null and b/assets/docs/use_cases/img/building_example1.JPG differ diff --git a/assets/docs/use_cases/img/building_example2.JPG b/assets/docs/use_cases/img/building_example2.JPG new file mode 100644 index 0000000..bff4e9d Binary files /dev/null and b/assets/docs/use_cases/img/building_example2.JPG differ diff --git a/assets/docs/use_cases/img/building_example3.JPG b/assets/docs/use_cases/img/building_example3.JPG new file mode 100644 index 0000000..4a81096 Binary files /dev/null and b/assets/docs/use_cases/img/building_example3.JPG differ diff --git a/assets/docs/use_cases/img/osm_validation_example.png b/assets/docs/use_cases/img/osm_validation_example.png new file mode 100644 index 0000000..a096dbb Binary files /dev/null and b/assets/docs/use_cases/img/osm_validation_example.png differ diff --git a/assets/legacy-datasets/README.md b/assets/legacy-datasets/README.md index 3cc5dcf..5257691 100644 --- a/assets/legacy-datasets/README.md +++ b/assets/legacy-datasets/README.md @@ -1,3 +1,8 @@ +--- +nav_exclude: true +search_exclude: true +--- + ## [projects.csv](./projects.csv) > [!NOTE] diff --git a/docs/about_data.md b/docs/about_data.md index 4b61a88..5398c5c 100644 --- a/docs/about_data.md +++ b/docs/about_data.md @@ -1,218 +1,37 @@ -# About the Data -Swiping is just the beginning. MapSwipe data is created by our users and accessible to the entire community. Through the [MapSwipe website](https://mapswipe.org/en/data/) you can see where we've mapped, which organizations are requesting data, and how many individuals contribute to our impact. When using MapSwipe data, all you have to do is credit the MapSwipe contributors. Here you find a more detailed description of the data available. +--- +title: About the Data +nav_order: 5 +has_children: true +has_toc: false +permalink: /docs/about_data/ +--- -## Global Exports -- **projects.csv** -- **projects_geom.geojson** -- **projects_centroid.geojson** -- **project_types_data.csv** +# About the Data +Swiping is just the beginning. MapSwipe data is created by our users and accessible to the entire community. Through the [MapSwipe website](https://mapswipe.org/en/data/) you can see where we've mapped, which organisations are requesting data, and how many individuals contribute to our impact. When using MapSwipe data, all you have to do is credit the MapSwipe contributors. Here you find a more detailed description of the data available. > [!IMPORTANT] -> You can download the latest dataset from the website https://mapswipe.org/en/data/ (Search for `Download all projects`) - -### Export: projects.csv -The export contains data of all the projects in MapSwipe. -| Name | Type | Description | -| ------------------------------ | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| id | integer | The numeric ID of the project in the revamped system, replacing the alphanumeric project_id from the old system. | -| firebase_id | string | The alphanumeric ID of the project from the old Firebase system. | -| name | string | The name of the project as displayed in the app including project type, topic, region, number, and requesting organization. (e.g., "Find Buildings in Manbhawan - Manbhawan (1) Togglecorp"). | -| description | string | The project description displayed in the app on the project page, detailing the purpose and tasks (e.g., scanning satellite imagery for buildings or earthquake damage). | -| look_for | string | What users should look for in the project (e.g., buildings, houses, paved roads, potholes, cars). | -| project_type | integer | The type of the project, represented as a numeric code (e.g., 1=Find features, 2=Validate footprints, 3=Compare dates, 4=Check completeness, 7=View streets, 10=Assess Images). | -| project_type_display | string | Human-readable name of the project type corresponding to the project_type code (e.g., "Find features", "Validate footprints", "Compare dates", "Check completeness", "View streets", "Assess Images"). | -| organization_name | string | The name of the organization requesting and responsible for the project (e.g., Togglecorp, HeiGIT). | -| image_url | string | URL to the project image displayed in the app. | -| created_at | string | The date and time when the project was created, in ISO format with timezone (e.g., "2025-09-15 07:58:29.863248+00:00"). | -| status | integer | Numeric code representing the project status (e.g., 30=Processing Failed, 40=Processed, 70=Withdrawn, 75=Finished, 80=Discarded). | -| status_display | string | Human-readable status of the project, corresponding to the status code (e.g., "Processing Failed", "Processed", "Withdrawn", "Finished", "Discarded"). | -| area_sqkm | float | The size of the project area in square kilometers. | -| centroid | string | The centroid of the project geometry as WKT geometry (often empty in the provided data). | -| geom | string | The geometry of the project region as WKT geometry, prefixed with SRID=4326 and wrapped in GEOMETRYCOLLECTION (e.g., "SRID=4326;GEOMETRYCOLLECTION (POLYGON (...))"). | -| progress | float | The mapping progress of the project indicating incomplete or unstarted projects. | -| number_of_contributor_users | integer | The number of distinct users who contributed to this project. | -| number_of_results | integer | The total number of results for all tasks. | -| number_of_results_for_progress | integer | The number of results considered for progress calculation, excluding redundant mappings. | -| last_contribution_date | string | The date of the last contribution to the project (empty in the provided data). | - -#### New Additions in New Architecture -The following fields have been added in the export after the architecture revamp -- **project_type_display**: Short name of the task type (e.g., "Find Features", "Validate Footprints"). -- **status**: Numeric code for the project’s current state (10=Draft, 30=Processing Failed, 40=Processed, 70=Withdrawn, 75=Finished, 80=Discarded). -- **status_display**: Human-readable project state (Finished, Withdrawn, Discarded…). - -### Export: projects_geom.geojson -This export contains MapSwipe projects with the following information. - -- Name: Project title with type, location, and organization. -- Look For: The feature volunteers should identify (e.g., buildings, roads, people). -- Type: Project category: Find Features, Assess Images, Compare Dates, View Streets. -- Status: Active, Finished, Withdrawn, or Processed. -- Area: Project size in km² (if available). -- Image: Sample image illustrating the task. - -| Name | Type | Look For | Status | Area (km²) | -| ----------------------------- | ------------- | ----------- | --------- | ---------- | -| Find Buildings in Manbhawan | Find Features | Buildings | Withdrawn | 0.004 | -| Validate Image - Mustang | Assess IMages | Person | Processed | – | -| View Streets - Antsirabe | View Streets | Paved Roads | Withdrawn | 3.37 | -| Find Affected Areas - Pokhara | Find Features | House | Finished | 6.49 | -| Compare - Earthquake Impact | Compare Dates | House | Processed | 11.08 | - -#### New Additions in New Architecture -The following fields have been added in the export after the architecture revamp -- **project_type_display**: Short name of the task type (e.g., "Find Features", "Validate Footprints"). -- **status_display**: Human-readable project state (Finished, Withdrawn, Discarded…). -- **number_of_contributors**: Total unique volunteers who tapped on this project. -- **number_of_results**: Every single swipe ever made in the project. -- **number_of_results_for_progress**: Swipes that actually moved the progress bar (excludes extras). -- **last_contribution_date**: Date of the most recent swipe (YYYY-MM-DD). -- **progress**: % of the area fully mapped (0.0 = 0%, 1.0 = 100%). - -### Export: projects_centroid.geojson -This export is similar to the export with projects_geom.geojson - -### Export: projects_stats_by_type.csv -The newly added export contains aggregated stats for all MapSwipe projects, grouped by the 6 project types, instantly revealing each type’s project count, total area covered, every swipe submitted, and average volunteers per project. +> You can download the latest dataset from the website https://mapswipe.org/en/data/ (Search for `Download all projects`). -| Name | Type | Description | -| ----------------------------------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| project_type | integer | The numeric code representing the type of projects aggregated in this row (e.g., 1=Find features, 2=Validate footprints, 3=Compare dates, 4=Check completeness, 7=View streets, 10=Assess Images). | -| project_type_display | string | The human-readable name of the project type corresponding to the project_type code, as displayed in the app (e.g., "Find", "Validate", "Compare", "Completeness", "Street", "Validate Image"). | -| projects_count | integer | The total number of projects of the specific project type included in this aggregated statistic. | -| total_area_sqkm | float | The cumulative size of the project areas in square kilometers for all projects of the specific project type (may be empty for some project types). | -| total_number_of_results | integer | The total number of task results submitted across all projects of the specific project type. | -| total_number_of_results_progress | integer | The total number of results considered for progress calculation across all projects of the specific project type, excluding redundant mappings beyond the required threshold. | -| average_number_of_users_per_project | float | The average number of distinct users who contributed to projects of the specific project type, calculated as the total number of contributor users divided by the number of projects. | +## Global Exports +Exports that describe the whole MapSwipe project catalog. +- [Projects Overview](about_data/projects.md) (`projects.csv`) — every project in MapSwipe, one row per project. +- [Projects with Geometry](about_data/projects_geom.md) (`projects_geom.geojson`) — project metadata + each project's area-of-interest polygon(s). +- [Projects with Centroid](about_data/projects_centroid.md) (`projects_centroid.geojson`) — same metadata but with a single centroid point per project. +- [Project Type's Stats](about_data/project_stats_by_types.md) (`project_stats_by_types.csv`) — aggregated stats grouped by project type. ## Project Specific Exports -For project specific exports, we have taken the example of the following project: - -> *Find Features - Public Health - Maluku, Democratic Republic of Congo (1) American Red Cross (-M56eeMCZ5VeOHjJN4Bx)* - -### Aggregated Results -This gives you the unfiltered MapSwipe results. This is most suited if you want to apply some custom data processing with the MapSwipe data, e.g. select only specific tasks for machine learning. If you want to use MapSwipe data in the Tasking Manager you might look for the data described below. - -#### Files -- `aggregated_results_{project_id}.csv`, e.g. [agg\_results\_-M56eeMCZ5VeOHjJN4Bx.csv](/assets/docs/about_data/files/agg_results_-M56eeMCZ5VeOHjJN4Bx.csv.gz) -- `aggregated_results_{project_id}.geojson`, e.g. [agg\_results\_-M56eeMCZ5VeOHjJN4Bx.geojson](/assets/docs/about_data/files/agg_results_-M56eeMCZ5VeOHjJN4Bx_geom.geojson.gz) - -| Name | Type | Description | -|-------------|----------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| idx | integer | - | -| task_id | string | The ID of the task, for BuildArea projects this is a composition of `TileZ-TileX-TileY` | -| 0_count | integer | The number of users who marked this task as 0, e.g. "no building" for BuildArea Project Type. | -| 1_count | integer | The number of users who marked this task as 1, e.g. "building" for BuildArea Project Type. | -| 2_count | integer | The number of users who marked this task as 2, e.g. "maybe" for BuildArea Project Type. | -| 3_count | integer | The number of users who marked this task as 3, e.g. "bad imagery" for BuildArea Project Type. | -| total_count | integer | The total number of users who mapped this task. | -| 0_share | float | 0_count divived by total_count. This gives you the share of all users who marked as 0. | -| 1_share | float | 1_count divived by total_count. This gives you the share of all users who marked as 1. | -| 2_share | float | 2_count divived by total_count. This gives you the share of all users who marked as 2. | -| 3_share | float | 3_count divived by total_count. This gives you the share of all users who marked as 3. | -| agreement | float | This is defined as [Scott's Pi](https://en.wikipedia.org/wiki/Scott%27s_Pi) and gives you an understanding of inter-rater reliability. The value is 1.0 if all users agree, e.g. all users classify as "building". If users disagree this value will be lower. | -| geom | string | The geometry of this task as WKT geometry. | - -Additionally, project type specific data can be found here. E.g. Validate projects which were created based on OSM data, will have data describing the original OSM object included. - -### HOT Tasking Manager Geometries -This gives you filtered MapSwipe data ready to be imported to the HOT Tasking Manager. -Currently, the geometries in this dataset consist of maximum 15 MapSwipe Tasks, where at least 35% of all users indicated the presence of a building by classifying as "yes" or "maybe". - -#### File -- `hot_tm_{project_id}.geojson`, e.g. [hot\_tm\_-M56eeMCZ5VeOHjJN4Bx.geojson](/assets/docs/about_data/files/hot_tm_-M56eeMCZ5VeOHjJN4Bx.geojson) - - -| Name | Type | Description | -| -------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| group_id | integer | A ID for the geometry. It has no connection to the MapSwipe data model. | -| geometry | geometry | A polygon geometry representing the selected MapSwipe tasks. In our GIS workflow we further aggregate and simplify the geometry, hence they kind of look like easter eggs. | - -### Users -This gives you data on the users which contributed to a project. - -#### File -- `users_{project_id}.csv`, e.g. [users.csv](/assets/docs/about_data/files/users_-M56eeMCZ5VeOHjJN4Bx.csv.gz) - -| Name | Type | Description | -|---------------------------|---------|------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| idx | integer | - | -| groups_completed | integer | Number of groups completed | -| total_contributions | integer | Number of tasks completed | -| agreeing_contributions | integer | Tasks with the same result as the final result (e.g. Tile has buildings). | -| disagreeing_contributions | integer | Tasks with other result as the final result. | -| simple_agreement_score | float | Share of tasks which had the same result as the final result. E.g. 0.8 would mean that the user labeled 80% of the tiles the same way as the majority of voters. | - -### Groups -This provides data on groups, their tasks, and progress for a specific project. - -#### File -- `groups_{project_id}.csv`, e.g. [groups.csv](/assets/docs/about_data/files/groups_-M56eeMCZ5VeOHjJN4Bx.csv.gz) - -| Name | Type | Description | -| ------------------------ | ------- | ------------------------------------------------------------------------- | -| project_id | string | Unique identifier for the project to which the group belongs. | -| group_id | string | Unique identifier for the group within the project. | -| number_of_tasks | integer | Total number of tasks assigned to the group. | -| finished_count | integer | Number of tasks in the group that have been completed. | -| required_count | integer | Number of contributions required per task for completion. | -| progress | float | Progress of the group’s tasks, likely as a fraction (e.g., 0.0 for none). | -| project_type_specifics | string | JSON string containing additional details like groupId, coordinates, etc. | -| number_of_users_required | integer | Number of users required to contribute to the group’s tasks. | - - -### History -This tracks daily results, progress, and user contributions for a specific project. - -#### File -- `history_{project_id}.csv`, e.g. [history.csv](/assets/docs/about_data/files/history_-M56eeMCZ5VeOHjJN4Bx.csv) - -| Name | Type | Description | -| ------------------------ | ------- | ------------------------------------------------------------------------- | -| project_id | string | Unique identifier for the project to which the group belongs. | -| group_id | string | Unique identifier for the group within the project. | -| number_of_tasks | integer | Total number of tasks assigned to the group. | -| finished_count | integer | Number of tasks in the group that have been completed. | -| required_count | integer | Number of contributions required per task for completion. | -| progress | float | Progress of the group’s tasks, likely as a fraction (e.g., 0.0 for none). | -| project_type_specifics | string | JSON string containing additional details like groupId, coordinates, etc. | -| number_of_users_required | integer | Number of users required to contribute to the group’s tasks. | - - -### Results -This details individual task contributions, timings, and results by users in groups for a specific project. - -#### File -- `results_{project_id}.csv`, e.g. [results.csv](/assets/docs/about_data/files/results_-M56eeMCZ5VeOHjJN4Bx.csv.gz) - -| Name | Type | Description | -| ---------- | ------- | ---------------------------------------------------------------------------- | -| project_id | string | Unique identifier for the project to which the result belongs. | -| group_id | string | Identifier for the group containing the task. | -| user_id | string | Unique identifier for the user who completed the task. | -| task_id | string | Identifier for the specific task, often in format like zoom-x-y coordinates. | -| timestamp | string | Timestamp when the result was recorded (in YYYY-MM-DD HH:MM:SS format). | -| start_time | string | Start time of the task (in YYYY-MM-DD HH:MM:SS format). | -| end_time | string | End time of the task (in YYYY-MM-DD HH:MM:SS format). | -| result | integer | The outcome or classification result of the task (e.g., 0 for negative). | - - -### Tasks -This lists tasks, their identifiers, groups, and geometric polygons for a specific project. - -#### File -- `tasks_{project_id}.csv`, e.g. [tasks.csv](/assets/docs/about_data/files/tasks_-M56eeMCZ5VeOHjJN4Bx.csv.gz) - -| Name | Type | Description | -| ---------- | ------ | --------------------------------------------------------------------------------------------------------------------- | -| project_id | string | Unique identifier for the project to which the task belongs. | -| group_id | string | Identifier for the group containing the task. | -| task_id | string | Unique identifier for the task, often in format like zoom-x-y coordinates. | -| geom | string | Geometric boundary of the task area in WKT (Well-Known Text) MULTIPOLYGON format with longitude-latitude coordinates. | - -### Moderate to High -This provides GeoJSON polygons representing areas marked as 'yes' or 'maybe' in the project. - -#### File -- `yes_maybe_{project_id}.geojson`, e.g. [yes_maybe.geojson](/assets/docs/about_data/files/yes_maybe_-M56eeMCZ5VeOHjJN4Bx.geojson) +Exports scoped to a single project. For the examples on the following pages we use: + +> *Find Features - Find Buildings - Mozambique Floods 2026 - Chibuto (1) HOT — `id` `2962`, `firebaseId` `01KMMX0C9MG396SCV8W8CZ8RY3`* + +- [Aggregated Results](about_data/aggregated_results.md) — unfiltered MapSwipe results aggregated on the task level (CSV). +- [Aggregated Results (with Geometry)](about_data/aggregated_results_with_geometry.md) — same data as Aggregated Results, delivered as a GeoJSON `FeatureCollection`. +- [Groups](about_data/groups.md) — task groups and their progress. +- [History](about_data/history.md) — daily activity timeline. +- [Results](about_data/results.md) — individual user contributions per task. +- [Tasks](about_data/tasks.md) — task identifiers and geometries. +- [Users](about_data/users.md) — contributor stats for this project. +- [Area of Interest](about_data/area_of_interest.md) — the project's region as GeoJSON. +- [HOT Tasking Manager Geometries](about_data/hot_tm.md) — filtered geometries ready for import into HOT Tasking Manager. +- [Moderate to High Agreement Yes Maybe Geometries](about_data/yes_maybe.md) — merged polygons of areas marked yes / maybe. diff --git a/docs/about_data/aggregated_results.md b/docs/about_data/aggregated_results.md new file mode 100644 index 0000000..e7d3217 --- /dev/null +++ b/docs/about_data/aggregated_results.md @@ -0,0 +1,45 @@ +--- +title: Aggregated Results +parent: About the Data +nav_order: 5 +permalink: /docs/about_data/aggregated_results/ +--- + +# Aggregated Results +This gives you the unfiltered MapSwipe results aggregated on the task level. This is most suited if you want to apply some custom data processing with the MapSwipe data, e.g. select only specific tasks. If you want geometries on each task instead of a `geom` column, see [Aggregated Results (with Geometry)](aggregated_results_with_geometry.md). + +## Schema + +One row per task, with the following columns: + +| Name | Type | Description | +| ------------------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| idx | integer | Sequential row index. | +| task_id | string | The ID of the task. For tile-based project types (e.g. Find Features) this is a composition of `TileZ-TileX-TileY`. | +| 0_count | integer | The number of users who marked this task as 0, e.g. "no building" for Find Features. | +| 1_count | integer | The number of users who marked this task as 1, e.g. "building" for Find Features. | +| 2_count | integer | The number of users who marked this task as 2, e.g. "maybe" for Find Features. | +| 3_count | integer | The number of users who marked this task as 3, e.g. "bad imagery" for Find Features. | +| total_count | integer | The total number of users who mapped this task. | +| 0_share | float | `0_count` divided by `total_count`. This gives you the share of all users who marked as 0. | +| 1_share | float | `1_count` divided by `total_count`. This gives you the share of all users who marked as 1. | +| 2_share | float | `2_count` divided by `total_count`. This gives you the share of all users who marked as 2. | +| 3_share | float | `3_count` divided by `total_count`. This gives you the share of all users who marked as 3. | +| agreement | float | [Scott's Pi](https://en.wikipedia.org/wiki/Scott%27s_Pi) inter-rater reliability. 1.0 means all users agreed; lower values indicate disagreement. Empty when only one user has mapped the task. | +| quadkey | string | Bing Maps quadkey identifying the tile (tile-based project types only). | +| project_internal_id | integer | The internal numeric project ID. | +| group_internal_id | integer | The internal numeric group ID for the group this task belongs to. | +| task_internal_id | integer | The internal numeric task ID. | +| geom | string | The geometry of this task as WKT (MULTIPOLYGON, EPSG:4326). | +| tile_z | integer | Tile zoom level (tile-based project types only). | +| tile_x | integer | Tile X index (tile-based project types only). | +| tile_y | integer | Tile Y index (tile-based project types only). | +| url | string | URL to the satellite imagery tile shown to users (tile-based project types only). | + +Additionally, project type specific data can be found here. E.g. Validate projects which were created based on OSM data, will have data describing the original OSM object included. + +## Sample download + +A 10-row preview is shipped alongside these docs for reference. **It is not the live dataset** — for the full export, see the [MapSwipe data page](https://mapswipe.org/en/data/). The live file is delivered as gzipped CSV (`.csv.gz`) — unzip before use; the sample below is already decompressed. + +- `agg_results_by_task_{project_id}.csv`, e.g. [agg_results_by_task_2962.csv](/assets/docs/about_data/files/project_exports/agg_results_by_task_2962.csv) diff --git a/docs/about_data/aggregated_results_with_geometry.md b/docs/about_data/aggregated_results_with_geometry.md new file mode 100644 index 0000000..479cae2 --- /dev/null +++ b/docs/about_data/aggregated_results_with_geometry.md @@ -0,0 +1,19 @@ +--- +title: Aggregated Results (with Geometry) +parent: About the Data +nav_order: 6 +permalink: /docs/about_data/aggregated_results_with_geometry/ +--- + +# Aggregated Results (with Geometry) +Same task-level aggregation as [Aggregated Results](aggregated_results.md), but delivered as a GeoJSON `FeatureCollection` — the task polygon lives on each feature's `geometry` instead of being a WKT column. + +## Schema + +One feature per task. Property names match [Aggregated Results](aggregated_results.md) minus `geom` (the geometry is on the feature itself). Each feature's `geometry` is a `MultiPolygon` (EPSG:4326). + +## Sample download + +A 10-row preview is shipped alongside these docs for reference. **It is not the live dataset** — for the full export, see the [MapSwipe data page](https://mapswipe.org/en/data/). The live file is delivered as gzipped GeoJSON (`.geojson.gz`) — unzip before use; the sample below is already decompressed. + +- `agg_results_by_task_{project_id}_geom.geojson`, e.g. [agg_results_by_task_2962_geom.geojson](/assets/docs/about_data/files/project_exports/agg_results_by_task_2962_geom.geojson) diff --git a/docs/about_data/area_of_interest.md b/docs/about_data/area_of_interest.md new file mode 100644 index 0000000..39acfe2 --- /dev/null +++ b/docs/about_data/area_of_interest.md @@ -0,0 +1,9 @@ +--- +title: Area of Interest +parent: About the Data +nav_order: 12 +permalink: /docs/about_data/area_of_interest/ +--- + +# Area of Interest +This dataset contains information on the project region. diff --git a/docs/about_data/groups.md b/docs/about_data/groups.md new file mode 100644 index 0000000..0db93cf --- /dev/null +++ b/docs/about_data/groups.md @@ -0,0 +1,37 @@ +--- +title: Groups +parent: About the Data +nav_order: 7 +permalink: /docs/about_data/groups/ +--- + +# Groups +This provides data on groups, their tasks, and progress for a specific project. + +## Schema + +One row per group, with the following columns: + +| Name | Type | Description | +| ------------------------ | ------- | ----------------------------------------------------------------------------------------------------------- | +| group_internal_id | integer | Internal numeric ID of the group. | +| project_internal_id | integer | Internal numeric ID of the project. | +| group_id | string | Public group identifier within the project (e.g. `g155`). | +| project_id | string | The project identifier. Usually a ULID for new projects; legacy Firebase-style for older migrated projects. | +| number_of_tasks | integer | Total number of tasks in the group. | +| required_count | integer | Number of contributions required per task for completion. | +| finished_count | integer | Number of contributions submitted toward the group's tasks. | +| progress | float | Group progress as a fraction (0.0 = none, 1.0 = complete). | +| total_area | float | Combined area covered by the group's tasks, in square kilometers. | +| time_spent_max_allowed | float | Maximum allowed mapping time for the group, in seconds. | +| number_of_users_required | integer | Number of distinct users required to contribute to the group's tasks. | +| x_max | integer | Maximum tile X index across the group's tasks (tile-based project types only). | +| x_min | integer | Minimum tile X index across the group's tasks (tile-based project types only). | +| y_max | integer | Maximum tile Y index across the group's tasks (tile-based project types only). | +| y_min | integer | Minimum tile Y index across the group's tasks (tile-based project types only). | + +## Sample download + +A 10-row preview is shipped alongside these docs for reference. **It is not the live dataset** — for the full export, see the [MapSwipe data page](https://mapswipe.org/en/data/). The live file is delivered as gzipped CSV (`.csv.gz`) — unzip before use; the sample below is already decompressed. + +- `groups_{project_id}.csv`, e.g. [groups_2962.csv](/assets/docs/about_data/files/project_exports/groups_2962.csv) diff --git a/docs/about_data/history.md b/docs/about_data/history.md new file mode 100644 index 0000000..9e8205a --- /dev/null +++ b/docs/about_data/history.md @@ -0,0 +1,33 @@ +--- +title: History +parent: About the Data +nav_order: 8 +permalink: /docs/about_data/history/ +--- + +# History +This tracks daily results, progress, and user contributions for a specific project. + +## Schema + +One row per day, with the following columns: + +| Name | Type | Description | +| ------------------------------- | ------- | ------------------------------------------------------------------------------------------------------------ | +| day | string | The day this row aggregates, in `YYYY-MM-DD` format. | +| number_of_results | integer | Total swipes submitted on this day. | +| number_of_results_progress | integer | Swipes from this day that count toward progress (excludes redundant mappings beyond the required threshold). | +| cum_number_of_results | integer | Running total of all swipes submitted up to and including this day. | +| cum_number_of_results_progress | integer | Running total of progress-counting swipes up to and including this day. | +| progress | float | Project progress gained on this day (delta), as a fraction. | +| cum_progress | float | Cumulative project progress up to and including this day, as a fraction (0.0 = 0%, 1.0 = 100%). | +| number_of_users | integer | Distinct users who contributed on this day. | +| number_of_new_users | integer | Users who contributed for the first time on this day. | +| cum_number_of_users | integer | Cumulative distinct users who have contributed up to and including this day. | +| project_id | string | The project identifier. Usually a ULID for new projects; legacy Firebase-style for older migrated projects. | + +## Sample download + +A 10-row preview is shipped alongside these docs for reference. **It is not the live dataset** — for the full export, see the [MapSwipe data page](https://mapswipe.org/en/data/). The live file is delivered as CSV (`.csv`). + +- `history_{project_id}.csv`, e.g. [history_2962.csv](/assets/docs/about_data/files/project_exports/history_2962.csv) diff --git a/docs/about_data/hot_tm.md b/docs/about_data/hot_tm.md new file mode 100644 index 0000000..afbd52c --- /dev/null +++ b/docs/about_data/hot_tm.md @@ -0,0 +1,24 @@ +--- +title: HOT Tasking Manager Geometries +parent: About the Data +nav_order: 13 +permalink: /docs/about_data/hot_tm/ +--- + +# HOT Tasking Manager Geometries +This dataset contains shapes that are ready to use in the HOT Tasking Manager. Currently, the geometries consist of maximum 15 MapSwipe Tasks, where at least 35% of all users indicated the presence of a building by classifying as "yes" or "maybe". + +## Schema + +One feature per merged geometry, with the following `properties`: + +| Name | Type | Description | +| -------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| group_id | integer | A ID for the geometry. It has no connection to the MapSwipe data model. | +| geometry | geometry | A polygon geometry representing the selected MapSwipe tasks. In our GIS workflow we further aggregate and simplify the geometry, hence they kind of look like easter eggs. | + +## Sample download + +A 10-row preview is shipped alongside these docs for reference. **It is not the live dataset** — for the full export, see the [MapSwipe data page](https://mapswipe.org/en/data/). The live file is delivered as GeoJSON (`.geojson`). + +- `hot_tm_{project_id}.geojson`, e.g. [hot_tm_2962.geojson](/assets/docs/about_data/files/project_exports/hot_tm_2962.geojson) diff --git a/docs/about_data/project_stats_by_types.md b/docs/about_data/project_stats_by_types.md new file mode 100644 index 0000000..1680b6a --- /dev/null +++ b/docs/about_data/project_stats_by_types.md @@ -0,0 +1,29 @@ +--- +title: Project Type's Stats +parent: About the Data +nav_order: 4 +permalink: /docs/about_data/project_stats_by_types/ +--- + +# Project Type's Stats +The newly added export contains aggregated stats for all MapSwipe projects, grouped by the 6 project types, instantly revealing each type's project count, total area covered, every swipe submitted, and average volunteers per project. + +## Schema + +One row per project type, with the following columns: + +| Name | Type | Description | +| ----------------------------------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| project_type | integer | The numeric code representing the type of projects aggregated in this row (e.g., 1=Find features, 2=Validate footprints, 3=Compare dates, 4=Check completeness, 7=View streets, 10=Assess Images). | +| project_type_display | string | The human-readable name of the project type corresponding to the project_type code, as displayed in the app (e.g., "Find", "Validate", "Compare", "Completeness", "Street", "Validate Image"). | +| projects_count | integer | The total number of projects of the specific project type included in this aggregated statistic. | +| total_area_sqkm | float | The cumulative size of the project areas in square kilometers for all projects of the specific project type (may be empty for some project types). | +| total_number_of_results | integer | The total number of task results submitted across all projects of the specific project type. | +| total_number_of_results_progress | integer | The total number of results considered for progress calculation across all projects of the specific project type, excluding redundant mappings beyond the required threshold. | +| average_number_of_users_per_project | float | The average number of distinct users who contributed to projects of the specific project type, calculated as the total number of contributor users divided by the number of projects. | + +## Sample download + +A 10-row preview is shipped alongside these docs for reference. **It is not the live dataset** — for the full export, see the [MapSwipe data page](https://mapswipe.org/en/data/). + +- [project_stats_by_types.csv](/assets/docs/about_data/files/global_exports/project_stats_by_types.csv) diff --git a/docs/about_data/projects.md b/docs/about_data/projects.md new file mode 100644 index 0000000..759ca84 --- /dev/null +++ b/docs/about_data/projects.md @@ -0,0 +1,49 @@ +--- +title: Projects Overview +parent: About the Data +nav_order: 1 +permalink: /docs/about_data/projects/ +--- + +# Projects Overview + +A flat CSV catalog of every MapSwipe project — identifiers, status, area, contribution counts, and a geometry summary, one row per project. + +## Schema + +One row per project, with the following columns: + +| Name | Type | Description | +| ------------------------------ | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| id | integer | The numeric ID of the project in the revamped system, replacing the alphanumeric project_id from the old system. | +| firebase_id | string | The alphanumeric ID of the project from the old Firebase system. | +| name | string | The name of the project as displayed in the app including project type, topic, region, number, and requesting organisation. (e.g., "Find Buildings in Manbhawan - Manbhawan (1) Togglecorp"). | +| description | string | The project description displayed in the app on the project page, detailing the purpose and tasks (e.g., scanning satellite imagery for buildings or earthquake damage). | +| look_for | string | What users should look for in the project (e.g., buildings, houses, paved roads, potholes, cars). | +| project_type | integer | The type of the project, represented as a numeric code (e.g., 1=Find features, 2=Validate footprints, 3=Compare dates, 4=Check completeness, 7=View streets, 10=Assess Images). | +| project_type_display | string | Human-readable name of the project type corresponding to the project_type code (e.g., "Find features", "Validate footprints", "Compare dates", "Check completeness", "View streets", "Assess Images"). | +| organization_name | string | The name of the organisation requesting and responsible for the project (e.g., Togglecorp, HeiGIT). | +| image_url | string | URL to the project image displayed in the app. | +| created_at | string | The date and time when the project was created, in ISO format with timezone (e.g., "2025-09-15 07:58:29.863248+00:00"). | +| status | integer | Numeric code representing the project status (e.g., 30=Processing Failed, 40=Processed, 70=Withdrawn, 75=Finished, 80=Discarded). | +| status_display | string | Human-readable status of the project, corresponding to the status code (e.g., "Processing Failed", "Processed", "Withdrawn", "Finished", "Discarded"). | +| area_sqkm | float | The size of the project area in square kilometers. | +| centroid | string | The centroid of the project geometry as a WKT POINT (EPSG:4326), e.g. `POINT(3.6169 6.6249)`. | +| geom | string | The geometry of the project region as WKT geometry, prefixed with SRID=4326 and wrapped in GEOMETRYCOLLECTION (e.g., "SRID=4326;GEOMETRYCOLLECTION (POLYGON (...))"). | +| progress | float | The mapping progress of the project as a fraction (0.0 = none, 1.0 = complete). | +| number_of_contributor_users | integer | The number of distinct users who contributed to this project. | +| number_of_results | integer | The total number of results for all tasks. | +| number_of_results_for_progress | integer | The number of results considered for progress calculation, excluding redundant mappings. | +| last_contribution_date | string | The date of the most recent contribution to the project (YYYY-MM-DD). | + +## Sample download + +A 10-row preview is shipped alongside these docs for reference. **It is not the live dataset** — for the full export, see the [MapSwipe data page](https://mapswipe.org/en/data/). + +- [projects.csv](/assets/docs/about_data/files/global_exports/projects.csv) + +## Additions in New Architecture +The following fields have been added in the export after the architecture revamp +- **project_type_display**: Short name of the task type (e.g., "Find Features", "Validate Footprints"). +- **status**: Numeric code for the project’s current state (10=Draft, 30=Processing Failed, 40=Processed, 70=Withdrawn, 75=Finished, 80=Discarded). +- **status_display**: Human-readable project state (Finished, Withdrawn, Discarded…). diff --git a/docs/about_data/projects_centroid.md b/docs/about_data/projects_centroid.md new file mode 100644 index 0000000..19a1047 --- /dev/null +++ b/docs/about_data/projects_centroid.md @@ -0,0 +1,15 @@ +--- +title: Projects with Centroid +parent: About the Data +nav_order: 3 +permalink: /docs/about_data/projects_centroid/ +--- + +# Projects with Centroid +Same `FeatureCollection` and property schema as [Projects with Geometry](projects_geom.md), but each feature's `geometry` is a single `Point` (the project centroid) instead of a `GeometryCollection` of polygons. Use this when you want a lightweight overview map without the full project boundaries. + +## Sample download + +A 10-row preview is shipped alongside these docs for reference. **It is not the live dataset** — for the full export, see the [MapSwipe data page](https://mapswipe.org/en/data/). + +- [projects_centroid.geojson](/assets/docs/about_data/files/global_exports/projects_centroid.geojson) diff --git a/docs/about_data/projects_geom.md b/docs/about_data/projects_geom.md new file mode 100644 index 0000000..88cdccf --- /dev/null +++ b/docs/about_data/projects_geom.md @@ -0,0 +1,53 @@ +--- +title: Projects with Geometry +parent: About the Data +nav_order: 2 +permalink: /docs/about_data/projects_geom/ +--- + +# Projects with Geometry +A GeoJSON `FeatureCollection` with one `Feature` per MapSwipe project. Each feature carries the same metadata as `projects.csv` (minus `geom`, since the geometry is on the feature itself) and a `geometry` of type `GeometryCollection`. + +## Schema + +One feature per project, with the following `properties`: + +| Name | Type | Description | +| ------------------------------ | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| id | string | The numeric project ID, serialized as a string in GeoJSON properties. | +| firebase_id | string | The alphanumeric ID of the project from the old Firebase system. | +| name | string | The name of the project as displayed in the app. | +| description | string | The project description displayed in the app on the project page. | +| look_for | string | What users should look for in the project (e.g., buildings, houses, paved roads). | +| project_type | string | The project type code (serialized as a string), e.g. `1`=Find features, `2`=Validate footprints, `3`=Compare dates, `4`=Check completeness, `7`=View streets, `10`=Assess Images. | +| project_type_display | string | Human-readable name of the project type. | +| organization_name | string | The name of the organisation requesting the project. | +| image_url | string | URL to the project image displayed in the app. | +| created_at | string | When the project was created, ISO timestamp with timezone. | +| status | string | Project status code (serialized as a string), e.g. `30`=Processing Failed, `40`=Processed, `70`=Withdrawn, `75`=Finished, `80`=Discarded. | +| status_display | string | Human-readable project status. | +| area_sqkm | string | Project area in square kilometers, serialized as a string. | +| centroid | string | Centroid of the project geometry as WKT POINT (EPSG:4326). | +| progress | string | Project progress as a fraction (0.0 – 1.0), serialized as a string. | +| number_of_contributor_users | string | Distinct users who contributed to this project, serialized as a string. | +| number_of_results | string | Total swipes submitted across all of the project's tasks, serialized as a string. | +| number_of_results_for_progress | string | Swipes that count toward progress (excludes redundant mappings beyond the required threshold), serialized as a string. | +| last_contribution_date | string | Date of the most recent contribution to the project (YYYY-MM-DD). | + +The feature's `geometry` is a `GeometryCollection` containing the project's area-of-interest polygon(s) in EPSG:4326. + +## Sample download + +A 10-row preview is shipped alongside these docs for reference. **It is not the live dataset** — for the full export, see the [MapSwipe data page](https://mapswipe.org/en/data/). + +- [projects_geom.geojson](/assets/docs/about_data/files/global_exports/projects_geom.geojson) + +## Additions in New Architecture +The following fields have been added in the export after the architecture revamp +- **project_type_display**: Short name of the task type (e.g., "Find Features", "Validate Footprints"). +- **status_display**: Human-readable project state (Finished, Withdrawn, Discarded…). +- **number_of_contributor_users**: Total unique volunteers who tapped on this project. +- **number_of_results**: Every single swipe ever made in the project. +- **number_of_results_for_progress**: Swipes that actually moved the progress bar (excludes extras). +- **last_contribution_date**: Date of the most recent swipe (YYYY-MM-DD). +- **progress**: % of the area fully mapped (0.0 = 0%, 1.0 = 100%). diff --git a/docs/about_data/results.md b/docs/about_data/results.md new file mode 100644 index 0000000..e067a28 --- /dev/null +++ b/docs/about_data/results.md @@ -0,0 +1,37 @@ +--- +title: Results +parent: About the Data +nav_order: 9 +permalink: /docs/about_data/results/ +--- + +# Results +This gives you the unfiltered MapSwipe results — individual task contributions, timings, and the classification each user submitted. + +## Schema + +One row per submission, with the following columns: + +| Name | Type | Description | +| ------------------- | ------- | -------------------------------------------------------------------------------------------------------------- | +| project_internal_id | integer | Internal numeric ID of the project. | +| group_internal_id | integer | Internal numeric ID of the group containing the task. | +| task_internal_id | integer | Internal numeric ID of the task. | +| user_internal_id | integer | Internal numeric ID of the user. | +| project_id | string | The project identifier. Usually a ULID for new projects; legacy Firebase-style for older migrated projects. | +| group_id | string | Public group identifier within the project (e.g. `g183`). | +| task_id | string | Public task identifier; for tile-based projects formatted as `TileZ-TileX-TileY`. | +| user_id | string | The Firebase user ID of the contributor. | +| timestamp | string | When the result was recorded (ISO 8601 with timezone). | +| start_time | string | When the user started the task (ISO 8601 with timezone). | +| end_time | string | When the user finished the task (ISO 8601 with timezone). | +| app_version | string | MapSwipe app version that produced the result (e.g. `0.3.2`). | +| client_type | string | Client used to submit (e.g. `web`, `mobile`). | +| result | integer | The classification submitted by the user (e.g. 0 = no, 1 = yes, 2 = maybe, 3 = bad imagery for Find Features). | +| username | string | The display name of the contributor. | + +## Sample download + +A 10-row preview is shipped alongside these docs for reference. **It is not the live dataset** — for the full export, see the [MapSwipe data page](https://mapswipe.org/en/data/). The live file is delivered as gzipped CSV (`.csv.gz`) — unzip before use; the sample below is already decompressed. + +- `results_{project_id}.csv`, e.g. [results_2962.csv](/assets/docs/about_data/files/project_exports/results_2962.csv) diff --git a/docs/about_data/tasks.md b/docs/about_data/tasks.md new file mode 100644 index 0000000..4e48067 --- /dev/null +++ b/docs/about_data/tasks.md @@ -0,0 +1,33 @@ +--- +title: Tasks +parent: About the Data +nav_order: 10 +permalink: /docs/about_data/tasks/ +--- + +# Tasks +This lists tasks, their identifiers, groups, and geometric polygons for a specific project. + +## Schema + +One row per task, with the following columns: + +| Name | Type | Description | +| ------------------- | ------- | ----------------------------------------------------------------------------------------------------------- | +| project_internal_id | integer | Internal numeric ID of the project. | +| group_internal_id | integer | Internal numeric ID of the group containing the task. | +| task_internal_id | integer | Internal numeric ID of the task. | +| project_id | string | The project identifier. Usually a ULID for new projects; legacy Firebase-style for older migrated projects. | +| group_id | string | Public group identifier within the project. | +| task_id | string | Public task identifier; for tile-based projects formatted as `TileZ-TileX-TileY`. | +| geom | string | Task area as WKT MULTIPOLYGON (EPSG:4326). | +| tile_z | integer | Tile zoom level (tile-based project types only). | +| tile_x | integer | Tile X index (tile-based project types only). | +| tile_y | integer | Tile Y index (tile-based project types only). | +| url | string | URL to the satellite imagery tile shown to users (tile-based project types only). | + +## Sample download + +A 10-row preview is shipped alongside these docs for reference. **It is not the live dataset** — for the full export, see the [MapSwipe data page](https://mapswipe.org/en/data/). The live file is delivered as gzipped CSV (`.csv.gz`) — unzip before use; the sample below is already decompressed. + +- `tasks_{project_id}.csv`, e.g. [tasks_2962.csv](/assets/docs/about_data/files/project_exports/tasks_2962.csv) diff --git a/docs/about_data/users.md b/docs/about_data/users.md new file mode 100644 index 0000000..496da62 --- /dev/null +++ b/docs/about_data/users.md @@ -0,0 +1,31 @@ +--- +title: Users +parent: About the Data +nav_order: 11 +permalink: /docs/about_data/users/ +--- + +# Users +This dataset contains information on the individual contributions per user. This tells you for instance the most active users of this project. + +## Schema + +One row per contributor, with the following columns: + +| Name | Type | Description | +| --------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| idx | integer | Sequential row index. | +| project_id | string | The project identifier. Usually a ULID for projects created in the new system; older projects migrated from the previous system may keep their legacy Firebase-style id here. | +| user_id | string | The Firebase user ID of the contributor. | +| username | string | The display name of the contributor. | +| groups_completed | integer | Number of groups the user completed. | +| total_contributions | integer | Number of individual tasks the user completed. | +| agreeing_contributions | integer | Tasks where the user's result matches the aggregated result (e.g. tile has buildings). | +| disagreeing_contributions | integer | Tasks where the user's result differs from the aggregated result. | +| simple_agreement_score | float | Share of the user's tasks that match the aggregated result. E.g. 0.8 means the user agreed with the majority on 80% of tiles. Empty if not yet computable. | + +## Sample download + +A 10-row preview is shipped alongside these docs for reference. **It is not the live dataset** — for the full export, see the [MapSwipe data page](https://mapswipe.org/en/data/). The live file is delivered as gzipped CSV (`.csv.gz`) — unzip before use; the sample below is already decompressed. + +- `users_{project_id}.csv`, e.g. [users_2962.csv](/assets/docs/about_data/files/project_exports/users_2962.csv) diff --git a/docs/about_data/yes_maybe.md b/docs/about_data/yes_maybe.md new file mode 100644 index 0000000..e4083d9 --- /dev/null +++ b/docs/about_data/yes_maybe.md @@ -0,0 +1,24 @@ +--- +title: Moderate to High Agreement Yes Maybe Geometries +parent: About the Data +nav_order: 14 +permalink: /docs/about_data/yes_maybe/ +--- + +# Moderate to High Agreement Yes Maybe Geometries +This dataset contains all results where at least 35% of users submitted a "yes" or "maybe" classification. The output dataset depicts the union of all selected results. + +## Schema + +One feature per merged yes/maybe area, with the following `properties`: + +| Name | Type | Description | +| -------- | -------- | ------------------------------------------------------------------------------------- | +| id | integer | A sequential ID for the geometry. It has no connection to the MapSwipe data model. | +| geometry | geometry | A polygon geometry representing the merged "yes" / "maybe" area of one or more tasks. | + +## Sample download + +A 10-row preview is shipped alongside these docs for reference. **It is not the live dataset** — for the full export, see the [MapSwipe data page](https://mapswipe.org/en/data/). The live file is delivered as GeoJSON (`.geojson`). + +- `yes_maybe_{project_id}.geojson`, e.g. [yes_maybe_2962.geojson](/assets/docs/about_data/files/project_exports/yes_maybe_2962.geojson) diff --git a/docs/docs_local_development.md b/docs/docs_local_development.md deleted file mode 100644 index 6787c38..0000000 --- a/docs/docs_local_development.md +++ /dev/null @@ -1,18 +0,0 @@ -## Local - -**Prerequisite:** -```bash -gem install jekyll bundler --verbose -``` - -**Install dependencies:** -```bash -bundle install -``` -> [!IMPORTANT] -> Run this after changing the Gemfile - -**Serve:** -```bash -bundle exec jekyll serve --livereload -``` diff --git a/docs/for_project_managers.md b/docs/for_project_managers.md index d6cbbff..8b3e63e 100644 --- a/docs/for_project_managers.md +++ b/docs/for_project_managers.md @@ -1,246 +1,19 @@ -# For MapSwipe Managers - -## Becoming a project manager -Project managers can log into the manager dashboard with their MapSwipe app credentials. So, before a user can become a project manager, s/he must have an account in the MapSwipe app (web or mobile). MapSwipe app users are referred to as contributor users in the manager dashboard. - -The super admin would have to create a user for the manager dashboard using the email address the user used to sign up in the MapSwipe app. Once the manager dashboard user and the MapSwipe user account is linked, a user can log into the manager dashboard. - -### Future iteration -For new project manager requests, users would have to fill out a quick [Slackbot](https://slack.com/shortcuts/Ft09CHNNHZNX/8d0d6f7d69a1350a91b2ef33fc6d5704) survey. It will ask for simple inputs: - -* Full name -* Organization -* Contributor user email address -* Contributor user ID -* Community dashboard profile link -* Purpose - -The responses are collected altogether in a private Slack channel, which the governance team will be a part of. After confirming the intent, the appropriate channel members will reach out to the requester with an update and super admin with a request to create a project manager. - -After the pre-requisites are complete, the super admin created a project manager and get back to the requester. - -## Logging in as a project manager -Once a user has project manager rights following the above section, project managers must use their existing contributor user email address and password to sign in to the manager dashboard. - -Things to keep in mind: - -* The contributor user's email address must be verified -* Contributor user and project manager email address and password must be the same -* Resetting the password for contributor user will reset the password for project manager account as well - -> If errors persist after the details are accurate, please contact super admin - -## Removing a project manager -Similar to the project manager creation, a project manager access can be revoked by the super admin. To request a revoke of a user, please contact the super admin with the revokee's contributor user id and email address. - -## Setting up a new MapSwipe project -Any of the Missing Maps members can request a MapSwipe project. If you want to add a new project, but don't know how to do it, it will be best to reach out to the MapSwipe community via Slack. - -To set up a new project you can create a project draft through the [Manager Dashboard](https://managers.mapswipe.org). Sign in with your MapSwipe account. - -In order to create new projects you need dedicated *project manager credentials*. Reach out to the MapSwipe community if you don't have these already. Once you're signed in, you will see a screen similar to the one below. - -![](/assets/docs/for_project_managers/images/gg8rrc0f2gbj2jxvcvsmzf3vs.png) - -You can go to the **Project** page where all the projects are listed. From there, press the **New Project** button after which you'll be navigated to the 'Create a New Project' page which will look like following. - -![](/assets/docs/for_project_managers/images/mvgb206fzqs57kfr9h5n8gdnj.png) - -### Summarized Flow -Creating a project in MapSwipe is segregated into different phases. -- Phase: Initialize -- Phase: Draft -- Phase: Processing -- Phase: Processed -- Phase: Publishing -- Phase: Published -- Phase: Finished - -![](/assets/docs/for_project_managers/images/f8zjalqw2gsuus41dqxjts9zp.png) - - -The overall flow can be summarized as below: -1. Create a new project up to the 'Draft' phase and save the project -![](/assets/docs/for_project_managers/images/a376fgsxlx3ha88ytl2041s17.png) -2. Create a new tutorial for the project by selecting the above created project as reference project type. This will pre-fill the AOI used for the project. -![](/assets/docs/for_project_managers/images/ckyqksrh3am2sl5wphc1hrwnq.png) -3. Continue creating the full tutorial for the project -![](/assets/docs/for_project_managers/images/d0d2ebebj8bcs603x998blfyd.png) -4. Continue creating the project that was in at least the 'Processed' phase by attaching the tutorial and publish the project -![](/assets/docs/for_project_managers/images/sslr28sqb0d5e9a5u4x2o02us.png) - -## Tutorials -All the tutorials in MapSwipe are listed in a dedicated page. Users have the ability to quickly find the tutorial by adding filters as well as expand the tutorial to check more details with the 'Show details' button. -![](/assets/docs/for_project_managers/images/e0097t8fy1dwbdiq3w5lnc7c6.png) - - -### Tutorial creation flow -Please follow the steps below to create a tutorial - -- Section: General - - A clear tutorial title should be added -- Section: Reference project - - An existing project should be selected (regardless of the project status) - - A tutorial geojson should be created from the project's AOI geojson file by downloading or to opening in [geojson.io](https://geojson.io) -![](/assets/docs/for_project_managers/images/nuga31epv6cgt4qzs6ivdvwun.png) - -- Section: Information pages - - The information page should give users the general information of the tutorial - - There should be a minimum 1 information page, which can also be added as much as necessary - - A page should consist of at least a `title` and `block` - - Multiple blocks can be added for a single page -![](/assets/docs/for_project_managers/images/xz661zi0zgwf3em27ei6tu420.png) - -- Section: Scenario pages - - The tutorial geojson created earlier (or an existing one) should be uploaded here - - The scenarios will be populated and rendered from the uploaded geojson - - Scenarios can be removed as required - - Each scenario should include three cases: `instruction`, `hint`, and `success` - - Appropriate icon should be selected for each case from the existing list of icons - - Appropriate title should be set for each case - - Appropriate description should be set for for each case - - The reference for each task can be updated from the dashboard as needed -![](/assets/docs/for_project_managers/images/zat2m8j2f5y20yxx87mmb6nly.png) +--- +title: For Project Managers +nav_order: 6 +has_children: true +has_toc: false +permalink: /docs/for_project_managers/ +--- -- Clicking the 'Submit tutorial' button will begin the tutorial creation process and mark it as a `PUBLISHED` tutorial -![](/assets/docs/for_project_managers/images/cd08aoxa5tai2bmb0m388vggx.png) - -### Tutorial states -- DRAFT: Tutorial is in a `draft` state when the tutorial creation has begun. -- PUBLISHED: Tutorial is in a `published` state when the tutorial is processed and complete. -- ARCHIVED: Tutorial is in an `archived` state when the tutorial is no longer required to be visible. -- DISCARDED: Tutorial is in a `discarded` state when the tutorial is no longer relevant or needed. - -### Tutorial states flow -A tutorial begins in the **draft** phase, from which it can either be **published** or **discarded**. If the publishing process fails, the tutorial enters the **publishing failed** state, where it can either be **discarded** or moved back to **ready to process** state. A tutorial in the **ready to process** state can either be successfully published or fail to publish, returning it to **publishing failed**. Once **published**, a tutorial can be moved to the **archived** state, and an **archived** tutorial can be **published** again. - -### Tutorial edit flow -Project managers have the ability to edit the details of the published tutorial except for the tutorial's area of interest geojson that is already processed. - -## Projects -All the projects in MapSwipe are listed in this dedicated page. Users have the ability to quickly find the project by adding filters as well as expand the project to check more details with the 'Show details' button. -![](/assets/docs/for_project_managers/images/dh6psk46oypuyr754yabbtuzv.png) - -### Project creation flow -Please follow the steps below to create a project - -- Phase: Initialize - - A **project type** should be selected - - The fields should be populated under the **General** section - - Clicking the 'Save Draft' button will save the project in a DRAFT stage - - Users can save the draft of the project and come back to complete the creation process anytime moving forward -![](/assets/docs/for_project_managers/images/l0f0lt2zuxoybilpqf9hygkls.png) -- Phase: Draft - - The **General** information will be populated here from the previous phase - - *Users can update the information as needed, however the project type will already be set in the previous phase* - - The fields under the **Additional** section will have default values, which can be edited as needed - - A project cover image can be uploaded, or a fallback default project type cover image will be used - - Uploading a geojson file under the **{PROJECT TYPE} specific details** is a must, after which, a tile server can be selected from the listed ones, or a custom imagery server URL can be used - - If using a custom imagery server URL, giving Imagery Credits is a must - > *The uploaded geojson will be rendered in the map window* - - A zoom level can be set, or the default level will be used - > *The higher the zoom level, the farther the satellite view* - - Users can save the project - - After the project is saved, users can process the project to move onto the next step -![](/assets/docs/for_project_managers/images/q9d1eo5lxpvw73uzsdkek1b7w.png) -- Phase: Processing - - ***The project gets processed and users are redirected to the next phase*** -- Phase: Processed - - The **General**, **Additional**, and **{PROJECT TYPE} specific details** information are populated - - *Users can update the general information as needed as well as the project cover image* - - Users can attach a tutorial of the project type from the list of options - - Users can then update the project then publish project -![](/assets/docs/for_project_managers/images/elftw4plfbki36osq99ymzei8.png) -- Phase: Published - - ***The project is published and available to map*** -- Phase: Finished - - Users can set the project as finished once the project reaches 100% - -### Project states -* DRAFT: Project is in a `draft` state when the creation process has begun and the initial form has been filled and saved by the user. -* PROCESSED: Project is in a `processed` state when the form has been processed and processed. -* PROCESSING FAILED: Project is in a `processing_failed` state when the geojson cannot be processed. -* READY_TO_PUBLISH: Project is in a `ready to publish` state when the project is ready to be published. -* PUBLISHED: Project is in a `published` state when the project is available in the applications. -* PUBLISHING_FAILED: Project is in a `processing_failed` state when the geojson cannot be processed. -* PAUSED: Project is in a `paused` state when the project is not active for mapping. -* WITHDRAWN: Project is in a `ready` state when the form has been processed and passed. -* DISCARDED: Project is in a `discarded` state when the project is no longer required. -* FINISHED: Project is in a `finished` state when the project progress has reached 100%. - -### Project states flow -A project begins in the **draft** phase, from which it can either move to **ready_to_process** or be **discarded**. If processing fails, the project enters the **processing_failed** state, where it can either be **discarded** or moved back to **ready_to_process**. A project in the **ready_to_process** state can either be successfully processed or fail, moving it to **processed** or **processed_failed**, respectively. Once processed, a project can either move forward to **ready_to_publish** or be **discarded**. From **ready_to_publish**, the project can either be **published** or fail to publish, sending it to **publishing_failed**. A project in the **publishing_failed** state can be discarded or moved back to **ready_to_publish**. Once published, a project can be **archived**, **paused**, or **withdrawn**, and if **paused**, it can be **published** again. - -### Project edit flow -Project managers now have the ability to edit the basic details of the project (as listed below) except for the area of interest geojson uploaded and processed. - -> Please note that the project must be paused before any edits can be made. - -- Project topic -- Additional info url -- Project description -- Project image -- Project instruction -- Look for (legacy field) -- Project number -- Project region -- Switch tutorial used - -### Important notes -General points of attention while creating a project: - -- Verify if the project name is clear -- The default verification count is 3. The algorithm is calculated on that. Less person looking at one square has implications on the quality of the MapSwipe data. The best results we have is with a 5 person verification. -- Re-read, correct and improve the description given through the request. -- Check if the image is the good format and if the size is not to big - max 1MB. The image will be show as a thumbnail for your project. -- Check the imagery selected available for the area, we learned that good imagery is key to keep a project going. If the imagery is not good enough or covered by clouds adjust the area. You need to zoom in till level 18. -- Max area for project type in km2 as per project types - - The max area for **View Streets** project type is capped at 20 sq km. - - The max area for **Validate Footprints** is capped at 2,500 sq km. It includes all 3 options: geojson upload, geojson external link, HOT tasking manager ID (TMID) - - The max area for **Find Features**, **Compare Dates**, and **Check Completeness** project types are calculated using the formula: ```5 * (4 ** (23 - zoom_level))``` - - Min zoom level supported: 14 - - At zoom level 14, the sq km value results approximately equal to the size of Peru. Based on this calculation, the MAX_AOI_GEOMETRY_AREA is set to 1,310,720 sq km. - - Max zoom level supported: 23 - - At zoom level 23, the sq km value results to 5 sq km. - -**For Find Features, Check Completeness and Compare Dates projects:** -- MapSwipe can only process geographical areas up to km2 calculated from the above formula. Check if the GeoJSON you received has this size. If not, you may need to split up the area into multiple pieces, and create more than one MapSwipe project out of the area. -- The GeoJSON needs to be a flat polygon, check this and change (in [geojson.io](https://geojson.io) or QGIS) if needed. - -**For Validate Footprints, View Streets projects:** -- The GeoJSON file should contain only simple Polygons. We currently don't support complex Multipolygon geometries (e.g. [polygon with holes](https://developers.google.com/maps/documentation/javascript/examples/polygon-hole)) - -Once you publish the project, they will appear in the Manager Dashboard and the mobile or web app for the users to begin mapping. Additionally, a project Slack message is also sent to the Slack channel [mapswipe-projects-notifications](https://mapswipe.slack.com/archives/C09L064N77G) with project updates coming via Slack message thread. Important Slack messages are sent in thread as well as the main channel. - -## Organizations -All the organizations, be it `active` or `archived`, are listed in the Organizations section of the home screen. Project managers can add a new organization clicking the 'New Organization' button and simply adding the organization name, description, and abbreviation. -![](/assets/docs/for_project_managers/images/m8xg27viln7dq4pl48yvnjkky.png) - -### Organization edit -Users can click on the options icon to edit the organization where all organization information can be edited - -## Managers -The home page has a section called Managers where all the project managers of MapSwipe are listed however their email address is protected. To add or remove a project manager, please refer to the 'Becoming a project manager' section above. - -![](/assets/docs/for_project_managers/images/q3028wvigvufs2evcb0k00o7w.png) - -## Contributors -The Contributors page lists all the contributor users (MapSwipe app users) that are signed up in MapSwipe. The contributor user's general stats are displayed in the card and their community dashboard profile can be opened as well including the icon - -![](/assets/docs/for_project_managers/images/mepif73mgd2w0cjy7gw0kqfc7.png) - -## User Groups -The User Group page lists all the user groups in MapSwipe where contributor users can join. - -![](/assets/docs/for_project_managers/images/ovcozy9oz66zuxk218qsvxul5.png) - -### User Groups edit -Users can click on the options icon to edit the user group where all user group information can be edited - -## Teams -The Teams page lists all the active teams along with the team's members. Only super admin has the ability to add a team that will be displayed here. +# For MapSwipe Managers -![](/assets/docs/for_project_managers/images/muml1e3e4su2dvhizxg2mipok.png) +Reference for MapSwipe project managers — how to obtain manager access, how to create projects and tutorials, and how the manager dashboard's directory pages (Organisations, Managers, Contributors, User Groups, Teams) are structured. -### Adding team members -Since Teams is a sensitive subject matter, only super admins have the ability to add users to a team. If you would like to add a team member, please reach out to the super admin +- [Managers](for_project_managers/managers.md) — the manager directory, plus how to become a manager, sign in, and revoke access. +- [Projects](for_project_managers/projects.md) — creating, processing, and publishing MapSwipe projects. +- [Tutorials](for_project_managers/tutorials.md) — creating and managing project tutorials. +- [User Groups](for_project_managers/user_groups.md) — community-managed groups contributors can join. +- [Contributors](for_project_managers/contributors.md) — MapSwipe app users who contribute results. +- [Organisations](for_project_managers/organisations.md) — the requesting organisations behind each project. +- [Teams](for_project_managers/teams.md) — private teams managed by the super admin. diff --git a/docs/for_project_managers/contributors.md b/docs/for_project_managers/contributors.md new file mode 100644 index 0000000..cb94b2e --- /dev/null +++ b/docs/for_project_managers/contributors.md @@ -0,0 +1,14 @@ +--- +title: Contributors +parent: For Project Managers +nav_order: 5 +permalink: /docs/for_project_managers/contributors/ +--- + +# Contributors + +The Contributors page lists all the contributor users (MapSwipe app users) that are signed up in MapSwipe. The contributor user's general stats are displayed in the card and their community dashboard profile can be opened as well including the icon. + +![](/assets/docs/for_project_managers/images/mepif73mgd2w0cjy7gw0kqfc7.png) + +Contributors cannot be created from the manager dashboard — they appear here automatically once a user signs up in the MapSwipe app (web or mobile). diff --git a/docs/for_project_managers/managers.md b/docs/for_project_managers/managers.md new file mode 100644 index 0000000..138d504 --- /dev/null +++ b/docs/for_project_managers/managers.md @@ -0,0 +1,50 @@ +--- +title: Managers +parent: For Project Managers +nav_order: 1 +permalink: /docs/for_project_managers/managers/ +--- + +# Managers + +The MapSwipe manager dashboard reuses MapSwipe app credentials, so every project manager account is linked to an existing contributor account. This page covers how that link is set up, how to sign in afterwards, and how access is revoked. + +All project managers are listed in the **Managers** section on the manager dashboard home page; email addresses are kept private. + +![](/assets/docs/for_project_managers/images/q3028wvigvufs2evcb0k00o7w.png) + +## Becoming a project manager + +Project managers sign into the manager dashboard with their MapSwipe app credentials. So before anyone can become a project manager, they must already have a MapSwipe app account (web or mobile) — referred to as a *contributor user* in the manager dashboard. + +The super admin then creates a manager-dashboard user with the same email address the contributor signed up with. Once the two accounts are linked, the user can sign in to the dashboard. + +### Future iteration + +The plan is to streamline new manager requests with a [Slackbot survey](https://slack.com/shortcuts/Ft09CHNNHZNX/8d0d6f7d69a1350a91b2ef33fc6d5704) that asks for: + +- Full name +- Organisation +- Contributor user email address +- Contributor user ID +- Community dashboard profile link +- Purpose + +Responses land in a private Slack channel monitored by the governance team. Once the intent is confirmed, channel members reach out to the requester with an update and ask the super admin to create the manager account. The super admin then provisions the account and follows up with the requester. + +## Logging in as a project manager + +Once your account has manager rights, sign in to the manager dashboard with the same email and password you use for the MapSwipe app. + +Things to keep in mind: + +- The contributor user's email address must be verified. +- The contributor and project manager email and password are shared — they must remain identical. +- Resetting your password as a contributor also resets your manager dashboard password. + +> [!NOTE] +> If errors persist even when the details look correct, contact the super admin. + +## Removing a project manager + +Manager access is revoked by the super admin, mirroring how it's granted. To request a revoke, contact the super admin with the user's *contributor user ID* and *email address*. diff --git a/docs/for_project_managers/organisations.md b/docs/for_project_managers/organisations.md new file mode 100644 index 0000000..e8a3f45 --- /dev/null +++ b/docs/for_project_managers/organisations.md @@ -0,0 +1,30 @@ +--- +title: Organisations +parent: For Project Managers +nav_order: 6 +permalink: /docs/for_project_managers/organisations/ +--- + +# Organisations + +An organisation has a **name**, an **abbreviation**, and a **description**. All the organisations are listed in the Organisations section of the home screen, including both `active` and `archived` ones. + +![](/assets/docs/for_project_managers/images/m8xg27viln7dq4pl48yvnjkky.png) + +Managers cannot add contributors to an organisation — contributors join and leave organisations themselves from the MapSwipe app. + +## Creating an Organisation + +Click the **New Organisation** button on the Organisations section of the home screen and fill in the name, abbreviation, and description. + +## Editing an Organisation + +Click the options icon next to an organisation to update its name, abbreviation, or description. + +## Archiving an Organisation + +An organisation can be archived when it should no longer be available for new projects. Archived organisations: + +- Remain visible in the Organisations listing, tagged `archived`. +- Remain visible on the community dashboard. +- Are hidden from the organisation picker on the project creation form — they cannot be selected for any new project. diff --git a/docs/for_project_managers/projects.md b/docs/for_project_managers/projects.md new file mode 100644 index 0000000..7c5dc7b --- /dev/null +++ b/docs/for_project_managers/projects.md @@ -0,0 +1,220 @@ +--- +title: Projects +parent: For Project Managers +nav_order: 2 +permalink: /docs/for_project_managers/projects/ +--- + +# Projects + +Any Missing Maps member can request a MapSwipe project. If you want to add a new project but aren't sure how, reach out to the MapSwipe community on Slack first. + +All projects are listed on the **Project** page of the [Manager Dashboard](https://managers.mapswipe.org). Managers can filter the list and expand each entry with the **Show details** button to inspect a project. + +![](/assets/docs/for_project_managers/images/dh6psk46oypuyr754yabbtuzv.png) + +## Creating a Project + +To set up a new project, sign in to the [Manager Dashboard](https://managers.mapswipe.org) with your MapSwipe account. You'll need dedicated *project manager credentials* — reach out to the MapSwipe community if you don't have them yet. Once signed in, you'll see a home screen similar to the one below. + +![](/assets/docs/for_project_managers/images/gg8rrc0f2gbj2jxvcvsmzf3vs.png) + +Go to the **Project** page and press the **New Project** button to open the *Create a New Project* form. + +![](/assets/docs/for_project_managers/images/mvgb206fzqs57kfr9h5n8gdnj.png) + +At a glance, the end-to-end flow looks like: + +1. Create the project up to the `Draft` stage and save it. + ![](/assets/docs/for_project_managers/images/a376fgsxlx3ha88ytl2041s17.png) +2. Create a tutorial for the project, picking the new project as the reference project type. The tutorial pre-fills its AOI from the project. + ![](/assets/docs/for_project_managers/images/ckyqksrh3am2sl5wphc1hrwnq.png) +3. Complete the rest of the tutorial. + ![](/assets/docs/for_project_managers/images/d0d2ebebj8bcs603x998blfyd.png) +4. Return to the project (now in at least the `Processed` stage), attach the tutorial, and publish. + ![](/assets/docs/for_project_managers/images/sslr28sqb0d5e9a5u4x2o02us.png) + +## Creating a Project in Detail + +### Initialize + +*Get started with the basic details of the project.* + +- Select a **project type**. +- Populate the fields under the **General** section. +- Click **Save Draft** to save the project in the `Draft` state. +- You can return to the draft at any time to continue creating the project. + +![](/assets/docs/for_project_managers/images/l0f0lt2zuxoybilpqf9hygkls.png) + +### Draft + +*Update the basic and project-type-specific details. You can update most of the fields during this stage.* + +- The **General** information is already populated from the previous stage. + - You can edit it as needed; however, the project type is locked at this stage. +- Fields under the **Additional** section come with default values that can be edited. + - Upload a project cover image, or the default cover for the project type will be used. +- Fill in the **Project type specific details** section. The form changes per project type — see the [Project Types](../project_types.md) docs for each type's exact fields. +- Save the project. +- Once saved, submit the project for processing to move to the next stage. + +![](/assets/docs/for_project_managers/images/q9d1eo5lxpvw73uzsdkek1b7w.png) + +### Processing + +*The project is being processed to create tasks, groups, and other necessary information. This might take a while depending on the inputs you've provided.* + +### Processed + +*The project has been processed successfully — add a tutorial and proceed to publish.* + +- The **General**, **Additional**, and **Project type specific details** sections are now populated. + - You can update the general information and the project cover image. +- Attach a tutorial of the matching project type from the list of options. + - If no suitable tutorial exists, or the project needs a custom tutorial, [create the tutorial first](./tutorials.md#creating-a-tutorial) and come back to continue project creation. +- Save the updated project, then publish it. + +### Publishing + +*The project is being published to Firebase. Once completed, users will be able to contribute to it.* + +### Published + +*The project is published and available to users for swiping.* + +Once published, the project appears on the Manager Dashboard and in the mobile and web apps for contributors to begin mapping. A project notification is also posted to the [mapswipe-projects-notifications](https://mapswipe.slack.com/archives/C09L064N77G) Slack channel, with subsequent updates following in that message's thread; important updates are mirrored to the channel itself. + +## Important notes when creating a project + +General things to watch out for while creating a project: + +- Make sure the project name is clear. +- The default verification count is `3` — the progress algorithm assumes that baseline. Fewer people looking at each task reduces data quality; the best results we've seen come from a 5-person verification. +- Re-read, correct, and improve the description that came with the request. +- Check the cover image format and size (max 1 MB); it's used as the project thumbnail. +- Check the available satellite imagery for the area; good imagery is essential to keep a project going. If the imagery is unusable (poor resolution, cloud cover, etc.), adjust the area. Zoom to level 18 to inspect it. + +### Maximum allowed area for a project + +Each project type has its own maximum area of interest (AOI). + +#### Find Features + +The maximum AOI size depends on the project's zoom level, calculated by the formula `5 * (4 ** (23 - zoom_level))` sq km. Supported zoom levels range from `14` to `23`: + +| Zoom level | Max AOI area (sq km) | +|-----------:|-----------------------------:| +| `14` | `1,310,720` (≈ size of Peru) | +| `15` | `327,680` | +| `16` | `81,920` | +| `17` | `20,480` | +| `18` | `5,120` | +| `19` | `1,280` | +| `20` | `320` | +| `21` | `80` | +| `22` | `20` | +| `23` | `5` | + +At zoom level `14`, the maximum (`1,310,720` sq km) corresponds to the `MAX_AOI_GEOMETRY_AREA` constant in the backend. + +The AOI GeoJSON must be a flat polygon. If your input exceeds the maximum for the chosen zoom level, split it into smaller pieces and create one project per piece — use [geojson.io](https://geojson.io) or QGIS to inspect or convert geometries. + +#### Validate Footprints + +The maximum AOI size is `2,500` sq km. This applies to all three creation methods: GeoJSON upload, GeoJSON external link, and HOT Tasking Manager ID (TMID). + +The GeoJSON file should contain only simple polygons. Complex multi-polygon geometries (such as [polygons with holes](https://developers.google.com/maps/documentation/javascript/examples/polygon-hole)) are not supported. + +#### Compare Dates + +Same maximum AOI size and GeoJSON rules as [Find Features](#find-features). + +#### Check Completeness + +Same maximum AOI size and GeoJSON rules as [Find Features](#find-features). + +#### View Streets + +The maximum AOI size is `20` sq km. + +The GeoJSON file should contain only simple polygons. Complex multi-polygon geometries (such as [polygons with holes](https://developers.google.com/maps/documentation/javascript/examples/polygon-hole)) are not supported. + +## Editing a Project + +Project managers can edit a project's basic details, listed below. The area-of-interest GeoJSON is locked once processed and cannot be changed. + +> [!NOTE] +> The project must be paused before any edits can be made. + +- Project topic +- Additional info URL +- Project description +- Project image +- Project instruction +- Look for (legacy field) +- Project number +- Project region +- Tutorial used + +## Pausing and Resuming a Project + +A published project can be **paused** to temporarily stop accepting contributions — paused projects don't appear in the MapSwipe app. Pausing is also required before editing a project. A paused project can be **resumed** back to `Published` at any time. + +## Withdrawing a Project + +A published project can be **withdrawn** when it should be permanently retracted from the app. `Withdrawn` is a terminal status — once withdrawn, the project cannot leave it. + +## Finishing a Project + +A published project can be marked as **finished** by a manager at any time, regardless of progress percentage. `Finished` is a terminal status — once finished, the project cannot leave it. + +## Discarding a Project + +Discarding retires a project that has not yet reached `Published`. It's available while the project is still in `Draft` or `Processed`, or after a failed processing or publishing attempt (`Processing Failed`, `Publishing Failed`). Once a project is published, use **Withdraw** instead. + +## Status flow + +Every project moves through one of the following statuses: + +| Status | Meaning | +|---------------------|----------------------------------------------------------------------------------------------------------------------| +| `Draft` | Creation has begun; the manager has saved the initial form but has not yet submitted the project for processing. | +| `Ready to Process` | The project is queued for the background job that validates and tiles the GeoJSON. | +| `Processing Failed` | Background processing did not complete; the project can be retried or discarded. | +| `Processed` | Processing finished; the manager can now attach a tutorial and submit for publishing. | +| `Ready to Publish` | The project is queued for the background job that makes it available in the apps. | +| `Publishing Failed` | Background publishing did not complete; the project can be retried or discarded. | +| `Published` | The project is live in the MapSwipe app and accepting mapping contributions. | +| `Paused` | A published project that is temporarily not accepting contributions; can be resumed back to `Published`. | +| `Withdrawn` | A published project that has been intentionally retracted from the app. Terminal. | +| `Finished` | A published project that a manager has marked as finished — at any time, regardless of progress. Terminal. | +| `Discarded` | The project was retired before reaching `Published`. Terminal. | + +```mermaid +stateDiagram-v2 + direction TB + state "Ready to Process" as Ready_to_Process + state "Processing Failed" as Processing_Failed + state "Ready to Publish" as Ready_to_Publish + state "Publishing Failed" as Publishing_Failed + + Draft --> Ready_to_Process : process + Draft --> Discarded : discard + Ready_to_Process --> Processed : background job succeeds + Ready_to_Process --> Processing_Failed : background job fails + Processing_Failed --> Ready_to_Process : retry + Processing_Failed --> Discarded : discard + Processed --> Ready_to_Publish : publish + Processed --> Discarded : discard + Ready_to_Publish --> Published : background job succeeds + Ready_to_Publish --> Publishing_Failed : background job fails + Publishing_Failed --> Ready_to_Publish : retry + Publishing_Failed --> Discarded : discard + Published --> Paused : pause + Published --> Withdrawn : withdraw + Published --> Finished : mark finished + Paused --> Published : resume +``` + +The four arrows out of `Ready to Process` and `Ready to Publish` are driven by background jobs rather than manager actions; every other arrow corresponds to a manager action taken from the dashboard. diff --git a/docs/for_project_managers/teams.md b/docs/for_project_managers/teams.md new file mode 100644 index 0000000..ff88ec0 --- /dev/null +++ b/docs/for_project_managers/teams.md @@ -0,0 +1,28 @@ +--- +title: Teams +parent: For Project Managers +nav_order: 7 +permalink: /docs/for_project_managers/teams/ +--- + +# Teams + +The Teams page lists all the teams along with their members, including both `active` and `archived` ones. Only super admin has the ability to add a team that will be displayed here. + +![](/assets/docs/for_project_managers/images/muml1e3e4su2dvhizxg2mipok.png) + +## Team Membership +Only super admins can add or remove users from a team. If you would like to add or remove a team member, please reach out to the super admin. + +## Project Visibility +Teams scope which projects a contributor sees: + +- A contributor added to a team will only see projects belonging to that team — other projects become invisible to them. +- A project created under a team is only visible to members of that team. + +## Archiving a Team +A team can be archived (by the super admin) when it should no longer be available for new projects. + +Archived teams: +- Remain visible in the Teams listing, tagged `archived`. +- Are hidden from the team picker on the project creation form — they cannot be assigned to any new project. diff --git a/docs/for_project_managers/tutorials.md b/docs/for_project_managers/tutorials.md new file mode 100644 index 0000000..e649e55 --- /dev/null +++ b/docs/for_project_managers/tutorials.md @@ -0,0 +1,92 @@ +--- +title: Tutorials +parent: For Project Managers +nav_order: 3 +permalink: /docs/for_project_managers/tutorials/ +--- + +# Tutorials + +A tutorial walks new contributors through what a project asks them to do. + +All tutorials are listed on a dedicated page. Managers can filter the list and expand each entry with the **Show details** button to inspect a tutorial. + +![](/assets/docs/for_project_managers/images/e0097t8fy1dwbdiq3w5lnc7c6.png) + +A tutorial is always tied to an existing reference project — its project type is derived from that project. + +## Creating a Tutorial + +A tutorial is tied to a reference project. The tutorial inherits its project type from that project, so the reference project must already exist. + +Fill in each of the sections below in turn. + +### General + +- Set a clear tutorial title. +- Pick an existing reference project (any status). + +### Information Pages + +The introductory pages shown to contributors. At least one page is required; each page needs a `title` and one or more blocks. + +![](/assets/docs/for_project_managers/images/xz661zi0zgwf3em27ei6tu420.png) + +### Scenario Pages + +Scenario pages are populated via a JSON import. The expected format varies per project type — build the import file from the reference project's **Processed Tasks**. + +![](/assets/docs/for_project_managers/images/nuga31epv6cgt4qzs6ivdvwun.png) + +Once imported, one scenario is generated per entry. For each scenario, provide `instruction`, `hint`, and `success` content (each with an icon, a title, and a description). The reference answer for every task can be adjusted from the dashboard. + +![](/assets/docs/for_project_managers/images/zat2m8j2f5y20yxx87mmb6nly.png) + +### Submit + +Click **Submit tutorial** to start publishing — the tutorial moves to `Ready to Publish` and is processed by a background job. + +![](/assets/docs/for_project_managers/images/cd08aoxa5tai2bmb0m388vggx.png) + +## Editing a Tutorial + +Project managers can edit a tutorial's details after it has been published. The area-of-interest GeoJSON is locked once processed and cannot be changed. + +## Archiving a Tutorial + +A tutorial can be **archived** when it should no longer be available for new projects. Archived tutorials cannot be selected when creating or updating a project; if the tutorial is needed again, it can be moved back to `Published`. + +## Discarding a Tutorial + +Discarding retires a tutorial that has not yet reached `Published`. It's available while the tutorial is still in `Draft`, or after a failed publish attempt (`Publishing Failed`). Once a tutorial is published, archive it instead. + +## Status flow + +Every tutorial moves through one of the following statuses: + +| Status | Meaning | +|---------------------|------------------------------------------------------------------------------------------------------| +| `Draft` | Creation has begun; details are still being filled in. | +| `Ready to Publish` | The tutorial is queued for the background job that processes it. | +| `Publishing Failed` | Background processing did not complete; the tutorial can be retried or discarded. | +| `Published` | Processing finished; the tutorial is available to attach to projects. | +| `Archived` | The tutorial is hidden from the tutorial picker on projects; can be moved back to `Published`. | +| `Discarded` | The tutorial was retired before reaching `Published`. Terminal. | + +```mermaid +stateDiagram-v2 + direction TB + state "Ready to Publish" as Ready_to_Publish + state "Publishing Failed" as Publishing_Failed + + Draft --> Ready_to_Publish : submit + Draft --> Discarded : discard + Ready_to_Publish --> Published : background job succeeds + Ready_to_Publish --> Publishing_Failed : background job fails + Publishing_Failed --> Ready_to_Publish : retry + Publishing_Failed --> Discarded : discard + Published --> Archived : archive + Archived --> Published : unarchive +``` + +The two arrows out of `Ready to Publish` are driven by a background job rather than manager actions; every other arrow corresponds to a manager action taken from the dashboard. diff --git a/docs/for_project_managers/user_groups.md b/docs/for_project_managers/user_groups.md new file mode 100644 index 0000000..b5ef17a --- /dev/null +++ b/docs/for_project_managers/user_groups.md @@ -0,0 +1,28 @@ +--- +title: User Groups +parent: For Project Managers +nav_order: 4 +permalink: /docs/for_project_managers/user_groups/ +--- + +# User Groups + +A user group has a **name** and a **description**. All the user groups are listed in the User Groups section, including both `active` and `archived` ones. + +![](/assets/docs/for_project_managers/images/ovcozy9oz66zuxk218qsvxul5.png) + +Managers cannot add contributors to a user group — contributors join and leave user groups themselves from the MapSwipe app. + +## Creating a User Group +Click the **New User Group** button on the User Groups page and fill in the name and description. + +## Editing a User Group +Click the options icon next to a user group to update its name or description. + +## Archiving a User Group +A user group can be archived when it should no longer accept new contributors. + +Archived user groups: +- Remain visible in the User Groups listing, tagged `archived`. +- Remain visible on the community dashboard. +- Cannot be joined by contributors from the MapSwipe app. diff --git a/docs/overview.md b/docs/overview.md index c6512f0..f56c48e 100644 --- a/docs/overview.md +++ b/docs/overview.md @@ -1,77 +1,19 @@ -# MapSwipe Overview +--- +title: Overview +nav_order: 2 +permalink: /docs/overview/ +--- -## A typical MapSwipe workflow - -1. Project managers upload information about their projects (e.g. area of interest, objects to look for) to backend, which will sync information to Firebase in realtime database, using the **manager dashboard**. -2. A tutorial must be attached to the projects using existing tutorials or a new one in the final phase of project creation before the publishing it. -3. After the project is published from the **manager dashboard**, relevant groups and tasks are created in the backend and synced with Firebase -4. The users of the MapSwipe app contribute to the projects and submit their results via app which will be stored in backend as well as Firebase realtime database. The **firebase rules** ensure, that app users can only change pre-defined parts of the firebase realtime database. -5. Once new results are submitted, the **backend** and **firebase functions** generate real-time statistics and update the progress of groups, compute project level statistics and user statistics in the backend and firebase realtime database. -6. All results are synchronized with **backend** and **firebase** on defined basis (e.g. every 10 minutes). The backend database holds all MapSwipe results for long term storage. Once results are synced in the backend database, they will be deleted in Firebase realtime database by the workers. -7. Based on the data in the backend, the **backend** generate aggregated data and statistics (e.g. as csv files). Historically, the data was served by a simple nginx web server MapSwipe API. However, after the upgrade, the data is served by GraphQL endpoint (project query). - -## MapSwipe Architecture -### Old Architecture -
- Prev arch -
Previous MapSwipe Architectural Flow
-
- -As shown in the diagram above, we had 2 different databases in the legacy system. - -1. **Firebase**: This acted as the primary database. It interfaced directly with the Manager Dashboard, Mobile App & Web App. It stored users, usergroups, draft projects, active projects (with tasks), user contributions, user swipe results (temporarily). -2. **Postgres**: This acted as secondary and long-term database. It stored users, usergroups, draft projects, all projects (with tasks), all user swipe results. - -The primary purpose for using firebase here was for auto-scaling in case of large number of submissions (potentially during the MapSwipe events). - -Furthermore, A background worker periodically synchronized (partially) the 2 databases. +# MapSwipe Overview -### New Architecture -
- New architecture -
New MapSwipe Architectural Flow
-
+This page walks through the typical MapSwipe workflow, from a project manager setting up a project through to volunteers contributing results and the data being exported. For how the underlying components fit together, see [System Architecture](system_architecture.md). -The major difference in this architecture is that, it uses Postgres as the primary database. Only MapSwipe mobile app and web app will interface with the Firebase directly. This way we'll still have scalable and reliable application while significantly reducing the usage of the Firebase database. - -**Components of the New Architecture**: - - **Python Backend**: A robust Python-based backend that supports the Manager Dashboard. - - **Django Server**: A Django-based server that centralizes data management. - - **Data Synchronization**: Tasks and processes to sync data between Postgres and Firebase. - - **REST API with Cloud Functions**: Secure REST API endpoints managed via Google Cloud Functions. - - **API-Driven Client Applications**: Updated mobile and web applications utilizing the new API infrastructure. - -### Relations -#### MapSwipe Clients (Web App & Mobile App) - Firebase Realtime Database -- MapSwipe clients are requesting some `projects`, data of a specific `users.userId`. In case of a project selection a group (`groups.projectId.groupId`) and associated tasks (`tasks.projectId.groupsId`) will be requested -- MapSwipe clients will only write to Firebase Realtime Database in case of result generation. -- MapSwipe clients are writing to `results.projectId.groupId.userId1.` in form of `timestamp` and `resultCount` attributes when and how many results were generated. -- The result itself will be written to `results.projectId.groupId.userId1.taskId1.result`. -- All of the results will be synced with backend and removed from Firebase at the end of the session - -#### Manager Dashboard - Backend Database -- As compared to the old Manager Dashboard where users can submit new project drafts to Firebase (`project_drafts.projectDraftId.`), users will now be able to complete the whole project creation journey from the Manager Dashboard without having to wait for Slack notification about successful creation notification or failed to create notification. - -#### Community Dashboard - Aggregated Cached Data from Backend Database -- React based static server which uses Django webserver to show overall mapswipe aggregated contribution data. - -#### MapSwipe Backend -- projectCreation: - - writes to `projects.projectId`, `groups.projectId` and `tasks.projectId` in Firebase -- transfer_results - Realtime Database - - requests `results` from Realtime Database - - deletes `results` from Realtime Database - -#### MapSwipe Backend - Postgres Database -- projectCreation - Postgres - - writes project, groups and tasks to Postgres database -- transfer_results - Postgres - - writes results to Postgres database +## A typical MapSwipe workflow -#### Django - Stats webserver -- aggregateStatData: - - requires user contribution related to user_group and project data from Postgres Database +1. Project managers use the **Manager Dashboard** to upload project information (e.g. area of interest, objects to look for) to the backend, which syncs it to the Firebase Realtime Database. +2. In the final phase of project creation, a tutorial must be attached before the project can be published — either an existing shared tutorial or one specialised for the project. +3. Once the project is published from the **Manager Dashboard**, the backend creates the relevant groups and tasks and syncs them to Firebase. +4. Users of the MapSwipe app contribute to projects and submit their results through the app; these are stored in both the Firebase Realtime Database. **Firebase rules** ensure that app users can only change pre-defined parts of the Firebase Realtime Database. +5. As new results arrive, **Firebase functions** and the **backend** generate real-time statistics — updating group progress and computing project and user statistics. +6. Results are synchronised between the **backend** and **Firebase** on a defined schedule (e.g. every 10 minutes). The backend database holds all MapSwipe results for long-term storage; once results are synced and then deletes them from the Firebase Realtime Database. +7. The **backend** then generates aggregated data and statistics from this stored data and serves them via its GraphQL endpoint. diff --git a/docs/project_types.md b/docs/project_types.md new file mode 100644 index 0000000..4595d71 --- /dev/null +++ b/docs/project_types.md @@ -0,0 +1,145 @@ +--- +title: Project Types +nav_order: 4 +has_children: true +permalink: /project_types/ +--- + +# MapSwipe Project Types and Data Model +## MapSwipe's Crowdsourcing Approach +The MapSwipe crowdsourcing workflow is designed following an approach already presented by [Albuquerque et al. (2016)](https://www.mdpi.com/2072-4292/8/10/859). The main ideas about MapSwipe's crowdsourcing approach (and many other crowdsourcing tasks) lies in +1. **Defining** the mapping challenge by posing a simple question (e.g. "Which areas are inhabited in South Kivu?") +2. **Dividing** the overall challenge into many smaller manageable components (e.g. *groups* and *tasks* based on satellite imagery tiles) +3. **Distributing** *groups* and *tasks* to many users redundantly (e.g. every area gets mapped by at least three different users) +4. **Aggregating** all responses (*results*) per *task* from different users to reach a final solution (e.g. by choosing the majority vote) + +The MapSwipe backend now supports 6 **project types**. Each project type formulates a specific kind of mapping challenge — follow the links for a description, screenshot, and data model details for each one. + +- [Find Features](project_types/find_features.md) +- [Validate Footprints](project_types/validate_footprints.md) +- [Compare Dates](project_types/compare_dates.md) +- [Assess Images](project_types/assess_images.md) +- [Check Completeness](project_types/check_completeness.md) +- [View Streets](project_types/view_streets.md) + + +## Data Model +This way of formulating the overall crowdsourcing challenge and it's subcomponents shapes the **data model** we use. + +Below you can see the structure on the example of a Find Features project type. The project manager supplies a bounding polygon, which is then divided into multiple groups, which are in turn divided into multiple tasks. Results are always bound to a task and what a result means differs by project type. + +![](/assets/project_types/project_types/mapswipe_data_model.png) + +### Projects +A **project** is the top-level unit of work in MapSwipe — what a project manager creates when they want to crowdsource a mapping challenge. It carries everything needed to present the challenge to contributors in the MapSwipe app: the area of interest, the question being asked (the *lookFor*), the project's topic and region, the requesting organisation, an attached tutorial, and contributor-facing instructions. It also captures the project's lifecycle (draft → active → finished, with team-restricted *private* variants) and the redundancy required before a task is treated as complete. + +A project is divided into several **groups**, which are in turn divided into individual **tasks**. Aggregate fields such as `progress`, `contributorCount`, and `resultCount` summarise activity rolled up from the groups and results below. + +| Parameter | Type | Description | +|-------------------------------------|----------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------| +| *Basic Information* | | | +| **projectId** | string | ID of the project. | +| **name** | string | The name of the project (25 chars max). | +| **lookFor** | string (optional) | What should the users look for (e.g. buildings, cars, trees)? (15 chars max). | +| **projectType** | enum (int) | Identifies the project type: `1` = Find Features, `2` = Validate Footprints, `3` = Compare Dates, `4` = Check Completeness, `7` = View Streets, `10` = Assess Images. See the page for each project type for the type-specific fields. | +| **image** | string (optional) | URL to a representative image for the project (formerly "Direct Image Link"). Make sure you have the rights to use this image; should end with `.jpg` or `.png`. | +| **projectDetails** | string | Description of the project (3-5 sentences). | +| **projectInstruction** | string (optional) | Instructions shown to the contributor during mapping. | +| **projectTopic** | string | Topic/theme of the project (e.g. health, disaster response). | +| **projectRegion** | string | Region the project covers. | +| **projectNumber** | int | Sequential project number assigned by the manager. | +| **requestingOrganisation** | string | Name of the organisation that requested the project. | +| **language** | string | Language code of the project's user-facing copy. | +| **manualUrl** | string (optional) | URL to a manual or documentation page for contributors. | +| **tutorialId** | string | ID of the tutorial associated with this project. | +| **teamId** | string (optional) | If set, the project is restricted to members of this team. | +| **maxTasksPerUser** | int (optional) | Optional cap on the number of tasks a single user can map in this project. | +| **verificationNumber** | int | How many people should see every task before it is considered finished (default `3`; more is recommended for harder tasks). | +| **groupSize** | int | Target number of tasks per mapping session (group). | +| **groupMaxSize** | int | Upper bound on tasks per group used by the grouping algorithm. | +| **requiredResults** | int | Total number of task-mappings required to finish the project (`numberOfTasks × verificationNumber`). | +| **created** | datetime | Timestamp when the project was created. | +| **createdBy** | string | User ID of the project creator. | +| **status** | enum (string) | One of `active`, `inactive`, `private_active`, `private_inactive`, `finished`, `private_finished`. The `private_*` variants restrict visibility to the team set by `teamId`. | +| **isFeatured** | bool | If true the project will appear bigger in the app. | +| **progress** | int | Percentage of the project's required mappings that have been completed. *Updated by the backend; not auto-updated by Firebase Cloud Functions.* | +| **contributorCount** | int | Number of volunteers who have contributed. *Updated by the backend; not auto-updated by Firebase Cloud Functions.* | +| **resultCount** | int | Total number of task results submitted across all groups in the project. *Read-only from the backend; not auto-updated by Firebase Cloud Functions.* | +| **numberOfTasks** | int | Number of tasks in the project | +| *Project Type Specific Information* | | There will be varying parameters defined by the individual project types. You can find this information at the page for each project type. | + +### Groups +The **groups** are an intermediary between projects and tasks. +Each group belongs to a single project and consists of several tasks. + +Single MapSwipe projects can contain up to several hundred thousand tasks. +This can pose a challenge to fast and performant communication between clients and server if many volunteers contribute data at the same time. +Therefore, groups have been introduced to reduce the amount of client requests on the backend server. + +Groups consists of several tasks, that will be shown to the user in one mapping session. +They are the key to distribute tasks to MapSwipe users in a way that we can ensure that everything gets mapped as often as required in an efficient manner. + +| Parameter | Type | Description | +|-------------------------------------|-------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| *Basic Information* | | | +| groupId | string | ID of the group. | +| projectId | string | ID of the project the group belongs to. | +| numberOfTasks | int | How many tasks are in this group. | +| finishedCount | int | Once a group has been completely mapped by a volunteer the completed count of the corresponding group will be raised by one. The completed count of the group is used to assess the overall progress of each project.
For doing so the completed count is compared to the redundancy required. During the mapping process groups will be served in ascending completed count order. Thus, groups with low completed count will be served first.
*Updated by Firebase Cloud Functions on every write to `/v2/groupsUsers/{projectId}/{groupId}/`; set to the number of users present under that path.* | +| requiredCount | int | How many volunteers still have to map this group.
*Updated by Firebase Cloud Functions alongside `finishedCount`; computed as `project.verificationNumber − finishedCount`.* | +| progress | int | Percentage of the group that has been mapped. *Updated by the backend; not auto-updated by Firebase Cloud Functions.* | +| *Project Type Specific Information* | | There will be varying parameters defined by the individual project types. You can find this information at the page for each project type. | + +### Tasks +The **tasks** are the smallest component in our data model. +Each task formulates an easy and quick to solve mapping challenge. +In many cases this challenge can be put into a simple question, e.g. *Can you see a building in this satellite imagery tile*. +Tasks always belong to a specific group and project. + +Tasks are usually gzip compressed on firebase to save space. That is why this information is not readable by humans in firebase. + +| Parameter | Type | Description | +|-------------------------------------|----------------------------|--------------------------------------------------------------------------------------------------------------------------------------------| +| *Basic Information* | | | +| **taskId** | string | ID of the task. (Some project types use a different type — see the page for each project type.) | +| **groupId** | string | ID of the group the task belongs to. | +| **projectId** | string | ID of the project the task belongs to. | +| *Project Type Specific Information* | | There will be varying parameters defined by the individual project types. You can find this information at the page for each project type. | + + +### Results +The **results** hold the information you wanted in the very beginning. +For each task you will receive several results by different users. +A result is the simple answer to your initial question. +For instance, it's a simple "yes" to the question "can you see a building in this satellite imagery tile". + +A result entry is a single document at `/v2/results/{projectId}/{groupId}/{userId}` representing one finished mapping session — i.e. one user's answers for all tasks in one group. + +| Parameter | Type | Description | +|------------|-------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| startTime | datetime | Client-reported time at which the user began the mapping session for the group. | +| endTime | datetime | Client-reported time at which the user finished the mapping session for the group. Together with `startTime` this is used by Firebase Cloud Functions to detect implausibly fast (likely spam) submissions. | +| appVersion | string | MapSwipe app version string that submitted the result (e.g. `2.2.5 (14)-dev`). Submissions from older app versions without this field are discarded for some project types. | +| clientType | string (optional) | Identifier for the client that produced the result (e.g. mobile vs. web). | +| results | `dict[str, int]` | The user's per-task answers, keyed by `taskId`. The integer encoding is project-type specific — see the relevant project type page for the value space and any deviations from this shape. | +| userGroups | `dict[str, bool]` | Map of non-archived user-group IDs the user belonged to at submission time. *Updated by Firebase Cloud Functions on result `onCreate` if the user has any non-archived user groups.* | + + +### Users +The **users** provide the results to your tasks. +They are the key to solve your mapping challenge. +For each user we generate mapping related statistics, e.g. the number of projects a user has been worked on. + +| Parameter | Type | Description | +| ------------------------ | -------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| created | datetime | Timestamp when the user account was created. | +| lastAppUse | datetime (optional) | Timestamp of the user's most recent activity in the app. | +| username | string (optional) | User-chosen display name. *Changes to this field trigger a Firebase Cloud Function that queues a sync flag at `/v2/updates/users/{userId}` for synchronizing with PSQL database.* | +| usernameKey | string (optional) | Normalized (lowercase) form of `username` used for lookup/uniqueness. Backfilled for existing users by a migration endpoint. | +| accessibility | bool (optional) | Per-user accessibility preference flag. | +| teamId | string (optional) | ID of the team the user belongs to, when applicable. This is the only user field that the backend is allowed to update directly. | +| userGroups | `dict[str, any]` (optional)| Map of user-group IDs the user belongs to. Populated by the user-group membership flow. | +| contributions | `dict[str, any]` (optional)| Per-project contribution record, keyed by `projectId`. *Auto-populated by Firebase Cloud Functions on each result `onCreate`*: sets `contributions/{projectId}/{groupId}` to `true` and increments `contributions/{projectId}/taskContributionCount` by the number of tasks in the submission. | +| projectContributionCount | int (optional) | Number of distinct projects the user has contributed to. *Auto-updated by Firebase Cloud Functions on every write to `/v2/users/{userId}/contributions/`; set to the count of project keys under that path.* | +| groupContributionCount | int (optional) | Number of groups the user has finished. *Auto-incremented by 1 by Firebase Cloud Functions on `onCreate` of `/v2/results/{projectId}/{groupId}/{userId}/`, the first time the user submits results for a given group.* | +| taskContributionCount | int (optional) | Total number of task results the user has submitted. *Auto-incremented by Firebase Cloud Functions on result `onCreate` by the number of task entries in `result.results`.* | diff --git a/docs/project_types/assess_images.md b/docs/project_types/assess_images.md new file mode 100644 index 0000000..688f5dc --- /dev/null +++ b/docs/project_types/assess_images.md @@ -0,0 +1,60 @@ +--- +title: Assess Images +parent: Project Types +nav_order: 4 +permalink: /project_types/assess_images/ +--- + +# Project Type - Assess Images + +An image with a bounding box (annotation) surrounding the class set by the project manager is displayed. The same image can have multiple annotations, in which case the same image is displayed again but with a different annotation. Users select one of the custom options set, usually 'Yes', 'No', 'Maybe'. + +![](/assets/project_types/project_types/images/xh147pt4dbuniejyi6maffrd9.png) + +Assess Images projects have `projectType = 10` (`VALIDATE_IMAGE`). + +## COCO File Format +The Assess Images project type is created using the following sample COCO json file, as shown in the [sample dataset](/assets/project_sample_data/assess_images/coco_sample.json). + +To build a COCO file from a folder of images you already host, see the helper examples for [Google Drive](/examples/generate-coco-from-drive/) and [Dropbox](/examples/generate-coco-from-dropbox/). + +## Project +Assess Images projects can be supplied with a COCO file. + +In addition to the common project fields documented in the [data model](../project_types.md), Assess Images projects carry the following project-type-specific fields: + +| Parameter | Type | Description | +|-------------------|-----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **customOptions** | list (optional) | Custom answer options shown to the contributor (each with a value, title, description, icon, iconColor, and optional sub-options). Defaults are Yes/No when not supplied. | + +## Group +Each group contains a set of image tasks generated from the supplied COCO file. Assess Images groups have no project-type-specific fields beyond the [common group fields](../project_types.md#groups). Each group is identified by: + +| Parameter | Type | Description | +|-------------|--------|-------------------| +| **groupId** | string | ID of the group. | + +## Task +The task structure of the Assess Images project type varies from the rest — each task references an image and an annotation (bounding box) within that image, rather than a tile coordinate: + +| Parameter | Type | Description | +|------------------|--------------------------------|--------------------------------------------------------------------------------------| +| **taskId** | string | ID of the task. | +| **url** | string | URL of the image to display. | +| **fileName** | string | Filename of the source image (from the COCO `images.file_name`). | +| **width** | int (optional) | Pixel width of the image. | +| **height** | int (optional) | Pixel height of the image. | +| **annotationId** | string (optional) | ID of the COCO annotation (bounding box) being assessed. | +| **bbox** | `list[float]` (optional) | Bounding box in COCO format `[x, y, width, height]` (pixel coordinates). | +| **segmentation** | `list[list[float]]` (optional) | Optional polygon segmentation (list of `[x, y, …]` rings) from the COCO annotation. | + +## Result +Results follow the [common result shape](../project_types.md#results), with `results: dict[str, int]` keyed by `taskId`. The integer values come from each custom option's `value` defined on the project. + +When the project creator does not supply `customOptions`, the backend falls back to the following defaults: + +| Value | Title | Description | +|-------|----------|----------------------------------------------------------| +| `0` | No | The image does not contain the feature. | +| `1` | Yes | The image contains the feature. | +| `2` | Not Sure | It's not clear if the image contains the feature. | diff --git a/docs/project_types/check_completeness.md b/docs/project_types/check_completeness.md new file mode 100644 index 0000000..5ff66e1 --- /dev/null +++ b/docs/project_types/check_completeness.md @@ -0,0 +1,59 @@ +--- +title: Check Completeness +parent: Project Types +nav_order: 5 +permalink: /project_types/check_completeness/ +--- + +# Project Type - Check Completeness + +Similar to the Find Features project type but with an addition of an overlay raster or vector layer. Currently, MapSwipe mobile app only supports raster layer while MapSwipe4Web support both. You can call it a mix of Find Features and Validate Footprints in a nutshell. + +![](/assets/project_types/project_types/images/qu4oy95b0hot07i6lei6189qj.png) + +To create a Check Completeness project, you need to add all information and upload a bounding polygon as well as fill in some information about your project. + +Check Completeness projects have `projectType = 4`. + +## Project +The structure and creation steps follow the similar pattern of the Find Features project type. + +In addition to the common project fields documented in the [data model](../project_types.md), Check Completeness projects carry the following project-type-specific fields: + +| Parameter | Type | Description | +|------------------------|--------|------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **zoomLevel** | int | Web Mercator zoom level at which tiles are served. | +| **tileServer** | object | Raster tile server configuration for the base imagery — includes a server `name`, `url`, `credits`, and an optional `apiKey`. | +| **tileServerB** | object | Raster tile server configuration for the comparison imagery — same shape as `tileServer`. | +| **overlayTileServer** | object | Overlay layer drawn on top of the imagery (raster or vector — the mobile app currently supports raster, web supports both). | + +## Group +Check Completeness groups carry tile-map-service bounding-box tile coordinates on top of the common group fields: + +| Parameter | Type | Description | +|-----------|------|------------------------------------------------------| +| **xMax** | int | Maximum tile-X coordinate covered by the group. | +| **xMin** | int | Minimum tile-X coordinate covered by the group. | +| **yMax** | int | Maximum tile-Y coordinate covered by the group. | +| **yMin** | int | Minimum tile-Y coordinate covered by the group. | + +## Task +Tasks are saved for tutorials, since their spatial information can be derived from the spatial extent of the corresponding group. Here, the tutorials are saved based on the project that it is derived from. + +| Parameter | Type | Description | +|--------------|--------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **taskX** | int | The x coordinate characterises the longitudinal position of the tile in the overall tile map system taken the zoom level into account. The x coordinates increase from west to east starting at a longitude of -180 degrees. | +| **taskY** | int | The y coordinate characterises the latitudinal position of the tile in the overall tile map system taken the zoom level into account. The latitude is clipped to range from circa -85 to 85 degrees. The y coordinates increase from north to south starting at a latitude of around 85 degrees. | +| **geometry** | string | Each task has a polygon geometry, which can be generated by its x, y and z coordinates. At the equator the task geometry is a square with an edge length of around 150 metres covering circa 0.0225 square kilometres. Due to the web Mercator projector the task geometry will be clinched with increasing distance to the equator. At the same time the area per task will decrease. | +| **url** | string | The tile URL points to the specific tile image described by the x, y, and z coordinates. Usually, the image has a resolution of 256 x 256 pixels. However, some providers also generate image tiles with higher resolution (e.g. 512 x 512 pixels). | + +## Result +Results follow the [common result shape](../project_types.md#results), with `results: dict[str, int]` keyed by `taskId`. Only the following classifications are stored: + +| Value | Meaning | +|-------|-------------| +| `1` | Yes | +| `2` | Maybe | +| `3` | Bad Imagery | + +Whenever users indicates "No" by just swiping to the next set of tasks, no data entry is created. "No" classifications can only be modelled retrospectively for groups where a user also submitted at least one "Yes", "Maybe" or "Bad Imagery" classification. diff --git a/docs/project_types/compare_dates.md b/docs/project_types/compare_dates.md new file mode 100644 index 0000000..140d7ab --- /dev/null +++ b/docs/project_types/compare_dates.md @@ -0,0 +1,56 @@ +--- +title: Compare Dates +parent: Project Types +nav_order: 3 +permalink: /project_types/compare_dates/ +--- + +# Project Type - Compare Dates + +Two images are shown, the upper picture shows a scene before e.g. a disaster, while the lower picture shows the scene afterwards. By tapping you can classify the scene as *yes*, *maybe* or *bad_imagery*. Project managers can define which objects to look for, e.g. "buildings". Furthermore, they can specify the tile server of the background satellite imagery, e.g. "bing" or a custom tile server. + +![](/assets/project_types/project_types/images/gbaxwx4wnsjdfcshyh3z7exdw.png) + +Compare Dates projects have `projectType = 3`. + +## Project +The structure and creation steps follow the similar pattern of the Find Features project type. Projects can also be created via a HOT Tasking Manager Project ID. + +In addition to the common project fields documented in the [data model](../project_types.md), Compare Dates projects carry the following project-type-specific fields: + +| Parameter | Type | Description | +|-----------------|--------|--------------------------------------------------------------------------------------------------------------------------------------------| +| **zoomLevel** | int | Web Mercator zoom level at which tiles are served. | +| **tileServer** | object | Raster tile server configuration for the "before" imagery (upper image) — includes a server `name`, `url`, `credits`, and optional `apiKey`. | +| **tileServerB** | object | Raster tile server configuration for the "after" imagery (lower image) — same shape as `tileServer`. | + +## Group +Compare Dates groups carry tile-map-service bounding-box tile coordinates on top of the common group fields: + +| Parameter | Type | Description | +|-----------|------|------------------------------------------------------| +| **xMax** | int | Maximum tile-X coordinate covered by the group. | +| **xMin** | int | Minimum tile-X coordinate covered by the group. | +| **yMax** | int | Maximum tile-Y coordinate covered by the group. | +| **yMin** | int | Minimum tile-Y coordinate covered by the group. | + +## Task + +| Parameter | Type | Description | +|--------------|-------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **taskX** | int (optional) | The x coordinate characterises the longitudinal position of the tile in the overall tile map system taken the zoom level into account. The x coordinates increase from west to east starting at a longitude of -180 degrees. | +| **taskY** | int (optional) | The y coordinate characterises the latitudinal position of the tile in the overall tile map system taken the zoom level into account. The latitude is clipped to range from circa -85 to 85 degrees. The y coordinates increase from north to south starting at a latitude of around 85 degrees. | +| **geometry** | string | Each task has a polygon geometry, which can be generated by its x, y and z coordinates. At the equator the task geometry is a square with an edge length of around 150 metres covering circa 0.0225 square kilometres. Due to the web Mercator projector the task geometry will be clinched with increasing distance to the equator. At the same time the area per task will decrease. | +| **url** | string (optional) | Image for the tile at timestamp A. The tile URL points to the specific tile image described by the x, y, and z coordinates. | +| **urlB** | string (optional) | Image for the tile after timestamp A. The tile URL points to the specific tile image described by the x, y, and z coordinates. | + +## Result +Results follow the [common result shape](../project_types.md#results), with `results: dict[str, int]` keyed by `taskId`. Only the following classifications are stored: + +| Value | Meaning | +|-------|-------------| +| `1` | Yes | +| `2` | Maybe | +| `3` | Bad Imagery | + +Whenever users indicate "No Change" by just swiping to the next task, no data entry is created. diff --git a/docs/project_types/find_features.md b/docs/project_types/find_features.md new file mode 100644 index 0000000..720af19 --- /dev/null +++ b/docs/project_types/find_features.md @@ -0,0 +1,58 @@ +--- +title: Find Features +parent: Project Types +nav_order: 1 +permalink: /project_types/find_features/ +--- + +# Project Type - Find Features + +A 6 squares layout is used for this project type. By tapping you can classify a tile of satellite imagery as *yes*, *maybe* or *bad_imagery*. Project managers can define which objects to look for, e.g. "buildings". Furthermore, they can specify the tile server of the background satellite imagery, e.g. "bing" or a custom tile server. + +![](/assets/project_types/project_types/images/qyioxvg73f3vdmmu6wlvrx3ib.png) + +Find Features projects have `projectType = 1`. + +## Project +To create a Find Features project, you need to add all information and upload a bounding polygon as well as fill in some information about your project. + +In addition to the common project fields documented in the [data model](../project_types.md), Find Features projects carry the following project-type-specific fields: + +| Parameter | Type | Description | +|----------------|--------|------------------------------------------------------------------------------------------------------------| +| **zoomLevel** | int | Web Mercator zoom level at which tiles are served. | +| **tileServer** | object | Raster tile server configuration — includes a server `name`, `url`, `credits`, and an optional `apiKey`. | + +## Group +The grouping algorithm uses the extent of a project as an input and generates chunks of tasks lying next to each other. +Each group has a height of three tasks and a width of approximately 40 tasks. + +In addition to the common group fields, Find Features groups carry tile-map-service bounding-box coordinates: + +| Parameter | Type | Description | +|-----------|------|--------------------------------------------------------------| +| **xMax** | int | Maximum tile-X coordinate covered by the group. | +| **xMin** | int | Minimum tile-X coordinate covered by the group. | +| **yMax** | int | Maximum tile-Y coordinate covered by the group. | +| **yMin** | int | Minimum tile-Y coordinate covered by the group. | + +## Task +Tasks are saved for tutorials, since their spatial information can be derived from the spatial extent of the corresponding group. Here, the tutorials are saved based on the project that it is derived from. + +| Parameter | Type | Description | +|--------------|--------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **taskX** | int | The x coordinate characterises the longitudinal position of the tile in the overall tile map system taken the zoom level into account. The x coordinates increase from west to east starting at a longitude of -180 degrees. | +| **taskY** | int | The y coordinate characterises the latitudinal position of the tile in the overall tile map system taken the zoom level into account. The latitude is clipped to range from circa -85 to 85 degrees. The y coordinates increase from north to south starting at a latitude of around 85 degrees. | +| **geometry** | string | Each task has a polygon geometry, which can be generated by its x, y and z coordinates. At the equator the task geometry is a square with an edge length of around 150 metres covering circa 0.0225 square kilometres. Due to the web Mercator projector the task geometry will be clinched with increasing distance to the equator. At the same time the area per task will decrease. | +| **url** | string | The tile URL points to the specific tile image described by the x, y, and z coordinates. Usually, the image has a resolution of 256 x 256 pixels. However, some providers also generate image tiles with higher resolution (e.g. 512 x 512 pixels). | + +## Result +Results follow the [common result shape](../project_types.md#results), with `results: dict[str, int]` keyed by `taskId`. The integer encoding for Find Features is: + +| Value | Meaning | +|-------|--------------| +| `1` | Yes | +| `2` | Maybe | +| `3` | Bad Imagery | + +Whenever users indicate "No building" by just swiping to the next set of tasks, no data entry is created. "No Building" classifications can only be modelled retrospectively for groups where a user also submitted at least one "Yes", "Maybe" or "Bad Imagery" classification. diff --git a/docs/project_types/validate_footprints.md b/docs/project_types/validate_footprints.md new file mode 100644 index 0000000..628b293 --- /dev/null +++ b/docs/project_types/validate_footprints.md @@ -0,0 +1,56 @@ +--- +title: Validate Footprints +parent: Project Types +nav_order: 2 +permalink: /project_types/validate_footprints/ +--- + +# Project Type - Validate Footprints + +An image with a footprint overlay. The question is whether this footprint is correctly approximating a structure on the shown image, which can be answered with *yes*, *no* or *Not sure*. Additionally, a button is shown which hides the footprint overlay. + +![](/assets/project_types/project_types/images/agfvdlp4ksifmdnf0wfncz36s.png) + +Validate Footprints projects have `projectType = 2`. + +## Project +Validate Footprints can be supplied with geometries in three separate ways. +1. by specifying a HOT Tasking Manager Project ID and an object [filter](https://docs.ohsome.org/ohsome-api/v1/filter.html) +2. by specifying an url to the data (e.g. an [ohsomeAPI](https://docs.ohsome.org/ohsome-api/v1/) call) +3. by uploading an aoi and an object [filter](https://docs.ohsome.org/ohsome-api/v1/filter.html) + +In addition to the common project fields documented in the [data model](../project_types.md), Validate Footprints projects carry the following project-type-specific fields: + +| Parameter | Type | Description | +|-------------------|-------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **tileServer** | object | Raster tile server configuration used as the imagery background — includes a server `name`, `url`, `credits`, and an optional `apiKey`. | +| **inputType** | enum (string) | How the input geometries were supplied. One of `aoi_file`, `link`, `TMId` — corresponding to the three creation methods above. | +| **TMId** | string (optional) | The HOT Tasking Manager project ID, when `inputType = TMId`. | +| **filter** | string (optional) | The ohsome [filter](https://docs.ohsome.org/ohsome-api/v1/filter.html) expression, when applicable. | +| **customOptions** | list (optional) | Optional custom answer options shown to the contributor (each with a value, title, description, icon, iconColor, and optional sub-options) — overrides the default Yes/No/Not sure choices. | + +## Group +Validate Footprints groups have no project-type-specific fields beyond the [common group fields](../project_types.md#groups). Each group is identified by: + +| Parameter | Type | Description | +|-------------|--------|-------------------| +| **groupId** | string | ID of the group. | + +## Task + +| Parameter | Type | Description | +|-------------|--------|---------------------------------------------------------------------------------------------------------------| +| **taskId** | string | ID of the task. | +| **geojson** | object | GeoJSON polygon (typically a building or other feature outline) for the user to validate against the imagery. | + +## Result +Results follow the [common result shape](../project_types.md#results), with `results: dict[str, int]` keyed by `taskId`. The integer values come from each custom option's `value`. + +When the project creator does not supply `customOptions`, the backend falls back to the following defaults: + +| Value | Title | Description | +|-------|----------|--------------------------------------------------------------| +| `0` | No | The shape doesn't match a building in the image. | +| `1` | Yes | The shape does outline a building in the image. | +| `2` | Not Sure | You're not sure or there is cloud cover / bad imagery. | +| `3` | Offset | Building outline is correct, but not aligned to the imagery. | diff --git a/docs/project_types/view_streets.md b/docs/project_types/view_streets.md new file mode 100644 index 0000000..b13896c --- /dev/null +++ b/docs/project_types/view_streets.md @@ -0,0 +1,50 @@ +--- +title: View Streets +parent: Project Types +nav_order: 6 +permalink: /project_types/view_streets/ +--- + +# Project Type - View Streets + +An imagery version of the Validate Footprint project type where users can look for a specific feature (set by the project managers) in a set of Mapillary images. + +![](/assets/project_types/project_types/images/k9nzk7129lqaqztgp6d67mzad.png) + +View Streets projects have `projectType = 7`. + +## Project +The View Streets project type takes an AOI geometry as an input and returns corresponding Mapillary images to MapSwipe. + +In addition to the common project fields documented in the [data model](../project_types.md), View Streets projects carry the following project-type-specific fields: + +| Parameter | Type | Description | +|--------------------|-----------------|------------------------------------------------------------------------------------------------------------------------------------| +| **customOptions** | list (optional) | Custom answer options shown to the contributor (each with a value, title, description, icon, iconColor, and optional sub-options). | +| **numberOfGroups** | int | Total number of groups generated for the project. | + +## Group +View Streets groups have no project-type-specific fields beyond the [common group fields](../project_types.md#groups). Each group is identified by: + +| Parameter | Type | Description | +|-------------|--------|-------------------| +| **groupId** | string | ID of the group. | + +## Task +The task payload is a Base64-encoded, GZIP-compressed string; clients decode and decompress it before rendering. Note that for View Streets the underlying `taskId` is an `int` rather than a `string`. + +| Parameter | Type | Description | +|-------------|--------|--------------------------------------------| +| **taskId** | int | ID of the task (integer for View Streets). | +| **groupId** | string | ID of the group the task belongs to. | + +## Result +Results follow the [common result shape](../project_types.md#results), with `results: dict[str, int]` keyed by `taskId`. The integer values come from each custom option's `value` defined on the project, since answers are given via custom options set by the project creator. + +When the project creator does not supply `customOptions`, the backend falls back to the following defaults: + +| Value | Title | Description | +|-------|----------|--------------------------------------------------------------| +| `0` | No | The object you are looking for is NOT in the image. | +| `1` | Yes | The object you are looking for is in the image. | +| `2` | Not Sure | You're not sure or there is bad imagery. | diff --git a/docs/system_architecture.md b/docs/system_architecture.md new file mode 100644 index 0000000..6bc7f55 --- /dev/null +++ b/docs/system_architecture.md @@ -0,0 +1,91 @@ +--- +title: System Architecture +nav_order: 3 +permalink: /docs/system_architecture/ +--- + +# System Architecture + +This page describes how the MapSwipe system is put together: the old vs. new architecture, and the individual components that make up the new architecture today. + +## Architecture overview + +### Old architecture + +
+ Previous architecture +
Previous MapSwipe architectural flow
+
+ +The legacy system had two different databases: + +1. **Firebase** — the primary database. It interfaced directly with the Manager Dashboard, Mobile App, and Web App, and stored users, user groups, draft projects, active projects (with tasks), user contributions, and user swipe results (temporarily). +2. **Postgres** — the secondary, long-term database. It stored users, user groups, draft projects, all projects (with tasks), and all user swipe results. + +The primary reason for keeping Firebase as the primary database was auto-scaling in case of a large number of submissions, typically during MapSwipe mapping events. A background worker periodically synchronized (partially) the two databases. + +### New architecture + +
+ New architecture +
New MapSwipe architectural flow
+
+ +The major difference in the new architecture is that **Postgres is the primary database**. Only the MapSwipe mobile and web apps interface with Firebase directly. The system stays scalable and reliable while significantly reducing the usage of the Firebase Realtime Database. See the [Components](#components) section below for an inventory of the pieces. + +> [!NOTE] +> **Firebase Endpoints** shown in the new architecture diagram is planned for a future iteration and has not yet been implemented. Today, the mobile and web apps still read from and write to the Firebase Realtime Database directly. + +## Components + +### Public Website + +- **Source:** [`mapswipe/website`](https://github.com/mapswipe/website) +- **Deployed at:** + +The public-facing website for MapSwipe — an introduction to the project, recent mapping work, the organisations behind it, and links to the apps and dashboards. + +### Mobile App + +- **Source:** [`mapswipe/mapswipe`](https://github.com/mapswipe/mapswipe) +- **Deployed at:** + - Android — [Google Play Store](https://play.google.com/store/apps/details?id=org.missingmaps.mapswipe) + - iOS — [App Store](https://apps.apple.com/us/app/mapswipe/id1133855392) + +The contributor-facing app where users swipe to complete tasks. Reads project, group, and task data from Firebase Realtime Database; writes submitted results back to Firebase, which are then synced to the backend. + +### Manager Dashboard + +- **Source:** [`mapswipe/manager-dashboard`](https://github.com/mapswipe/manager-dashboard) +- **Deployed at:** + +The web application project managers use to create and manage projects, tutorials, organisations, managers, contributors, user groups, and teams. Talks to the MapSwipe backend via GraphQL. See [For Project Managers](/docs/for_project_managers/) for the user-facing documentation. + +### Community Dashboard + +- **Source:** [`mapswipe/community-dashboard`](https://github.com/mapswipe/community-dashboard) +- **Deployed at:** + +A React-based static site showcasing aggregated MapSwipe contribution stats, plus profile pages for users, user groups, and organisations. Reads cached aggregated data from the backend. + +### Backend + +- **Source:** [`mapswipe/mapswipe-backend`](https://github.com/mapswipe/mapswipe-backend) + +The central **Django server** backed by Postgres. A single service is responsible for: + +- The **GraphQL API** consumed by the [Manager Dashboard](#manager-dashboard) and the [Community Dashboard](#community-dashboard). +- **Data synchronisation** between Postgres and Firebase Realtime Database — including the background workers that transfer in-flight results out of Firebase and into Postgres for long-term storage. +- The **data-export generation** that produces the files documented under [About the Data](/docs/about_data/). + +### Firebase Cloud Functions + +- **Source:** [`mapswipe/mapswipe-firebase`](https://github.com/mapswipe/mapswipe-firebase) + +Cloud Functions that react to Firebase Realtime Database events — incrementing per-user contribution counters when results arrive, propagating user-group membership changes, queuing PSQL-sync flags so the backend knows what changed, and serving the OSM OAuth login. + +The functions co-exist with the runtime **Firebase Realtime Database**, which holds active project / group / task data and in-flight result submissions until the backend workers transfer them to Postgres database. diff --git a/docs/tile_size.md b/docs/tile_size.md new file mode 100644 index 0000000..0e899c1 --- /dev/null +++ b/docs/tile_size.md @@ -0,0 +1,49 @@ +--- +title: Tile Size +nav_order: 9 +permalink: /docs/tile_size/ +--- + +# Analysis of the MapSwipe Tiles — how "square" are they? + +To generate VGI for humanitarian use, project areas are cut into tiles so that users can search for buildings on aerial imagery. The MapSwipe tiles are created as described by [Bing](https://msdn.microsoft.com/en-us/library/bb259689.aspx) using Level of Detail 18 (`task_z = 18` for MapSwipe data). Users assign a *Yes*, *No*, *Maybe*, or *Bad Imagery* to each tile. This information is used to select positive tiles and create larger geometries representing a settlement layer. While these tiles look perfectly square (e.g. in a web map or in the MapSwipe mobile app), they **do not** represent the same area. + +The web Mercator projection distorts the image in a way that objects further from the equator continuously appear larger than they are. So always keep in mind: **the area represented by a tile gets smaller the further north or south the tile is located.** Table 1 shows that projects further from the equator have smaller tile areas and shorter side lengths. The angles also deviate further from rectangular. + +| | 10836 Chad | 7605 Madagascar | +| ---------------------------- | --------------:| ---------------:| +| Geographical latitude | 21° North | 25° South | +| Average tile X length [m] | 144.9570 | 138.3959 | +| Average tile Y length [m] | 144.0854 | 137.6354 | +| Average area [m²] | 20,886.2967 | 19,048.1169 | +| Min area [m²] | 20,791.6519 | 18,921.4767 | +| Max area [m²] | 20,949.2044 | 19,139.2674 | +| Area range [m²] | 157.5525 | 217.7908 | +| Deviation from 90° angle | ~ 0.01171° | ~ 0.0063° | + +*Table 1: Measurements for MapSwipe tiles.* + +Figure 1 shows the decrease in tile size from south to north in project 10836 (Chad) on the northern hemisphere. + +Chad project tile area decreasing northward + +*Figure 1: Area in m² of MapSwipe tiles in project 10836. Because the project is on the northern hemisphere, tiles further north are smaller.* + +In the MapSwipe app, each tile has a size of 256×256 pixels. The translation from pixels to meters depends on geographical latitude and the level of detail (see Figure 2). + +Tile length vs latitude plot + +*Figure 2: Tile length from pixel to meters: `f(latitude, level) = (cos(latitude * pi/180) * 2 * pi * 6378137) / (256 * 2^level) * 256` for level = 18. Values range from 152.8741 m (Equator) to close to 0 m (poles).* + +As a result of the change in side length and inner angles, tile area decreases with distance from the equator as well — see Figure 3. + +Tile area vs latitude plot + +*Figure 3: Calculated tile area for the standard level 18, from 90° to 0°.* + +## Summary + +- Area and side length of a tile continuously decrease with distance from the equator. +- Within one project, the differences in tile size depend on the north–south extent of the project. +- The tile shapes differ further from a true rectangle the further they are from the equator. +- A [sample GeoJSON file](/assets/docs/tile_size/files/tiles.geojson) with calculated area and side length per tile Y-coordinate is bundled with these docs — download it and load it in QGIS or any other GIS tool. diff --git a/docs/use_cases.md b/docs/use_cases.md new file mode 100644 index 0000000..08f5719 --- /dev/null +++ b/docs/use_cases.md @@ -0,0 +1,44 @@ +--- +title: Use Cases +nav_order: 8 +permalink: /docs/use_cases/ +--- + +# Use Cases + +## How to identify "good" mapping tasks for MapSwipe + +MapSwipe projects can cover large areas in comparison to other mapping approaches, e.g. using the HOT Tasking Manager. Nevertheless, the level of detail of the resulting information you can expect from the resulting data will be lower than using the data from OpenStreetMap. + +Here is a list of characteristics that apply to many projects we have in MapSwipe and that may also indicate how suitable your project is for MapSwipe: + +- The features you want to map are relatively easy to spot and distinguish from other objects on a satellite image with a resolution of around 0.3–0.5 meter. +- You are interested only in a limited number of object types — the ideal case is 1 object type per project. +- The area is large, larger than projects you usually see in the HOT Tasking Manager. +- The features you want to map cover only some parts of the whole area (e.g. the built-up area is often less than 10% of the whole project area). + +## Building Mapping + +This has been the focus for most MapSwipe projects. Buildings are relatively easy to spot, since their shape is familiar to most MapSwipe users. However, not all buildings look the same. Some have a rectangular shape, but others are round or built of clay, which makes it difficult to distinguish buildings from the ground. Sometimes trees can also look like a building. + +Building mapping can be done at zoom level 18 or higher. + +building example 1 +building example 2 +building example 3 + +## Landcover Mapping — e.g. Mangroves + +MapSwipe can be used to map other land cover classes or features besides buildings. We have explored using the MapSwipe approach to map mangrove forests in southeast Asia. The difficult part is distinguishing mangrove forest from other vegetation types such as grassland or land used for agriculture. + +Landcover mapping can be done at various zoom levels depending on the size of the features of interest. For forest mapping you may choose a lower zoom level, whereas more fine-grained features require a higher zoom level. + +## OpenStreetMap Data Validation + +In the initial phase, data from MapSwipe can support detailed mapping in OpenStreetMap. We can also turn MapSwipe into an OSM data validation tool — by combining satellite imagery and OSM data into one image we can check the completeness and quality of existing OSM data. + +This approach can be used to quickly assess areas where new satellite imagery has become available and where existing OSM data needs updating. + +Custom tiles for these types of MapSwipe project can be generated using [Mapbox Studio](https://www.mapbox.com/mapbox-studio/), where you can style the OSM data overlay and choose several base layers. + +OSM validation example diff --git a/examples/mapswipe-backend-api/.gitignore b/examples/create-project/.gitignore similarity index 100% rename from examples/mapswipe-backend-api/.gitignore rename to examples/create-project/.gitignore diff --git a/examples/mapswipe-backend-api/README.md b/examples/create-project/README.md similarity index 91% rename from examples/mapswipe-backend-api/README.md rename to examples/create-project/README.md index 0b32d82..d36ace8 100644 --- a/examples/mapswipe-backend-api/README.md +++ b/examples/create-project/README.md @@ -1,3 +1,12 @@ +--- +title: Create a Project +parent: Examples and Scripts +nav_order: 1 +permalink: /examples/create-project/ +--- + +# Create a Project — Authenticated Backend Example + ## Background This script is provided as an example for interacting with the MapSwipe backend. @@ -5,6 +14,8 @@ This script is provided as an example for interacting with the MapSwipe backend. > [!CAUTION] > Ongoing updates to the backend might render this script **out-of-date**. +Utility script: [`run.py`](run.py) + ## Real-world usage - https://github.com/hotosm/fAIr/blob/develop/backend/core/mapswipe_client.py @@ -17,7 +28,7 @@ This script is provided as an example for interacting with the MapSwipe backend. > [!IMPORTANT] > You do not need manager account credentials for read-only access. \ > After setting `ENABLE_AUTHENTICATION` to `false`, you can run the read-only part of the script. \ -> https://github.com/mapswipe/mapswipe-docs/blob/28fb662442eb05332b7fc56dc104d3eca114e9e3/examples/mapswipe-backend-api/run.py#L444-L460 +> https://github.com/mapswipe/mapswipe-docs/blob/main/examples/create-project/run.py#L444-L460 - Create `.env` file. - Define the following variables: @@ -40,7 +51,7 @@ This script is provided as an example for interacting with the MapSwipe backend. Your final `.env` for alpha instance should look like this: -```dotenv +```bash MANAGER_URL=https://manager-2.mapswipe.dev.togglecorp.com BACKEND_URL=https://backend-2.mapswipe.dev.togglecorp.com CSRFTOKEN_KEY=MAPSWIPE-ALPHA-2-CSRFTOKEN @@ -56,7 +67,7 @@ FB_PASSWORD=my-very-good-password Your final `.env` for staging instance should look like this: -```dotenv +```bash MANAGER_URL=https://managers-stage.mapswipe.org BACKEND_URL=https://backend-stage.mapswipe.org CSRFTOKEN_KEY=MAPSWIPE-STAGE-CSRFTOKEN @@ -76,7 +87,7 @@ FB_PASSWORD=my-very-good-password Your final `.env` for production instance should look like this: -```dotenv +```bash MANAGER_URL=https://managers.mapswipe.org BACKEND_URL=https://backend.mapswipe.org CSRFTOKEN_KEY=MAPSWIPE-PROD-CSRFTOKEN diff --git a/examples/mapswipe-backend-api/run.py b/examples/create-project/run.py similarity index 100% rename from examples/mapswipe-backend-api/run.py rename to examples/create-project/run.py diff --git a/examples/mapswipe-backend-api/sample_image.png b/examples/create-project/sample_image.png similarity index 100% rename from examples/mapswipe-backend-api/sample_image.png rename to examples/create-project/sample_image.png diff --git a/examples/fetch-global-data/README.md b/examples/fetch-global-data/README.md new file mode 100644 index 0000000..50ed6c4 --- /dev/null +++ b/examples/fetch-global-data/README.md @@ -0,0 +1,86 @@ +--- +title: Fetch Global Data +parent: Examples and Scripts +nav_order: 3 +permalink: /examples/fetch-global-data/ +--- + +# Fetch Global Data + +A read-only script that downloads the four MapSwipe-wide data exports listed under [Global Exports](/docs/about_data/#global-exports) — `projects.csv`, `projects_geom.geojson`, `projects_centroid.geojson`, and `projects_stats_by_type.csv` — from the public GraphQL backend, decompresses gzipped payloads, and optionally samples the first N records of each file. + +> [!NOTE] +> This script needs no credentials. It only reads from `globalExportAssets` on the public backend. + +> [!CAUTION] +> Ongoing updates to MapSwipe may render this script **out-of-date**. + +Utility script: [`run.py`](run.py) + +## What it does + +1. Hits `https://backend.mapswipe.org/health-check/` once to obtain a CSRF cookie. +2. Posts a `GlobalExports` query to `https://backend.mapswipe.org/graphql/`. The query returns one `GlobalExportAssetType` per export — currently `PROJECTS_CSV`, `PROJECTS_GEOM_GEOJSON`, `PROJECTS_CENTROID_GEOJSON`, and `PROJECT_STATS_BY_TYPES`. +3. Downloads the file at each `file.url` and gunzips it when the filename ends in `.gz` (or the payload starts with the gzip magic bytes). +4. With `--sample N`, keeps only the first N rows of each CSV (after the header) or the first N features of each GeoJSON `FeatureCollection`. Without `--sample`, files are written through verbatim. +5. Writes everything under `assets/docs/about_data/files/global/`. + +## Requirements + +- Python 3.10+ +- No third-party packages — `urllib` + `http.cookiejar` + `gzip` + `json` only + +## Usage + +```bash +uv run run.py +``` + +### Options + +| Flag | Default | Meaning | +| ---- | ------- | ------- | +| `--out PATH` | `assets/docs/about_data/files/global/` (relative to the repo root) | Output directory. | +| `--sample N` | unset (full download) | Keep only the first N records per CSV / GeoJSON file. | + +### Examples + +Download every global export in full: + +```bash +uv run run.py +``` + +Sample 10 rows / features per file (useful for generating illustrative samples for the docs): + +```bash +uv run run.py --sample 10 +``` + +Write somewhere outside the repo: + +```bash +uv run run.py --out /tmp/mapswipe-globals +``` + +## Output layout + +``` +assets/docs/about_data/files/global/ +├── projects.csv +├── projects_geom.geojson +├── projects_centroid.geojson +└── project_stats_by_types.csv +``` + +Filenames come from `file.name` returned by the API; only the basename is used (any path segments in the URL are stripped). + +## Troubleshooting + +> [!NOTE] +> **`CSRF cookie 'MAPSWIPE-PROD-CSRFTOKEN' not set by health-check`** — the cookie name baked into the script is the production one. If you point it at the staging or alpha instance, change `CSRFTOKEN_KEY` at the top of the script (e.g. `MAPSWIPE-STAGE-CSRFTOKEN`, `MAPSWIPE-ALPHA-2-CSRFTOKEN`). + +## Generating GraphQL queries + +Use the GraphiQL explorer to experiment with the schema: + diff --git a/examples/fetch-global-data/run.py b/examples/fetch-global-data/run.py new file mode 100644 index 0000000..33b2655 --- /dev/null +++ b/examples/fetch-global-data/run.py @@ -0,0 +1,186 @@ +#!/usr/bin/env python3 + +# See ./README.md + +import argparse +import gzip +import json +import sys +import urllib.request +from http.cookiejar import CookieJar +from pathlib import Path + +BASE_URL = "https://backend.mapswipe.org" +CSRFTOKEN_KEY = "MAPSWIPE-PROD-CSRFTOKEN" +REPO_ROOT = Path(__file__).resolve().parents[2] +DEFAULT_OUT = REPO_ROOT / "assets" / "docs" / "about_data" / "files" / "global" +TIMEOUT = 60 + +QUERY = """ + query GlobalExports { + globalExportAssets { + type + lastUpdatedAt + fileSize + file { url name } + } + } +""" + + +def build_opener() -> tuple[urllib.request.OpenerDirector, CookieJar]: + jar = CookieJar() + opener = urllib.request.build_opener(urllib.request.HTTPCookieProcessor(jar)) + return opener, jar + + +def get_csrf_token(opener: urllib.request.OpenerDirector, jar: CookieJar) -> str: + with opener.open(f"{BASE_URL}/health-check/", timeout=TIMEOUT) as resp: + resp.read() + for cookie in jar: + if cookie.name == CSRFTOKEN_KEY and cookie.value is not None: + return cookie.value + raise RuntimeError(f"CSRF cookie {CSRFTOKEN_KEY!r} not set by health-check") + + +def fetch_global_exports(opener: urllib.request.OpenerDirector, csrf_token: str) -> list[dict]: + payload = json.dumps( + { + "operationName": "GlobalExports", + "query": QUERY, + "variables": {}, + } + ).encode("utf-8") + req = urllib.request.Request( + f"{BASE_URL}/graphql/", + data=payload, + headers={ + "Content-Type": "application/json", + "X-CSRFToken": csrf_token, + "Referer": BASE_URL + "/", + }, + method="POST", + ) + with opener.open(req, timeout=TIMEOUT) as resp: + body = json.loads(resp.read()) + if "errors" in body: + raise RuntimeError(f"GraphQL errors: {body['errors']}") + assets = body.get("data", {}).get("globalExportAssets") or [] + if not assets: + raise RuntimeError("globalExportAssets returned no assets") + return assets + + +def maybe_decompress(payload: bytes, filename: str) -> tuple[bytes, str]: + if filename.endswith(".gz"): + return gzip.decompress(payload), filename[:-3] + if payload[:2] == b"\x1f\x8b": + return gzip.decompress(payload), filename + return payload, filename + + +def sample_csv(payload: bytes, n: int) -> bytes: + lines = payload.decode("utf-8", errors="replace").splitlines(keepends=True) + if not lines: + return payload + header, *rest = lines + return ("".join([header] + rest[:n])).encode("utf-8") + + +def sample_geojson(payload: bytes, n: int) -> bytes: + try: + obj = json.loads(payload) + except json.JSONDecodeError: + return payload + if isinstance(obj, dict) and isinstance(obj.get("features"), list): + obj["features"] = obj["features"][:n] + return json.dumps(obj, indent=2).encode("utf-8") + + +def process( + opener: urllib.request.OpenerDirector, + url: str, + name: str, + out_dir: Path, + sample: int | None, +) -> Path: + with opener.open(url, timeout=TIMEOUT) as resp: + raw = resp.read() + payload, out_name = maybe_decompress(raw, name) + if sample is not None: + lower = out_name.lower() + if lower.endswith(".csv"): + payload = sample_csv(payload, sample) + elif lower.endswith((".geojson", ".json")): + payload = sample_geojson(payload, sample) + out_path = out_dir / Path(out_name).name + out_path.parent.mkdir(parents=True, exist_ok=True) + out_path.write_bytes(payload) + return out_path + + +def main() -> int: + parser = argparse.ArgumentParser( + description="Fetch MapSwipe global data exports via the GraphQL backend.", + ) + parser.add_argument( + "--out", + type=Path, + default=DEFAULT_OUT, + help=f"Output directory (default: {DEFAULT_OUT})", + ) + parser.add_argument( + "--sample", + type=int, + default=None, + help="If set, keep only the first N records per CSV / GeoJSON file. " + "Default: download files in full.", + ) + args = parser.parse_args() + + args.out.mkdir(parents=True, exist_ok=True) + + opener, jar = build_opener() + + print("Acquiring CSRF token...", file=sys.stderr) + csrf_token = get_csrf_token(opener, jar) + + print("Fetching global exports...", file=sys.stderr) + assets = fetch_global_exports(opener, csrf_token) + + downloads: list[tuple[str, str]] = [] + for asset in assets: + file_info = asset.get("file") or {} + url, name = file_info.get("url"), file_info.get("name") + if url and name: + downloads.append((url, name)) + + if not downloads: + print("No downloadable files in response.", file=sys.stderr) + return 1 + + mode = ( + f"sampling up to {args.sample} record(s) per file" + if args.sample is not None + else "downloading in full" + ) + print(f"{len(downloads)} export(s) found, {mode}.", file=sys.stderr) + failures = 0 + for url, name in downloads: + try: + out_path = process(opener, url, name, args.out, args.sample) + except Exception as exc: + failures += 1 + print(f" failed {name}: {exc}", file=sys.stderr) + continue + try: + display = out_path.resolve().relative_to(REPO_ROOT) + except ValueError: + display = out_path + print(f" saved {display}") + + return 1 if failures else 0 + + +if __name__ == "__main__": + sys.exit(main()) diff --git a/examples/fetch-project-data/README.md b/examples/fetch-project-data/README.md new file mode 100644 index 0000000..77ece58 --- /dev/null +++ b/examples/fetch-project-data/README.md @@ -0,0 +1,103 @@ +--- +title: Fetch Project Data +parent: Examples and Scripts +nav_order: 2 +permalink: /examples/fetch-project-data/ +--- + +# Fetch Project Data + +A read-only script that downloads every per-project data export listed in the [About the Data](/docs/about_data/) page (aggregated results, tasks, groups, users, history, results, HOT Tasking Manager geometries, yes/maybe geometries) from the public MapSwipe GraphQL backend, decompresses gzipped payloads, and optionally samples the first N records of each file. + +> [!NOTE] +> This script needs no credentials. It only reads from `publicProjects` on the public backend. + +> [!CAUTION] +> Ongoing updates to MapSwipe may render this script **out-of-date**. + +Utility script: [`run.py`](run.py) + +## What it does + +1. Hits `https://backend.mapswipe.org/health-check/` once to obtain a CSRF cookie. +2. Posts a `ProjectExports` query to `https://backend.mapswipe.org/graphql/` filtered server-side by `id` (the project's GraphQL ID). +3. Iterates over every `export*` field on the returned project, downloads the file at `file.url`, and gunzips it when the filename ends in `.gz` (or the payload starts with the gzip magic bytes). +4. With `--sample N`, keeps only the first N rows of each CSV (after the header) or the first N features of each GeoJSON `FeatureCollection`. Without `--sample`, files are written through verbatim. +5. Writes every file directly into the `--out` directory. The script does not append the project id — pass a project-specific path if you want one project per directory. + +## Why `id` and not `firebaseId` + +The backend schema's `ProjectFilter` exposes `id`, `oldId`, and a handful of non-string fields — but **not** `firebaseId`. `oldId` is empty for most projects in the new system, so `id` is the only viable filter. The result projection still includes `firebaseId` and `oldId` so you can sanity-check the match. See [`schema.graphql`](https://raw.githubusercontent.com/mapswipe/mapswipe-backend/refs/heads/develop/schema.graphql) for the full filter input. + +## Requirements + +- Python 3.10+ (uses `int | None`-style union syntax and `tuple[...]` generics) +- No third-party packages — `urllib` + `http.cookiejar` + `gzip` + `json` only + +## Usage + +```bash +uv run run.py +``` + +By default this writes to `assets/docs/about_data/files/` relative to the repo root. The script does not auto-create a per-project subdirectory — pass `--out` with a project-specific path if you want isolation. + +### Options + +| Flag | Default | Meaning | +| ---- | ------- | ------- | +| `` *(positional)* | required | The value of `ProjectType.id` (the project's GraphQL ID, used as the filter). | +| `--out PATH` | `assets/docs/about_data/files/` (relative to the repo root) | Output directory. Files are written directly here; no project subdirectory is appended. | +| `--sample N` | unset (full download) | Keep only the first N records per CSV / GeoJSON file. | + +### Examples + +Download the full set of exports for a project: + +```bash +uv run run.py 2962 --out assets/docs/about_data/files/project_exports +``` + +Sample 10 rows / features per file (useful for generating illustrative samples for the docs): + +```bash +uv run run.py 2962 --sample 10 --out assets/docs/about_data/files/project_exports +``` + +Write somewhere outside the repo: + +```bash +uv run run.py 2962 --out /tmp/mapswipe-exports +``` + +## Output layout + +The per-project files all include the project id in their name, so multiple projects can share the same `--out` directory. Given `--out assets/docs/about_data/files/project_exports` for project `2962`: + +``` +assets/docs/about_data/files/project_exports/ +├── agg_results_by_task_2962.csv +├── agg_results_by_task_2962_geom.geojson +├── groups_2962.csv +├── history_2962.csv +├── hot_tm_2962.geojson +├── results_2962.csv +├── tasks_2962.csv +├── users_2962.csv +└── yes_maybe_2962.geojson +``` + +Filenames come from `file.name` returned by the API; only the basename is used (any path segments in the URL are stripped). + +## Troubleshooting + +> [!IMPORTANT] +> **`No project matching ''`** — the `id` filter didn't return a project. The slug in `mapswipe.org/en/projects//` is the *Firebase* style identifier, **not** the GraphQL `id`. You need to look up the project's `id` value (the integer / ULID returned by `publicProjects` on the result type). The script does not currently do that lookup for you. + +> [!NOTE] +> **`CSRF cookie 'MAPSWIPE-PROD-CSRFTOKEN' not set by health-check`** — the cookie name baked into the script is the production one. If you point it at the staging or alpha instance, change `CSRFTOKEN_KEY` at the top of the script (e.g. `MAPSWIPE-STAGE-CSRFTOKEN`, `MAPSWIPE-ALPHA-2-CSRFTOKEN`). + +## Generating GraphQL queries + +Use the GraphiQL explorer to experiment with the schema: + diff --git a/examples/fetch-project-data/run.py b/examples/fetch-project-data/run.py new file mode 100644 index 0000000..1e81b42 --- /dev/null +++ b/examples/fetch-project-data/run.py @@ -0,0 +1,220 @@ +#!/usr/bin/env python3 + +# See ./README.md + +import argparse +import gzip +import json +import re +import sys +import urllib.request +from http.cookiejar import CookieJar +from pathlib import Path + +BASE_URL = "https://backend.mapswipe.org" +CSRFTOKEN_KEY = "MAPSWIPE-PROD-CSRFTOKEN" +REPO_ROOT = Path(__file__).resolve().parents[2] +DEFAULT_OUT = REPO_ROOT / "assets" / "docs" / "about_data" / "files" +TIMEOUT = 60 + +TOKEN_RE = re.compile(rb"token=[^,&\"\s]+") + +EXPORT_FIELDS = ( + "exportAggregatedResults", + "exportAggregatedResultsWithGeometry", + "exportAreaOfInterest", + "exportGroups", + "exportHistory", + "exportResults", + "exportTasks", + "exportUsers", + "exportHotTaskingManagerGeometries", + "exportModerateToHighAgreementYesMaybeGeometries", +) + +QUERY = """ + query ProjectExports($id: ID!) { + publicProjects(filters: { id: { exact: $id } }) { + results { + id + firebaseId + oldId + exportAggregatedResults { file { url name } } + exportAggregatedResultsWithGeometry { file { url name } } + exportAreaOfInterest { file { url name } } + exportGroups { file { url name } } + exportHistory { file { url name } } + exportResults { file { url name } } + exportTasks { file { url name } } + exportUsers { file { url name } } + exportHotTaskingManagerGeometries { file { url name } } + exportModerateToHighAgreementYesMaybeGeometries { file { url name } } + } + } + } +""" + + +def build_opener() -> tuple[urllib.request.OpenerDirector, CookieJar]: + jar = CookieJar() + opener = urllib.request.build_opener(urllib.request.HTTPCookieProcessor(jar)) + return opener, jar + + +def get_csrf_token(opener: urllib.request.OpenerDirector, jar: CookieJar) -> str: + with opener.open(f"{BASE_URL}/health-check/", timeout=TIMEOUT) as resp: + resp.read() + for cookie in jar: + if cookie.name == CSRFTOKEN_KEY and cookie.value is not None: + return cookie.value + raise RuntimeError(f"CSRF cookie {CSRFTOKEN_KEY!r} not set by health-check") + + +def fetch_project( + opener: urllib.request.OpenerDirector, + project_id: str, + csrf_token: str, +) -> dict: + payload = json.dumps( + { + "operationName": "ProjectExports", + "query": QUERY, + "variables": {"id": project_id}, + } + ).encode("utf-8") + req = urllib.request.Request( + f"{BASE_URL}/graphql/", + data=payload, + headers={ + "Content-Type": "application/json", + "X-CSRFToken": csrf_token, + "Referer": BASE_URL + "/", + }, + method="POST", + ) + with opener.open(req, timeout=TIMEOUT) as resp: + body = json.loads(resp.read()) + if "errors" in body: + raise RuntimeError(f"GraphQL errors: {body['errors']}") + results = body.get("data", {}).get("publicProjects", {}).get("results", []) or [] + if not results: + raise RuntimeError(f"No project matching {project_id!r}") + return results[0] + + +def maybe_decompress(payload: bytes, filename: str) -> tuple[bytes, str]: + if filename.endswith(".gz"): + return gzip.decompress(payload), filename[:-3] + if payload[:2] == b"\x1f\x8b": + return gzip.decompress(payload), filename + return payload, filename + + +def sample_csv(payload: bytes, n: int) -> bytes: + lines = payload.decode("utf-8", errors="replace").splitlines(keepends=True) + if not lines: + return payload + header, *rest = lines + return ("".join([header] + rest[:n])).encode("utf-8") + + +def sample_geojson(payload: bytes, n: int) -> bytes: + try: + obj = json.loads(payload) + except json.JSONDecodeError: + return payload + if isinstance(obj, dict) and isinstance(obj.get("features"), list): + obj["features"] = obj["features"][:n] + return json.dumps(obj, indent=2).encode("utf-8") + + +def process( + opener: urllib.request.OpenerDirector, + url: str, + name: str, + out_dir: Path, + sample: int | None, +) -> Path: + with opener.open(url, timeout=TIMEOUT) as resp: + raw = resp.read() + payload, out_name = maybe_decompress(raw, name) + if sample is not None: + lower = out_name.lower() + if lower.endswith(".csv"): + payload = sample_csv(payload, sample) + elif lower.endswith((".geojson", ".json")): + payload = sample_geojson(payload, sample) + payload = TOKEN_RE.sub(b"token=REDACTED", payload) + out_path = out_dir / Path(out_name).name + out_path.write_bytes(payload) + return out_path + + +def main() -> int: + parser = argparse.ArgumentParser( + description="Fetch MapSwipe per-project exports via the GraphQL backend.", + ) + parser.add_argument( + "project_id", + help="Project GraphQL id (the value of ProjectType.id, used to filter publicProjects).", + ) + parser.add_argument( + "--out", + type=Path, + default=DEFAULT_OUT, + help=f"Base output directory (default: {DEFAULT_OUT})", + ) + parser.add_argument( + "--sample", + type=int, + default=None, + help="If set, keep only the first N records per CSV / GeoJSON file. " + "Default: download files in full.", + ) + args = parser.parse_args() + + args.out.mkdir(parents=True, exist_ok=True) + + opener, jar = build_opener() + + print("Acquiring CSRF token...", file=sys.stderr) + csrf_token = get_csrf_token(opener, jar) + + print(f"Looking up exports for {args.project_id}...", file=sys.stderr) + project = fetch_project(opener, args.project_id, csrf_token) + + downloads: list[tuple[str, str]] = [] + for field in EXPORT_FIELDS: + export = project.get(field) + if not export: + continue + file_info = export.get("file") or {} + url, name = file_info.get("url"), file_info.get("name") + if url and name: + downloads.append((url, name)) + + if not downloads: + print("Project has no published export files.", file=sys.stderr) + return 1 + + mode = f"sampling up to {args.sample} record(s) per file" if args.sample is not None else "downloading in full" + print(f"{len(downloads)} export(s) found, {mode}.", file=sys.stderr) + failures = 0 + for url, name in downloads: + try: + out_path = process(opener, url, name, args.out, args.sample) + except Exception as exc: + failures += 1 + print(f" failed {name}: {exc}", file=sys.stderr) + continue + try: + display = out_path.resolve().relative_to(REPO_ROOT) + except ValueError: + display = out_path + print(f" saved {display}") + + return 1 if failures else 0 + + +if __name__ == "__main__": + sys.exit(main()) diff --git a/examples/generate-coco-from-drive/README.md b/examples/generate-coco-from-drive/README.md new file mode 100644 index 0000000..a8ceff9 --- /dev/null +++ b/examples/generate-coco-from-drive/README.md @@ -0,0 +1,48 @@ +--- +title: Generate COCO File from Google Drive +parent: Examples and Scripts +nav_order: 4 +permalink: /examples/generate-coco-from-drive/ +--- + +# Generate a COCO File from Google Drive + +## Background + +[Assess Images](../../docs/project_types/assess_images.md) projects are created from a COCO-format JSON file describing the images to be mapped. This page provides a Google Apps Script that produces a minimal COCO file (`{ "images": [...] }`) from a folder of images hosted on Google Drive, so they can be referenced by public URL. + +> [!CAUTION] +> Ongoing updates to MapSwipe and Google Drive may render this script **out-of-date**. + +Utility script: [`generate_coco_from_drive.js`](generate_coco_from_drive.js) + +> For the Dropbox equivalent see [Generate COCO File from Dropbox](../generate-coco-from-dropbox/README.md). + +## Prerequisites + +- A Google account. +- Your image files stored in a **public** Google Drive folder. +- Access to Google Apps Script at . + +## Creation Steps + +1. **Create a Google Apps Script project.** + - Go to . + - Click on **New Project**. + - Rename the project to `your-project-name`. +2. **Paste the utility script.** + - Replace the default code with the contents of [`generate_coco_from_drive.js`](generate_coco_from_drive.js). +3. **Replace placeholder values.** + - Replace `your_coco_export.json` with your desired output filename. + - Replace `your_public_folder_id` with the ID of your Google Drive folder. + + > The folder ID is the alphanumeric string that appears after `/folders/` in the URL. + > Example: `drive.google.com/drive/folders/`**`1prcCevijN5mubTllB2kr5ki1gjh_IO4u`**`?usp=sharing` +4. **Run the script.** + - Save the project using the floppy-disk 💾 icon. + - Press **Run**. + - Accept the authorization prompts the first time you run the script. +5. **View the COCO JSON output.** + - Go to **View → Logs**. + - Copy the Google Drive URL where the COCO file was generated. + - Download the JSON file. diff --git a/examples/generate-coco-from-drive/generate_coco_from_drive.js b/examples/generate-coco-from-drive/generate_coco_from_drive.js new file mode 100644 index 0000000..957eee9 --- /dev/null +++ b/examples/generate-coco-from-drive/generate_coco_from_drive.js @@ -0,0 +1,33 @@ +function main() { + const exportFileName = 'your_coco_export.json'; + const folderId = 'your_public_folder_id'; + const folder = DriveApp.getFolderById(folderId); + const files = folder.getFiles(); + + const images = []; + + let id = 1; + while (files.hasNext()) { + const file = files.next(); + const name = file.getName(); + const fileId = file.getId(); + // const url = https://drive.google.com/uc?export=view&id=" + fileId; + const url = `https://drive.google.com/thumbnail?id=${fileId}&sz=w1000`; + images.push({ + coco_url: url, + file_name: name, + id, + }); + id += 1; + } + + const exportContent = JSON.stringify({ images }); + const exportFile = DriveApp.createFile( + exportFileName, + exportContent, + MimeType.PLAIN_TEXT, + ); + const exportFileUrl = exportFile.getUrl(); + + Logger.log(`COCO file available at: ${exportFileUrl}`); +} diff --git a/examples/generate-coco-from-dropbox/README.md b/examples/generate-coco-from-dropbox/README.md new file mode 100644 index 0000000..23d898e --- /dev/null +++ b/examples/generate-coco-from-dropbox/README.md @@ -0,0 +1,54 @@ +--- +title: Generate COCO File from Dropbox +parent: Examples and Scripts +nav_order: 5 +permalink: /examples/generate-coco-from-dropbox/ +--- + +# Generate a COCO File from Dropbox + +## Background + +[Assess Images](../../docs/project_types/assess_images.md) projects are created from a COCO-format JSON file describing the images to be mapped. This page provides a Python script that produces a minimal COCO file (`{ "images": [...] }`) from a folder of images hosted on Dropbox, so they can be referenced by public URL. The script also uploads the resulting JSON back to the same Dropbox folder. + +> [!CAUTION] +> Ongoing updates to MapSwipe and Dropbox may render this script **out-of-date**. + +Utility script: [`generate_coco_from_dropbox.py`](generate_coco_from_dropbox.py) + +> For the Google Drive equivalent see [Generate COCO File from Google Drive](../generate-coco-from-drive/README.md). + +## Prerequisites + +- A Dropbox account: . +- A new Dropbox app: . + - **Choose an API:** Scoped access. + - **Choose the type of access:** Full Dropbox. + - **Name your app:** `your-app-name`. +- The following **Scoped App** permissions enabled on the app: + - `files.metadata.read` + - `files.content.write` + - `files.content.read` + - `sharing.write` + - `sharing.read` +- A generated access token (from the app settings → **Generated access token**). +- [uv](https://docs.astral.sh/uv/getting-started/installation/) installed. +- A Dropbox folder containing the images to be exported. + +## Creation Steps + +1. Copy the folder path in Dropbox. +2. Copy the generated access token from Dropbox. +3. Run the script: + + ```bash + # Help + uv run generate_coco_from_dropbox.py --help + + # Usage + uv run generate_coco_from_dropbox.py "DROPBOX_ACCESS_TOKEN" "FOLDER_PATHNAME_IN_DROPBOX" "DESTINATION_EXPORT_FILE_NAME_IN_DROPBOX" + + # Example + uv run generate_coco_from_dropbox.py sl.yourAccessTokenHere "/COCO TEST" "coco_export.json" + ``` +4. Download the exported COCO JSON from the link printed in the terminal, or directly from your Dropbox folder. diff --git a/examples/generate-coco-from-dropbox/generate_coco_from_dropbox.py b/examples/generate-coco-from-dropbox/generate_coco_from_dropbox.py new file mode 100644 index 0000000..d0284e5 --- /dev/null +++ b/examples/generate-coco-from-dropbox/generate_coco_from_dropbox.py @@ -0,0 +1,213 @@ +# /// script +# requires-python = ">=3.13" +# dependencies = [ +# "httpx~=0.28.1", +# "colorama", +# ] +# /// +from pathlib import Path +from colorama import init, Fore + +import argparse +import textwrap +import httpx +import json +import re + +# Initialize colorama +init(autoreset=True) + + +DROPBOX_PERMISSION_MESSAGE = f""" +{Fore.YELLOW} +---------------------------------------------------- +Make sure the dropbox App includes these permissions +- files.metadata.read +- files.content.write +- files.content.read +- sharing.write +- sharing.read +""" + + +def dropbox_request_error_handler(res: httpx.Response): + try: + res.raise_for_status() + except httpx.HTTPStatusError as http_err: + print(f"{Fore.RED}HTTP error occurred while requesting {res.url}: {http_err}") + print(f"{Fore.RED}Response content: {res.text}") + raise + except httpx.RequestError as req_err: + print( + f"{Fore.RED}An error occurred while making the request to {res.url}: {req_err}" + ) + raise + except Exception as err: + print(f"{Fore.RED}An unexpected error occurred: {err}") + raise + finally: + print(DROPBOX_PERMISSION_MESSAGE) + + +def dropbox_request(endpoint: str, data: object, *, access_token: str): + url = f"https://api.dropboxapi.com/2/{endpoint}" + headers = { + "Authorization": f"Bearer {access_token}", + "Content-Type": "application/json", + } + res = httpx.post( + url, + headers=headers, + data=json.dumps(data), + ) + dropbox_request_error_handler(res) + return res.json() + + +def dropbox_content_request( + endpoint: str, path: str, data: object, *, access_token: str +): + url = f"https://content.dropboxapi.com/2/{endpoint}" + headers = { + "Authorization": f"Bearer {access_token}", + "Content-Type": "application/octet-stream", + "Dropbox-API-Arg": json.dumps( + { + "path": path, + "mode": "overwrite", # overwrite if exists + "autorename": False, + "mute": False, + } + ), + } + res = httpx.post( + url, + headers=headers, + data=json.dumps(data).encode("utf-8"), + ) + dropbox_request_error_handler(res) + return res.json() + + +def list_all_files(folder_path: str, *, access_token: str): + ALLOWED_EXTENSIONS = {".jpg", ".jpeg", ".png", ".webp"} + files = [] + + data = {"path": folder_path, "recursive": False} + response = dropbox_request("files/list_folder", data, access_token=access_token) + + files.extend(response.get("entries", [])) + + while response.get("has_more", False): + cursor = response["cursor"] + response = dropbox_request( + "files/list_folder/continue", + {"cursor": cursor}, + access_token=access_token, + ) + files.extend(response.get("entries", [])) + + # Sort files by name (just in case) + files = sorted(files, key=lambda file: file["name"].lower()) + # Filter out only files (not folders) that are supported + files = [ + file + for file in files + if file[".tag"] == "file" + and Path(file["name"]).suffix.lower() in ALLOWED_EXTENSIONS + ] + return files + + +def share_file_and_get_links(files, *, access_token: str): + total = len(files) + images = [] + for i, file in enumerate(files): + path = file["path_lower"] + actual_path = file["path_display"] + + # First try to list existing shared links + data = {"path": path, "direct_only": True} + print(f"{i + 1}/{total} Getting public URL") + res = dropbox_request( + "sharing/list_shared_links", + data, + access_token=access_token, + ) + if res.get("links"): + link = res["links"][0]["url"] + else: + data = {"path": path, "settings": {"requested_visibility": "public"}} + res_create = dropbox_request( + "sharing/create_shared_link_with_settings", + data, + access_token=access_token, + ) + link = res_create["url"] + + raw_url = re.sub(r"&dl=0\b", "", link) + "&raw=1" + + images.append( + { + "id": i + 1, + "file_name": actual_path, + "coco_url": raw_url, + } + ) + return images + + +def main(): + parser = argparse.ArgumentParser( + description="Generate COCO file from images folder.", + formatter_class=argparse.RawDescriptionHelpFormatter, + epilog=textwrap.dedent(DROPBOX_PERMISSION_MESSAGE), + ) + parser.add_argument("access_token", help="Access token for authentication") + parser.add_argument( + "images_folder", help='Path to the images folder in dropbox. eg: "/COCO TEST"' + ) + parser.add_argument( + "export_file_name", + help="Name of the export COCO file to be created in dropbox under provided images_folder", + ) + + args = parser.parse_args() + + access_token = args.access_token + images_folder = args.images_folder + export_file_name = args.export_file_name + + # Get all the files on given path + files = list_all_files( + images_folder, + access_token=access_token, + ) + + # Share individual file publicly and get public link + public_images = share_file_and_get_links( + files, + access_token=access_token, + ) + + # Upload coco format export to dropbox + print("Uploading COCO file") + absolute_export_file_name = str(Path(images_folder) / Path(export_file_name)) + dropbox_content_request( + "files/upload", + absolute_export_file_name, + {"images": public_images}, + access_token=access_token, + ) + + # Get temporary link + res = dropbox_request( + "files/get_temporary_link", + {"path": absolute_export_file_name}, + access_token=access_token, + ) + print(f"COCO file available at {res['link']}") + + +if __name__ == "__main__": + main() diff --git a/examples/index.md b/examples/index.md new file mode 100644 index 0000000..a75b9a3 --- /dev/null +++ b/examples/index.md @@ -0,0 +1,19 @@ +--- +title: Examples and Scripts +nav_order: 7 +has_children: true +permalink: /examples/ +--- + +# Examples and Scripts + +Worked examples and reference scripts for interacting with MapSwipe. + +> [!NOTE] +> Ongoing updates to MapSwipe may render these examples out-of-date. They are intended as a starting point and assume read-only access where applicable. + +- [Fetch Project Data](/examples/fetch-project-data/) — read-only download of a project's public data exports. +- [Fetch Global Data](/examples/fetch-global-data/) — read-only download of the four MapSwipe-wide global exports. +- [Create a Project](/examples/create-project/) — authenticated example that logs in as a manager and creates a draft project end-to-end. +- [Generate COCO File from Google Drive](/examples/generate-coco-from-drive/) — Google Apps Script that builds the COCO JSON an Assess Images project needs from a public Drive folder. +- [Generate COCO File from Dropbox](/examples/generate-coco-from-dropbox/) — Python (`uv`) script that builds the COCO JSON an Assess Images project needs from a Dropbox folder. diff --git a/index.md b/index.md new file mode 100644 index 0000000..0e28baa --- /dev/null +++ b/index.md @@ -0,0 +1,28 @@ +--- +title: Home +layout: home +nav_order: 1 +permalink: / +--- + +# MapSwipe Docs + +Welcome to the documentation for **MapSwipe** — MapSwipe harnesses the +collective strength of volunteers to actively contribute to geospatial data +projects. From identifying infrastructure to tracking environmental changes and +validating map data, MapSwipers help improve map data across the world. + +## Where to start + +- **[Overview](docs/overview.md)** — the typical MapSwipe workflow, from project request through publish, contribute, and export. +- **[System Architecture](docs/system_architecture.md)** — how MapSwipe is put together: system architecture and the components that make up the system today. +- **[Project Types](docs/project_types.md)** — Find Features, Validate Footprints, Compare Dates, Assess Images, Check Completeness, and View Streets. +- **[About the Data](docs/about_data.md)** — the global and project-specific exports MapSwipe makes available, and what every column means. +- **[For Project Managers](docs/for_project_managers.md)** — how to become a project manager, set up new projects, and manage tutorials, organisations, and teams. +- **[Examples and Scripts](examples/index.md)** — reference scripts and code snippets for interacting with the MapSwipe backend. +- **[Use Cases](docs/use_cases.md)** — when MapSwipe is a good fit, and the kinds of mapping problems it can help with. + +## Useful links + +- [Public data exports](https://mapswipe.org/en/data/) +- [Source repository](https://github.com/mapswipe/mapswipe-docs) diff --git a/project_types/assess_images.md b/project_types/assess_images.md deleted file mode 100644 index 379e1c3..0000000 --- a/project_types/assess_images.md +++ /dev/null @@ -1,261 +0,0 @@ -# Project Type - Assess Images -## COCO File Format -The Assess Images project type is created using the following sample COCO json file, as shown in the [sample dataset](/assets/project_sample_data/assess_images/coco_sample.json). - -## Project -Assess Images projects can be supplied with a COCO file - -``` - { - "contributorCount": 0, - "created": "2025-10-17T09:33:25.446892+00:00", - "createdBy": "23", - "customOptions": [ - { - "description": "the image contains the feature", - "icon": "checkmark-outline", - "iconColor": "#388E3C", - "title": "Yes", - "value": 1 - }, - { - "description": "the image does not contain the feature", - "icon": "close-outline", - "iconColor": "#D32F2F", - "title": "No", - "value": 0 - }, - { - "description": "it's not clear if the image contains the feature", - "icon": "remove-outline", - "iconColor": "#616161", - "title": "Not Sure", - "value": 2 - } - ], - "groupMaxSize": 10, - "groupSize": 10, - "isFeatured": false, - "language": "en-us", - "lookFor": "humans", - "name": "Assess Images - Humans - Worldwide (1) Togglecorp (test)", - "progress": 0, - "projectDetails": "Look for humans", - "projectId": "01K7RR8N268FRMXPN0P3186PSK", - "projectInstruction": "Can you see any humans?", - "projectNumber": 1, - "projectRegion": "Worldwide", - "projectTopic": "Humans", - "projectTopicKey": "assess images - humans - worldwide (1) togglecorp (test)", - "projectType": 10, - "requestingOrganisation": "Togglecorp (test)", - "requiredResults": 81, - "resultCount": 0, - "status": "active", - "tutorialId": "tutorial_01K60ZMFGT7WRFH38W8PZ93V4M", - "verificationNumber": 3 - } -``` - -## Group -The group tasks created in Firebase - -``` - { - "-OX8K9Ia2oSUkBSvJPrR": { - "g100": { - "groupId": "g100", - "projectId": "01K7RR8N268FRMXPN0P3186PSK", - "numberOfTasks": 25, - "requiredCount": 3, - "finishedCount": 0, - "progress": 0 - }, - "g101": { - "groupId": "g101", - "projectId": "01K7RR8N268FRMXPN0P3186PSK", - "numberOfTasks": 25, - "requiredCount": 3, - "finishedCount": 0, - "progress": 0 - }, - "g102": { - "groupId": "g102", - "projectId": "01K7RR8N268FRMXPN0P3186PSK", - "numberOfTasks": 25, - "requiredCount": 3, - "finishedCount": 0, - "progress": 0 - }, - "g103": { - "groupId": "g103", - "projectId": "01K7RR8N268FRMXPN0P3186PSK", - "numberOfTasks": 25, - "requiredCount": 3, - "finishedCount": 0, - "progress": 0 - }, - } -``` - -## Task -The task structure of the Assess Images project type varies from the rest. -> Note: only task `g100` is added below - -``` - [ - { - "annotationId": "200887", - "bbox": [ - 388.66, - 69.92, - 109.41, - 277.62 - ], - "fileName": "000000397133.jpg", - "height": 427, - "projectId": "01K7RR8N268FRMXPN0P3186PSK", - "taskId": "200887", - "url": "https://www.dropbox.com/scl/fi/qix2itz2ioncwct8iq65d/000000397133.jpg?rlkey=yqkvbfzmzxklp68d0zulj2ci4&st=vmg9ijfs&dl=1", - "width": 640 - }, - { - "annotationId": "1218137", - "bbox": [ - 0, - 262.81, - 62.16, - 36.77 - ], - "fileName": "000000397133.jpg", - "height": 427, - "projectId": "01K7RR8N268FRMXPN0P3186PSK", - "taskId": "1218137", - "url": "https://www.dropbox.com/scl/fi/qix2itz2ioncwct8iq65d/000000397133.jpg?rlkey=yqkvbfzmzxklp68d0zulj2ci4&st=vmg9ijfs&dl=1", - "width": 640 - }, - { - "annotationId": "235634", - "bbox": [ - 47.19, - 296.12, - 28.3, - 33.17 - ], - "fileName": "000000480985.jpg", - "height": 500, - "projectId": "01K7RR8N268FRMXPN0P3186PSK", - "taskId": "235634", - "url": "https://www.dropbox.com/scl/fi/vjdvvla0tyhfpde7yige9/000000480985.jpg?rlkey=35zs7wgdxpck58v5mz64jqt7u&st=2q3o8e37&dl=1", - "width": 375 - }, - { - "annotationId": "236267", - "bbox": [ - 32.75, - 298.94, - 16.52, - 29.22 - ], - "fileName": "000000480985.jpg", - "height": 500, - "projectId": "01K7RR8N268FRMXPN0P3186PSK", - "taskId": "236267", - "url": "https://www.dropbox.com/scl/fi/vjdvvla0tyhfpde7yige9/000000480985.jpg?rlkey=35zs7wgdxpck58v5mz64jqt7u&st=2q3o8e37&dl=1", - "width": 375 - }, - { - "annotationId": "236973", - "bbox": [ - 320.16, - 275.05, - 27.06, - 104.53 - ], - "fileName": "000000480985.jpg", - "height": 500, - "projectId": "01K7RR8N268FRMXPN0P3186PSK", - "taskId": "236973", - "url": "https://www.dropbox.com/scl/fi/vjdvvla0tyhfpde7yige9/000000480985.jpg?rlkey=35zs7wgdxpck58v5mz64jqt7u&st=2q3o8e37&dl=1", - "width": 375 - }, - { - "annotationId": "237362", - "bbox": [ - 10.05, - 302.96, - 13.7, - 25.69 - ], - "fileName": "000000480985.jpg", - "height": 500, - "projectId": "01K7RR8N268FRMXPN0P3186PSK", - "taskId": "237362", - "url": "https://www.dropbox.com/scl/fi/vjdvvla0tyhfpde7yige9/000000480985.jpg?rlkey=35zs7wgdxpck58v5mz64jqt7u&st=2q3o8e37&dl=1", - "width": 375 - }, - { - "annotationId": "240624", - "bbox": [ - 266.37, - 293.13, - 23.97, - 88.96 - ], - "fileName": "000000480985.jpg", - "height": 500, - "projectId": "01K7RR8N268FRMXPN0P3186PSK", - "taskId": "240624", - "url": "https://www.dropbox.com/scl/fi/vjdvvla0tyhfpde7yige9/000000480985.jpg?rlkey=35zs7wgdxpck58v5mz64jqt7u&st=2q3o8e37&dl=1", - "width": 375 - }, - { - "annotationId": "1729065", - "bbox": [ - 369.5, - 278.52, - 5.5, - 45.65 - ], - "fileName": "000000480985.jpg", - "height": 500, - "projectId": "01K7RR8N268FRMXPN0P3186PSK", - "taskId": "1729065", - "url": "https://www.dropbox.com/scl/fi/vjdvvla0tyhfpde7yige9/000000480985.jpg?rlkey=35zs7wgdxpck58v5mz64jqt7u&st=2q3o8e37&dl=1", - "width": 375 - }, - { - "annotationId": "2155199", - "bbox": [ - 290.03, - 299.79, - 15.24, - 19.87 - ], - "fileName": "000000480985.jpg", - "height": 500, - "projectId": "01K7RR8N268FRMXPN0P3186PSK", - "taskId": "2155199", - "url": "https://www.dropbox.com/scl/fi/vjdvvla0tyhfpde7yige9/000000480985.jpg?rlkey=35zs7wgdxpck58v5mz64jqt7u&st=2q3o8e37&dl=1", - "width": 375 - }, - { - "annotationId": "2161724", - "bbox": [ - 302.2, - 298.22, - 12.73, - 18.73 - ], - "fileName": "000000480985.jpg", - "height": 500, - "projectId": "01K7RR8N268FRMXPN0P3186PSK", - "taskId": "2161724", - "url": "https://www.dropbox.com/scl/fi/vjdvvla0tyhfpde7yige9/000000480985.jpg?rlkey=35zs7wgdxpck58v5mz64jqt7u&st=2q3o8e37&dl=1", - "width": 375 - } - ] -``` - -## Result Structure -The result for Assess Images projects are explicitly given via the “yes”, “no” buttons (which are configurable custom options). diff --git a/project_types/check_completeness.md b/project_types/check_completeness.md deleted file mode 100644 index 031c5fb..0000000 --- a/project_types/check_completeness.md +++ /dev/null @@ -1,125 +0,0 @@ -# Project Type - Check Completeness -Similar to the Find Features project, to create a Check Completeness project, you need to add all information and upload a bounding polygon as well as fill in some information about your project. - -## Projects -Below you can find an example for a Check Completeness project in firebase. The structure and creation steps follow the similar pattern of the Find Features project type. - -```json -{ - "contributorCount": 0, - "created": "2025-09-25T13:48:39.455579+00:00", - "createdBy": "5kYxvxiVgTRsi1DlgIdedLMcAJQ2", - "groupMaxSize": 25, - "groupSize": 25, - "isFeatured": false, - "language": "en-us", - "lookFor": "buildings", - "name": "Completeness buildings - Chandragiri, Nepal (1) Togglecorp", - "overlayTileServer": { - "type": "vector", - "vector": { - "circleColor": "#ffffff", - "circleOpacity": 1, - "circleRadius": 3, - "fillColor": "#2196f3", - "fillOpacity": 0.25, - "lineColor": "#03a9f4", - "lineDasharray": [ - 3, - 2 - ], - "lineOpacity": 1, - "lineWidth": 2, - "tileServer": { - "credits": "Map data from OpenStreetMap", - "maxZoom": 14, - "minZoom": 0, - "name": "openStreetMap", - "sourceLayer": "buildings", - "url": "https://vector.osm.org/shortbread_v1/{z}/{x}/{y}.mvt" - } - } - }, - "progress": 0, - "projectDetails": "n/a", - "projectId": "01K60J464ZGTDXNHH7J50ZGM8V", - "projectInstruction": "Look for buildings", - "projectNumber": 1, - "projectRegion": "Chandragiri, Nepal", - "projectTopic": "buildings", - "projectTopicKey": "completeness buildings - chandragiri, nepal (1) togglecorp", - "projectType": 4, - "requestingOrganisation": "Togglecorp", - "requiredResults": 396, - "resultCount": 0, - "status": "active", - "tileServer": { - "apiKey": "AopsdXjtTu-IwNoCTiZBtgRJ1g7yPkzAi65nXplc-eLJwZHYlAIf2yuSY_Kjg3Wn", - "credits": "© 2019 Microsoft Corporation, Earthstar Geographics SIO", - "name": "bing", - "url": "https://ecn.t0.tiles.virtualearth.net/tiles/a{quad_key}.jpeg?g=7505&mkt=en-US&token={apiKey}" - }, - "tileServerB": { - "apiKey": "", - "credits": "n/a", - "name": "custom", - "url": "https://raw.githubusercontent.com/mapswipe/mapswipe-assets/refs/heads/main/images/raster-layer-404-message.png" - }, - "tutorialId": "tutorial_01K5GZBZJJ62CVE4DRQJ6VAGNR", - "verificationNumber": 3, - "zoomLevel": 18 -} -``` - -## Groups - -| Parameter | Description | -|--------------|------------------------------------------------------------------------------------------------------| -| **Geometry** | The Check Completeness groups save the bounding box coordinates in fields labeled xMax, xMin, yMax and yMin similar to the Find Features groups | - -```json -{ - "finishedCount": 0, - "groupId": "g101", - "numberOfTasks": 48, - "progress": 0, - "projectId": "01K60J464ZGTDXNHH7J50ZGM8V", - "requiredCount": 3, - "xMax": "193104", - "xMin": "193089", - "yMax": "110101", - "yMin": "110099" -} -``` - -## Tasks -Tasks are saved for tutorials, since their spatial information can be derived from the spatial extent of the corresponding group. Here, the tutorials are saved based on the project that it is derived from. - -| Parameter | Description | -|-------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| *Project Type Specific Information* | | -| **Tile X** | The x coordinate characterises the longitudinal position of the tile in the overall tile map system taken the zoom level into account. The x coordinates increase from west to east starting at a longitude of -180 degrees. | -| **Tile Y** | The y coordinate characterises the latitudinal position of the tile in the overall tile map system taken the zoom level into account. The latitude is clipped to range from circa -85 to 85 degrees. The y coordinates increase from north to south starting at a latitude of around 85 degrees. | -| **Geometry** | Each task has a polygon geometry, which can be generated by its x, y and z coordinates. At the equator the task geometry is a square with an edge length of around 150 metres covering circa 0.0225 square kilometres. Due to the web Mercator projector the task geometry will be clinched with increasing distance to the equator. At the same time the area per task will decrease. | -| **Tile URL** | The tile URL points to the specific tile image described by the x, y, and z coordinates. Usually, the image has a resolution of 256 x 256 pixels. However, some providers also generate image tiles with higher resolution (e.g. 512 x 512 pixels). | - -Below is an example json for a tutorial project, as can be seen on the three extra attributes screen, referenceAnswer and taskID_real. -```json -{ - "geometry": "", - "groupId": 101, - "projectId": "tutorial_01K5JJ14GTQF2HTM29F6BF1VZ7", - "referenceAnswer": 1, - "screen": 1, - "taskId": "16-101-131073", - "taskId_real": "16-48022-27374", - "taskX": 101, - "taskY": 131073, - "url": "https://ecn.t0.tiles.virtualearth.net/tiles/a1231303132212330.jpeg?g=7505&mkt=en-US&token=AopsdXjtTu-IwNoCTiZBtgRJ1g7yPkzAi65nXplc-eLJwZHYlAIf2yuSY_Kjg3Wn", - "urlB": "https://raw.githubusercontent.com/mapswipe/mapswipe-assets/refs/heads/main/images/raster-layer-404-message.png" -} -``` - -## Results -Results contain information on the user classifications. However, only "Yes" (1), "Maybe" (2) and "Bad Imagery" (3) classifications are stored as results. -Whenever users indicates "No" by just swiping to the next set of tasks, no data entry is created. "No" classifications can only be modelled retrospectively for groups where a user also submitted at least one "Yes", "Maybe" or "Bad Imagery" classification. diff --git a/project_types/compare_dates.md b/project_types/compare_dates.md deleted file mode 100644 index 264ea19..0000000 --- a/project_types/compare_dates.md +++ /dev/null @@ -1,88 +0,0 @@ -# Project Type - Compare Dates - -## Project -The structure and creation steps follow the similar pattern of the Find Features project type. Project Structure example for a project which was created via HOT Tasking Manager Project ID. -```json -{ - "contributorCount": 0, - "created": "2021-12-23T14:14:52.179930Z", - "createdBy": "X0zTSyvY0khDfRwc99aQfIjTEPK2", - "groupMaxSize": 0, - "groupSize": 25, - "image": "https://firebasestorage.googleapis.com/v0/b/dev-mapswipe.appspot.com/o/projectImages%2FEQ%2BEarthquake.png?alt=media&token=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", - "isFeatured": false, - "lookFor": "damaged buildings", - "name": "Earthquake - Experimental Damage Assessment - Les Cayes (Haiti) (1)\nSimon BA", - "progress": 0, - "projectDetails": "In attempt to provide a rapid damage assessment for the 7.2 magnitude earthquake on August 14, please slowly compare the images to determine if damage is visible in the post-event scene. This methodology is still being tested and should not replace traditional damage assessment methods. Imagery is provided through [Maxar's Open Data Program](https://www.maxar.com/open-data) and hosted by [MapBox](https://www.mapbox.com/).", - "projectId": "-Mrbd5ArF4lb_GoYG2I5", - "projectNumber": "1", - "projectRegion": "Les Cayes (Haiti)", - "projectTopic": "Earthquake - Experimental Damage Assessment", - "projectType": 3, - "requestingOrganisation": "Simon BA", - "requiredResults": 3636, - "resultCount": 0, - "status": "inactive", - "tileServer": { - "apiKey": "", - "credits": "© 2019 Maxar", - "name": "maxar_premium", - "url": "https://services.digitalglobe.com/earthservice/tmsaccess/tms/1.0.0/DigitalGlobe%3AImageryTileService@EPSG%3A3857@jpg/{z}/{x}/{y}.jpg?connectId={key}" - }, - "tileServerB": { - "credits": "© Maxar, MapBox", - "name": "custom", - "url": "https://api.mapbox.com/v4/mapboxsatellite.haiti-post-2021/{z}/{x}/{y}.webp?sku=101Fw3jtBuWI5" - }, - "tutorialId": "tutorial_-MhJtd9ePFOw8Vs6xwZ2", - "verificationNumber": 3, - "zoomLevel": 19 -} -``` - -## Group -| Parameter | Description | -|--------------|------------------------------------------------------------------------------------------------------------| -| **Geometry** | The Compare groups save the bounding box coordinates in fields labeled xMax, xMin, yMax and yMin. | - -```json -{ - "finishedCount": 0, - "groupId": "g101", - "numberOfTasks": 24, - "progress": 0, - "projectId": "-Mrbd5ArF4lb_GoYG2I5", - "requiredCount": 3, - "xMax": "154722", - "xMin": "154715", - "yMax": "235151", - "yMin": "235149" -} -``` - -## Task -| Parameter | Description | -|-------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| *Project Type Specific Information* | | -| **Task X** | The x coordinate characterises the longitudinal position of the tile in the overall tile map system taken the zoom level into account. The x coordinates increase from west to east starting at a longitude of -180 degrees. | -| **Task Y** | The y coordinate characterises the latitudinal position of the tile in the overall tile map system taken the zoom level into account. The latitude is clipped to range from circa -85 to 85 degrees. The y coordinates increase from north to south starting at a latitude of around 85 degrees. | -| **Geometry** | Each task has a polygon geometry, which can be generated by its x, y and z coordinates. At the equator the task geometry is a square with an edge length of around 150 metres covering circa 0.0225 square kilometres. Due to the web Mercator projector the task geometry will be clinched with increasing distance to the equator. At the same time the area per task will decrease. | -| **URL** | Image for the tile at timestamp A. The tile URL points to the specific tile image described by the x, y, and z coordinates. | -| **URL 2** | Image for the tile after timestamp A. The tile URL points to the specific tile image described by the x, y, and z coordinates. | - -```json -{ - "groupId": "g101", - "projectId": "-Mrbd5ArF4lb_GoYG2I5", - "taskId": "19-154715-235149", - "taskX": "154715", - "taskY": "235149", - "url": "https://services.digitalglobe.com/earthservice/tmsaccess/tms/1.0.0/DigitalGlobe%3AImageryTileService@EPSG%3A3857@jpg/19/154715/289138.jpg", - "urlB": "https://api.mapbox.com/v4/mapboxsatellite.haiti-post-2021/19/154715/235149.webp?sku=101Fw3jtBuWI5" -} -``` - -## Result -Results contain information on the user classifications. However, only “Yes” (1), “Maybe” (2) and “Bad Imagery” (3) classifications are stored as results. -Whenever users indicate “No Change” by just swiping to the next task, no data entry is created. diff --git a/project_types/find_features.md b/project_types/find_features.md deleted file mode 100644 index 7876f48..0000000 --- a/project_types/find_features.md +++ /dev/null @@ -1,92 +0,0 @@ -# Project Type - Find Features - -## Project -To create a Find Features project, you need to add all information and upload a bounding polygon as well as fill in some information about your project. Below you can find an example for a created Find Features project in firebase. - -```json -{ - "contributorCount": 1, - "created": "2021-12-23T13:47:27.346088Z", - "createdBy": "X0zTSyvY0khDfRwc99aQfIjTEPK2", - "groupMaxSize": 0, - "groupSize": 25, - "image": "https://firebasestorage.googleapis.com/v0/b/dev-mapswipe.appspot.com/o/projectImages%2Fbuildarea.png?alt=media&token=07505c0e-0f80-454c-b446-9b82a73d9d3e", - "isFeatured": false, - "lookFor": "Buildings", - "name": "Find with Bing Imagery Z18 - Kenya (1)\nMapSwipe Devs", - "progress": 0, - "projectDetails": "This is a \"normal\" Find project. The project uses Bing Imagery at zoom level 18", - "projectId": "-MrbXgHx8YJDt6cTIyGA", - "projectNumber": "1", - "projectRegion": "Kenya", - "projectTopic": "Find with Bing Imagery Z18", - "projectType": 1, - "requestingOrganisation": "MapSwipe Devs", - "requiredResults": 148158, - "resultCount": 0, - "status": "active", - "tileServer": { - "apiKey": "", - "credits": "imagery credits of project", - "name": "bing", - "url": "https://ecn.t0.tiles.virtualearth.net/tiles/a{quad_key}.jpeg?g=1&token={key}" - }, - "tutorialId": "tutorial_-MnNaUEShyefFtMG6_5-", - "verificationNumber": 3, - "zoomLevel": 18 -} -``` - -## Groups -The grouping algorithm uses the extent of a project as an input and generates chunks of tasks lying next to each other. -Each group has a height of three tasks and a width of approximately 40 tasks. - -| Parameter | Description | -|--------------|------------------------------------------------------------------------------------------------------| -| **Geometry** | The Find Features groups save the bounding box coordinates in fields labeled xMax, xMin, yMax and yMin. | - -```json -{ - "finishedCount": 0, - "groupId": "g101", - "numberOfTasks": 54, - "progress": 0, - "projectId": "-MrbXgHx8YJDt6cTIyGA", - "requiredCount": 3, - "xMax": "160239", - "xMin": "160222", - "yMax": "129763", - "yMin": "129761" -} -``` - -## Tasks -Tasks are saved for tutorials, since their spatial information can be derived from the spatial extent of the corresponding group. Here, the tutorials are saved based on the project that it is derived from. - -| Parameter | Description | -|-------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| *Project Type Specific Information* | | -| **Tile X** | The x coordinate characterises the longitudinal position of the tile in the overall tile map system taken the zoom level into account. The x coordinates increase from west to east starting at a longitude of -180 degrees. | -| **Tile Y** | The y coordinate characterises the latitudinal position of the tile in the overall tile map system taken the zoom level into account. The latitude is clipped to range from circa -85 to 85 degrees. The y coordinates increase from north to south starting at a latitude of around 85 degrees. | -| **Geometry** | Each task has a polygon geometry, which can be generated by its x, y and z coordinates. At the equator the task geometry is a square with an edge length of around 150 metres covering circa 0.0225 square kilometres. Due to the web Mercator projector the task geometry will be clinched with increasing distance to the equator. At the same time the area per task will decrease. | -| **Tile URL** | The tile URL points to the specific tile image described by the x, y, and z coordinates. Usually, the image has a resolution of 256 x 256 pixels. However, some providers also generate image tiles with higher resolution (e.g. 512 x 512 pixels). | - -Below is an example json for a tutorial project, as can be seen on the three extra attributes screen, referenceAnswer and taskID_real. - -```json -{ - "groupId": 101, - "projectId": "tutorial_-MGwrwsP9cTYf6c_Nbg3", - "referenceAnswer": 0, - "screen": 1, - "taskId": "18-100-131072", - "taskId_real": "18-65040-120545", - "taskX": 100, - "taskY": 131072, - "url": "https://ecn.t0.tiles.virtualearth.net/tiles/a023313133022210002.jpeg?g=7505&mkt=en-US" -} -``` - -## Results -Results contain information on the user classifications. However, only “Yes” (1), “Maybe” (2) and “Bad Imagery” (3) classifications are stored as results. Whenever users indicate “No building” by just swiping to the next set of tasks, no data entry is created. -“No Building” classifications can only be modelled retrospectively for groups where a user also submitted at least one “Yes”, “Maybe” or “Bad Imagery” classification. diff --git a/project_types/project_types.md b/project_types/project_types.md deleted file mode 100644 index 00df943..0000000 --- a/project_types/project_types.md +++ /dev/null @@ -1,117 +0,0 @@ -# MapSwipe Project Types and Data Model -## MapSwipe's Crowdsourcing Approach -The MapSwipe crowdsourcing workflow is designed following an approach already presented by [Albuquerque et al. (2016)](https://www.mdpi.com/2072-4292/8/10/859). The main ideas about MapSwipe's crowdsourcing approach (and many other crowdsourcing tasks) lies in -1. **Defining** the mapping challenge by posing a simple question (e.g. "Which areas are inhabited in South Kivu?") -2. **Dividing** the overall challenge into many smaller manageable components (e.g. *groups* and *tasks* based on satellite imagery tiles) -3. **Distributing** *groups* and *tasks* to many users redundantly (e.g. every area gets mapped by at least three different users) -4. **Aggregating** all responses (*results*) per *task* from different users to reach a final solution (e.g. by choosing the majority vote) - -The MapSwipe backend now supports 6 **project types**. Each project type formulates a specific kind of mapping challenge. - -| Name | ID | Description | Screenshot | -| --------------------------------------------------- | --- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------- | -| [Find Features](/project_types/find_features.md) | 1 | A 6 squares layout is used for this project type. By tapping you can classify a tile of satellite imagery as *yes*, *maybe* or *bad_imagery*. Project managers can define which objects to look for, e.g. "buildings". Furthermore, they can specify the tile server of the background satellite imagery, e.g. "bing" or a custom tile server. | ![](/assets/project_types/project_types/images/qyioxvg73f3vdmmu6wlvrx3ib.png) | -| [Validate Footprints](/project_types/validate_footprints.md) | 2 | An image with a footprint overlay. The question is whether this footprint is correctly approximating a structure on the shown image, which can be answered with *yes*, *no* or *Not sure*. Additionally, a button is shown which hides the footprint overlay. | ![](/assets/project_types/project_types/images/agfvdlp4ksifmdnf0wfncz36s.png) | -| [Compare Dates](/project_types/compare_dates.md) | 3 | Two images are shown, the upper picture shows a scene before e.g. a disaster, while the lower picture shows the scene afterwards. By tapping you can classify the scene as *yes*, *maybe* or *bad_imagery*. Project managers can define which objects to look for, e.g. "buildings". Furthermore, they can specify the tile server of the background satellite imagery, e.g. "bing" or a custom tile server. | ![](/assets/project_types/project_types/images/gbaxwx4wnsjdfcshyh3z7exdw.png) | -| [Assess Images](/project_types/assess_images.md) | 10 | An image with a bounding box (annotation) surrounding the class set by the project manager is displayed. The same image can have multiple annotations, in which case the same image is displayed again but with a different annotation. Users select one of the custom options set, usually 'Yes', 'No', 'Maybe'. | ![](/assets/project_types/project_types/images/xh147pt4dbuniejyi6maffrd9.png) | -| [Check Completeness](/project_types/check_completeness.md) | 4 | Similar to the Find Features project type but with an addition of an overlay raster or vector layer. Currently, MapSwipe mobile app only supports raster layer while MapSwipe4Web support both. You can call it a mix of Find Features and Validate Footprints in a nutshell. | ![](/assets/project_types/project_types/images/qu4oy95b0hot07i6lei6189qj.png) | -| [View Streets](/project_types/view_streets.md) | 7 | An imagery version of the Validate Footprint project type where users can look for a specific feature (set by the project managers) in a set of Mapillary images. | ![](/assets/project_types/project_types/images/k9nzk7129lqaqztgp6d67mzad.png) | - - -## Data Model -This way of formulating the overall crowdsourcing challenge and it's subcomponents shapes the **data model** we use. - -Below you can see the structure on the example of a Find Features project type. The project manager supplies a bounding polygon, which is then divided into multiple groups, which are in turn divided into multiple tasks. Results are always bound to a task and what a result means differs by project type. - -![](/assets/project_types/project_types/mapswipe_data_model.png) - -With the revamp, as a project manager you have to care about the project. The information you provide through the **Manager Dashboard** will be used to set up your project. You should provide the following information. - -### Projects -In the new architecture, the project can be created in a single sitting instead of having to create a draft and make active later. The **project** holds all information which are needed for the MapSwipe app such as progress and number of users who contributed. -A project consists of several groups. - -| Parameter | Description | -|-------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------| -| *Basic Information* | | -| **Name** | The name of your project (25 chars max) | -| **Look For** | What should the users look for (e.g. buildings, cars, trees)? (15 chars max). | -| **Project Type** | Is `1` for all Find projects. | -| **Direct Image Link** | An url to an image. Make sure you have the rights to use this image. It should end with .jpg or .png. | -| **Project Details** | The description for your project. (3-5 sentences). | -| **Verification Number** | How many people do you want to see every tile before you consider it finished? (default is 3 - more is recommended for harder tasks, but this will also make project take longer) | -| **Group Size** | How big should a mapping session be? Group size refers to the number of tasks per mapping session. | -| **progress** | | -| **isFeatured** | If true the project will appear bigger in the app. | -| **projectId** | ID of the project. | -| **contributorCount** | How many volunteers contributed. | -| **resultCount** | | -| **numberOfTasks** | Number of tasks in project. | -| **status** | Active vs inactive. | -| *Project Type Specific Information* | There will be varying parameters defined by the individual project types. You can find this information at the page for each project type. | - -### Groups -The **groups** are an intermediary between projects and tasks. -Each group belongs to a single project and consists of several tasks. - -Single MapSwipe projects can contain up to several hundred thousand tasks. -This can pose a challenge to fast and performant communication between clients and server if many volunteers contribute data at the same time. -Therefore, groups have been introduced to reduce the amount of client requests on the backend server. - -Groups consists of several tasks, that will be shown to the user in one mapping session. -They are the key to distribute tasks to MapSwipe users in a way that we can ensure that everything gets mapped as often as required in an efficient manner. - -| Parameter | Description | -|-------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| *Basic Information* | | -| groupId | ID of the group. | -| numberOfTasks | How many tasks are in each group. | -| projectId | ID of the project the group belongs to. | -| finishedCount | Once a group has been completely mapped by a volunteer the completed count of the corresponding group will be raised by one. The completed count of the group is used to assess the overall progress of each project.
For doing so the completed count is compared to the redundancy required (see Table 2). During the mapping process groups will be served in ascending completed count order. Thus, groups with low completed count will be served first | -| requiredCount | How many volunteers have to map a group. | -| *Project Type Specific Information* | There will be varying parameters defined by the individual project types. You can find this information at the page for each project type. | - -### Tasks -The **tasks** are the smallest component in our data model. -Each task formulates an easy and quick to solve mapping challenge. -In many cases this challenge can be put into a simple question, e.g. *Can you see a building in this satellite imagery tile*. -Tasks always belong to a specific group and project. - -Tasks are usually gzip compressed on firebase to save space. That is why this information is not readable by humans in firebase. - -| Parameter | Description | -|-------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------| -| *Basic Information* | | -| **taskId** | ID of the task. | -| **groupId** | ID of the group the task belongs to. | -| **projectId** | ID of the project the task belongs to. | -| *Project Type Specific Information* | There will be varying parameters defined by the individual project types. You can find this information at the page for each project type. | - - -### Results -The **results** hold the information you wanted in the very beginning. -For each task you will receive several results by different users. -A result is the simple answer to your initial question. -For instance, it's a simple "yes" to the question "can you see a building in this satellite imagery tile". - -| Parameter | Description | -|-----------|-------------| -| timestamp | | -| startTime | | -| endTime | | -| result | | - - -### Users -The **users** provide the results to your tasks. -They are the key to solve your mapping challenge. -For each user we generate mapping related statistics, e.g. the number of projects a user has been worked on. - -| Parameter | Description | -| ------------------------- | ----------- | -| created | | -| projectContributionsCount | | -| groupContributionCount | | -| taskContributionCount | | -| timeSpentMapping | | -| username | | diff --git a/project_types/validate_footprints.md b/project_types/validate_footprints.md deleted file mode 100644 index 8bc2caf..0000000 --- a/project_types/validate_footprints.md +++ /dev/null @@ -1,79 +0,0 @@ -# Project Type - Validate Footprints - -## Project -Validate Footprints can be supplied with geometries in three separate ways. -1. by specifying a HOT Tasking Manager Project ID and an object [filter](https://docs.ohsome.org/ohsome-api/v1/filter.html) -2. by specifying an url to the data (e.g. an [ohsomeAPI](https://docs.ohsome.org/ohsome-api/v1/) call) -3. by uploading an aoi and an object [filter](https://docs.ohsome.org/ohsome-api/v1/filter.html) - - -```json -{ - "TMId": "11193", - "contributorCount": 1, - "created": "2021-12-10T18:05:26.090515Z", - "createdBy": "X0zTSyvY0khDfRwc99aQfIjTEPK2", - "filter": "building=* and geometry:polygon", - "groupMaxSize": 0, - "groupSize": 30, - "image": "https://firebasestorage.googleapis.com/v0/b/dev-mapswipe.appspot.com/o/projectImages%2Fimage.jpeg?alt=media", - "inputType": "TMId", - "isFeatured": false, - "lookFor": "Buildings", - "name": "OSM Building Validation - Indonesia (1)\nAmerican Red Cross", - "progress": 0, - "projectDetails": "The Red Cross Climate Centre, Indonesian Red Cross (Palang Merah Indonesia/PMI), IFRC, British Red Cross and Australian Red Cross are implementing a programme where the data contributed will be used by the Red Cross to assist in forecasting future disaster impacts, by knowing in advance what is likely to be impacted and its exposure and vulnerability. The information will help implementation of early action activities to take place before a disaster strikes, contributing to reduce risk, prepare for effective response and ultimately to strengthen community resilience.", - "projectId": "-Mq_IVluLteQRS75gWej", - "projectNumber": "1", - "projectRegion": "Indonesia", - "projectTopic": "OSM Building Validation", - "projectType": 2, - "requestingOrganisation": "American Red Cross", - "requiredResults": 286302, - "resultCount": 0, - "status": "private_active", - "teamId": "-Mq_EQlzqmYytCspuFSq", - "tileServer": { - "apiKey": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", - "credits": "© 2019 Maxar", - "name": "maxar_premium", - "url": "https://services.digitalglobe.com/earthservice/tmsaccess/tms/1.0.0/DigitalGlobe%3AImageryTileService@EPSG%3A3857@jpg/{z}/{x}/{y}.jpg?connectId={key}" - }, - "tutorialId": "tutorial_-MO3ky5z--RY8PC1lONa", - "verificationNumber": 3 -} -``` -## Group -The validate groups follow the standard group structure. -```json -{ - "finishedCount": 0, - "groupId": "g100", - "numberOfTasks": 30, - "progress": 0, - "projectId": "-Mq_FxTdV2QJHsxQcvFk", - "requiredCount": 3 -} -``` - -## Task - -| Parameter | Description | -|-------------------------------------|----------------------------------------------------------------------------------------| -| *Project Type Specific Information* | | -| **GeoJSON** | Each task has a polygon geometry, which usually outlines a building or another object. | - -```json -{ - "feature_id": 0, - "geojson": { - "coordinates": [ [ [ 5.15910196973, 13.48686869581 ], [ 5.15937974751, 13.48686869581 ], [ 5.15937974751, 13.48742425137 ], [ 5.15910196973, 13.48742425137 ], [ 5.15910196973, 13.48686869581 ] ] ], - "type": "Polygon" - }, - "id": "13564_100_0", - "properties": "feature_geometries, e.g. attributes from osm" -} -``` - -## Result -The result for a Validate Footprints project are explicitly given via the "yes", "no" and "not sure" buttons. diff --git a/project_types/view_streets.md b/project_types/view_streets.md deleted file mode 100644 index 8b35a4d..0000000 --- a/project_types/view_streets.md +++ /dev/null @@ -1,82 +0,0 @@ -# Project Type - View Streets - -## Project -The View Streets project type takes an AOI geometry as an input and returns corresponding Mapillary images to MapSwipe. - -```json -{ - "contributorCount": 1, - "created": "2025-10-12T09:33:48.575137+00:00", - "createdBy": "Tyf9vhtd8aZCgLlaRWQGzBE52w82", - "customOptions": [ - { - "description": "the shape does outline a building in the image", - "icon": "checkmark-outline", - "iconColor": "#388E3C", - "title": "Yes", - "value": 1 - }, - { - "description": "the shape doesn't match a building in the image", - "icon": "close-outline", - "iconColor": "#D32F2F", - "title": "No", - "value": 0 - }, - { - "description": "if you're not sure or unsure about the image", - "icon": "remove-outline", - "iconColor": "#616161", - "title": "Not Sure", - "value": 2 - } - ], - "groupMaxSize": 25, - "groupSize": 25, - "isFeatured": false, - "language": "en-us", - "lookFor": "Roads", - "name": "View Streets - Street Mapping for Urban Planning in Inda - India (1) American Red Cross", - "numberOfGroups": 7, - "progress": 4, - "projectDetails": "This project focuses on mapping streets and road networks in urban areas of India. Volunteers identify streets visible in satellite imagery to ensure they are included in the maps. The results will improve street-level map coverage for planning, navigation, and local services.", - "projectId": "01K7BW9RMYQ6FCD98QFBAEN31K", - "projectInstruction": "Look for", - "projectNumber": 1, - "projectRegion": "India", - "projectTopic": "Street Mapping for Urban Planning in Inda", - "projectTopicKey": "view streets - street mapping for urban planning in inda - india (1) american red cross", - "projectType": 7, - "requestingOrganisation": "American Red Cross", - "requiredResults": 513, - "resultCount": 0, - "status": "active", - "tutorialId": "tutorial_01K718A8H8XNY0EY66BCWZXG10", - "verificationNumber": 3 -} -``` - -## Group -The groups follow the standard Validate Footprints group structure. -```json -{ - "finishedCount" : 0, - "groupId" : "g0", - "numberOfTasks" : 25, - "progress" : 0, - "projectId" : "01K7BW9RMYQ6FCD98QFBAEN31K", - "requiredCount" : 3 -} -``` - -## Task -The task is a Base64-encoded, GZIP-compressed string. It can be decoded and decompressed to view the original content. - -```json -{ - "g0": "H4sIAAAAAAAC/62Vu0pGQQyEX+Xn1BZJJlc7fy8goqCNiFiIiqCF4qUS390cbK0kbLnLR5idmVx/La9vL08Pdx/H98vuZiE+ie1lXZxenfvR/kHl+dF27/AMfLLsbJaP2/fn33daQcFKmgJNXy8f314+X39vH2n53tn8E81uJrAUdhRoFK1CocLGVmpik2x1A8CmAXLL0bEjNFn7OHHUrCKg9DAm93CeREtlpSiMXMQxiQazJxeReaFk9Buj2aXSisuwsY0FTEUeBaVRYxshDKvazCmjgoAUqZYsJaic1VrSIErO4T6cdIBKE0GmOSt285SEvCqy8zg6Nrcz1JoPM/hoQbEJa1vbUxGus1EPRCti3g7sqppkV3tDqdiim3W2oaLFCKCrxKh/cjSQghVdbe9uv5wVW6Wbdd2PPfms/Yiq49LsYsrC7NhYg95x5xaEh9dBry+zbJegi+oP9s0PuctVnukIAAA=" -} -``` - -## Result -The results for a View Streets project, similar to the Validate Footprints project, are explicitly given via custom options that can be set by the project creator.