geonetwork-ui 2.6.0-dev.f073bbb4e → 2.6.1-dev.e79bf07fb

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (860) hide show
  1. package/README.md +2 -3
  2. package/esm2022/libs/api/metadata-converter/src/index.mjs +2 -1
  3. package/esm2022/libs/api/metadata-converter/src/lib/base.converter.mjs +1 -1
  4. package/esm2022/libs/api/metadata-converter/src/lib/common/distribution.mapper.mjs +3 -1
  5. package/esm2022/libs/api/metadata-converter/src/lib/common/resource-types.mjs +17 -15
  6. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.mjs +11 -2
  7. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.mjs +3 -3
  8. package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +59 -15
  9. package/esm2022/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.mjs +3 -3
  10. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.mjs +1 -1
  11. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.mjs +6 -6
  12. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.mjs +3 -3
  13. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.mjs +14 -6
  14. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +7 -7
  15. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +8 -8
  16. package/esm2022/libs/api/metadata-converter/src/lib/translate-utils.mjs +17 -0
  17. package/esm2022/libs/api/repository/src/lib/gn4/auth/auth.service.mjs +4 -4
  18. package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/constant.mjs +5 -2
  19. package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.mjs +21 -27
  20. package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +79 -16
  21. package/esm2022/libs/api/repository/src/lib/gn4/gn4.provider.mjs +7 -1
  22. package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.mjs +8 -8
  23. package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.mjs +14 -11
  24. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +64 -43
  25. package/esm2022/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.mjs +2 -1
  26. package/esm2022/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.mjs +1 -1
  27. package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +1 -1
  28. package/esm2022/libs/common/domain/src/lib/platform.service.interface.mjs +1 -1
  29. package/esm2022/libs/common/domain/src/lib/repository/records-repository.interface.mjs +1 -1
  30. package/esm2022/libs/feature/catalog/src/lib/feature-catalog.module.mjs +7 -31
  31. package/esm2022/libs/feature/catalog/src/lib/sources/sources.service.mjs +9 -8
  32. package/esm2022/libs/feature/dataviz/src/lib/chart-view/chart-view.component.mjs +51 -11
  33. package/esm2022/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.mjs +4 -5
  34. package/esm2022/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.mjs +2 -2
  35. package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +42 -3
  36. package/esm2022/libs/feature/dataviz/src/lib/table-view/table-view.component.mjs +31 -8
  37. package/esm2022/libs/feature/editor/src/index.mjs +2 -4
  38. package/esm2022/libs/feature/editor/src/lib/+state/editor.actions.mjs +2 -1
  39. package/esm2022/libs/feature/editor/src/lib/+state/editor.effects.mjs +13 -7
  40. package/esm2022/libs/feature/editor/src/lib/+state/editor.facade.mjs +4 -1
  41. package/esm2022/libs/feature/editor/src/lib/+state/editor.reducer.mjs +5 -1
  42. package/esm2022/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.mjs +5 -7
  43. package/esm2022/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.mjs +8 -13
  44. package/esm2022/libs/feature/editor/src/lib/components/import-record/import-record.component.mjs +5 -6
  45. package/esm2022/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.mjs +275 -0
  46. package/esm2022/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.mjs +5 -15
  47. package/esm2022/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.mjs +5 -5
  48. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.mjs +5 -8
  49. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.mjs +4 -5
  50. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.mjs +6 -10
  51. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.mjs +9 -14
  52. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.mjs +4 -15
  53. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.mjs +4 -4
  54. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.mjs +4 -4
  55. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.mjs +4 -4
  56. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +7 -7
  57. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.mjs +4 -4
  58. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.mjs +4 -4
  59. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +6 -17
  60. package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +4 -5
  61. package/esm2022/libs/feature/editor/src/lib/feature-editor.module.mjs +12 -30
  62. package/esm2022/libs/feature/editor/src/lib/models/index.mjs +1 -3
  63. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.mjs +5 -6
  64. package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +11 -8
  65. package/esm2022/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.mjs +11 -8
  66. package/esm2022/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.mjs +11 -6
  67. package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +10 -5
  68. package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +3 -36
  69. package/esm2022/libs/feature/map/src/lib/geocoding/geocoding.component.mjs +5 -11
  70. package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +6 -6
  71. package/esm2022/libs/feature/record/src/index.mjs +2 -4
  72. package/esm2022/libs/feature/record/src/lib/data-view/data-view.component.mjs +24 -19
  73. package/esm2022/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.mjs +10 -15
  74. package/esm2022/libs/feature/record/src/lib/data-view-share/data-view-share.component.mjs +5 -6
  75. package/esm2022/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.mjs +12 -17
  76. package/esm2022/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.mjs +7 -4
  77. package/esm2022/libs/feature/record/src/lib/feature-record.module.mjs +8 -22
  78. package/esm2022/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.mjs +5 -5
  79. package/esm2022/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.mjs +15 -7
  80. package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +101 -21
  81. package/esm2022/libs/feature/record/src/lib/record-meta/record-meta.component.mjs +1 -1
  82. package/esm2022/libs/feature/record/src/lib/state/mdview.actions.mjs +3 -1
  83. package/esm2022/libs/feature/record/src/lib/state/mdview.effects.mjs +14 -5
  84. package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +13 -15
  85. package/esm2022/libs/feature/record/src/lib/state/mdview.reducer.mjs +7 -1
  86. package/esm2022/libs/feature/record/src/lib/state/mdview.selectors.mjs +3 -1
  87. package/esm2022/libs/feature/router/src/lib/default/constants.mjs +3 -1
  88. package/esm2022/libs/feature/router/src/lib/default/router.config.mjs +1 -1
  89. package/esm2022/libs/feature/router/src/lib/default/router.service.mjs +10 -2
  90. package/esm2022/libs/feature/router/src/lib/default/state/router.facade.mjs +9 -3
  91. package/esm2022/libs/feature/search/src/index.mjs +2 -2
  92. package/esm2022/libs/feature/search/src/lib/constants.mjs +4 -2
  93. package/esm2022/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.mjs +12 -8
  94. package/esm2022/libs/feature/search/src/lib/feature-search.module.mjs +33 -42
  95. package/esm2022/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.mjs +3 -3
  96. package/esm2022/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.mjs +8 -6
  97. package/esm2022/libs/feature/search/src/lib/record-url.token.mjs +4 -2
  98. package/esm2022/libs/feature/search/src/lib/results-hits/results-hits.container.component.mjs +44 -0
  99. package/esm2022/libs/feature/search/src/lib/results-list/results-list.container.component.mjs +35 -15
  100. package/esm2022/libs/feature/search/src/lib/results-table/results-table-container.component.mjs +13 -10
  101. package/esm2022/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.mjs +5 -7
  102. package/esm2022/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.mjs +4 -4
  103. package/esm2022/libs/feature/search/src/lib/utils/service/fields.mjs +74 -4
  104. package/esm2022/libs/feature/search/src/lib/utils/service/fields.service.mjs +4 -3
  105. package/esm2022/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.mjs +3 -3
  106. package/esm2022/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.mjs +4 -5
  107. package/esm2022/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.mjs +4 -5
  108. package/esm2022/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.mjs +4 -5
  109. package/esm2022/libs/ui/dataviz/src/index.mjs +1 -2
  110. package/esm2022/libs/ui/dataviz/src/lib/chart/chart.component.mjs +5 -3
  111. package/esm2022/libs/ui/dataviz/src/lib/data-table/data-table.component.mjs +13 -8
  112. package/esm2022/libs/ui/dataviz/src/lib/figure/figure.component.mjs +5 -5
  113. package/esm2022/libs/ui/elements/src/index.mjs +7 -4
  114. package/esm2022/libs/ui/elements/src/lib/api-card/api-card.component.mjs +7 -7
  115. package/esm2022/libs/ui/elements/src/lib/application-banner/application-banner.component.mjs +5 -5
  116. package/esm2022/libs/ui/elements/src/lib/avatar/avatar.component.mjs +4 -3
  117. package/esm2022/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.mjs +5 -3
  118. package/esm2022/libs/ui/elements/src/lib/download-item/download-item.component.mjs +5 -6
  119. package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +20 -9
  120. package/esm2022/libs/ui/elements/src/lib/error/error.component.mjs +4 -5
  121. package/esm2022/libs/ui/elements/src/lib/external-link-card/external-link-card.component.mjs +59 -0
  122. package/esm2022/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.mjs +54 -0
  123. package/esm2022/libs/ui/elements/src/lib/image-input/image-input.component.mjs +4 -5
  124. package/esm2022/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.mjs +3 -3
  125. package/esm2022/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.mjs +89 -0
  126. package/esm2022/libs/ui/elements/src/lib/kind-badge/kind-badge.component.mjs +70 -0
  127. package/esm2022/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.mjs +3 -6
  128. package/esm2022/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.mjs +4 -5
  129. package/esm2022/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.mjs +5 -6
  130. package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +10 -8
  131. package/esm2022/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.mjs +40 -17
  132. package/esm2022/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.mjs +8 -5
  133. package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +9 -6
  134. package/esm2022/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.mjs +71 -0
  135. package/esm2022/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.mjs +170 -0
  136. package/esm2022/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.mjs +4 -5
  137. package/esm2022/libs/ui/elements/src/lib/user-preview/user-preview.component.mjs +5 -4
  138. package/esm2022/libs/ui/inputs/src/index.mjs +3 -3
  139. package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +10 -13
  140. package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +2 -2
  141. package/esm2022/libs/ui/inputs/src/lib/checkbox/checkbox.component.mjs +4 -3
  142. package/esm2022/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.mjs +7 -6
  143. package/esm2022/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.mjs +29 -7
  144. package/esm2022/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.mjs +5 -6
  145. package/esm2022/libs/ui/inputs/src/lib/file-input/file-input.component.mjs +5 -7
  146. package/esm2022/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.mjs +43 -0
  147. package/esm2022/libs/ui/inputs/src/lib/inline-filter/inline-filter.model.mjs +2 -0
  148. package/esm2022/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.mjs +73 -0
  149. package/esm2022/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.mjs +8 -3
  150. package/esm2022/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.mjs +4 -5
  151. package/esm2022/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.mjs +3 -3
  152. package/esm2022/libs/ui/layout/src/index.mjs +3 -2
  153. package/esm2022/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.mjs +44 -3
  154. package/esm2022/libs/ui/layout/src/lib/block-list/block-list.component.mjs +61 -14
  155. package/esm2022/libs/ui/layout/src/lib/carousel/carousel.component.mjs +3 -3
  156. package/esm2022/libs/ui/layout/src/lib/cell-popin/cell-popin.component.mjs +110 -0
  157. package/esm2022/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.mjs +34 -13
  158. package/esm2022/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.mjs +4 -5
  159. package/esm2022/libs/ui/layout/src/lib/interactive-table/interactive-table.component.mjs +26 -5
  160. package/esm2022/libs/ui/layout/src/lib/max-lines/max-lines.component.mjs +4 -5
  161. package/esm2022/libs/ui/layout/src/lib/pagination/pagination.component.mjs +4 -5
  162. package/esm2022/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.mjs +6 -6
  163. package/esm2022/libs/ui/layout/src/lib/sticky-header/sticky-header.component.mjs +4 -3
  164. package/esm2022/libs/ui/layout/src/lib/truncated-text/truncated-text.component.mjs +71 -0
  165. package/esm2022/libs/ui/map/src/index.mjs +2 -1
  166. package/esm2022/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.mjs +29 -4
  167. package/esm2022/libs/ui/map/src/lib/components/map-container/map-container.component.mjs +4 -5
  168. package/esm2022/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.mjs +80 -0
  169. package/esm2022/libs/ui/search/src/index.mjs +3 -1
  170. package/esm2022/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.mjs +6 -6
  171. package/esm2022/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.mjs +17 -10
  172. package/esm2022/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.mjs +3 -3
  173. package/esm2022/libs/ui/search/src/lib/results-hits-search-kind/results-hits-search-kind.component.mjs +53 -0
  174. package/esm2022/libs/ui/search/src/lib/results-list/results-layout.config.mjs +2 -2
  175. package/esm2022/libs/ui/search/src/lib/results-list/results-list.component.mjs +3 -3
  176. package/esm2022/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.mjs +24 -17
  177. package/esm2022/libs/ui/search/src/lib/results-table/results-table.component.mjs +45 -20
  178. package/esm2022/libs/ui/search/src/lib/ui-search.module.mjs +39 -26
  179. package/esm2022/libs/ui/widgets/src/index.mjs +1 -2
  180. package/esm2022/libs/ui/widgets/src/lib/color-scale/color-scale.component.mjs +3 -3
  181. package/esm2022/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.mjs +3 -3
  182. package/esm2022/libs/util/app-config/src/lib/app-config.mjs +4 -3
  183. package/esm2022/libs/util/app-config/src/lib/fixtures.mjs +3 -1
  184. package/esm2022/libs/util/app-config/src/lib/model.mjs +1 -1
  185. package/esm2022/libs/util/i18n/src/index.mjs +2 -3
  186. package/esm2022/libs/util/i18n/src/lib/embedded.translate.loader.mjs +3 -2
  187. package/esm2022/libs/util/i18n/src/lib/i18n.constants.mjs +36 -28
  188. package/esm2022/libs/util/i18n/src/lib/i18n.interceptor.mjs +10 -9
  189. package/esm2022/libs/util/i18n/src/lib/i18n.providers.mjs +41 -0
  190. package/esm2022/libs/util/i18n/src/lib/language-codes.mjs +63 -3
  191. package/esm2022/libs/util/shared/src/index.mjs +3 -2
  192. package/esm2022/libs/util/shared/src/lib/gn-ui-version.mjs +6 -0
  193. package/esm2022/libs/util/shared/src/lib/image-fallback.directive.mjs +3 -2
  194. package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +5 -1
  195. package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +16 -6
  196. package/esm2022/libs/util/shared/src/lib/record.util.mjs +56 -0
  197. package/esm2022/translations/de.json +90 -24
  198. package/esm2022/translations/en.json +90 -24
  199. package/esm2022/translations/es.json +89 -23
  200. package/esm2022/translations/fr.json +91 -25
  201. package/esm2022/translations/it.json +89 -24
  202. package/esm2022/translations/nl.json +89 -23
  203. package/esm2022/translations/pt.json +89 -23
  204. package/esm2022/translations/sk.json +607 -0
  205. package/fesm2022/geonetwork-ui.mjs +12092 -9878
  206. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  207. package/libs/api/metadata-converter/src/index.d.ts +1 -0
  208. package/libs/api/metadata-converter/src/index.d.ts.map +1 -1
  209. package/libs/api/metadata-converter/src/lib/base.converter.d.ts.map +1 -1
  210. package/libs/api/metadata-converter/src/lib/common/distribution.mapper.d.ts.map +1 -1
  211. package/libs/api/metadata-converter/src/lib/common/resource-types.d.ts +21 -0
  212. package/libs/api/metadata-converter/src/lib/common/resource-types.d.ts.map +1 -1
  213. package/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.d.ts.map +1 -1
  214. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts +4 -4
  215. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -1
  216. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts +0 -1
  217. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts.map +1 -1
  218. package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts +1 -0
  219. package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts.map +1 -1
  220. package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts.map +1 -1
  221. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -1
  222. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -1
  223. package/libs/api/metadata-converter/src/lib/translate-utils.d.ts +2 -0
  224. package/libs/api/metadata-converter/src/lib/translate-utils.d.ts.map +1 -0
  225. package/libs/api/repository/src/lib/gn4/auth/auth.service.d.ts.map +1 -1
  226. package/libs/api/repository/src/lib/gn4/elasticsearch/constant.d.ts.map +1 -1
  227. package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts +9 -7
  228. package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts.map +1 -1
  229. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +14 -3
  230. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -1
  231. package/libs/api/repository/src/lib/gn4/gn4.provider.d.ts.map +1 -1
  232. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.d.ts +1 -0
  233. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.d.ts.map +1 -1
  234. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts +4 -4
  235. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts.map +1 -1
  236. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +8 -4
  237. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +1 -1
  238. package/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.d.ts +1 -0
  239. package/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.d.ts.map +1 -1
  240. package/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.d.ts +7 -1
  241. package/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.d.ts.map +1 -1
  242. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +26 -17
  243. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
  244. package/libs/common/domain/src/lib/platform.service.interface.d.ts +1 -1
  245. package/libs/common/domain/src/lib/platform.service.interface.d.ts.map +1 -1
  246. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts +7 -1
  247. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts.map +1 -1
  248. package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts +4 -8
  249. package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts.map +1 -1
  250. package/libs/feature/catalog/src/lib/sources/sources.service.d.ts +3 -3
  251. package/libs/feature/catalog/src/lib/sources/sources.service.d.ts.map +1 -1
  252. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts +12 -8
  253. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts.map +1 -1
  254. package/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.d.ts.map +1 -1
  255. package/libs/feature/dataviz/src/lib/service/data.service.d.ts +3 -0
  256. package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -1
  257. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts +6 -3
  258. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts.map +1 -1
  259. package/libs/feature/editor/src/index.d.ts +1 -3
  260. package/libs/feature/editor/src/index.d.ts.map +1 -1
  261. package/libs/feature/editor/src/lib/+state/editor.actions.d.ts +8 -1
  262. package/libs/feature/editor/src/lib/+state/editor.actions.d.ts.map +1 -1
  263. package/libs/feature/editor/src/lib/+state/editor.effects.d.ts +10 -12
  264. package/libs/feature/editor/src/lib/+state/editor.effects.d.ts.map +1 -1
  265. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts +2 -1
  266. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts.map +1 -1
  267. package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts.map +1 -1
  268. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts +1 -1
  269. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts.map +1 -1
  270. package/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.d.ts.map +1 -1
  271. package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts.map +1 -1
  272. package/libs/feature/editor/src/lib/components/import-record/import-record.component.d.ts.map +1 -1
  273. package/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.d.ts +52 -0
  274. package/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.d.ts.map +1 -0
  275. package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts.map +1 -1
  276. package/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.d.ts +6 -6
  277. package/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.d.ts.map +1 -1
  278. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.d.ts.map +1 -1
  279. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.d.ts.map +1 -1
  280. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts.map +1 -1
  281. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts.map +1 -1
  282. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.d.ts.map +1 -1
  283. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.d.ts.map +1 -1
  284. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts.map +1 -1
  285. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts.map +1 -1
  286. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.d.ts.map +1 -1
  287. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.d.ts.map +1 -1
  288. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -1
  289. package/libs/feature/editor/src/lib/feature-editor.module.d.ts +10 -17
  290. package/libs/feature/editor/src/lib/feature-editor.module.d.ts.map +1 -1
  291. package/libs/feature/editor/src/lib/models/index.d.ts +0 -2
  292. package/libs/feature/editor/src/lib/models/index.d.ts.map +1 -1
  293. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts.map +1 -1
  294. package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts.map +1 -1
  295. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts.map +1 -1
  296. package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts.map +1 -1
  297. package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts.map +1 -1
  298. package/libs/feature/map/src/lib/feature-map.module.d.ts +2 -11
  299. package/libs/feature/map/src/lib/feature-map.module.d.ts.map +1 -1
  300. package/libs/feature/map/src/lib/geocoding/geocoding.component.d.ts.map +1 -1
  301. package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts.map +1 -1
  302. package/libs/feature/record/src/index.d.ts +1 -3
  303. package/libs/feature/record/src/index.d.ts.map +1 -1
  304. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts +19 -7
  305. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts.map +1 -1
  306. package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts +2 -3
  307. package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts.map +1 -1
  308. package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts +1 -2
  309. package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts.map +1 -1
  310. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts +2 -1
  311. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts.map +1 -1
  312. package/libs/feature/record/src/lib/feature-record.module.d.ts +8 -12
  313. package/libs/feature/record/src/lib/feature-record.module.d.ts.map +1 -1
  314. package/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.d.ts.map +1 -1
  315. package/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.d.ts.map +1 -1
  316. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts +13 -6
  317. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -1
  318. package/libs/feature/record/src/lib/record-meta/record-meta.component.d.ts +2 -2
  319. package/libs/feature/record/src/lib/state/mdview.actions.d.ts +13 -3
  320. package/libs/feature/record/src/lib/state/mdview.actions.d.ts.map +1 -1
  321. package/libs/feature/record/src/lib/state/mdview.effects.d.ts +9 -1
  322. package/libs/feature/record/src/lib/state/mdview.effects.d.ts.map +1 -1
  323. package/libs/feature/record/src/lib/state/mdview.facade.d.ts +30 -23
  324. package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -1
  325. package/libs/feature/record/src/lib/state/mdview.reducer.d.ts +4 -2
  326. package/libs/feature/record/src/lib/state/mdview.reducer.d.ts.map +1 -1
  327. package/libs/feature/record/src/lib/state/mdview.selectors.d.ts +3 -1
  328. package/libs/feature/record/src/lib/state/mdview.selectors.d.ts.map +1 -1
  329. package/libs/feature/router/src/lib/default/constants.d.ts +2 -0
  330. package/libs/feature/router/src/lib/default/constants.d.ts.map +1 -1
  331. package/libs/feature/router/src/lib/default/router.config.d.ts +2 -0
  332. package/libs/feature/router/src/lib/default/router.config.d.ts.map +1 -1
  333. package/libs/feature/router/src/lib/default/router.service.d.ts.map +1 -1
  334. package/libs/feature/router/src/lib/default/state/router.facade.d.ts +5 -0
  335. package/libs/feature/router/src/lib/default/state/router.facade.d.ts.map +1 -1
  336. package/libs/feature/search/src/index.d.ts +1 -1
  337. package/libs/feature/search/src/index.d.ts.map +1 -1
  338. package/libs/feature/search/src/lib/constants.d.ts.map +1 -1
  339. package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts +2 -1
  340. package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts.map +1 -1
  341. package/libs/feature/search/src/lib/feature-search.module.d.ts +24 -22
  342. package/libs/feature/search/src/lib/feature-search.module.d.ts.map +1 -1
  343. package/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.d.ts +2 -1
  344. package/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.d.ts.map +1 -1
  345. package/libs/feature/search/src/lib/record-url.token.d.ts +3 -1
  346. package/libs/feature/search/src/lib/record-url.token.d.ts.map +1 -1
  347. package/libs/feature/search/src/lib/results-hits/results-hits.container.component.d.ts +22 -0
  348. package/libs/feature/search/src/lib/results-hits/results-hits.container.component.d.ts.map +1 -0
  349. package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts +5 -3
  350. package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts.map +1 -1
  351. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts +6 -5
  352. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts.map +1 -1
  353. package/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.d.ts +1 -2
  354. package/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.d.ts.map +1 -1
  355. package/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.d.ts.map +1 -1
  356. package/libs/feature/search/src/lib/utils/service/fields.d.ts +22 -2
  357. package/libs/feature/search/src/lib/utils/service/fields.d.ts.map +1 -1
  358. package/libs/feature/search/src/lib/utils/service/fields.service.d.ts.map +1 -1
  359. package/libs/ui/dataviz/src/index.d.ts +0 -1
  360. package/libs/ui/dataviz/src/index.d.ts.map +1 -1
  361. package/libs/ui/dataviz/src/lib/chart/chart.component.d.ts +2 -1
  362. package/libs/ui/dataviz/src/lib/chart/chart.component.d.ts.map +1 -1
  363. package/libs/ui/dataviz/src/lib/data-table/data-table.component.d.ts +6 -1
  364. package/libs/ui/dataviz/src/lib/data-table/data-table.component.d.ts.map +1 -1
  365. package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts +1 -1
  366. package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts.map +1 -1
  367. package/libs/ui/elements/src/index.d.ts +6 -3
  368. package/libs/ui/elements/src/index.d.ts.map +1 -1
  369. package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts.map +1 -1
  370. package/libs/ui/elements/src/lib/avatar/avatar.component.d.ts +1 -1
  371. package/libs/ui/elements/src/lib/avatar/avatar.component.d.ts.map +1 -1
  372. package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts +2 -0
  373. package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts.map +1 -1
  374. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts +1 -1
  375. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts.map +1 -1
  376. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +7 -1
  377. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts.map +1 -1
  378. package/libs/ui/elements/src/lib/{link-card/link-card.component.d.ts → external-link-card/external-link-card.component.d.ts} +5 -5
  379. package/libs/ui/elements/src/lib/external-link-card/external-link-card.component.d.ts.map +1 -0
  380. package/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.d.ts +15 -0
  381. package/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.d.ts.map +1 -0
  382. package/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.d.ts +30 -0
  383. package/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.d.ts.map +1 -0
  384. package/libs/ui/elements/src/lib/kind-badge/kind-badge.component.d.ts +14 -0
  385. package/libs/ui/elements/src/lib/kind-badge/kind-badge.component.d.ts.map +1 -0
  386. package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts.map +1 -1
  387. package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts +2 -2
  388. package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts.map +1 -1
  389. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts +3 -0
  390. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts.map +1 -1
  391. package/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.d.ts.map +1 -1
  392. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts.map +1 -1
  393. package/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.d.ts +27 -0
  394. package/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.d.ts.map +1 -0
  395. package/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.d.ts +31 -0
  396. package/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.d.ts.map +1 -0
  397. package/libs/ui/elements/src/lib/user-preview/user-preview.component.d.ts +1 -1
  398. package/libs/ui/elements/src/lib/user-preview/user-preview.component.d.ts.map +1 -1
  399. package/libs/ui/inputs/src/index.d.ts +2 -2
  400. package/libs/ui/inputs/src/index.d.ts.map +1 -1
  401. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts +1 -2
  402. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts.map +1 -1
  403. package/libs/ui/inputs/src/lib/button/button.component.d.ts +1 -1
  404. package/libs/ui/inputs/src/lib/button/button.component.d.ts.map +1 -1
  405. package/libs/ui/inputs/src/lib/checkbox/checkbox.component.d.ts +1 -1
  406. package/libs/ui/inputs/src/lib/checkbox/checkbox.component.d.ts.map +1 -1
  407. package/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.d.ts +1 -1
  408. package/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.d.ts.map +1 -1
  409. package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.d.ts +1 -1
  410. package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.d.ts.map +1 -1
  411. package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts.map +1 -1
  412. package/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.d.ts +14 -0
  413. package/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.d.ts.map +1 -0
  414. package/libs/ui/inputs/src/lib/inline-filter/inline-filter.model.d.ts +6 -0
  415. package/libs/ui/inputs/src/lib/inline-filter/inline-filter.model.d.ts.map +1 -0
  416. package/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.d.ts +17 -0
  417. package/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.d.ts.map +1 -0
  418. package/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.d.ts +2 -1
  419. package/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.d.ts.map +1 -1
  420. package/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.d.ts +1 -1
  421. package/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.d.ts.map +1 -1
  422. package/libs/ui/layout/src/index.d.ts +2 -1
  423. package/libs/ui/layout/src/index.d.ts.map +1 -1
  424. package/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.d.ts +10 -3
  425. package/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.d.ts.map +1 -1
  426. package/libs/ui/layout/src/lib/block-list/block-list.component.d.ts +11 -3
  427. package/libs/ui/layout/src/lib/block-list/block-list.component.d.ts.map +1 -1
  428. package/libs/ui/layout/src/lib/cell-popin/cell-popin.component.d.ts +28 -0
  429. package/libs/ui/layout/src/lib/cell-popin/cell-popin.component.d.ts.map +1 -0
  430. package/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.d.ts +15 -8
  431. package/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.d.ts.map +1 -1
  432. package/libs/ui/layout/src/lib/interactive-table/interactive-table.component.d.ts +5 -1
  433. package/libs/ui/layout/src/lib/interactive-table/interactive-table.component.d.ts.map +1 -1
  434. package/libs/ui/layout/src/lib/sticky-header/sticky-header.component.d.ts +1 -1
  435. package/libs/ui/layout/src/lib/sticky-header/sticky-header.component.d.ts.map +1 -1
  436. package/libs/ui/layout/src/lib/truncated-text/truncated-text.component.d.ts +22 -0
  437. package/libs/ui/layout/src/lib/truncated-text/truncated-text.component.d.ts.map +1 -0
  438. package/libs/ui/map/src/index.d.ts +1 -0
  439. package/libs/ui/map/src/index.d.ts.map +1 -1
  440. package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts +6 -2
  441. package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts.map +1 -1
  442. package/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.d.ts +15 -0
  443. package/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.d.ts.map +1 -0
  444. package/libs/ui/search/src/index.d.ts +2 -0
  445. package/libs/ui/search/src/index.d.ts.map +1 -1
  446. package/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.d.ts +2 -0
  447. package/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.d.ts.map +1 -1
  448. package/libs/ui/search/src/lib/results-hits-search-kind/results-hits-search-kind.component.d.ts +17 -0
  449. package/libs/ui/search/src/lib/results-hits-search-kind/results-hits-search-kind.component.d.ts.map +1 -0
  450. package/libs/ui/search/src/lib/results-list/results-list.component.d.ts.map +1 -1
  451. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts +4 -3
  452. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts.map +1 -1
  453. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts +10 -4
  454. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts.map +1 -1
  455. package/libs/ui/search/src/lib/ui-search.module.d.ts +22 -19
  456. package/libs/ui/search/src/lib/ui-search.module.d.ts.map +1 -1
  457. package/libs/ui/widgets/src/index.d.ts +0 -1
  458. package/libs/ui/widgets/src/index.d.ts.map +1 -1
  459. package/libs/ui/widgets/src/lib/color-scale/color-scale.component.d.ts +1 -1
  460. package/libs/ui/widgets/src/lib/color-scale/color-scale.component.d.ts.map +1 -1
  461. package/libs/util/app-config/src/lib/app-config.d.ts +0 -1
  462. package/libs/util/app-config/src/lib/app-config.d.ts.map +1 -1
  463. package/libs/util/app-config/src/lib/fixtures.d.ts.map +1 -1
  464. package/libs/util/app-config/src/lib/model.d.ts +1 -0
  465. package/libs/util/app-config/src/lib/model.d.ts.map +1 -1
  466. package/libs/util/i18n/src/index.d.ts +1 -2
  467. package/libs/util/i18n/src/index.d.ts.map +1 -1
  468. package/libs/util/i18n/src/lib/embedded.translate.loader.d.ts +1 -1
  469. package/libs/util/i18n/src/lib/embedded.translate.loader.d.ts.map +1 -1
  470. package/libs/util/i18n/src/lib/i18n.constants.d.ts +6 -15
  471. package/libs/util/i18n/src/lib/i18n.constants.d.ts.map +1 -1
  472. package/libs/util/i18n/src/lib/i18n.interceptor.d.ts +5 -5
  473. package/libs/util/i18n/src/lib/i18n.interceptor.d.ts.map +1 -1
  474. package/libs/util/i18n/src/lib/i18n.providers.d.ts +4 -0
  475. package/libs/util/i18n/src/lib/i18n.providers.d.ts.map +1 -0
  476. package/libs/util/i18n/src/lib/language-codes.d.ts +15 -19
  477. package/libs/util/i18n/src/lib/language-codes.d.ts.map +1 -1
  478. package/libs/util/shared/src/index.d.ts +2 -1
  479. package/libs/util/shared/src/index.d.ts.map +1 -1
  480. package/libs/util/shared/src/lib/gn-ui-version.d.ts +3 -0
  481. package/libs/util/shared/src/lib/gn-ui-version.d.ts.map +1 -0
  482. package/libs/util/shared/src/lib/image-fallback.directive.d.ts +1 -1
  483. package/libs/util/shared/src/lib/image-fallback.directive.d.ts.map +1 -1
  484. package/libs/util/shared/src/lib/links/link-classifier.service.d.ts +3 -3
  485. package/libs/util/shared/src/lib/links/link-classifier.service.d.ts.map +1 -1
  486. package/libs/util/shared/src/lib/links/link-utils.d.ts +14 -7
  487. package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -1
  488. package/libs/util/shared/src/lib/record.util.d.ts +3 -0
  489. package/libs/util/shared/src/lib/record.util.d.ts.map +1 -0
  490. package/package.json +4 -4
  491. package/src/libs/api/metadata-converter/src/index.ts +1 -0
  492. package/src/libs/api/metadata-converter/src/lib/base.converter.ts +1 -4
  493. package/src/libs/api/metadata-converter/src/lib/common/distribution.mapper.ts +1 -0
  494. package/src/libs/api/metadata-converter/src/lib/common/resource-types.ts +29 -15
  495. package/src/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.ts +10 -1
  496. package/src/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.ts +2 -2
  497. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.service+eaux-usees.ts +2 -2
  498. package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +3 -3
  499. package/src/libs/api/metadata-converter/src/lib/fixtures/metadata-for-i18n.records.ts +4240 -0
  500. package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +2 -2
  501. package/src/libs/api/metadata-converter/src/lib/fixtures/wallonie.records.service+napitswallonia.ts +2 -2
  502. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +81 -11
  503. package/src/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.ts +4 -4
  504. package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +0 -1
  505. package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +11 -5
  506. package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +2 -2
  507. package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +14 -8
  508. package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +12 -8
  509. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +8 -7
  510. package/src/libs/api/metadata-converter/src/lib/translate-utils.ts +17 -0
  511. package/src/libs/api/repository/src/lib/gn4/auth/auth.service.ts +3 -6
  512. package/src/libs/api/repository/src/lib/gn4/elasticsearch/constant.ts +4 -1
  513. package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +17 -17
  514. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +119 -16
  515. package/src/libs/api/repository/src/lib/gn4/gn4.provider.ts +6 -0
  516. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.ts +8 -7
  517. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.ts +13 -6
  518. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +77 -65
  519. package/src/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.ts +3 -0
  520. package/src/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.ts +9 -1
  521. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +27 -11
  522. package/src/libs/common/domain/src/lib/platform.service.interface.ts +2 -1
  523. package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +11 -1
  524. package/src/libs/common/fixtures/src/lib/elasticsearch/metadata-links.fixtures.ts +36 -26
  525. package/src/libs/common/fixtures/src/lib/link.fixtures.ts +16 -2
  526. package/src/libs/common/fixtures/src/lib/record-link.fixtures.ts +5 -5
  527. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +114 -1
  528. package/src/libs/feature/catalog/src/lib/feature-catalog.module.ts +4 -17
  529. package/src/libs/feature/catalog/src/lib/sources/sources.service.ts +7 -3
  530. package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.html +12 -9
  531. package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +60 -12
  532. package/src/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.ts +2 -2
  533. package/src/libs/feature/dataviz/src/lib/service/data.service.ts +49 -1
  534. package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.html +1 -0
  535. package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.ts +33 -3
  536. package/src/libs/feature/editor/src/index.ts +1 -3
  537. package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +9 -1
  538. package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +23 -12
  539. package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +13 -1
  540. package/src/libs/feature/editor/src/lib/+state/editor.reducer.ts +9 -1
  541. package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.ts +3 -4
  542. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.ts +5 -16
  543. package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.ts +7 -5
  544. package/src/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.html +120 -0
  545. package/src/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.ts +331 -0
  546. package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.ts +3 -12
  547. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.ts +5 -4
  548. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.ts +3 -4
  549. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.ts +2 -2
  550. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.ts +4 -11
  551. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +6 -9
  552. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.ts +2 -17
  553. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.ts +2 -2
  554. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.ts +2 -2
  555. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.ts +2 -2
  556. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +2 -2
  557. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.html +2 -2
  558. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +4 -4
  559. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.ts +2 -2
  560. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +2 -2
  561. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +2 -15
  562. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +2 -2
  563. package/src/libs/feature/editor/src/lib/feature-editor.module.ts +4 -17
  564. package/src/libs/feature/editor/src/lib/models/index.ts +0 -2
  565. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.ts +2 -1
  566. package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.ts +8 -3
  567. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts +10 -3
  568. package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.ts +8 -2
  569. package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.ts +8 -2
  570. package/src/libs/feature/map/src/lib/feature-map.module.ts +0 -17
  571. package/src/libs/feature/map/src/lib/geocoding/geocoding.component.ts +3 -8
  572. package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts +3 -2
  573. package/src/libs/feature/record/src/index.ts +1 -3
  574. package/src/libs/feature/record/src/lib/data-view/data-view.component.html +17 -11
  575. package/src/libs/feature/record/src/lib/data-view/data-view.component.ts +29 -22
  576. package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.ts +4 -5
  577. package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.html +1 -1
  578. package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.ts +2 -2
  579. package/src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.ts +6 -7
  580. package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.html +2 -2
  581. package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts +3 -2
  582. package/src/libs/feature/record/src/lib/feature-record.module.ts +4 -13
  583. package/src/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.ts +4 -3
  584. package/src/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.ts +10 -4
  585. package/src/libs/feature/record/src/lib/map-view/map-view.component.html +38 -11
  586. package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +140 -21
  587. package/src/libs/feature/record/src/lib/record-meta/record-meta.component.ts +2 -2
  588. package/src/libs/feature/record/src/lib/state/mdview.actions.ts +12 -2
  589. package/src/libs/feature/record/src/lib/state/mdview.effects.ts +27 -3
  590. package/src/libs/feature/record/src/lib/state/mdview.facade.ts +23 -19
  591. package/src/libs/feature/record/src/lib/state/mdview.reducer.ts +14 -2
  592. package/src/libs/feature/record/src/lib/state/mdview.selectors.ts +9 -0
  593. package/src/libs/feature/router/src/lib/default/constants.ts +2 -0
  594. package/src/libs/feature/router/src/lib/default/router.config.ts +2 -0
  595. package/src/libs/feature/router/src/lib/default/router.service.ts +10 -0
  596. package/src/libs/feature/router/src/lib/default/state/router.facade.ts +10 -1
  597. package/src/libs/feature/search/src/index.ts +1 -1
  598. package/src/libs/feature/search/src/lib/constants.ts +3 -1
  599. package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.html +2 -7
  600. package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.ts +16 -7
  601. package/src/libs/feature/search/src/lib/feature-search.module.ts +17 -23
  602. package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.html +1 -1
  603. package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.ts +5 -0
  604. package/src/libs/feature/search/src/lib/record-url.token.ts +10 -1
  605. package/src/libs/feature/search/src/lib/results-hits/results-hits.container.component.html +17 -0
  606. package/src/libs/feature/search/src/lib/results-hits/results-hits.container.component.ts +60 -0
  607. package/src/libs/feature/search/src/lib/results-list/results-list.container.component.css +6 -0
  608. package/src/libs/feature/search/src/lib/results-list/results-list.container.component.html +1 -0
  609. package/src/libs/feature/search/src/lib/results-list/results-list.container.component.ts +26 -5
  610. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.html +1 -0
  611. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +13 -3
  612. package/src/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.ts +10 -4
  613. package/src/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.ts +2 -2
  614. package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +4 -5
  615. package/src/libs/feature/search/src/lib/utils/service/fields.ts +103 -3
  616. package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.html +1 -1
  617. package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.ts +2 -2
  618. package/src/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.ts +2 -2
  619. package/src/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.ts +2 -2
  620. package/src/libs/ui/dataviz/src/index.ts +0 -1
  621. package/src/libs/ui/dataviz/src/lib/chart/chart.component.ts +2 -1
  622. package/src/libs/ui/dataviz/src/lib/data-table/data-table.component.html +6 -3
  623. package/src/libs/ui/dataviz/src/lib/data-table/data-table.component.ts +7 -6
  624. package/src/libs/ui/dataviz/src/lib/figure/figure.component.html +0 -1
  625. package/src/libs/ui/dataviz/src/lib/figure/figure.component.ts +4 -0
  626. package/src/libs/ui/elements/src/index.ts +6 -3
  627. package/src/libs/ui/elements/src/lib/api-card/api-card.component.html +4 -4
  628. package/src/libs/ui/elements/src/lib/api-card/api-card.component.ts +3 -2
  629. package/src/libs/ui/elements/src/lib/application-banner/application-banner.component.html +6 -6
  630. package/src/libs/ui/elements/src/lib/application-banner/application-banner.component.ts +2 -2
  631. package/src/libs/ui/elements/src/lib/avatar/avatar.component.ts +3 -0
  632. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.html +6 -2
  633. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.ts +5 -1
  634. package/src/libs/ui/elements/src/lib/download-item/download-item.component.html +8 -5
  635. package/src/libs/ui/elements/src/lib/download-item/download-item.component.ts +4 -4
  636. package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.html +42 -11
  637. package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +28 -4
  638. package/src/libs/ui/elements/src/lib/error/error.component.ts +2 -2
  639. package/src/libs/ui/elements/src/lib/{link-card/link-card.component.html → external-link-card/external-link-card.component.html} +5 -2
  640. package/src/libs/ui/elements/src/lib/{link-card/link-card.component.ts → external-link-card/external-link-card.component.ts} +9 -13
  641. package/src/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.css +4 -0
  642. package/src/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.html +13 -0
  643. package/src/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.ts +54 -0
  644. package/src/libs/ui/elements/src/lib/image-input/image-input.component.ts +2 -2
  645. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +1 -1
  646. package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.html +87 -0
  647. package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.scss +115 -0
  648. package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.ts +98 -0
  649. package/src/libs/ui/elements/src/lib/kind-badge/kind-badge.component.css +6 -0
  650. package/src/libs/ui/elements/src/lib/kind-badge/kind-badge.component.html +15 -0
  651. package/src/libs/ui/elements/src/lib/kind-badge/kind-badge.component.ts +72 -0
  652. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.ts +1 -4
  653. package/src/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.html +3 -5
  654. package/src/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.ts +2 -2
  655. package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.html +12 -9
  656. package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts +2 -2
  657. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.css +9 -0
  658. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +24 -7
  659. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +11 -6
  660. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.html +20 -21
  661. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts +51 -13
  662. package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.ts +6 -2
  663. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +6 -3
  664. package/src/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.html +107 -0
  665. package/src/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.ts +83 -0
  666. package/src/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.css +0 -0
  667. package/src/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.html +110 -0
  668. package/src/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.ts +196 -0
  669. package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.ts +2 -2
  670. package/src/libs/ui/elements/src/lib/user-preview/user-preview.component.ts +4 -0
  671. package/src/libs/ui/inputs/src/index.ts +2 -2
  672. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.html +3 -3
  673. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +6 -9
  674. package/src/libs/ui/inputs/src/lib/button/button.component.ts +2 -2
  675. package/src/libs/ui/inputs/src/lib/checkbox/checkbox.component.ts +3 -0
  676. package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.html +1 -1
  677. package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.ts +4 -0
  678. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.html +1 -1
  679. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.ts +27 -0
  680. package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.html +1 -1
  681. package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.ts +2 -2
  682. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.ts +3 -4
  683. package/src/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.html +23 -0
  684. package/src/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.ts +47 -0
  685. package/src/libs/ui/inputs/src/lib/inline-filter/inline-filter.model.ts +5 -0
  686. package/src/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.css +0 -0
  687. package/src/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.html +43 -0
  688. package/src/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.ts +83 -0
  689. package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.css +0 -1
  690. package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.html +11 -8
  691. package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.ts +4 -1
  692. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.ts +2 -2
  693. package/src/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.ts +1 -0
  694. package/src/libs/ui/layout/src/index.ts +2 -1
  695. package/src/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.ts +47 -2
  696. package/src/libs/ui/layout/src/lib/block-list/block-list.component.css +22 -0
  697. package/src/libs/ui/layout/src/lib/block-list/block-list.component.html +2 -3
  698. package/src/libs/ui/layout/src/lib/block-list/block-list.component.ts +57 -9
  699. package/src/libs/ui/layout/src/lib/carousel/carousel.component.css +0 -1
  700. package/src/libs/ui/layout/src/lib/carousel/carousel.component.html +1 -1
  701. package/src/libs/ui/layout/src/lib/cell-popin/cell-popin.component.html +40 -0
  702. package/src/libs/ui/layout/src/lib/cell-popin/cell-popin.component.ts +141 -0
  703. package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.html +24 -8
  704. package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.ts +36 -10
  705. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +2 -2
  706. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +4 -7
  707. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.ts +22 -2
  708. package/src/libs/ui/layout/src/lib/max-lines/max-lines.component.html +1 -1
  709. package/src/libs/ui/layout/src/lib/max-lines/max-lines.component.ts +2 -2
  710. package/src/libs/ui/layout/src/lib/pagination/pagination.component.ts +2 -2
  711. package/src/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.html +17 -5
  712. package/src/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.ts +3 -3
  713. package/src/libs/ui/layout/src/lib/sticky-header/sticky-header.component.ts +3 -0
  714. package/src/libs/ui/layout/src/lib/truncated-text/truncated-text.component.html +27 -0
  715. package/src/libs/ui/layout/src/lib/truncated-text/truncated-text.component.ts +84 -0
  716. package/src/libs/ui/map/src/index.ts +1 -0
  717. package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.html +3 -3
  718. package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.ts +27 -3
  719. package/src/libs/ui/map/src/lib/components/map-container/map-container.component.ts +2 -2
  720. package/src/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.css +0 -0
  721. package/src/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.html +4 -0
  722. package/src/libs/{feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.ts → ui/map/src/lib/components/spatial-extent/spatial-extent.component.ts} +8 -8
  723. package/src/libs/ui/search/src/index.ts +2 -0
  724. package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.html +4 -1
  725. package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.html +9 -81
  726. package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.ts +14 -1
  727. package/src/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.html +1 -1
  728. package/src/libs/ui/search/src/lib/results-hits-search-kind/results-hits-search-kind.component.html +25 -0
  729. package/src/libs/ui/search/src/lib/results-hits-search-kind/results-hits-search-kind.component.ts +53 -0
  730. package/src/libs/ui/search/src/lib/results-list/results-layout.config.ts +2 -2
  731. package/src/libs/ui/search/src/lib/results-list/results-list.component.html +1 -0
  732. package/src/libs/ui/search/src/lib/results-list/results-list.component.ts +0 -1
  733. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +16 -6
  734. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +18 -15
  735. package/src/libs/ui/search/src/lib/results-table/results-table.component.css +4 -0
  736. package/src/libs/ui/search/src/lib/results-table/results-table.component.html +29 -24
  737. package/src/libs/ui/search/src/lib/results-table/results-table.component.ts +49 -17
  738. package/src/libs/ui/search/src/lib/ui-search.module.ts +19 -10
  739. package/src/libs/ui/widgets/src/index.ts +0 -1
  740. package/src/libs/ui/widgets/src/lib/color-scale/color-scale.component.ts +1 -0
  741. package/src/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.html +4 -3
  742. package/src/libs/util/app-config/src/lib/app-config.ts +4 -2
  743. package/src/libs/util/app-config/src/lib/fixtures.ts +2 -0
  744. package/src/libs/util/app-config/src/lib/model.ts +1 -0
  745. package/src/libs/util/i18n/src/index.ts +1 -2
  746. package/src/libs/util/i18n/src/lib/embedded.translate.loader.ts +4 -3
  747. package/src/libs/util/i18n/src/lib/i18n.constants.ts +39 -29
  748. package/src/libs/util/i18n/src/lib/i18n.interceptor.ts +11 -9
  749. package/src/libs/util/i18n/src/lib/i18n.providers.ts +68 -0
  750. package/src/libs/util/i18n/src/lib/language-codes.ts +67 -2
  751. package/src/libs/util/shared/src/index.ts +2 -1
  752. package/src/libs/util/shared/src/lib/gn-ui-version.ts +8 -0
  753. package/src/libs/util/shared/src/lib/image-fallback.directive.ts +1 -0
  754. package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +15 -3
  755. package/src/libs/util/shared/src/lib/links/link-utils.ts +33 -12
  756. package/src/libs/util/shared/src/lib/record.util.ts +114 -0
  757. package/tailwind.base.config.js +3 -0
  758. package/tailwind.base.css +24 -26
  759. package/translations/de.json +90 -24
  760. package/translations/en.json +90 -24
  761. package/translations/es.json +89 -23
  762. package/translations/fr.json +91 -25
  763. package/translations/it.json +89 -24
  764. package/translations/nl.json +89 -23
  765. package/translations/pt.json +89 -23
  766. package/translations/sk.json +89 -23
  767. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.mjs +0 -79
  768. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.mjs +0 -44
  769. package/esm2022/libs/feature/editor/src/lib/components/wizard/wizard.component.mjs +0 -75
  770. package/esm2022/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.mjs +0 -160
  771. package/esm2022/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.mjs +0 -53
  772. package/esm2022/libs/feature/editor/src/lib/models/wizard-field.model.mjs +0 -2
  773. package/esm2022/libs/feature/editor/src/lib/models/wizard-field.type.mjs +0 -8
  774. package/esm2022/libs/feature/editor/src/lib/services/wizard.service.mjs +0 -87
  775. package/esm2022/libs/feature/record/src/lib/gn-ui-version.token.mjs +0 -3
  776. package/esm2022/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.mjs +0 -18
  777. package/esm2022/libs/ui/dataviz/src/lib/ui-dataviz.module.mjs +0 -47
  778. package/esm2022/libs/ui/elements/src/lib/link-card/link-card.component.mjs +0 -60
  779. package/esm2022/libs/ui/elements/src/lib/related-record-card/related-record-card.component.mjs +0 -46
  780. package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +0 -106
  781. package/esm2022/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.mjs +0 -16
  782. package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +0 -161
  783. package/esm2022/libs/ui/layout/src/lib/ui-layout.module.mjs +0 -31
  784. package/esm2022/libs/ui/widgets/src/lib/ui-widgets.module.mjs +0 -46
  785. package/esm2022/libs/util/i18n/src/lib/lang.service.mjs +0 -31
  786. package/esm2022/libs/util/i18n/src/lib/util-i18n.module.mjs +0 -37
  787. package/esm2022/libs/util/shared/src/lib/util-shared.module.mjs +0 -18
  788. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.d.ts +0 -15
  789. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.d.ts.map +0 -1
  790. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts +0 -14
  791. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts.map +0 -1
  792. package/libs/feature/editor/src/lib/components/wizard/wizard.component.d.ts +0 -31
  793. package/libs/feature/editor/src/lib/components/wizard/wizard.component.d.ts.map +0 -1
  794. package/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.d.ts +0 -43
  795. package/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.d.ts.map +0 -1
  796. package/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.d.ts +0 -17
  797. package/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.d.ts.map +0 -1
  798. package/libs/feature/editor/src/lib/models/wizard-field.model.d.ts +0 -10
  799. package/libs/feature/editor/src/lib/models/wizard-field.model.d.ts.map +0 -1
  800. package/libs/feature/editor/src/lib/models/wizard-field.type.d.ts +0 -7
  801. package/libs/feature/editor/src/lib/models/wizard-field.type.d.ts.map +0 -1
  802. package/libs/feature/editor/src/lib/services/wizard.service.d.ts +0 -33
  803. package/libs/feature/editor/src/lib/services/wizard.service.d.ts.map +0 -1
  804. package/libs/feature/record/src/lib/gn-ui-version.token.d.ts +0 -3
  805. package/libs/feature/record/src/lib/gn-ui-version.token.d.ts.map +0 -1
  806. package/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.d.ts +0 -9
  807. package/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.d.ts.map +0 -1
  808. package/libs/ui/dataviz/src/lib/ui-dataviz.module.d.ts +0 -11
  809. package/libs/ui/dataviz/src/lib/ui-dataviz.module.d.ts.map +0 -1
  810. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts.map +0 -1
  811. package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts +0 -12
  812. package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts.map +0 -1
  813. package/libs/ui/elements/src/lib/ui-elements.module.d.ts +0 -27
  814. package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +0 -1
  815. package/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.d.ts +0 -8
  816. package/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.d.ts.map +0 -1
  817. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +0 -34
  818. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +0 -1
  819. package/libs/ui/layout/src/lib/ui-layout.module.d.ts +0 -12
  820. package/libs/ui/layout/src/lib/ui-layout.module.d.ts.map +0 -1
  821. package/libs/ui/widgets/src/lib/ui-widgets.module.d.ts +0 -15
  822. package/libs/ui/widgets/src/lib/ui-widgets.module.d.ts.map +0 -1
  823. package/libs/util/i18n/src/lib/lang.service.d.ts +0 -13
  824. package/libs/util/i18n/src/lib/lang.service.d.ts.map +0 -1
  825. package/libs/util/i18n/src/lib/util-i18n.module.d.ts +0 -12
  826. package/libs/util/i18n/src/lib/util-i18n.module.d.ts.map +0 -1
  827. package/libs/util/shared/src/lib/util-shared.module.d.ts +0 -9
  828. package/libs/util/shared/src/lib/util-shared.module.d.ts.map +0 -1
  829. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.html +0 -1
  830. package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.css +0 -5
  831. package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.html +0 -22
  832. package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.ts +0 -93
  833. package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.css +0 -31
  834. package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.html +0 -62
  835. package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.ts +0 -206
  836. package/src/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.css +0 -3
  837. package/src/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.html +0 -21
  838. package/src/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.ts +0 -58
  839. package/src/libs/feature/editor/src/lib/models/wizard-field.model.ts +0 -10
  840. package/src/libs/feature/editor/src/lib/models/wizard-field.type.ts +0 -6
  841. package/src/libs/feature/editor/src/lib/services/wizard.service.ts +0 -105
  842. package/src/libs/feature/record/src/lib/gn-ui-version.token.ts +0 -3
  843. package/src/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.html +0 -4
  844. package/src/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.ts +0 -10
  845. package/src/libs/ui/dataviz/src/lib/ui-dataviz.module.ts +0 -27
  846. package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.html +0 -30
  847. package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.ts +0 -48
  848. package/src/libs/ui/elements/src/lib/ui-elements.module.ts +0 -61
  849. package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.css +0 -3
  850. package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.html +0 -9
  851. package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.ts +0 -15
  852. package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +0 -96
  853. package/src/libs/ui/layout/src/lib/ui-layout.module.ts +0 -18
  854. package/src/libs/ui/widgets/src/lib/ui-widgets.module.ts +0 -25
  855. package/src/libs/util/i18n/src/lib/lang.service.ts +0 -23
  856. package/src/libs/util/i18n/src/lib/util-i18n.module.ts +0 -26
  857. package/src/libs/util/shared/src/lib/util-shared.module.ts +0 -10
  858. /package/src/libs/feature/editor/src/lib/components/{record-form/form-field/form-field-map-container/form-field-map-container.component.css → multilingual-panel/multilingual-panel.component.css} +0 -0
  859. /package/src/libs/{ui/elements/src/lib/link-card/link-card.component.css → feature/search/src/lib/results-hits/results-hits.container.component.css} +0 -0
  860. /package/src/libs/ui/elements/src/lib/{related-record-card/related-record-card.component.css → external-link-card/external-link-card.component.css} +0 -0
@@ -0,0 +1,4240 @@
1
+ import { DatasetRecord } from '../../../../../../libs/common/domain/src/lib/model/record'
2
+
3
+ export const METADATA_FOR_I18N_DATASET_RECORD: DatasetRecord = {
4
+ uniqueIdentifier: '9e1ea778-d0ce-4b49-90b7-37bc0e448300',
5
+ kind: 'dataset',
6
+ otherLanguages: ['it', 'en', 'de'],
7
+ defaultLanguage: 'fr',
8
+ recordUpdated: new Date('2025-06-17T13:11:46.081Z'),
9
+ resourceCreated: new Date('2022-01-27T00:00:00.000Z'),
10
+ title:
11
+ 'Metadata for E2E testing purpose. (this title is too long and should be cut, this title is too long and should be cut, this title is too long and should be cut, this title is too long and should be cut, this title is too long and should be cut)',
12
+ abstract: 'This is the description of the metadata...',
13
+ ownerOrganization: {
14
+ name: 'Coordination, Services et Informations Géographiques (COSIG), swisstopo',
15
+ translations: {
16
+ name: {
17
+ it: 'Coordinazione, Servizi e Informazioni Geografiche COSIG, swisstopo',
18
+ en: 'Coordination, Geo-Information and Services (COGIS)',
19
+ de: 'Koordination, Geo-Information und Services KOGIS, swisstopo',
20
+ },
21
+ },
22
+ },
23
+ contacts: [
24
+ {
25
+ email: 'info@geo.admin.ch',
26
+ role: 'owner',
27
+ organization: {
28
+ name: 'Coordination, Services et Informations Géographiques (COSIG), swisstopo',
29
+ translations: {
30
+ name: {
31
+ it: 'Coordinazione, Servizi e Informazioni Geografiche COSIG, swisstopo',
32
+ en: 'Coordination, Geo-Information and Services (COGIS)',
33
+ de: 'Koordination, Geo-Information und Services KOGIS, swisstopo',
34
+ },
35
+ },
36
+ },
37
+ position: 'Info',
38
+ address: 'Wabern, 3084, CH',
39
+ },
40
+ ],
41
+ contactsForResource: [
42
+ {
43
+ email: 'info@geo.admin.ch',
44
+ role: 'owner',
45
+ organization: {
46
+ name: 'Coordination, Services et Informations Géographiques (COSIG), swisstopo',
47
+ translations: {
48
+ name: {
49
+ it: 'Coordinazione, Servizi e Informazioni Geografiche COSIG, swisstopo',
50
+ en: 'Coordination, Geo-Information and Services (COGIS)',
51
+ de: 'Koordination, Geo-Information und Services KOGIS, swisstopo',
52
+ },
53
+ },
54
+ },
55
+ position: 'Info',
56
+ address: 'Wabern, 3084, CH',
57
+ },
58
+ ],
59
+ keywords: [
60
+ {
61
+ thesaurus: {
62
+ id: 'geonetwork.thesaurus.local.theme.geocat.ch',
63
+ name: 'geocat.ch',
64
+ url: new URL(
65
+ 'https://geocat-dev.dev.bgdi.ch/geonetwork/srv/api/registries/vocabularies/local.theme.geocat.ch'
66
+ ),
67
+ },
68
+ label: 'opendata.swiss',
69
+ type: 'theme',
70
+ translations: {
71
+ label: {
72
+ it: 'opendata.swiss',
73
+ en: 'opendata.swiss',
74
+ de: 'opendata.swiss',
75
+ },
76
+ },
77
+ },
78
+ {
79
+ thesaurus: {
80
+ id: 'geonetwork.thesaurus.external.theme.gemet',
81
+ name: 'GEMET',
82
+ url: new URL(
83
+ 'https://geocat-dev.dev.bgdi.ch/geonetwork/srv/api/registries/vocabularies/external.theme.gemet'
84
+ ),
85
+ },
86
+ label: 'abri',
87
+ type: 'theme',
88
+ translations: {
89
+ label: { it: 'riparo', en: 'shelter', de: 'Unterschlupf' },
90
+ },
91
+ },
92
+ {
93
+ thesaurus: {
94
+ id: 'geonetwork.thesaurus.external.theme.gemet-theme',
95
+ name: 'GEMET themes',
96
+ url: new URL(
97
+ 'https://geocat-dev.dev.bgdi.ch/geonetwork/srv/api/registries/vocabularies/external.theme.gemet-theme'
98
+ ),
99
+ },
100
+ label: 'administration',
101
+ type: 'theme',
102
+ translations: {
103
+ label: {
104
+ it: 'amministrazione',
105
+ en: 'administration',
106
+ de: 'Verwaltung, Organisation, Institutionen, Planung, Politik und -vollzug, immaterielle Massnahmen',
107
+ },
108
+ },
109
+ },
110
+ ],
111
+ topics: ['imageryBaseMapsEarthCover'],
112
+ licenses: [],
113
+ legalConstraints: [
114
+ {
115
+ url: new URL('https://opendata.swiss/en/terms-of-use/#terms_by'),
116
+ text: 'Opendata BY: Utilisation libre. Obligation d’indiquer la source.',
117
+ translations: {
118
+ text: {
119
+ it: 'Opendata BY: Libero utilizzo. Indicazione della fonte obbligatoria.',
120
+ en: 'Opendata BY: Open use. Must provide the source.',
121
+ de: 'Opendata BY: Freie Nutzung. Quellenangabe ist Pflicht.',
122
+ },
123
+ },
124
+ },
125
+ ],
126
+ securityConstraints: [],
127
+ otherConstraints: [],
128
+ overviews: [
129
+ {
130
+ url: new URL(
131
+ 'https://geocat-dev.dev.bgdi.ch/geonetwork/srv/api/records/9e1ea778-d0ce-4b49-90b7-37bc0e448300/attachments/test.png'
132
+ ),
133
+ },
134
+ ],
135
+ spatialExtents: [
136
+ {
137
+ description: 'SWISSIMAGE 10 cm',
138
+ translations: {
139
+ description: {
140
+ it: 'SWISSIMAGE 10 cm',
141
+ en: 'SWISSIMAGE 10 cm',
142
+ de: 'SWISSIMAGE 10 cm',
143
+ },
144
+ },
145
+ },
146
+ {
147
+ bbox: [
148
+ 5.95000043087134, 45.8149997839091, 10.5000003515892, 47.8089997627207,
149
+ ],
150
+ translations: {},
151
+ },
152
+ {
153
+ geometry: {
154
+ type: 'MultiPolygon',
155
+ coordinates: [
156
+ [
157
+ [
158
+ [8.995, 45.816, 0],
159
+ [8.982, 45.816, 0],
160
+ [8.983, 45.825, 0],
161
+ [8.97, 45.825, 0],
162
+ [8.957, 45.825, 0],
163
+ [8.957, 45.834, 0],
164
+ [8.944, 45.835, 0],
165
+ [8.931, 45.835, 0],
166
+ [8.931, 45.826, 0],
167
+ [8.918, 45.826, 0],
168
+ [8.906, 45.826, 0],
169
+ [8.906, 45.835, 0],
170
+ [8.906, 45.844, 0],
171
+ [8.906, 45.853, 0],
172
+ [8.919, 45.853, 0],
173
+ [8.919, 45.862, 0],
174
+ [8.932, 45.862, 0],
175
+ [8.932, 45.871, 0],
176
+ [8.933, 45.88, 0],
177
+ [8.92, 45.88, 0],
178
+ [8.92, 45.889, 0],
179
+ [8.92, 45.898, 0],
180
+ [8.921, 45.907, 0],
181
+ [8.908, 45.907, 0],
182
+ [8.908, 45.916, 0],
183
+ [8.895, 45.916, 0],
184
+ [8.895, 45.925, 0],
185
+ [8.882, 45.925, 0],
186
+ [8.883, 45.934, 0],
187
+ [8.883, 45.943, 0],
188
+ [8.883, 45.952, 0],
189
+ [8.87, 45.952, 0],
190
+ [8.857, 45.953, 0],
191
+ [8.858, 45.962, 0],
192
+ [8.845, 45.962, 0],
193
+ [8.845, 45.971, 0],
194
+ [8.832, 45.971, 0],
195
+ [8.832, 45.98, 0],
196
+ [8.819, 45.98, 0],
197
+ [8.806, 45.98, 0],
198
+ [8.794, 45.98, 0],
199
+ [8.781, 45.981, 0],
200
+ [8.781, 45.99, 0],
201
+ [8.781, 45.999, 0],
202
+ [8.781, 46.008, 0],
203
+ [8.781, 46.017, 0],
204
+ [8.794, 46.016, 0],
205
+ [8.795, 46.025, 0],
206
+ [8.808, 46.025, 0],
207
+ [8.808, 46.034, 0],
208
+ [8.821, 46.034, 0],
209
+ [8.821, 46.043, 0],
210
+ [8.821, 46.052, 0],
211
+ [8.834, 46.052, 0],
212
+ [8.834, 46.061, 0],
213
+ [8.835, 46.07, 0],
214
+ [8.835, 46.079, 0],
215
+ [8.822, 46.079, 0],
216
+ [8.822, 46.088, 0],
217
+ [8.809, 46.088, 0],
218
+ [8.796, 46.088, 0],
219
+ [8.783, 46.088, 0],
220
+ [8.77, 46.089, 0],
221
+ [8.771, 46.098, 0],
222
+ [8.758, 46.098, 0],
223
+ [8.745, 46.098, 0],
224
+ [8.732, 46.098, 0],
225
+ [8.719, 46.098, 0],
226
+ [8.719, 46.089, 0],
227
+ [8.706, 46.089, 0],
228
+ [8.706, 46.098, 0],
229
+ [8.693, 46.099, 0],
230
+ [8.68, 46.099, 0],
231
+ [8.68, 46.108, 0],
232
+ [8.667, 46.108, 0],
233
+ [8.654, 46.108, 0],
234
+ [8.641, 46.108, 0],
235
+ [8.642, 46.117, 0],
236
+ [8.629, 46.117, 0],
237
+ [8.616, 46.117, 0],
238
+ [8.603, 46.117, 0],
239
+ [8.603, 46.126, 0],
240
+ [8.603, 46.135, 0],
241
+ [8.59, 46.136, 0],
242
+ [8.591, 46.145, 0],
243
+ [8.591, 46.154, 0],
244
+ [8.578, 46.154, 0],
245
+ [8.565, 46.154, 0],
246
+ [8.565, 46.163, 0],
247
+ [8.565, 46.172, 0],
248
+ [8.565, 46.181, 0],
249
+ [8.552, 46.181, 0],
250
+ [8.553, 46.19, 0],
251
+ [8.54, 46.19, 0],
252
+ [8.527, 46.19, 0],
253
+ [8.527, 46.199, 0],
254
+ [8.527, 46.208, 0],
255
+ [8.527, 46.217, 0],
256
+ [8.514, 46.217, 0],
257
+ [8.501, 46.217, 0],
258
+ [8.488, 46.218, 0],
259
+ [8.489, 46.227, 0],
260
+ [8.476, 46.227, 0],
261
+ [8.463, 46.227, 0],
262
+ [8.463, 46.236, 0],
263
+ [8.45, 46.236, 0],
264
+ [8.45, 46.245, 0],
265
+ [8.437, 46.245, 0],
266
+ [8.437, 46.254, 0],
267
+ [8.437, 46.263, 0],
268
+ [8.438, 46.272, 0],
269
+ [8.438, 46.281, 0],
270
+ [8.425, 46.281, 0],
271
+ [8.425, 46.29, 0],
272
+ [8.425, 46.299, 0],
273
+ [8.425, 46.308, 0],
274
+ [8.438, 46.308, 0],
275
+ [8.438, 46.317, 0],
276
+ [8.439, 46.326, 0],
277
+ [8.451, 46.326, 0],
278
+ [8.452, 46.335, 0],
279
+ [8.452, 46.344, 0],
280
+ [8.452, 46.353, 0],
281
+ [8.452, 46.362, 0],
282
+ [8.465, 46.362, 0],
283
+ [8.465, 46.371, 0],
284
+ [8.465, 46.38, 0],
285
+ [8.453, 46.38, 0],
286
+ [8.453, 46.389, 0],
287
+ [8.453, 46.398, 0],
288
+ [8.453, 46.407, 0],
289
+ [8.453, 46.416, 0],
290
+ [8.453, 46.425, 0],
291
+ [8.454, 46.434, 0],
292
+ [8.454, 46.443, 0],
293
+ [8.454, 46.452, 0],
294
+ [8.441, 46.452, 0],
295
+ [8.428, 46.452, 0],
296
+ [8.415, 46.452, 0],
297
+ [8.402, 46.452, 0],
298
+ [8.402, 46.443, 0],
299
+ [8.389, 46.443, 0],
300
+ [8.376, 46.443, 0],
301
+ [8.363, 46.444, 0],
302
+ [8.362, 46.435, 0],
303
+ [8.349, 46.435, 0],
304
+ [8.349, 46.426, 0],
305
+ [8.336, 46.426, 0],
306
+ [8.336, 46.417, 0],
307
+ [8.323, 46.417, 0],
308
+ [8.323, 46.408, 0],
309
+ [8.323, 46.399, 0],
310
+ [8.323, 46.39, 0],
311
+ [8.323, 46.381, 0],
312
+ [8.322, 46.372, 0],
313
+ [8.309, 46.372, 0],
314
+ [8.309, 46.363, 0],
315
+ [8.296, 46.363, 0],
316
+ [8.283, 46.363, 0],
317
+ [8.27, 46.363, 0],
318
+ [8.27, 46.354, 0],
319
+ [8.27, 46.345, 0],
320
+ [8.27, 46.336, 0],
321
+ [8.257, 46.336, 0],
322
+ [8.244, 46.337, 0],
323
+ [8.231, 46.337, 0],
324
+ [8.231, 46.328, 0],
325
+ [8.231, 46.319, 0],
326
+ [8.218, 46.319, 0],
327
+ [8.218, 46.31, 0],
328
+ [8.217, 46.301, 0],
329
+ [8.204, 46.301, 0],
330
+ [8.191, 46.301, 0],
331
+ [8.191, 46.292, 0],
332
+ [8.178, 46.292, 0],
333
+ [8.165, 46.292, 0],
334
+ [8.152, 46.292, 0],
335
+ [8.139, 46.292, 0],
336
+ [8.126, 46.292, 0],
337
+ [8.126, 46.283, 0],
338
+ [8.126, 46.274, 0],
339
+ [8.113, 46.274, 0],
340
+ [8.113, 46.265, 0],
341
+ [8.113, 46.256, 0],
342
+ [8.113, 46.247, 0],
343
+ [8.126, 46.247, 0],
344
+ [8.126, 46.238, 0],
345
+ [8.139, 46.238, 0],
346
+ [8.139, 46.229, 0],
347
+ [8.152, 46.229, 0],
348
+ [8.151, 46.22, 0],
349
+ [8.151, 46.211, 0],
350
+ [8.164, 46.211, 0],
351
+ [8.164, 46.202, 0],
352
+ [8.164, 46.193, 0],
353
+ [8.177, 46.193, 0],
354
+ [8.177, 46.184, 0],
355
+ [8.177, 46.175, 0],
356
+ [8.164, 46.175, 0],
357
+ [8.164, 46.166, 0],
358
+ [8.164, 46.157, 0],
359
+ [8.163, 46.148, 0],
360
+ [8.163, 46.139, 0],
361
+ [8.15, 46.139, 0],
362
+ [8.15, 46.13, 0],
363
+ [8.137, 46.13, 0],
364
+ [8.124, 46.13, 0],
365
+ [8.124, 46.121, 0],
366
+ [8.124, 46.112, 0],
367
+ [8.111, 46.112, 0],
368
+ [8.111, 46.104, 0],
369
+ [8.098, 46.104, 0],
370
+ [8.085, 46.104, 0],
371
+ [8.072, 46.104, 0],
372
+ [8.072, 46.095, 0],
373
+ [8.059, 46.095, 0],
374
+ [8.046, 46.095, 0],
375
+ [8.046, 46.086, 0],
376
+ [8.033, 46.086, 0],
377
+ [8.033, 46.077, 0],
378
+ [8.033, 46.068, 0],
379
+ [8.033, 46.059, 0],
380
+ [8.033, 46.05, 0],
381
+ [8.046, 46.05, 0],
382
+ [8.046, 46.041, 0],
383
+ [8.033, 46.041, 0],
384
+ [8.033, 46.032, 0],
385
+ [8.02, 46.032, 0],
386
+ [8.02, 46.023, 0],
387
+ [8.02, 46.014, 0],
388
+ [8.02, 46.005, 0],
389
+ [8.007, 46.005, 0],
390
+ [8.007, 45.996, 0],
391
+ [7.994, 45.996, 0],
392
+ [7.994, 45.987, 0],
393
+ [7.981, 45.987, 0],
394
+ [7.968, 45.987, 0],
395
+ [7.955, 45.987, 0],
396
+ [7.942, 45.987, 0],
397
+ [7.929, 45.987, 0],
398
+ [7.916, 45.988, 0],
399
+ [7.903, 45.988, 0],
400
+ [7.903, 45.979, 0],
401
+ [7.903, 45.97, 0],
402
+ [7.89, 45.97, 0],
403
+ [7.89, 45.961, 0],
404
+ [7.89, 45.952, 0],
405
+ [7.89, 45.943, 0],
406
+ [7.89, 45.934, 0],
407
+ [7.89, 45.925, 0],
408
+ [7.877, 45.925, 0],
409
+ [7.877, 45.916, 0],
410
+ [7.864, 45.916, 0],
411
+ [7.851, 45.916, 0],
412
+ [7.838, 45.916, 0],
413
+ [7.825, 45.916, 0],
414
+ [7.812, 45.916, 0],
415
+ [7.8, 45.916, 0],
416
+ [7.787, 45.916, 0],
417
+ [7.787, 45.925, 0],
418
+ [7.774, 45.925, 0],
419
+ [7.761, 45.925, 0],
420
+ [7.748, 45.925, 0],
421
+ [7.748, 45.916, 0],
422
+ [7.735, 45.916, 0],
423
+ [7.722, 45.916, 0],
424
+ [7.709, 45.916, 0],
425
+ [7.709, 45.925, 0],
426
+ [7.696, 45.925, 0],
427
+ [7.696, 45.934, 0],
428
+ [7.697, 45.943, 0],
429
+ [7.697, 45.952, 0],
430
+ [7.684, 45.952, 0],
431
+ [7.671, 45.952, 0],
432
+ [7.671, 45.961, 0],
433
+ [7.658, 45.961, 0],
434
+ [7.645, 45.961, 0],
435
+ [7.632, 45.961, 0],
436
+ [7.619, 45.961, 0],
437
+ [7.606, 45.961, 0],
438
+ [7.593, 45.961, 0],
439
+ [7.581, 45.961, 0],
440
+ [7.581, 45.97, 0],
441
+ [7.581, 45.979, 0],
442
+ [7.568, 45.979, 0],
443
+ [7.555, 45.98, 0],
444
+ [7.555, 45.971, 0],
445
+ [7.555, 45.962, 0],
446
+ [7.555, 45.953, 0],
447
+ [7.542, 45.953, 0],
448
+ [7.529, 45.953, 0],
449
+ [7.516, 45.953, 0],
450
+ [7.503, 45.953, 0],
451
+ [7.49, 45.953, 0],
452
+ [7.49, 45.944, 0],
453
+ [7.477, 45.944, 0],
454
+ [7.477, 45.935, 0],
455
+ [7.477, 45.926, 0],
456
+ [7.464, 45.926, 0],
457
+ [7.452, 45.926, 0],
458
+ [7.452, 45.917, 0],
459
+ [7.439, 45.917, 0],
460
+ [7.439, 45.908, 0],
461
+ [7.426, 45.908, 0],
462
+ [7.413, 45.908, 0],
463
+ [7.4, 45.908, 0],
464
+ [7.4, 45.899, 0],
465
+ [7.4, 45.89, 0],
466
+ [7.387, 45.89, 0],
467
+ [7.374, 45.89, 0],
468
+ [7.374, 45.899, 0],
469
+ [7.361, 45.899, 0],
470
+ [7.348, 45.899, 0],
471
+ [7.348, 45.908, 0],
472
+ [7.336, 45.908, 0],
473
+ [7.323, 45.908, 0],
474
+ [7.31, 45.908, 0],
475
+ [7.297, 45.908, 0],
476
+ [7.284, 45.907, 0],
477
+ [7.284, 45.899, 0],
478
+ [7.271, 45.898, 0],
479
+ [7.271, 45.889, 0],
480
+ [7.271, 45.88, 0],
481
+ [7.258, 45.88, 0],
482
+ [7.245, 45.88, 0],
483
+ [7.233, 45.88, 0],
484
+ [7.22, 45.88, 0],
485
+ [7.22, 45.871, 0],
486
+ [7.207, 45.871, 0],
487
+ [7.207, 45.862, 0],
488
+ [7.207, 45.853, 0],
489
+ [7.194, 45.853, 0],
490
+ [7.181, 45.853, 0],
491
+ [7.168, 45.853, 0],
492
+ [7.168, 45.862, 0],
493
+ [7.155, 45.862, 0],
494
+ [7.143, 45.862, 0],
495
+ [7.13, 45.862, 0],
496
+ [7.13, 45.853, 0],
497
+ [7.117, 45.853, 0],
498
+ [7.104, 45.853, 0],
499
+ [7.091, 45.853, 0],
500
+ [7.091, 45.862, 0],
501
+ [7.091, 45.871, 0],
502
+ [7.078, 45.871, 0],
503
+ [7.078, 45.88, 0],
504
+ [7.065, 45.88, 0],
505
+ [7.065, 45.889, 0],
506
+ [7.065, 45.898, 0],
507
+ [7.052, 45.898, 0],
508
+ [7.052, 45.907, 0],
509
+ [7.052, 45.916, 0],
510
+ [7.039, 45.916, 0],
511
+ [7.039, 45.925, 0],
512
+ [7.026, 45.925, 0],
513
+ [7.026, 45.934, 0],
514
+ [7.026, 45.943, 0],
515
+ [7.026, 45.952, 0],
516
+ [7.013, 45.952, 0],
517
+ [7.013, 45.961, 0],
518
+ [7, 45.961, 0],
519
+ [7, 45.97, 0],
520
+ [7, 45.979, 0],
521
+ [7, 45.988, 0],
522
+ [7, 45.997, 0],
523
+ [6.987, 45.997, 0],
524
+ [6.974, 45.997, 0],
525
+ [6.974, 46.006, 0],
526
+ [6.974, 46.015, 0],
527
+ [6.974, 46.024, 0],
528
+ [6.961, 46.024, 0],
529
+ [6.961, 46.033, 0],
530
+ [6.948, 46.032, 0],
531
+ [6.948, 46.041, 0],
532
+ [6.935, 46.041, 0],
533
+ [6.922, 46.041, 0],
534
+ [6.909, 46.041, 0],
535
+ [6.896, 46.041, 0],
536
+ [6.883, 46.041, 0],
537
+ [6.87, 46.041, 0],
538
+ [6.87, 46.05, 0],
539
+ [6.87, 46.059, 0],
540
+ [6.87, 46.068, 0],
541
+ [6.87, 46.077, 0],
542
+ [6.87, 46.086, 0],
543
+ [6.87, 46.095, 0],
544
+ [6.87, 46.104, 0],
545
+ [6.883, 46.104, 0],
546
+ [6.882, 46.113, 0],
547
+ [6.882, 46.122, 0],
548
+ [6.869, 46.122, 0],
549
+ [6.857, 46.122, 0],
550
+ [6.844, 46.122, 0],
551
+ [6.831, 46.122, 0],
552
+ [6.818, 46.122, 0],
553
+ [6.805, 46.122, 0],
554
+ [6.805, 46.131, 0],
555
+ [6.792, 46.131, 0],
556
+ [6.792, 46.14, 0],
557
+ [6.792, 46.149, 0],
558
+ [6.779, 46.149, 0],
559
+ [6.778, 46.158, 0],
560
+ [6.778, 46.167, 0],
561
+ [6.791, 46.167, 0],
562
+ [6.791, 46.176, 0],
563
+ [6.804, 46.176, 0],
564
+ [6.804, 46.185, 0],
565
+ [6.804, 46.194, 0],
566
+ [6.791, 46.194, 0],
567
+ [6.791, 46.203, 0],
568
+ [6.791, 46.212, 0],
569
+ [6.804, 46.212, 0],
570
+ [6.804, 46.221, 0],
571
+ [6.817, 46.221, 0],
572
+ [6.816, 46.23, 0],
573
+ [6.816, 46.239, 0],
574
+ [6.829, 46.239, 0],
575
+ [6.829, 46.248, 0],
576
+ [6.829, 46.257, 0],
577
+ [6.842, 46.257, 0],
578
+ [6.842, 46.266, 0],
579
+ [6.855, 46.266, 0],
580
+ [6.855, 46.275, 0],
581
+ [6.855, 46.284, 0],
582
+ [6.842, 46.284, 0],
583
+ [6.842, 46.293, 0],
584
+ [6.829, 46.293, 0],
585
+ [6.816, 46.293, 0],
586
+ [6.816, 46.302, 0],
587
+ [6.816, 46.311, 0],
588
+ [6.803, 46.311, 0],
589
+ [6.79, 46.311, 0],
590
+ [6.789, 46.32, 0],
591
+ [6.789, 46.329, 0],
592
+ [6.776, 46.328, 0],
593
+ [6.776, 46.337, 0],
594
+ [6.776, 46.346, 0],
595
+ [6.763, 46.346, 0],
596
+ [6.763, 46.355, 0],
597
+ [6.763, 46.364, 0],
598
+ [6.776, 46.364, 0],
599
+ [6.776, 46.373, 0],
600
+ [6.789, 46.374, 0],
601
+ [6.789, 46.382, 0],
602
+ [6.789, 46.391, 0],
603
+ [6.802, 46.392, 0],
604
+ [6.801, 46.401, 0],
605
+ [6.801, 46.41, 0],
606
+ [6.801, 46.419, 0],
607
+ [6.801, 46.428, 0],
608
+ [6.788, 46.427, 0],
609
+ [6.775, 46.427, 0],
610
+ [6.762, 46.427, 0],
611
+ [6.762, 46.436, 0],
612
+ [6.749, 46.436, 0],
613
+ [6.736, 46.436, 0],
614
+ [6.723, 46.436, 0],
615
+ [6.723, 46.445, 0],
616
+ [6.71, 46.445, 0],
617
+ [6.697, 46.445, 0],
618
+ [6.684, 46.445, 0],
619
+ [6.671, 46.445, 0],
620
+ [6.671, 46.454, 0],
621
+ [6.658, 46.454, 0],
622
+ [6.645, 46.454, 0],
623
+ [6.632, 46.453, 0],
624
+ [6.619, 46.453, 0],
625
+ [6.606, 46.453, 0],
626
+ [6.593, 46.453, 0],
627
+ [6.58, 46.453, 0],
628
+ [6.567, 46.453, 0],
629
+ [6.554, 46.453, 0],
630
+ [6.541, 46.453, 0],
631
+ [6.528, 46.453, 0],
632
+ [6.515, 46.453, 0],
633
+ [6.515, 46.444, 0],
634
+ [6.502, 46.443, 0],
635
+ [6.502, 46.434, 0],
636
+ [6.489, 46.434, 0],
637
+ [6.476, 46.434, 0],
638
+ [6.476, 46.425, 0],
639
+ [6.463, 46.425, 0],
640
+ [6.45, 46.425, 0],
641
+ [6.45, 46.416, 0],
642
+ [6.437, 46.416, 0],
643
+ [6.437, 46.407, 0],
644
+ [6.424, 46.407, 0],
645
+ [6.411, 46.407, 0],
646
+ [6.398, 46.407, 0],
647
+ [6.385, 46.406, 0],
648
+ [6.372, 46.406, 0],
649
+ [6.359, 46.406, 0],
650
+ [6.359, 46.397, 0],
651
+ [6.346, 46.397, 0],
652
+ [6.333, 46.397, 0],
653
+ [6.334, 46.388, 0],
654
+ [6.321, 46.388, 0],
655
+ [6.308, 46.388, 0],
656
+ [6.308, 46.379, 0],
657
+ [6.295, 46.379, 0],
658
+ [6.295, 46.37, 0],
659
+ [6.282, 46.369, 0],
660
+ [6.282, 46.36, 0],
661
+ [6.269, 46.36, 0],
662
+ [6.256, 46.36, 0],
663
+ [6.256, 46.351, 0],
664
+ [6.257, 46.342, 0],
665
+ [6.244, 46.342, 0],
666
+ [6.244, 46.333, 0],
667
+ [6.244, 46.324, 0],
668
+ [6.244, 46.315, 0],
669
+ [6.244, 46.306, 0],
670
+ [6.257, 46.306, 0],
671
+ [6.258, 46.297, 0],
672
+ [6.258, 46.288, 0],
673
+ [6.258, 46.279, 0],
674
+ [6.258, 46.27, 0],
675
+ [6.258, 46.261, 0],
676
+ [6.271, 46.261, 0],
677
+ [6.284, 46.262, 0],
678
+ [6.284, 46.271, 0],
679
+ [6.297, 46.271, 0],
680
+ [6.297, 46.262, 0],
681
+ [6.31, 46.262, 0],
682
+ [6.31, 46.253, 0],
683
+ [6.311, 46.244, 0],
684
+ [6.311, 46.235, 0],
685
+ [6.311, 46.226, 0],
686
+ [6.298, 46.226, 0],
687
+ [6.298, 46.217, 0],
688
+ [6.285, 46.217, 0],
689
+ [6.285, 46.208, 0],
690
+ [6.273, 46.207, 0],
691
+ [6.26, 46.207, 0],
692
+ [6.26, 46.198, 0],
693
+ [6.247, 46.198, 0],
694
+ [6.234, 46.198, 0],
695
+ [6.221, 46.198, 0],
696
+ [6.221, 46.189, 0],
697
+ [6.208, 46.189, 0],
698
+ [6.208, 46.18, 0],
699
+ [6.195, 46.18, 0],
700
+ [6.196, 46.171, 0],
701
+ [6.196, 46.162, 0],
702
+ [6.183, 46.161, 0],
703
+ [6.183, 46.152, 0],
704
+ [6.17, 46.152, 0],
705
+ [6.157, 46.152, 0],
706
+ [6.157, 46.143, 0],
707
+ [6.144, 46.143, 0],
708
+ [6.145, 46.134, 0],
709
+ [6.132, 46.134, 0],
710
+ [6.119, 46.134, 0],
711
+ [6.106, 46.134, 0],
712
+ [6.106, 46.143, 0],
713
+ [6.093, 46.142, 0],
714
+ [6.08, 46.142, 0],
715
+ [6.067, 46.142, 0],
716
+ [6.054, 46.142, 0],
717
+ [6.054, 46.133, 0],
718
+ [6.041, 46.133, 0],
719
+ [6.028, 46.133, 0],
720
+ [6.015, 46.132, 0],
721
+ [6.015, 46.141, 0],
722
+ [6.002, 46.141, 0],
723
+ [5.989, 46.141, 0],
724
+ [5.989, 46.132, 0],
725
+ [5.976, 46.132, 0],
726
+ [5.977, 46.123, 0],
727
+ [5.964, 46.123, 0],
728
+ [5.951, 46.123, 0],
729
+ [5.951, 46.132, 0],
730
+ [5.95, 46.141, 0],
731
+ [5.963, 46.141, 0],
732
+ [5.963, 46.15, 0],
733
+ [5.963, 46.159, 0],
734
+ [5.963, 46.168, 0],
735
+ [5.976, 46.168, 0],
736
+ [5.975, 46.177, 0],
737
+ [5.975, 46.186, 0],
738
+ [5.962, 46.186, 0],
739
+ [5.962, 46.195, 0],
740
+ [5.962, 46.204, 0],
741
+ [5.961, 46.213, 0],
742
+ [5.961, 46.222, 0],
743
+ [5.974, 46.222, 0],
744
+ [5.987, 46.222, 0],
745
+ [5.987, 46.231, 0],
746
+ [6, 46.231, 0],
747
+ [6.013, 46.231, 0],
748
+ [6.012, 46.24, 0],
749
+ [6.025, 46.241, 0],
750
+ [6.038, 46.241, 0],
751
+ [6.051, 46.241, 0],
752
+ [6.051, 46.25, 0],
753
+ [6.064, 46.25, 0],
754
+ [6.077, 46.25, 0],
755
+ [6.09, 46.25, 0],
756
+ [6.103, 46.251, 0],
757
+ [6.103, 46.26, 0],
758
+ [6.103, 46.269, 0],
759
+ [6.102, 46.278, 0],
760
+ [6.089, 46.277, 0],
761
+ [6.089, 46.286, 0],
762
+ [6.102, 46.287, 0],
763
+ [6.102, 46.295, 0],
764
+ [6.115, 46.296, 0],
765
+ [6.115, 46.305, 0],
766
+ [6.114, 46.314, 0],
767
+ [6.114, 46.323, 0],
768
+ [6.127, 46.323, 0],
769
+ [6.127, 46.332, 0],
770
+ [6.127, 46.341, 0],
771
+ [6.14, 46.341, 0],
772
+ [6.14, 46.35, 0],
773
+ [6.153, 46.35, 0],
774
+ [6.152, 46.359, 0],
775
+ [6.152, 46.368, 0],
776
+ [6.152, 46.377, 0],
777
+ [6.139, 46.377, 0],
778
+ [6.126, 46.377, 0],
779
+ [6.126, 46.386, 0],
780
+ [6.113, 46.386, 0],
781
+ [6.112, 46.395, 0],
782
+ [6.099, 46.394, 0],
783
+ [6.099, 46.403, 0],
784
+ [6.086, 46.403, 0],
785
+ [6.073, 46.403, 0],
786
+ [6.073, 46.412, 0],
787
+ [6.06, 46.412, 0],
788
+ [6.06, 46.421, 0],
789
+ [6.06, 46.43, 0],
790
+ [6.073, 46.43, 0],
791
+ [6.072, 46.439, 0],
792
+ [6.072, 46.448, 0],
793
+ [6.072, 46.457, 0],
794
+ [6.072, 46.466, 0],
795
+ [6.071, 46.475, 0],
796
+ [6.084, 46.475, 0],
797
+ [6.084, 46.484, 0],
798
+ [6.097, 46.484, 0],
799
+ [6.097, 46.493, 0],
800
+ [6.097, 46.502, 0],
801
+ [6.097, 46.511, 0],
802
+ [6.11, 46.512, 0],
803
+ [6.109, 46.521, 0],
804
+ [6.122, 46.521, 0],
805
+ [6.122, 46.53, 0],
806
+ [6.135, 46.53, 0],
807
+ [6.135, 46.539, 0],
808
+ [6.135, 46.548, 0],
809
+ [6.135, 46.557, 0],
810
+ [6.122, 46.557, 0],
811
+ [6.121, 46.566, 0],
812
+ [6.108, 46.565, 0],
813
+ [6.108, 46.574, 0],
814
+ [6.108, 46.583, 0],
815
+ [6.108, 46.592, 0],
816
+ [6.121, 46.593, 0],
817
+ [6.12, 46.602, 0],
818
+ [6.133, 46.602, 0],
819
+ [6.147, 46.602, 0],
820
+ [6.146, 46.611, 0],
821
+ [6.159, 46.611, 0],
822
+ [6.159, 46.62, 0],
823
+ [6.172, 46.62, 0],
824
+ [6.172, 46.629, 0],
825
+ [6.185, 46.629, 0],
826
+ [6.185, 46.638, 0],
827
+ [6.198, 46.638, 0],
828
+ [6.198, 46.647, 0],
829
+ [6.211, 46.648, 0],
830
+ [6.224, 46.648, 0],
831
+ [6.224, 46.657, 0],
832
+ [6.223, 46.666, 0],
833
+ [6.236, 46.666, 0],
834
+ [6.25, 46.666, 0],
835
+ [6.249, 46.675, 0],
836
+ [6.262, 46.675, 0],
837
+ [6.262, 46.684, 0],
838
+ [6.262, 46.693, 0],
839
+ [6.275, 46.693, 0],
840
+ [6.288, 46.693, 0],
841
+ [6.288, 46.702, 0],
842
+ [6.301, 46.703, 0],
843
+ [6.314, 46.703, 0],
844
+ [6.314, 46.712, 0],
845
+ [6.327, 46.712, 0],
846
+ [6.34, 46.712, 0],
847
+ [6.34, 46.721, 0],
848
+ [6.353, 46.721, 0],
849
+ [6.353, 46.73, 0],
850
+ [6.366, 46.73, 0],
851
+ [6.366, 46.739, 0],
852
+ [6.379, 46.739, 0],
853
+ [6.379, 46.748, 0],
854
+ [6.392, 46.748, 0],
855
+ [6.391, 46.757, 0],
856
+ [6.405, 46.757, 0],
857
+ [6.418, 46.758, 0],
858
+ [6.431, 46.758, 0],
859
+ [6.431, 46.767, 0],
860
+ [6.43, 46.776, 0],
861
+ [6.444, 46.776, 0],
862
+ [6.443, 46.785, 0],
863
+ [6.443, 46.794, 0],
864
+ [6.43, 46.794, 0],
865
+ [6.43, 46.803, 0],
866
+ [6.43, 46.812, 0],
867
+ [6.43, 46.821, 0],
868
+ [6.429, 46.83, 0],
869
+ [6.429, 46.839, 0],
870
+ [6.442, 46.839, 0],
871
+ [6.442, 46.848, 0],
872
+ [6.455, 46.848, 0],
873
+ [6.455, 46.857, 0],
874
+ [6.455, 46.866, 0],
875
+ [6.455, 46.875, 0],
876
+ [6.455, 46.884, 0],
877
+ [6.454, 46.893, 0],
878
+ [6.454, 46.902, 0],
879
+ [6.441, 46.902, 0],
880
+ [6.441, 46.911, 0],
881
+ [6.428, 46.911, 0],
882
+ [6.428, 46.92, 0],
883
+ [6.428, 46.929, 0],
884
+ [6.427, 46.938, 0],
885
+ [6.441, 46.938, 0],
886
+ [6.44, 46.947, 0],
887
+ [6.453, 46.947, 0],
888
+ [6.453, 46.956, 0],
889
+ [6.466, 46.956, 0],
890
+ [6.466, 46.965, 0],
891
+ [6.479, 46.965, 0],
892
+ [6.479, 46.974, 0],
893
+ [6.492, 46.974, 0],
894
+ [6.492, 46.983, 0],
895
+ [6.505, 46.983, 0],
896
+ [6.506, 46.974, 0],
897
+ [6.519, 46.974, 0],
898
+ [6.532, 46.974, 0],
899
+ [6.532, 46.983, 0],
900
+ [6.545, 46.984, 0],
901
+ [6.558, 46.984, 0],
902
+ [6.571, 46.984, 0],
903
+ [6.571, 46.993, 0],
904
+ [6.584, 46.993, 0],
905
+ [6.597, 46.993, 0],
906
+ [6.61, 46.993, 0],
907
+ [6.61, 47.002, 0],
908
+ [6.623, 47.002, 0],
909
+ [6.637, 47.002, 0],
910
+ [6.636, 47.011, 0],
911
+ [6.636, 47.02, 0],
912
+ [6.649, 47.02, 0],
913
+ [6.649, 47.029, 0],
914
+ [6.662, 47.029, 0],
915
+ [6.662, 47.038, 0],
916
+ [6.675, 47.038, 0],
917
+ [6.689, 47.039, 0],
918
+ [6.689, 47.048, 0],
919
+ [6.688, 47.057, 0],
920
+ [6.688, 47.066, 0],
921
+ [6.688, 47.075, 0],
922
+ [6.701, 47.075, 0],
923
+ [6.701, 47.084, 0],
924
+ [6.701, 47.093, 0],
925
+ [6.714, 47.093, 0],
926
+ [6.727, 47.093, 0],
927
+ [6.727, 47.102, 0],
928
+ [6.727, 47.111, 0],
929
+ [6.74, 47.111, 0],
930
+ [6.74, 47.12, 0],
931
+ [6.753, 47.12, 0],
932
+ [6.753, 47.129, 0],
933
+ [6.766, 47.129, 0],
934
+ [6.78, 47.129, 0],
935
+ [6.793, 47.129, 0],
936
+ [6.793, 47.138, 0],
937
+ [6.806, 47.138, 0],
938
+ [6.806, 47.147, 0],
939
+ [6.819, 47.147, 0],
940
+ [6.819, 47.156, 0],
941
+ [6.832, 47.156, 0],
942
+ [6.832, 47.165, 0],
943
+ [6.832, 47.174, 0],
944
+ [6.845, 47.174, 0],
945
+ [6.845, 47.183, 0],
946
+ [6.858, 47.183, 0],
947
+ [6.858, 47.192, 0],
948
+ [6.871, 47.193, 0],
949
+ [6.871, 47.202, 0],
950
+ [6.871, 47.211, 0],
951
+ [6.884, 47.211, 0],
952
+ [6.897, 47.211, 0],
953
+ [6.897, 47.22, 0],
954
+ [6.911, 47.22, 0],
955
+ [6.91, 47.229, 0],
956
+ [6.924, 47.229, 0],
957
+ [6.924, 47.238, 0],
958
+ [6.937, 47.238, 0],
959
+ [6.937, 47.247, 0],
960
+ [6.937, 47.256, 0],
961
+ [6.937, 47.265, 0],
962
+ [6.936, 47.274, 0],
963
+ [6.936, 47.283, 0],
964
+ [6.936, 47.292, 0],
965
+ [6.936, 47.301, 0],
966
+ [6.949, 47.301, 0],
967
+ [6.963, 47.301, 0],
968
+ [6.976, 47.301, 0],
969
+ [6.989, 47.301, 0],
970
+ [7.002, 47.301, 0],
971
+ [7.002, 47.31, 0],
972
+ [7.002, 47.319, 0],
973
+ [7.002, 47.328, 0],
974
+ [7.015, 47.328, 0],
975
+ [7.029, 47.328, 0],
976
+ [7.028, 47.337, 0],
977
+ [7.042, 47.337, 0],
978
+ [7.042, 47.346, 0],
979
+ [7.042, 47.355, 0],
980
+ [7.028, 47.355, 0],
981
+ [7.028, 47.364, 0],
982
+ [7.015, 47.364, 0],
983
+ [7.002, 47.364, 0],
984
+ [7.002, 47.355, 0],
985
+ [6.989, 47.355, 0],
986
+ [6.975, 47.355, 0],
987
+ [6.962, 47.355, 0],
988
+ [6.949, 47.355, 0],
989
+ [6.936, 47.355, 0],
990
+ [6.922, 47.355, 0],
991
+ [6.909, 47.355, 0],
992
+ [6.896, 47.355, 0],
993
+ [6.896, 47.346, 0],
994
+ [6.883, 47.346, 0],
995
+ [6.87, 47.345, 0],
996
+ [6.869, 47.354, 0],
997
+ [6.869, 47.363, 0],
998
+ [6.883, 47.363, 0],
999
+ [6.883, 47.372, 0],
1000
+ [6.882, 47.381, 0],
1001
+ [6.882, 47.39, 0],
1002
+ [6.896, 47.391, 0],
1003
+ [6.909, 47.391, 0],
1004
+ [6.909, 47.4, 0],
1005
+ [6.909, 47.409, 0],
1006
+ [6.922, 47.409, 0],
1007
+ [6.935, 47.409, 0],
1008
+ [6.935, 47.418, 0],
1009
+ [6.935, 47.427, 0],
1010
+ [6.935, 47.436, 0],
1011
+ [6.948, 47.436, 0],
1012
+ [6.961, 47.436, 0],
1013
+ [6.961, 47.445, 0],
1014
+ [6.961, 47.454, 0],
1015
+ [6.975, 47.454, 0],
1016
+ [6.988, 47.454, 0],
1017
+ [6.988, 47.463, 0],
1018
+ [6.988, 47.472, 0],
1019
+ [6.974, 47.472, 0],
1020
+ [6.974, 47.481, 0],
1021
+ [6.974, 47.49, 0],
1022
+ [6.974, 47.499, 0],
1023
+ [6.987, 47.499, 0],
1024
+ [6.987, 47.508, 0],
1025
+ [7.001, 47.508, 0],
1026
+ [7.014, 47.508, 0],
1027
+ [7.027, 47.508, 0],
1028
+ [7.04, 47.508, 0],
1029
+ [7.04, 47.499, 0],
1030
+ [7.054, 47.499, 0],
1031
+ [7.067, 47.499, 0],
1032
+ [7.08, 47.499, 0],
1033
+ [7.094, 47.499, 0],
1034
+ [7.107, 47.499, 0],
1035
+ [7.12, 47.499, 0],
1036
+ [7.12, 47.508, 0],
1037
+ [7.133, 47.508, 0],
1038
+ [7.147, 47.508, 0],
1039
+ [7.147, 47.499, 0],
1040
+ [7.16, 47.499, 0],
1041
+ [7.173, 47.499, 0],
1042
+ [7.186, 47.499, 0],
1043
+ [7.2, 47.5, 0],
1044
+ [7.213, 47.5, 0],
1045
+ [7.213, 47.491, 0],
1046
+ [7.213, 47.482, 0],
1047
+ [7.2, 47.482, 0],
1048
+ [7.2, 47.473, 0],
1049
+ [7.187, 47.472, 0],
1050
+ [7.187, 47.464, 0],
1051
+ [7.187, 47.455, 0],
1052
+ [7.187, 47.446, 0],
1053
+ [7.2, 47.446, 0],
1054
+ [7.213, 47.446, 0],
1055
+ [7.226, 47.446, 0],
1056
+ [7.24, 47.446, 0],
1057
+ [7.24, 47.437, 0],
1058
+ [7.253, 47.437, 0],
1059
+ [7.266, 47.437, 0],
1060
+ [7.28, 47.437, 0],
1061
+ [7.293, 47.437, 0],
1062
+ [7.293, 47.446, 0],
1063
+ [7.306, 47.446, 0],
1064
+ [7.319, 47.446, 0],
1065
+ [7.333, 47.446, 0],
1066
+ [7.346, 47.446, 0],
1067
+ [7.346, 47.437, 0],
1068
+ [7.359, 47.437, 0],
1069
+ [7.372, 47.437, 0],
1070
+ [7.386, 47.437, 0],
1071
+ [7.399, 47.437, 0],
1072
+ [7.399, 47.446, 0],
1073
+ [7.412, 47.446, 0],
1074
+ [7.412, 47.455, 0],
1075
+ [7.425, 47.455, 0],
1076
+ [7.425, 47.464, 0],
1077
+ [7.425, 47.473, 0],
1078
+ [7.412, 47.473, 0],
1079
+ [7.412, 47.482, 0],
1080
+ [7.412, 47.491, 0],
1081
+ [7.425, 47.491, 0],
1082
+ [7.425, 47.5, 0],
1083
+ [7.439, 47.5, 0],
1084
+ [7.452, 47.5, 0],
1085
+ [7.452, 47.491, 0],
1086
+ [7.465, 47.491, 0],
1087
+ [7.478, 47.491, 0],
1088
+ [7.492, 47.491, 0],
1089
+ [7.492, 47.5, 0],
1090
+ [7.492, 47.509, 0],
1091
+ [7.492, 47.518, 0],
1092
+ [7.492, 47.527, 0],
1093
+ [7.492, 47.536, 0],
1094
+ [7.492, 47.545, 0],
1095
+ [7.505, 47.545, 0],
1096
+ [7.505, 47.554, 0],
1097
+ [7.518, 47.554, 0],
1098
+ [7.518, 47.563, 0],
1099
+ [7.532, 47.563, 0],
1100
+ [7.545, 47.563, 0],
1101
+ [7.545, 47.572, 0],
1102
+ [7.545, 47.581, 0],
1103
+ [7.558, 47.581, 0],
1104
+ [7.572, 47.581, 0],
1105
+ [7.572, 47.59, 0],
1106
+ [7.585, 47.59, 0],
1107
+ [7.585, 47.599, 0],
1108
+ [7.598, 47.599, 0],
1109
+ [7.598, 47.59, 0],
1110
+ [7.611, 47.59, 0],
1111
+ [7.625, 47.59, 0],
1112
+ [7.625, 47.599, 0],
1113
+ [7.638, 47.599, 0],
1114
+ [7.651, 47.598, 0],
1115
+ [7.665, 47.598, 0],
1116
+ [7.678, 47.598, 0],
1117
+ [7.678, 47.607, 0],
1118
+ [7.691, 47.607, 0],
1119
+ [7.705, 47.607, 0],
1120
+ [7.705, 47.598, 0],
1121
+ [7.705, 47.589, 0],
1122
+ [7.691, 47.589, 0],
1123
+ [7.691, 47.58, 0],
1124
+ [7.691, 47.571, 0],
1125
+ [7.691, 47.562, 0],
1126
+ [7.678, 47.562, 0],
1127
+ [7.665, 47.562, 0],
1128
+ [7.664, 47.553, 0],
1129
+ [7.664, 47.545, 0],
1130
+ [7.678, 47.544, 0],
1131
+ [7.691, 47.544, 0],
1132
+ [7.704, 47.544, 0],
1133
+ [7.718, 47.544, 0],
1134
+ [7.731, 47.544, 0],
1135
+ [7.744, 47.544, 0],
1136
+ [7.744, 47.553, 0],
1137
+ [7.757, 47.553, 0],
1138
+ [7.771, 47.553, 0],
1139
+ [7.771, 47.562, 0],
1140
+ [7.784, 47.562, 0],
1141
+ [7.797, 47.562, 0],
1142
+ [7.797, 47.571, 0],
1143
+ [7.811, 47.571, 0],
1144
+ [7.811, 47.58, 0],
1145
+ [7.811, 47.589, 0],
1146
+ [7.824, 47.589, 0],
1147
+ [7.837, 47.589, 0],
1148
+ [7.851, 47.589, 0],
1149
+ [7.864, 47.589, 0],
1150
+ [7.864, 47.598, 0],
1151
+ [7.877, 47.598, 0],
1152
+ [7.891, 47.598, 0],
1153
+ [7.891, 47.589, 0],
1154
+ [7.904, 47.589, 0],
1155
+ [7.917, 47.589, 0],
1156
+ [7.917, 47.58, 0],
1157
+ [7.917, 47.571, 0],
1158
+ [7.917, 47.562, 0],
1159
+ [7.917, 47.553, 0],
1160
+ [7.93, 47.553, 0],
1161
+ [7.943, 47.553, 0],
1162
+ [7.944, 47.562, 0],
1163
+ [7.957, 47.562, 0],
1164
+ [7.97, 47.561, 0],
1165
+ [7.983, 47.561, 0],
1166
+ [7.997, 47.561, 0],
1167
+ [8.01, 47.561, 0],
1168
+ [8.023, 47.561, 0],
1169
+ [8.037, 47.561, 0],
1170
+ [8.05, 47.561, 0],
1171
+ [8.05, 47.57, 0],
1172
+ [8.063, 47.57, 0],
1173
+ [8.077, 47.57, 0],
1174
+ [8.09, 47.57, 0],
1175
+ [8.09, 47.579, 0],
1176
+ [8.103, 47.579, 0],
1177
+ [8.103, 47.588, 0],
1178
+ [8.117, 47.588, 0],
1179
+ [8.13, 47.588, 0],
1180
+ [8.13, 47.597, 0],
1181
+ [8.143, 47.597, 0],
1182
+ [8.157, 47.596, 0],
1183
+ [8.157, 47.605, 0],
1184
+ [8.17, 47.605, 0],
1185
+ [8.183, 47.605, 0],
1186
+ [8.183, 47.614, 0],
1187
+ [8.184, 47.623, 0],
1188
+ [8.197, 47.623, 0],
1189
+ [8.21, 47.623, 0],
1190
+ [8.223, 47.623, 0],
1191
+ [8.237, 47.623, 0],
1192
+ [8.25, 47.623, 0],
1193
+ [8.263, 47.623, 0],
1194
+ [8.263, 47.614, 0],
1195
+ [8.277, 47.614, 0],
1196
+ [8.29, 47.614, 0],
1197
+ [8.303, 47.613, 0],
1198
+ [8.303, 47.604, 0],
1199
+ [8.303, 47.595, 0],
1200
+ [8.303, 47.586, 0],
1201
+ [8.316, 47.586, 0],
1202
+ [8.329, 47.586, 0],
1203
+ [8.329, 47.577, 0],
1204
+ [8.342, 47.577, 0],
1205
+ [8.356, 47.577, 0],
1206
+ [8.369, 47.577, 0],
1207
+ [8.382, 47.577, 0],
1208
+ [8.382, 47.586, 0],
1209
+ [8.396, 47.586, 0],
1210
+ [8.409, 47.586, 0],
1211
+ [8.409, 47.577, 0],
1212
+ [8.422, 47.577, 0],
1213
+ [8.435, 47.576, 0],
1214
+ [8.449, 47.576, 0],
1215
+ [8.449, 47.585, 0],
1216
+ [8.449, 47.594, 0],
1217
+ [8.449, 47.603, 0],
1218
+ [8.463, 47.603, 0],
1219
+ [8.463, 47.612, 0],
1220
+ [8.476, 47.612, 0],
1221
+ [8.476, 47.621, 0],
1222
+ [8.49, 47.621, 0],
1223
+ [8.503, 47.621, 0],
1224
+ [8.503, 47.63, 0],
1225
+ [8.503, 47.639, 0],
1226
+ [8.49, 47.639, 0],
1227
+ [8.477, 47.639, 0],
1228
+ [8.476, 47.63, 0],
1229
+ [8.463, 47.63, 0],
1230
+ [8.463, 47.639, 0],
1231
+ [8.463, 47.648, 0],
1232
+ [8.45, 47.648, 0],
1233
+ [8.437, 47.648, 0],
1234
+ [8.424, 47.648, 0],
1235
+ [8.424, 47.657, 0],
1236
+ [8.41, 47.658, 0],
1237
+ [8.411, 47.667, 0],
1238
+ [8.397, 47.667, 0],
1239
+ [8.397, 47.676, 0],
1240
+ [8.398, 47.685, 0],
1241
+ [8.398, 47.694, 0],
1242
+ [8.398, 47.703, 0],
1243
+ [8.398, 47.712, 0],
1244
+ [8.411, 47.712, 0],
1245
+ [8.412, 47.721, 0],
1246
+ [8.425, 47.72, 0],
1247
+ [8.438, 47.72, 0],
1248
+ [8.438, 47.729, 0],
1249
+ [8.439, 47.738, 0],
1250
+ [8.439, 47.747, 0],
1251
+ [8.452, 47.747, 0],
1252
+ [8.452, 47.756, 0],
1253
+ [8.466, 47.756, 0],
1254
+ [8.466, 47.765, 0],
1255
+ [8.466, 47.774, 0],
1256
+ [8.479, 47.774, 0],
1257
+ [8.493, 47.774, 0],
1258
+ [8.493, 47.783, 0],
1259
+ [8.506, 47.783, 0],
1260
+ [8.519, 47.783, 0],
1261
+ [8.533, 47.782, 0],
1262
+ [8.533, 47.791, 0],
1263
+ [8.546, 47.791, 0],
1264
+ [8.56, 47.791, 0],
1265
+ [8.56, 47.8, 0],
1266
+ [8.56, 47.809, 0],
1267
+ [8.573, 47.809, 0],
1268
+ [8.587, 47.809, 0],
1269
+ [8.6, 47.809, 0],
1270
+ [8.613, 47.809, 0],
1271
+ [8.627, 47.808, 0],
1272
+ [8.64, 47.808, 0],
1273
+ [8.653, 47.808, 0],
1274
+ [8.667, 47.808, 0],
1275
+ [8.667, 47.799, 0],
1276
+ [8.666, 47.79, 0],
1277
+ [8.68, 47.79, 0],
1278
+ [8.693, 47.79, 0],
1279
+ [8.693, 47.781, 0],
1280
+ [8.693, 47.772, 0],
1281
+ [8.706, 47.772, 0],
1282
+ [8.719, 47.772, 0],
1283
+ [8.733, 47.771, 0],
1284
+ [8.732, 47.762, 0],
1285
+ [8.746, 47.762, 0],
1286
+ [8.746, 47.753, 0],
1287
+ [8.745, 47.744, 0],
1288
+ [8.732, 47.744, 0],
1289
+ [8.732, 47.735, 0],
1290
+ [8.732, 47.726, 0],
1291
+ [8.745, 47.726, 0],
1292
+ [8.758, 47.726, 0],
1293
+ [8.772, 47.726, 0],
1294
+ [8.772, 47.735, 0],
1295
+ [8.785, 47.735, 0],
1296
+ [8.785, 47.744, 0],
1297
+ [8.799, 47.744, 0],
1298
+ [8.812, 47.743, 0],
1299
+ [8.812, 47.734, 0],
1300
+ [8.825, 47.734, 0],
1301
+ [8.825, 47.725, 0],
1302
+ [8.838, 47.725, 0],
1303
+ [8.838, 47.716, 0],
1304
+ [8.851, 47.716, 0],
1305
+ [8.851, 47.707, 0],
1306
+ [8.864, 47.707, 0],
1307
+ [8.878, 47.707, 0],
1308
+ [8.877, 47.698, 0],
1309
+ [8.877, 47.689, 0],
1310
+ [8.877, 47.68, 0],
1311
+ [8.877, 47.671, 0],
1312
+ [8.876, 47.662, 0],
1313
+ [8.89, 47.662, 0],
1314
+ [8.903, 47.661, 0],
1315
+ [8.916, 47.661, 0],
1316
+ [8.93, 47.661, 0],
1317
+ [8.943, 47.661, 0],
1318
+ [8.943, 47.67, 0],
1319
+ [8.957, 47.67, 0],
1320
+ [8.97, 47.67, 0],
1321
+ [8.97, 47.679, 0],
1322
+ [8.983, 47.678, 0],
1323
+ [8.997, 47.678, 0],
1324
+ [8.997, 47.687, 0],
1325
+ [9.01, 47.687, 0],
1326
+ [9.011, 47.696, 0],
1327
+ [9.024, 47.696, 0],
1328
+ [9.037, 47.696, 0],
1329
+ [9.037, 47.687, 0],
1330
+ [9.05, 47.686, 0],
1331
+ [9.064, 47.686, 0],
1332
+ [9.077, 47.686, 0],
1333
+ [9.09, 47.686, 0],
1334
+ [9.104, 47.686, 0],
1335
+ [9.117, 47.685, 0],
1336
+ [9.117, 47.677, 0],
1337
+ [9.13, 47.676, 0],
1338
+ [9.143, 47.676, 0],
1339
+ [9.157, 47.676, 0],
1340
+ [9.156, 47.667, 0],
1341
+ [9.17, 47.667, 0],
1342
+ [9.183, 47.667, 0],
1343
+ [9.196, 47.666, 0],
1344
+ [9.196, 47.657, 0],
1345
+ [9.209, 47.657, 0],
1346
+ [9.222, 47.657, 0],
1347
+ [9.223, 47.666, 0],
1348
+ [9.236, 47.666, 0],
1349
+ [9.249, 47.666, 0],
1350
+ [9.263, 47.665, 0],
1351
+ [9.276, 47.665, 0],
1352
+ [9.276, 47.656, 0],
1353
+ [9.289, 47.656, 0],
1354
+ [9.302, 47.656, 0],
1355
+ [9.302, 47.647, 0],
1356
+ [9.315, 47.646, 0],
1357
+ [9.329, 47.646, 0],
1358
+ [9.342, 47.646, 0],
1359
+ [9.342, 47.637, 0],
1360
+ [9.355, 47.637, 0],
1361
+ [9.368, 47.637, 0],
1362
+ [9.381, 47.636, 0],
1363
+ [9.381, 47.627, 0],
1364
+ [9.394, 47.627, 0],
1365
+ [9.408, 47.627, 0],
1366
+ [9.407, 47.618, 0],
1367
+ [9.421, 47.618, 0],
1368
+ [9.42, 47.609, 0],
1369
+ [9.434, 47.609, 0],
1370
+ [9.433, 47.6, 0],
1371
+ [9.447, 47.599, 0],
1372
+ [9.446, 47.59, 0],
1373
+ [9.46, 47.59, 0],
1374
+ [9.459, 47.581, 0],
1375
+ [9.473, 47.581, 0],
1376
+ [9.472, 47.572, 0],
1377
+ [9.485, 47.572, 0],
1378
+ [9.485, 47.563, 0],
1379
+ [9.498, 47.562, 0],
1380
+ [9.498, 47.553, 0],
1381
+ [9.511, 47.553, 0],
1382
+ [9.525, 47.553, 0],
1383
+ [9.538, 47.553, 0],
1384
+ [9.551, 47.552, 0],
1385
+ [9.551, 47.543, 0],
1386
+ [9.564, 47.543, 0],
1387
+ [9.564, 47.534, 0],
1388
+ [9.563, 47.525, 0],
1389
+ [9.563, 47.516, 0],
1390
+ [9.563, 47.507, 0],
1391
+ [9.562, 47.498, 0],
1392
+ [9.576, 47.498, 0],
1393
+ [9.575, 47.489, 0],
1394
+ [9.588, 47.489, 0],
1395
+ [9.588, 47.48, 0],
1396
+ [9.601, 47.48, 0],
1397
+ [9.615, 47.479, 0],
1398
+ [9.614, 47.47, 0],
1399
+ [9.628, 47.47, 0],
1400
+ [9.627, 47.461, 0],
1401
+ [9.64, 47.461, 0],
1402
+ [9.654, 47.461, 0],
1403
+ [9.667, 47.46, 0],
1404
+ [9.667, 47.451, 0],
1405
+ [9.666, 47.442, 0],
1406
+ [9.653, 47.443, 0],
1407
+ [9.653, 47.434, 0],
1408
+ [9.652, 47.425, 0],
1409
+ [9.652, 47.416, 0],
1410
+ [9.665, 47.415, 0],
1411
+ [9.665, 47.406, 0],
1412
+ [9.664, 47.397, 0],
1413
+ [9.678, 47.397, 0],
1414
+ [9.677, 47.388, 0],
1415
+ [9.677, 47.379, 0],
1416
+ [9.676, 47.37, 0],
1417
+ [9.663, 47.37, 0],
1418
+ [9.663, 47.361, 0],
1419
+ [9.65, 47.362, 0],
1420
+ [9.636, 47.362, 0],
1421
+ [9.623, 47.362, 0],
1422
+ [9.623, 47.353, 0],
1423
+ [9.609, 47.353, 0],
1424
+ [9.609, 47.344, 0],
1425
+ [9.609, 47.335, 0],
1426
+ [9.608, 47.326, 0],
1427
+ [9.595, 47.327, 0],
1428
+ [9.595, 47.318, 0],
1429
+ [9.594, 47.309, 0],
1430
+ [9.581, 47.309, 0],
1431
+ [9.581, 47.3, 0],
1432
+ [9.568, 47.3, 0],
1433
+ [9.567, 47.291, 0],
1434
+ [9.554, 47.291, 0],
1435
+ [9.554, 47.282, 0],
1436
+ [9.553, 47.273, 0],
1437
+ [9.553, 47.265, 0],
1438
+ [9.553, 47.256, 0],
1439
+ [9.566, 47.255, 0],
1440
+ [9.565, 47.246, 0],
1441
+ [9.579, 47.246, 0],
1442
+ [9.578, 47.237, 0],
1443
+ [9.578, 47.228, 0],
1444
+ [9.578, 47.219, 0],
1445
+ [9.591, 47.219, 0],
1446
+ [9.59, 47.21, 0],
1447
+ [9.59, 47.201, 0],
1448
+ [9.59, 47.192, 0],
1449
+ [9.577, 47.192, 0],
1450
+ [9.576, 47.183, 0],
1451
+ [9.576, 47.174, 0],
1452
+ [9.589, 47.174, 0],
1453
+ [9.602, 47.174, 0],
1454
+ [9.602, 47.165, 0],
1455
+ [9.615, 47.164, 0],
1456
+ [9.615, 47.155, 0],
1457
+ [9.628, 47.155, 0],
1458
+ [9.627, 47.146, 0],
1459
+ [9.627, 47.137, 0],
1460
+ [9.64, 47.137, 0],
1461
+ [9.64, 47.128, 0],
1462
+ [9.64, 47.119, 0],
1463
+ [9.639, 47.11, 0],
1464
+ [9.639, 47.101, 0],
1465
+ [9.638, 47.092, 0],
1466
+ [9.638, 47.083, 0],
1467
+ [9.638, 47.074, 0],
1468
+ [9.637, 47.065, 0],
1469
+ [9.65, 47.065, 0],
1470
+ [9.664, 47.064, 0],
1471
+ [9.677, 47.064, 0],
1472
+ [9.69, 47.064, 0],
1473
+ [9.703, 47.064, 0],
1474
+ [9.703, 47.055, 0],
1475
+ [9.716, 47.054, 0],
1476
+ [9.715, 47.045, 0],
1477
+ [9.729, 47.045, 0],
1478
+ [9.742, 47.045, 0],
1479
+ [9.755, 47.045, 0],
1480
+ [9.768, 47.044, 0],
1481
+ [9.781, 47.044, 0],
1482
+ [9.794, 47.044, 0],
1483
+ [9.794, 47.035, 0],
1484
+ [9.807, 47.035, 0],
1485
+ [9.807, 47.026, 0],
1486
+ [9.82, 47.025, 0],
1487
+ [9.833, 47.025, 0],
1488
+ [9.846, 47.025, 0],
1489
+ [9.859, 47.024, 0],
1490
+ [9.873, 47.024, 0],
1491
+ [9.886, 47.024, 0],
1492
+ [9.885, 47.015, 0],
1493
+ [9.885, 47.006, 0],
1494
+ [9.898, 47.006, 0],
1495
+ [9.898, 46.997, 0],
1496
+ [9.897, 46.988, 0],
1497
+ [9.897, 46.979, 0],
1498
+ [9.884, 46.979, 0],
1499
+ [9.883, 46.97, 0],
1500
+ [9.883, 46.961, 0],
1501
+ [9.882, 46.952, 0],
1502
+ [9.882, 46.943, 0],
1503
+ [9.895, 46.943, 0],
1504
+ [9.895, 46.934, 0],
1505
+ [9.908, 46.933, 0],
1506
+ [9.921, 46.933, 0],
1507
+ [9.921, 46.924, 0],
1508
+ [9.934, 46.924, 0],
1509
+ [9.947, 46.924, 0],
1510
+ [9.96, 46.923, 0],
1511
+ [9.973, 46.923, 0],
1512
+ [9.986, 46.923, 0],
1513
+ [9.986, 46.914, 0],
1514
+ [9.999, 46.913, 0],
1515
+ [9.998, 46.904, 0],
1516
+ [10.012, 46.904, 0],
1517
+ [10.025, 46.904, 0],
1518
+ [10.038, 46.904, 0],
1519
+ [10.037, 46.895, 0],
1520
+ [10.05, 46.894, 0],
1521
+ [10.05, 46.885, 0],
1522
+ [10.063, 46.885, 0],
1523
+ [10.063, 46.876, 0],
1524
+ [10.062, 46.867, 0],
1525
+ [10.075, 46.867, 0],
1526
+ [10.088, 46.866, 0],
1527
+ [10.102, 46.866, 0],
1528
+ [10.101, 46.857, 0],
1529
+ [10.114, 46.857, 0],
1530
+ [10.127, 46.857, 0],
1531
+ [10.14, 46.856, 0],
1532
+ [10.154, 46.856, 0],
1533
+ [10.167, 46.856, 0],
1534
+ [10.18, 46.855, 0],
1535
+ [10.18, 46.864, 0],
1536
+ [10.181, 46.873, 0],
1537
+ [10.194, 46.873, 0],
1538
+ [10.207, 46.873, 0],
1539
+ [10.22, 46.872, 0],
1540
+ [10.22, 46.881, 0],
1541
+ [10.221, 46.89, 0],
1542
+ [10.221, 46.899, 0],
1543
+ [10.222, 46.908, 0],
1544
+ [10.222, 46.917, 0],
1545
+ [10.235, 46.917, 0],
1546
+ [10.236, 46.926, 0],
1547
+ [10.236, 46.935, 0],
1548
+ [10.25, 46.935, 0],
1549
+ [10.263, 46.934, 0],
1550
+ [10.276, 46.934, 0],
1551
+ [10.289, 46.934, 0],
1552
+ [10.302, 46.933, 0],
1553
+ [10.302, 46.942, 0],
1554
+ [10.303, 46.951, 0],
1555
+ [10.303, 46.96, 0],
1556
+ [10.317, 46.96, 0],
1557
+ [10.317, 46.969, 0],
1558
+ [10.33, 46.969, 0],
1559
+ [10.331, 46.978, 0],
1560
+ [10.331, 46.987, 0],
1561
+ [10.344, 46.986, 0],
1562
+ [10.345, 46.995, 0],
1563
+ [10.358, 46.995, 0],
1564
+ [10.371, 46.995, 0],
1565
+ [10.372, 47.004, 0],
1566
+ [10.385, 47.003, 0],
1567
+ [10.398, 47.003, 0],
1568
+ [10.411, 47.003, 0],
1569
+ [10.41, 46.994, 0],
1570
+ [10.424, 46.993, 0],
1571
+ [10.423, 46.984, 0],
1572
+ [10.436, 46.984, 0],
1573
+ [10.436, 46.975, 0],
1574
+ [10.435, 46.966, 0],
1575
+ [10.435, 46.957, 0],
1576
+ [10.448, 46.957, 0],
1577
+ [10.461, 46.956, 0],
1578
+ [10.474, 46.956, 0],
1579
+ [10.474, 46.947, 0],
1580
+ [10.487, 46.947, 0],
1581
+ [10.5, 46.946, 0],
1582
+ [10.499, 46.937, 0],
1583
+ [10.499, 46.928, 0],
1584
+ [10.498, 46.919, 0],
1585
+ [10.498, 46.91, 0],
1586
+ [10.485, 46.911, 0],
1587
+ [10.484, 46.902, 0],
1588
+ [10.484, 46.893, 0],
1589
+ [10.483, 46.884, 0],
1590
+ [10.483, 46.875, 0],
1591
+ [10.482, 46.866, 0],
1592
+ [10.482, 46.857, 0],
1593
+ [10.481, 46.848, 0],
1594
+ [10.481, 46.839, 0],
1595
+ [10.468, 46.839, 0],
1596
+ [10.467, 46.83, 0],
1597
+ [10.466, 46.821, 0],
1598
+ [10.466, 46.812, 0],
1599
+ [10.465, 46.803, 0],
1600
+ [10.452, 46.803, 0],
1601
+ [10.452, 46.794, 0],
1602
+ [10.439, 46.795, 0],
1603
+ [10.438, 46.786, 0],
1604
+ [10.438, 46.777, 0],
1605
+ [10.451, 46.776, 0],
1606
+ [10.45, 46.767, 0],
1607
+ [10.45, 46.758, 0],
1608
+ [10.449, 46.749, 0],
1609
+ [10.436, 46.75, 0],
1610
+ [10.436, 46.741, 0],
1611
+ [10.423, 46.741, 0],
1612
+ [10.422, 46.732, 0],
1613
+ [10.422, 46.723, 0],
1614
+ [10.421, 46.714, 0],
1615
+ [10.421, 46.705, 0],
1616
+ [10.42, 46.696, 0],
1617
+ [10.407, 46.697, 0],
1618
+ [10.407, 46.688, 0],
1619
+ [10.394, 46.688, 0],
1620
+ [10.393, 46.679, 0],
1621
+ [10.393, 46.67, 0],
1622
+ [10.406, 46.67, 0],
1623
+ [10.405, 46.661, 0],
1624
+ [10.405, 46.652, 0],
1625
+ [10.404, 46.643, 0],
1626
+ [10.417, 46.642, 0],
1627
+ [10.43, 46.642, 0],
1628
+ [10.443, 46.642, 0],
1629
+ [10.456, 46.641, 0],
1630
+ [10.469, 46.641, 0],
1631
+ [10.469, 46.632, 0],
1632
+ [10.482, 46.632, 0],
1633
+ [10.482, 46.623, 0],
1634
+ [10.495, 46.622, 0],
1635
+ [10.494, 46.613, 0],
1636
+ [10.494, 46.604, 0],
1637
+ [10.493, 46.595, 0],
1638
+ [10.493, 46.586, 0],
1639
+ [10.492, 46.577, 0],
1640
+ [10.492, 46.568, 0],
1641
+ [10.491, 46.559, 0],
1642
+ [10.49, 46.55, 0],
1643
+ [10.477, 46.551, 0],
1644
+ [10.477, 46.542, 0],
1645
+ [10.476, 46.533, 0],
1646
+ [10.463, 46.533, 0],
1647
+ [10.463, 46.524, 0],
1648
+ [10.45, 46.524, 0],
1649
+ [10.437, 46.525, 0],
1650
+ [10.437, 46.534, 0],
1651
+ [10.424, 46.534, 0],
1652
+ [10.425, 46.543, 0],
1653
+ [10.412, 46.543, 0],
1654
+ [10.399, 46.544, 0],
1655
+ [10.398, 46.535, 0],
1656
+ [10.385, 46.535, 0],
1657
+ [10.386, 46.544, 0],
1658
+ [10.373, 46.544, 0],
1659
+ [10.36, 46.545, 0],
1660
+ [10.347, 46.545, 0],
1661
+ [10.346, 46.536, 0],
1662
+ [10.333, 46.536, 0],
1663
+ [10.334, 46.545, 0],
1664
+ [10.321, 46.546, 0],
1665
+ [10.308, 46.546, 0],
1666
+ [10.295, 46.546, 0],
1667
+ [10.282, 46.547, 0],
1668
+ [10.282, 46.556, 0],
1669
+ [10.282, 46.565, 0],
1670
+ [10.269, 46.565, 0],
1671
+ [10.256, 46.565, 0],
1672
+ [10.243, 46.566, 0],
1673
+ [10.244, 46.575, 0],
1674
+ [10.231, 46.575, 0],
1675
+ [10.231, 46.584, 0],
1676
+ [10.232, 46.593, 0],
1677
+ [10.232, 46.602, 0],
1678
+ [10.245, 46.602, 0],
1679
+ [10.246, 46.611, 0],
1680
+ [10.246, 46.62, 0],
1681
+ [10.233, 46.62, 0],
1682
+ [10.22, 46.62, 0],
1683
+ [10.22, 46.611, 0],
1684
+ [10.207, 46.612, 0],
1685
+ [10.194, 46.612, 0],
1686
+ [10.18, 46.612, 0],
1687
+ [10.167, 46.613, 0],
1688
+ [10.154, 46.613, 0],
1689
+ [10.154, 46.604, 0],
1690
+ [10.141, 46.604, 0],
1691
+ [10.128, 46.604, 0],
1692
+ [10.115, 46.605, 0],
1693
+ [10.114, 46.596, 0],
1694
+ [10.114, 46.587, 0],
1695
+ [10.113, 46.578, 0],
1696
+ [10.1, 46.578, 0],
1697
+ [10.1, 46.569, 0],
1698
+ [10.087, 46.569, 0],
1699
+ [10.087, 46.56, 0],
1700
+ [10.086, 46.551, 0],
1701
+ [10.073, 46.552, 0],
1702
+ [10.073, 46.543, 0],
1703
+ [10.06, 46.543, 0],
1704
+ [10.059, 46.534, 0],
1705
+ [10.059, 46.525, 0],
1706
+ [10.058, 46.516, 0],
1707
+ [10.058, 46.507, 0],
1708
+ [10.057, 46.498, 0],
1709
+ [10.057, 46.489, 0],
1710
+ [10.057, 46.48, 0],
1711
+ [10.056, 46.471, 0],
1712
+ [10.056, 46.462, 0],
1713
+ [10.055, 46.453, 0],
1714
+ [10.055, 46.444, 0],
1715
+ [10.068, 46.444, 0],
1716
+ [10.067, 46.435, 0],
1717
+ [10.08, 46.435, 0],
1718
+ [10.093, 46.434, 0],
1719
+ [10.106, 46.434, 0],
1720
+ [10.119, 46.434, 0],
1721
+ [10.132, 46.433, 0],
1722
+ [10.145, 46.433, 0],
1723
+ [10.158, 46.433, 0],
1724
+ [10.158, 46.424, 0],
1725
+ [10.171, 46.423, 0],
1726
+ [10.17, 46.414, 0],
1727
+ [10.17, 46.405, 0],
1728
+ [10.17, 46.396, 0],
1729
+ [10.169, 46.387, 0],
1730
+ [10.169, 46.378, 0],
1731
+ [10.156, 46.379, 0],
1732
+ [10.143, 46.379, 0],
1733
+ [10.142, 46.37, 0],
1734
+ [10.142, 46.361, 0],
1735
+ [10.141, 46.352, 0],
1736
+ [10.128, 46.352, 0],
1737
+ [10.115, 46.353, 0],
1738
+ [10.115, 46.344, 0],
1739
+ [10.114, 46.335, 0],
1740
+ [10.114, 46.326, 0],
1741
+ [10.127, 46.325, 0],
1742
+ [10.127, 46.316, 0],
1743
+ [10.14, 46.316, 0],
1744
+ [10.139, 46.307, 0],
1745
+ [10.152, 46.307, 0],
1746
+ [10.152, 46.298, 0],
1747
+ [10.165, 46.298, 0],
1748
+ [10.164, 46.289, 0],
1749
+ [10.164, 46.28, 0],
1750
+ [10.177, 46.279, 0],
1751
+ [10.176, 46.27, 0],
1752
+ [10.176, 46.261, 0],
1753
+ [10.189, 46.261, 0],
1754
+ [10.188, 46.252, 0],
1755
+ [10.175, 46.252, 0],
1756
+ [10.175, 46.243, 0],
1757
+ [10.162, 46.244, 0],
1758
+ [10.161, 46.235, 0],
1759
+ [10.161, 46.226, 0],
1760
+ [10.148, 46.226, 0],
1761
+ [10.148, 46.217, 0],
1762
+ [10.135, 46.217, 0],
1763
+ [10.122, 46.218, 0],
1764
+ [10.109, 46.218, 0],
1765
+ [10.096, 46.218, 0],
1766
+ [10.083, 46.219, 0],
1767
+ [10.082, 46.21, 0],
1768
+ [10.069, 46.21, 0],
1769
+ [10.057, 46.21, 0],
1770
+ [10.057, 46.219, 0],
1771
+ [10.044, 46.219, 0],
1772
+ [10.044, 46.228, 0],
1773
+ [10.031, 46.229, 0],
1774
+ [10.032, 46.238, 0],
1775
+ [10.045, 46.237, 0],
1776
+ [10.045, 46.246, 0],
1777
+ [10.046, 46.255, 0],
1778
+ [10.046, 46.264, 0],
1779
+ [10.033, 46.265, 0],
1780
+ [10.034, 46.274, 0],
1781
+ [10.021, 46.274, 0],
1782
+ [10.008, 46.274, 0],
1783
+ [9.995, 46.275, 0],
1784
+ [9.995, 46.284, 0],
1785
+ [9.982, 46.284, 0],
1786
+ [9.983, 46.293, 0],
1787
+ [9.983, 46.302, 0],
1788
+ [9.983, 46.311, 0],
1789
+ [9.984, 46.32, 0],
1790
+ [9.971, 46.32, 0],
1791
+ [9.971, 46.329, 0],
1792
+ [9.972, 46.338, 0],
1793
+ [9.972, 46.347, 0],
1794
+ [9.973, 46.356, 0],
1795
+ [9.96, 46.356, 0],
1796
+ [9.96, 46.365, 0],
1797
+ [9.947, 46.366, 0],
1798
+ [9.934, 46.366, 0],
1799
+ [9.934, 46.357, 0],
1800
+ [9.921, 46.357, 0],
1801
+ [9.921, 46.366, 0],
1802
+ [9.908, 46.366, 0],
1803
+ [9.895, 46.367, 0],
1804
+ [9.882, 46.367, 0],
1805
+ [9.882, 46.358, 0],
1806
+ [9.869, 46.358, 0],
1807
+ [9.856, 46.359, 0],
1808
+ [9.843, 46.359, 0],
1809
+ [9.842, 46.35, 0],
1810
+ [9.829, 46.35, 0],
1811
+ [9.829, 46.341, 0],
1812
+ [9.816, 46.341, 0],
1813
+ [9.803, 46.342, 0],
1814
+ [9.803, 46.333, 0],
1815
+ [9.79, 46.333, 0],
1816
+ [9.777, 46.333, 0],
1817
+ [9.764, 46.334, 0],
1818
+ [9.751, 46.334, 0],
1819
+ [9.738, 46.334, 0],
1820
+ [9.737, 46.325, 0],
1821
+ [9.737, 46.316, 0],
1822
+ [9.737, 46.307, 0],
1823
+ [9.724, 46.307, 0],
1824
+ [9.723, 46.298, 0],
1825
+ [9.723, 46.289, 0],
1826
+ [9.71, 46.29, 0],
1827
+ [9.697, 46.29, 0],
1828
+ [9.684, 46.29, 0],
1829
+ [9.671, 46.29, 0],
1830
+ [9.658, 46.291, 0],
1831
+ [9.658, 46.282, 0],
1832
+ [9.645, 46.282, 0],
1833
+ [9.632, 46.282, 0],
1834
+ [9.619, 46.282, 0],
1835
+ [9.606, 46.283, 0],
1836
+ [9.606, 46.292, 0],
1837
+ [9.593, 46.292, 0],
1838
+ [9.58, 46.292, 0],
1839
+ [9.567, 46.292, 0],
1840
+ [9.554, 46.293, 0],
1841
+ [9.554, 46.302, 0],
1842
+ [9.542, 46.302, 0],
1843
+ [9.529, 46.302, 0],
1844
+ [9.529, 46.311, 0],
1845
+ [9.516, 46.311, 0],
1846
+ [9.516, 46.32, 0],
1847
+ [9.517, 46.329, 0],
1848
+ [9.504, 46.33, 0],
1849
+ [9.504, 46.339, 0],
1850
+ [9.504, 46.348, 0],
1851
+ [9.491, 46.348, 0],
1852
+ [9.492, 46.357, 0],
1853
+ [9.479, 46.357, 0],
1854
+ [9.479, 46.366, 0],
1855
+ [9.466, 46.366, 0],
1856
+ [9.453, 46.366, 0],
1857
+ [9.453, 46.375, 0],
1858
+ [9.454, 46.384, 0],
1859
+ [9.454, 46.393, 0],
1860
+ [9.454, 46.402, 0],
1861
+ [9.455, 46.411, 0],
1862
+ [9.442, 46.412, 0],
1863
+ [9.442, 46.421, 0],
1864
+ [9.442, 46.43, 0],
1865
+ [9.455, 46.429, 0],
1866
+ [9.456, 46.438, 0],
1867
+ [9.456, 46.447, 0],
1868
+ [9.456, 46.456, 0],
1869
+ [9.457, 46.465, 0],
1870
+ [9.457, 46.474, 0],
1871
+ [9.444, 46.475, 0],
1872
+ [9.431, 46.475, 0],
1873
+ [9.431, 46.466, 0],
1874
+ [9.418, 46.466, 0],
1875
+ [9.405, 46.466, 0],
1876
+ [9.392, 46.467, 0],
1877
+ [9.379, 46.467, 0],
1878
+ [9.379, 46.476, 0],
1879
+ [9.366, 46.476, 0],
1880
+ [9.366, 46.485, 0],
1881
+ [9.367, 46.494, 0],
1882
+ [9.367, 46.503, 0],
1883
+ [9.354, 46.503, 0],
1884
+ [9.341, 46.503, 0],
1885
+ [9.328, 46.504, 0],
1886
+ [9.315, 46.504, 0],
1887
+ [9.314, 46.495, 0],
1888
+ [9.301, 46.495, 0],
1889
+ [9.288, 46.495, 0],
1890
+ [9.288, 46.486, 0],
1891
+ [9.288, 46.477, 0],
1892
+ [9.288, 46.468, 0],
1893
+ [9.287, 46.459, 0],
1894
+ [9.287, 46.45, 0],
1895
+ [9.274, 46.45, 0],
1896
+ [9.274, 46.442, 0],
1897
+ [9.273, 46.433, 0],
1898
+ [9.273, 46.424, 0],
1899
+ [9.286, 46.423, 0],
1900
+ [9.286, 46.414, 0],
1901
+ [9.285, 46.405, 0],
1902
+ [9.285, 46.396, 0],
1903
+ [9.285, 46.387, 0],
1904
+ [9.298, 46.387, 0],
1905
+ [9.297, 46.378, 0],
1906
+ [9.284, 46.378, 0],
1907
+ [9.284, 46.369, 0],
1908
+ [9.284, 46.36, 0],
1909
+ [9.297, 46.36, 0],
1910
+ [9.31, 46.36, 0],
1911
+ [9.31, 46.351, 0],
1912
+ [9.309, 46.342, 0],
1913
+ [9.309, 46.333, 0],
1914
+ [9.309, 46.324, 0],
1915
+ [9.308, 46.315, 0],
1916
+ [9.295, 46.315, 0],
1917
+ [9.295, 46.306, 0],
1918
+ [9.295, 46.297, 0],
1919
+ [9.294, 46.288, 0],
1920
+ [9.281, 46.288, 0],
1921
+ [9.281, 46.279, 0],
1922
+ [9.268, 46.28, 0],
1923
+ [9.268, 46.271, 0],
1924
+ [9.268, 46.262, 0],
1925
+ [9.255, 46.262, 0],
1926
+ [9.254, 46.253, 0],
1927
+ [9.254, 46.244, 0],
1928
+ [9.254, 46.235, 0],
1929
+ [9.253, 46.226, 0],
1930
+ [9.24, 46.226, 0],
1931
+ [9.227, 46.226, 0],
1932
+ [9.227, 46.217, 0],
1933
+ [9.227, 46.208, 0],
1934
+ [9.214, 46.209, 0],
1935
+ [9.214, 46.2, 0],
1936
+ [9.201, 46.2, 0],
1937
+ [9.2, 46.191, 0],
1938
+ [9.2, 46.182, 0],
1939
+ [9.2, 46.173, 0],
1940
+ [9.187, 46.173, 0],
1941
+ [9.187, 46.164, 0],
1942
+ [9.174, 46.164, 0],
1943
+ [9.161, 46.164, 0],
1944
+ [9.16, 46.155, 0],
1945
+ [9.147, 46.156, 0],
1946
+ [9.147, 46.147, 0],
1947
+ [9.134, 46.147, 0],
1948
+ [9.134, 46.138, 0],
1949
+ [9.134, 46.129, 0],
1950
+ [9.121, 46.129, 0],
1951
+ [9.108, 46.129, 0],
1952
+ [9.108, 46.12, 0],
1953
+ [9.095, 46.12, 0],
1954
+ [9.094, 46.111, 0],
1955
+ [9.094, 46.102, 0],
1956
+ [9.094, 46.093, 0],
1957
+ [9.093, 46.084, 0],
1958
+ [9.093, 46.075, 0],
1959
+ [9.08, 46.076, 0],
1960
+ [9.08, 46.067, 0],
1961
+ [9.08, 46.058, 0],
1962
+ [9.067, 46.058, 0],
1963
+ [9.054, 46.058, 0],
1964
+ [9.041, 46.058, 0],
1965
+ [9.041, 46.049, 0],
1966
+ [9.028, 46.049, 0],
1967
+ [9.028, 46.04, 0],
1968
+ [9.027, 46.031, 0],
1969
+ [9.027, 46.022, 0],
1970
+ [9.027, 46.013, 0],
1971
+ [9.027, 46.004, 0],
1972
+ [9.039, 46.004, 0],
1973
+ [9.039, 45.995, 0],
1974
+ [9.039, 45.986, 0],
1975
+ [9.026, 45.986, 0],
1976
+ [9.013, 45.987, 0],
1977
+ [9.013, 45.978, 0],
1978
+ [9.013, 45.969, 0],
1979
+ [9.025, 45.968, 0],
1980
+ [9.025, 45.959, 0],
1981
+ [9.025, 45.95, 0],
1982
+ [9.025, 45.941, 0],
1983
+ [9.024, 45.932, 0],
1984
+ [9.037, 45.932, 0],
1985
+ [9.05, 45.932, 0],
1986
+ [9.05, 45.923, 0],
1987
+ [9.063, 45.923, 0],
1988
+ [9.076, 45.923, 0],
1989
+ [9.075, 45.914, 0],
1990
+ [9.088, 45.913, 0],
1991
+ [9.088, 45.904, 0],
1992
+ [9.101, 45.904, 0],
1993
+ [9.101, 45.895, 0],
1994
+ [9.088, 45.896, 0],
1995
+ [9.088, 45.887, 0],
1996
+ [9.087, 45.878, 0],
1997
+ [9.074, 45.878, 0],
1998
+ [9.074, 45.869, 0],
1999
+ [9.061, 45.869, 0],
2000
+ [9.061, 45.86, 0],
2001
+ [9.061, 45.851, 0],
2002
+ [9.048, 45.851, 0],
2003
+ [9.048, 45.842, 0],
2004
+ [9.047, 45.833, 0],
2005
+ [9.047, 45.824, 0],
2006
+ [9.047, 45.815, 0],
2007
+ [9.034, 45.815, 0],
2008
+ [9.021, 45.815, 0],
2009
+ [9.008, 45.816, 0],
2010
+ [8.995, 45.816, 0],
2011
+ ],
2012
+ ],
2013
+ ],
2014
+ },
2015
+ translations: {},
2016
+ },
2017
+ ],
2018
+ onlineResources: [
2019
+ {
2020
+ type: 'link',
2021
+ url: new URL(
2022
+ 'https://www.swisstopo.admin.ch/en/geodata/images/ortho/swissimage10.html'
2023
+ ),
2024
+ name: 'Website Link',
2025
+ description: 'This is simple link',
2026
+ translations: {
2027
+ name: { it: 'Website Link', en: 'Website Link', de: 'Website Link' },
2028
+ description: {
2029
+ it: 'This is simple link',
2030
+ en: 'This is simple link',
2031
+ de: 'This is simple link',
2032
+ },
2033
+ },
2034
+ },
2035
+ {
2036
+ type: 'download',
2037
+ url: new URL(
2038
+ 'https://data.geo.admin.ch/ch.swisstopo.swissboundaries3d/swissboundaries3d_2022-05/swissboundaries3d_2022-05_2056_5728.shp.zip'
2039
+ ),
2040
+ name: 'Download Link (zip file)',
2041
+ description: 'This is a link to download a file',
2042
+ mimeType: 'OGC Webservice (WFS)',
2043
+ translations: {
2044
+ name: {
2045
+ it: 'Download Link (zip file)',
2046
+ en: 'Download Link (zip file)',
2047
+ de: 'Download Link (zip file)',
2048
+ },
2049
+ description: {
2050
+ it: 'This is a link to download a file',
2051
+ en: 'This is a link to download a file',
2052
+ de: 'This is a link to download a file',
2053
+ },
2054
+ },
2055
+ },
2056
+ {
2057
+ type: 'service',
2058
+ url: new URL(
2059
+ 'https://wmts.geo.admin.ch/EPSG/3857/1.0.0/WMTSCapabilities.xml'
2060
+ ),
2061
+ accessServiceProtocol: 'wmts',
2062
+ identifierInService: 'ch.swisstopo.swissalti3d-reliefschattierung',
2063
+ name: 'ch.swisstopo.swissalti3d-reliefschattierung',
2064
+ description: 'This is a WMTS layer',
2065
+ translations: {
2066
+ description: {
2067
+ it: 'This is a WMTS layer',
2068
+ en: 'This is a WMTS layer',
2069
+ de: 'This is a WMTS layer',
2070
+ },
2071
+ },
2072
+ },
2073
+ {
2074
+ type: 'service',
2075
+ url: new URL(
2076
+ 'https://wms.geo.admin.ch/?SERVICE=WMS&REQUEST=GetCapabilities'
2077
+ ),
2078
+ accessServiceProtocol: 'wms',
2079
+ identifierInService: 'ch.swisstopo.swissimage',
2080
+ name: 'ch.swisstopo.swissimage',
2081
+ description: 'This is a WMS group',
2082
+ translations: {
2083
+ description: {
2084
+ it: 'This is a WMS group',
2085
+ en: 'This is a WMS group',
2086
+ de: 'This is a WMS group',
2087
+ },
2088
+ },
2089
+ },
2090
+ {
2091
+ type: 'service',
2092
+ url: new URL(
2093
+ 'https://wms.geo.admin.ch/?SERVICE=WMS&REQUEST=GetCapabilities'
2094
+ ),
2095
+ accessServiceProtocol: 'wms',
2096
+ identifierInService: 'ch.swisstopo.images-swissimage',
2097
+ name: 'ch.swisstopo.images-swissimage',
2098
+ description: 'This is a WMS layer',
2099
+ translations: {
2100
+ description: {
2101
+ it: 'This is a WMS layer',
2102
+ en: 'This is a WMS layer',
2103
+ de: 'This is a WMS layer',
2104
+ },
2105
+ },
2106
+ },
2107
+ {
2108
+ type: 'service',
2109
+ url: new URL(
2110
+ 'https://api3.geo.admin.ch/rest/services/api/MapServer/ch.swisstopo.fixpunkte-hfp2'
2111
+ ),
2112
+ accessServiceProtocol: 'esriRest',
2113
+ identifierInService: 'Restful API map.geo.admin',
2114
+ name: 'Restful API map.geo.admin',
2115
+ translations: {
2116
+ name: {
2117
+ it: 'Restful API map.geo.admin',
2118
+ en: 'Restful API map.geo.admin',
2119
+ de: 'Restful API map.geo.admin',
2120
+ },
2121
+ },
2122
+ },
2123
+ {
2124
+ type: 'download',
2125
+ url: new URL('https://www.swisstopo.admin.ch/fr/geodata.html'),
2126
+ name: 'swissopo online shop',
2127
+ description:
2128
+ 'This is a link to an online shop with protocole download-app',
2129
+ mimeType: 'OGC Webservice (WFS)',
2130
+ translations: {
2131
+ name: {
2132
+ it: 'swissopo online shop',
2133
+ en: 'swissopo online shop',
2134
+ de: 'swissopo online shop',
2135
+ },
2136
+ description: {
2137
+ it: 'This is a link to an online shop with protocole download-app',
2138
+ en: 'This is a link to an online shop with protocole download-app',
2139
+ de: 'This is a link to an online shop with protocole download-app',
2140
+ },
2141
+ },
2142
+ },
2143
+ {
2144
+ type: 'link',
2145
+ url: new URL(
2146
+ 'https://map.geo.admin.ch/?lang=en&bgLayer=ch.swisstopo.pixelkarte-farbe&layers=ch.swisstopo.swissimage-product&layers_timestamp=current&topic=ech'
2147
+ ),
2148
+ name: 'Map preview',
2149
+ translations: {
2150
+ name: { it: 'Map preview', en: 'Map preview', de: 'Map preview' },
2151
+ },
2152
+ },
2153
+ ],
2154
+ translations: {
2155
+ lineage: {
2156
+ it: 'This is a statement about the lineage.',
2157
+ en: 'This is a statement about the lineage.',
2158
+ de: 'This is a statement about the lineage.',
2159
+ },
2160
+ title: {
2161
+ it: 'Metadata for E2E testing purpose. (this title is too long and should be cut, this title is too long and should be cut, this title is too long and should be cut, this title is too long and should be cut, this title is too long and should be cut)',
2162
+ en: 'Metadata for E2E testing purpose. (this title is too long and should be cut, this title is too long and should be cut, this title is too long and should be cut, this title is too long and should be cut, this title is too long and should be cut)',
2163
+ de: 'Metadata for E2E testing purpose. (this title is too long and should be cut, this title is too long and should be cut, this title is too long and should be cut, this title is too long and should be cut, this title is too long and should be cut)',
2164
+ },
2165
+ abstract: {
2166
+ it: 'This is the description of the metadata...',
2167
+ en: 'This is the description of the metadata...',
2168
+ de: 'This is the description of the metadata...',
2169
+ },
2170
+ },
2171
+ status: 'completed',
2172
+ lineage: 'This is a statement about the lineage.',
2173
+ spatialRepresentation: 'vector',
2174
+ temporalExtents: [],
2175
+ updateFrequency: 'continual',
2176
+ }
2177
+
2178
+ export const METADATA_FOR_I18N_NO_OTHERLANGUAGE: DatasetRecord = {
2179
+ uniqueIdentifier: '9e1ea778-d0ce-4b49-90b7-37bc0e448300',
2180
+ kind: 'dataset',
2181
+ otherLanguages: [],
2182
+ defaultLanguage: 'fr',
2183
+ recordUpdated: new Date('2023-12-21T13:59:44.020Z'),
2184
+ resourceCreated: new Date('2022-01-27T00:00:00.000Z'),
2185
+ title:
2186
+ 'Metadata for E2E testing purpose. (this title is too long and should be cut, this title is too long and should be cut, this title is too long and should be cut, this title is too long and should be cut, this title is too long and should be cut)',
2187
+ abstract: 'This is the description of the metadata...',
2188
+ ownerOrganization: {
2189
+ name: 'Coordination, Services et Informations Géographiques (COSIG), swisstopo',
2190
+ translations: { name: {} },
2191
+ },
2192
+ contacts: [
2193
+ {
2194
+ email: 'info@geo.admin.ch',
2195
+ role: 'owner',
2196
+ organization: {
2197
+ name: 'Coordination, Services et Informations Géographiques (COSIG), swisstopo',
2198
+ translations: { name: {} },
2199
+ },
2200
+ position: 'Info',
2201
+ address: 'Wabern, 3084, CH',
2202
+ },
2203
+ ],
2204
+ contactsForResource: [
2205
+ {
2206
+ email: 'info@geo.admin.ch',
2207
+ role: 'owner',
2208
+ organization: {
2209
+ name: 'Coordination, Services et Informations Géographiques (COSIG), swisstopo',
2210
+ translations: { name: {} },
2211
+ },
2212
+ position: 'Info',
2213
+ address: 'Wabern, 3084, CH',
2214
+ },
2215
+ ],
2216
+ keywords: [
2217
+ {
2218
+ thesaurus: {
2219
+ id: 'geonetwork.thesaurus.local.theme.geocat.ch',
2220
+ name: 'geocat.ch',
2221
+ url: new URL(
2222
+ 'https://geocat-dev.dev.bgdi.ch/geonetwork/srv/api/registries/vocabularies/local.theme.geocat.ch'
2223
+ ),
2224
+ },
2225
+ label: 'opendata.swiss',
2226
+ type: 'theme',
2227
+ translations: { label: {}, description: {} },
2228
+ description: '',
2229
+ },
2230
+ {
2231
+ thesaurus: {
2232
+ id: 'geonetwork.thesaurus.external.theme.gemet',
2233
+ name: 'GEMET',
2234
+ url: new URL(
2235
+ 'https://geocat-dev.dev.bgdi.ch/geonetwork/srv/api/registries/vocabularies/external.theme.gemet'
2236
+ ),
2237
+ },
2238
+ label: 'abri',
2239
+ type: 'theme',
2240
+ translations: { label: {}, description: {} },
2241
+ description: '',
2242
+ },
2243
+ {
2244
+ thesaurus: {
2245
+ id: 'geonetwork.thesaurus.external.theme.gemet-theme',
2246
+ name: 'GEMET themes',
2247
+ url: new URL(
2248
+ 'https://geocat-dev.dev.bgdi.ch/geonetwork/srv/api/registries/vocabularies/external.theme.gemet-theme'
2249
+ ),
2250
+ },
2251
+ label: 'administration',
2252
+ type: 'theme',
2253
+ translations: { label: {}, description: {} },
2254
+ description: '',
2255
+ },
2256
+ ],
2257
+ topics: ['imageryBaseMapsEarthCover'],
2258
+ licenses: [],
2259
+ legalConstraints: [
2260
+ {
2261
+ url: new URL('https://opendata.swiss/en/terms-of-use/#terms_by'),
2262
+ text: 'Opendata BY: Utilisation libre. Obligation d’indiquer la source.',
2263
+ translations: { text: {} },
2264
+ },
2265
+ ],
2266
+ securityConstraints: [],
2267
+ otherConstraints: [],
2268
+ overviews: [
2269
+ {
2270
+ url: new URL(
2271
+ 'https://geocat-dev.dev.bgdi.ch/geonetwork/srv/api/records/9e1ea778-d0ce-4b49-90b7-37bc0e448300/attachments/test.png'
2272
+ ),
2273
+ },
2274
+ ],
2275
+ spatialExtents: [
2276
+ { description: 'SWISSIMAGE 10 cm', translations: { description: {} } },
2277
+ {
2278
+ bbox: [
2279
+ 5.95000043087134, 45.8149997839091, 10.5000003515892, 47.8089997627207,
2280
+ ],
2281
+ translations: { description: {} },
2282
+ description: '',
2283
+ },
2284
+ {
2285
+ geometry: {
2286
+ type: 'MultiPolygon',
2287
+ coordinates: [
2288
+ [
2289
+ [
2290
+ [8.995, 45.816, 0],
2291
+ [8.982, 45.816, 0],
2292
+ [8.983, 45.825, 0],
2293
+ [8.97, 45.825, 0],
2294
+ [8.957, 45.825, 0],
2295
+ [8.957, 45.834, 0],
2296
+ [8.944, 45.835, 0],
2297
+ [8.931, 45.835, 0],
2298
+ [8.931, 45.826, 0],
2299
+ [8.918, 45.826, 0],
2300
+ [8.906, 45.826, 0],
2301
+ [8.906, 45.835, 0],
2302
+ [8.906, 45.844, 0],
2303
+ [8.906, 45.853, 0],
2304
+ [8.919, 45.853, 0],
2305
+ [8.919, 45.862, 0],
2306
+ [8.932, 45.862, 0],
2307
+ [8.932, 45.871, 0],
2308
+ [8.933, 45.88, 0],
2309
+ [8.92, 45.88, 0],
2310
+ [8.92, 45.889, 0],
2311
+ [8.92, 45.898, 0],
2312
+ [8.921, 45.907, 0],
2313
+ [8.908, 45.907, 0],
2314
+ [8.908, 45.916, 0],
2315
+ [8.895, 45.916, 0],
2316
+ [8.895, 45.925, 0],
2317
+ [8.882, 45.925, 0],
2318
+ [8.883, 45.934, 0],
2319
+ [8.883, 45.943, 0],
2320
+ [8.883, 45.952, 0],
2321
+ [8.87, 45.952, 0],
2322
+ [8.857, 45.953, 0],
2323
+ [8.858, 45.962, 0],
2324
+ [8.845, 45.962, 0],
2325
+ [8.845, 45.971, 0],
2326
+ [8.832, 45.971, 0],
2327
+ [8.832, 45.98, 0],
2328
+ [8.819, 45.98, 0],
2329
+ [8.806, 45.98, 0],
2330
+ [8.794, 45.98, 0],
2331
+ [8.781, 45.981, 0],
2332
+ [8.781, 45.99, 0],
2333
+ [8.781, 45.999, 0],
2334
+ [8.781, 46.008, 0],
2335
+ [8.781, 46.017, 0],
2336
+ [8.794, 46.016, 0],
2337
+ [8.795, 46.025, 0],
2338
+ [8.808, 46.025, 0],
2339
+ [8.808, 46.034, 0],
2340
+ [8.821, 46.034, 0],
2341
+ [8.821, 46.043, 0],
2342
+ [8.821, 46.052, 0],
2343
+ [8.834, 46.052, 0],
2344
+ [8.834, 46.061, 0],
2345
+ [8.835, 46.07, 0],
2346
+ [8.835, 46.079, 0],
2347
+ [8.822, 46.079, 0],
2348
+ [8.822, 46.088, 0],
2349
+ [8.809, 46.088, 0],
2350
+ [8.796, 46.088, 0],
2351
+ [8.783, 46.088, 0],
2352
+ [8.77, 46.089, 0],
2353
+ [8.771, 46.098, 0],
2354
+ [8.758, 46.098, 0],
2355
+ [8.745, 46.098, 0],
2356
+ [8.732, 46.098, 0],
2357
+ [8.719, 46.098, 0],
2358
+ [8.719, 46.089, 0],
2359
+ [8.706, 46.089, 0],
2360
+ [8.706, 46.098, 0],
2361
+ [8.693, 46.099, 0],
2362
+ [8.68, 46.099, 0],
2363
+ [8.68, 46.108, 0],
2364
+ [8.667, 46.108, 0],
2365
+ [8.654, 46.108, 0],
2366
+ [8.641, 46.108, 0],
2367
+ [8.642, 46.117, 0],
2368
+ [8.629, 46.117, 0],
2369
+ [8.616, 46.117, 0],
2370
+ [8.603, 46.117, 0],
2371
+ [8.603, 46.126, 0],
2372
+ [8.603, 46.135, 0],
2373
+ [8.59, 46.136, 0],
2374
+ [8.591, 46.145, 0],
2375
+ [8.591, 46.154, 0],
2376
+ [8.578, 46.154, 0],
2377
+ [8.565, 46.154, 0],
2378
+ [8.565, 46.163, 0],
2379
+ [8.565, 46.172, 0],
2380
+ [8.565, 46.181, 0],
2381
+ [8.552, 46.181, 0],
2382
+ [8.553, 46.19, 0],
2383
+ [8.54, 46.19, 0],
2384
+ [8.527, 46.19, 0],
2385
+ [8.527, 46.199, 0],
2386
+ [8.527, 46.208, 0],
2387
+ [8.527, 46.217, 0],
2388
+ [8.514, 46.217, 0],
2389
+ [8.501, 46.217, 0],
2390
+ [8.488, 46.218, 0],
2391
+ [8.489, 46.227, 0],
2392
+ [8.476, 46.227, 0],
2393
+ [8.463, 46.227, 0],
2394
+ [8.463, 46.236, 0],
2395
+ [8.45, 46.236, 0],
2396
+ [8.45, 46.245, 0],
2397
+ [8.437, 46.245, 0],
2398
+ [8.437, 46.254, 0],
2399
+ [8.437, 46.263, 0],
2400
+ [8.438, 46.272, 0],
2401
+ [8.438, 46.281, 0],
2402
+ [8.425, 46.281, 0],
2403
+ [8.425, 46.29, 0],
2404
+ [8.425, 46.299, 0],
2405
+ [8.425, 46.308, 0],
2406
+ [8.438, 46.308, 0],
2407
+ [8.438, 46.317, 0],
2408
+ [8.439, 46.326, 0],
2409
+ [8.451, 46.326, 0],
2410
+ [8.452, 46.335, 0],
2411
+ [8.452, 46.344, 0],
2412
+ [8.452, 46.353, 0],
2413
+ [8.452, 46.362, 0],
2414
+ [8.465, 46.362, 0],
2415
+ [8.465, 46.371, 0],
2416
+ [8.465, 46.38, 0],
2417
+ [8.453, 46.38, 0],
2418
+ [8.453, 46.389, 0],
2419
+ [8.453, 46.398, 0],
2420
+ [8.453, 46.407, 0],
2421
+ [8.453, 46.416, 0],
2422
+ [8.453, 46.425, 0],
2423
+ [8.454, 46.434, 0],
2424
+ [8.454, 46.443, 0],
2425
+ [8.454, 46.452, 0],
2426
+ [8.441, 46.452, 0],
2427
+ [8.428, 46.452, 0],
2428
+ [8.415, 46.452, 0],
2429
+ [8.402, 46.452, 0],
2430
+ [8.402, 46.443, 0],
2431
+ [8.389, 46.443, 0],
2432
+ [8.376, 46.443, 0],
2433
+ [8.363, 46.444, 0],
2434
+ [8.362, 46.435, 0],
2435
+ [8.349, 46.435, 0],
2436
+ [8.349, 46.426, 0],
2437
+ [8.336, 46.426, 0],
2438
+ [8.336, 46.417, 0],
2439
+ [8.323, 46.417, 0],
2440
+ [8.323, 46.408, 0],
2441
+ [8.323, 46.399, 0],
2442
+ [8.323, 46.39, 0],
2443
+ [8.323, 46.381, 0],
2444
+ [8.322, 46.372, 0],
2445
+ [8.309, 46.372, 0],
2446
+ [8.309, 46.363, 0],
2447
+ [8.296, 46.363, 0],
2448
+ [8.283, 46.363, 0],
2449
+ [8.27, 46.363, 0],
2450
+ [8.27, 46.354, 0],
2451
+ [8.27, 46.345, 0],
2452
+ [8.27, 46.336, 0],
2453
+ [8.257, 46.336, 0],
2454
+ [8.244, 46.337, 0],
2455
+ [8.231, 46.337, 0],
2456
+ [8.231, 46.328, 0],
2457
+ [8.231, 46.319, 0],
2458
+ [8.218, 46.319, 0],
2459
+ [8.218, 46.31, 0],
2460
+ [8.217, 46.301, 0],
2461
+ [8.204, 46.301, 0],
2462
+ [8.191, 46.301, 0],
2463
+ [8.191, 46.292, 0],
2464
+ [8.178, 46.292, 0],
2465
+ [8.165, 46.292, 0],
2466
+ [8.152, 46.292, 0],
2467
+ [8.139, 46.292, 0],
2468
+ [8.126, 46.292, 0],
2469
+ [8.126, 46.283, 0],
2470
+ [8.126, 46.274, 0],
2471
+ [8.113, 46.274, 0],
2472
+ [8.113, 46.265, 0],
2473
+ [8.113, 46.256, 0],
2474
+ [8.113, 46.247, 0],
2475
+ [8.126, 46.247, 0],
2476
+ [8.126, 46.238, 0],
2477
+ [8.139, 46.238, 0],
2478
+ [8.139, 46.229, 0],
2479
+ [8.152, 46.229, 0],
2480
+ [8.151, 46.22, 0],
2481
+ [8.151, 46.211, 0],
2482
+ [8.164, 46.211, 0],
2483
+ [8.164, 46.202, 0],
2484
+ [8.164, 46.193, 0],
2485
+ [8.177, 46.193, 0],
2486
+ [8.177, 46.184, 0],
2487
+ [8.177, 46.175, 0],
2488
+ [8.164, 46.175, 0],
2489
+ [8.164, 46.166, 0],
2490
+ [8.164, 46.157, 0],
2491
+ [8.163, 46.148, 0],
2492
+ [8.163, 46.139, 0],
2493
+ [8.15, 46.139, 0],
2494
+ [8.15, 46.13, 0],
2495
+ [8.137, 46.13, 0],
2496
+ [8.124, 46.13, 0],
2497
+ [8.124, 46.121, 0],
2498
+ [8.124, 46.112, 0],
2499
+ [8.111, 46.112, 0],
2500
+ [8.111, 46.104, 0],
2501
+ [8.098, 46.104, 0],
2502
+ [8.085, 46.104, 0],
2503
+ [8.072, 46.104, 0],
2504
+ [8.072, 46.095, 0],
2505
+ [8.059, 46.095, 0],
2506
+ [8.046, 46.095, 0],
2507
+ [8.046, 46.086, 0],
2508
+ [8.033, 46.086, 0],
2509
+ [8.033, 46.077, 0],
2510
+ [8.033, 46.068, 0],
2511
+ [8.033, 46.059, 0],
2512
+ [8.033, 46.05, 0],
2513
+ [8.046, 46.05, 0],
2514
+ [8.046, 46.041, 0],
2515
+ [8.033, 46.041, 0],
2516
+ [8.033, 46.032, 0],
2517
+ [8.02, 46.032, 0],
2518
+ [8.02, 46.023, 0],
2519
+ [8.02, 46.014, 0],
2520
+ [8.02, 46.005, 0],
2521
+ [8.007, 46.005, 0],
2522
+ [8.007, 45.996, 0],
2523
+ [7.994, 45.996, 0],
2524
+ [7.994, 45.987, 0],
2525
+ [7.981, 45.987, 0],
2526
+ [7.968, 45.987, 0],
2527
+ [7.955, 45.987, 0],
2528
+ [7.942, 45.987, 0],
2529
+ [7.929, 45.987, 0],
2530
+ [7.916, 45.988, 0],
2531
+ [7.903, 45.988, 0],
2532
+ [7.903, 45.979, 0],
2533
+ [7.903, 45.97, 0],
2534
+ [7.89, 45.97, 0],
2535
+ [7.89, 45.961, 0],
2536
+ [7.89, 45.952, 0],
2537
+ [7.89, 45.943, 0],
2538
+ [7.89, 45.934, 0],
2539
+ [7.89, 45.925, 0],
2540
+ [7.877, 45.925, 0],
2541
+ [7.877, 45.916, 0],
2542
+ [7.864, 45.916, 0],
2543
+ [7.851, 45.916, 0],
2544
+ [7.838, 45.916, 0],
2545
+ [7.825, 45.916, 0],
2546
+ [7.812, 45.916, 0],
2547
+ [7.8, 45.916, 0],
2548
+ [7.787, 45.916, 0],
2549
+ [7.787, 45.925, 0],
2550
+ [7.774, 45.925, 0],
2551
+ [7.761, 45.925, 0],
2552
+ [7.748, 45.925, 0],
2553
+ [7.748, 45.916, 0],
2554
+ [7.735, 45.916, 0],
2555
+ [7.722, 45.916, 0],
2556
+ [7.709, 45.916, 0],
2557
+ [7.709, 45.925, 0],
2558
+ [7.696, 45.925, 0],
2559
+ [7.696, 45.934, 0],
2560
+ [7.697, 45.943, 0],
2561
+ [7.697, 45.952, 0],
2562
+ [7.684, 45.952, 0],
2563
+ [7.671, 45.952, 0],
2564
+ [7.671, 45.961, 0],
2565
+ [7.658, 45.961, 0],
2566
+ [7.645, 45.961, 0],
2567
+ [7.632, 45.961, 0],
2568
+ [7.619, 45.961, 0],
2569
+ [7.606, 45.961, 0],
2570
+ [7.593, 45.961, 0],
2571
+ [7.581, 45.961, 0],
2572
+ [7.581, 45.97, 0],
2573
+ [7.581, 45.979, 0],
2574
+ [7.568, 45.979, 0],
2575
+ [7.555, 45.98, 0],
2576
+ [7.555, 45.971, 0],
2577
+ [7.555, 45.962, 0],
2578
+ [7.555, 45.953, 0],
2579
+ [7.542, 45.953, 0],
2580
+ [7.529, 45.953, 0],
2581
+ [7.516, 45.953, 0],
2582
+ [7.503, 45.953, 0],
2583
+ [7.49, 45.953, 0],
2584
+ [7.49, 45.944, 0],
2585
+ [7.477, 45.944, 0],
2586
+ [7.477, 45.935, 0],
2587
+ [7.477, 45.926, 0],
2588
+ [7.464, 45.926, 0],
2589
+ [7.452, 45.926, 0],
2590
+ [7.452, 45.917, 0],
2591
+ [7.439, 45.917, 0],
2592
+ [7.439, 45.908, 0],
2593
+ [7.426, 45.908, 0],
2594
+ [7.413, 45.908, 0],
2595
+ [7.4, 45.908, 0],
2596
+ [7.4, 45.899, 0],
2597
+ [7.4, 45.89, 0],
2598
+ [7.387, 45.89, 0],
2599
+ [7.374, 45.89, 0],
2600
+ [7.374, 45.899, 0],
2601
+ [7.361, 45.899, 0],
2602
+ [7.348, 45.899, 0],
2603
+ [7.348, 45.908, 0],
2604
+ [7.336, 45.908, 0],
2605
+ [7.323, 45.908, 0],
2606
+ [7.31, 45.908, 0],
2607
+ [7.297, 45.908, 0],
2608
+ [7.284, 45.907, 0],
2609
+ [7.284, 45.899, 0],
2610
+ [7.271, 45.898, 0],
2611
+ [7.271, 45.889, 0],
2612
+ [7.271, 45.88, 0],
2613
+ [7.258, 45.88, 0],
2614
+ [7.245, 45.88, 0],
2615
+ [7.233, 45.88, 0],
2616
+ [7.22, 45.88, 0],
2617
+ [7.22, 45.871, 0],
2618
+ [7.207, 45.871, 0],
2619
+ [7.207, 45.862, 0],
2620
+ [7.207, 45.853, 0],
2621
+ [7.194, 45.853, 0],
2622
+ [7.181, 45.853, 0],
2623
+ [7.168, 45.853, 0],
2624
+ [7.168, 45.862, 0],
2625
+ [7.155, 45.862, 0],
2626
+ [7.143, 45.862, 0],
2627
+ [7.13, 45.862, 0],
2628
+ [7.13, 45.853, 0],
2629
+ [7.117, 45.853, 0],
2630
+ [7.104, 45.853, 0],
2631
+ [7.091, 45.853, 0],
2632
+ [7.091, 45.862, 0],
2633
+ [7.091, 45.871, 0],
2634
+ [7.078, 45.871, 0],
2635
+ [7.078, 45.88, 0],
2636
+ [7.065, 45.88, 0],
2637
+ [7.065, 45.889, 0],
2638
+ [7.065, 45.898, 0],
2639
+ [7.052, 45.898, 0],
2640
+ [7.052, 45.907, 0],
2641
+ [7.052, 45.916, 0],
2642
+ [7.039, 45.916, 0],
2643
+ [7.039, 45.925, 0],
2644
+ [7.026, 45.925, 0],
2645
+ [7.026, 45.934, 0],
2646
+ [7.026, 45.943, 0],
2647
+ [7.026, 45.952, 0],
2648
+ [7.013, 45.952, 0],
2649
+ [7.013, 45.961, 0],
2650
+ [7, 45.961, 0],
2651
+ [7, 45.97, 0],
2652
+ [7, 45.979, 0],
2653
+ [7, 45.988, 0],
2654
+ [7, 45.997, 0],
2655
+ [6.987, 45.997, 0],
2656
+ [6.974, 45.997, 0],
2657
+ [6.974, 46.006, 0],
2658
+ [6.974, 46.015, 0],
2659
+ [6.974, 46.024, 0],
2660
+ [6.961, 46.024, 0],
2661
+ [6.961, 46.033, 0],
2662
+ [6.948, 46.032, 0],
2663
+ [6.948, 46.041, 0],
2664
+ [6.935, 46.041, 0],
2665
+ [6.922, 46.041, 0],
2666
+ [6.909, 46.041, 0],
2667
+ [6.896, 46.041, 0],
2668
+ [6.883, 46.041, 0],
2669
+ [6.87, 46.041, 0],
2670
+ [6.87, 46.05, 0],
2671
+ [6.87, 46.059, 0],
2672
+ [6.87, 46.068, 0],
2673
+ [6.87, 46.077, 0],
2674
+ [6.87, 46.086, 0],
2675
+ [6.87, 46.095, 0],
2676
+ [6.87, 46.104, 0],
2677
+ [6.883, 46.104, 0],
2678
+ [6.882, 46.113, 0],
2679
+ [6.882, 46.122, 0],
2680
+ [6.869, 46.122, 0],
2681
+ [6.857, 46.122, 0],
2682
+ [6.844, 46.122, 0],
2683
+ [6.831, 46.122, 0],
2684
+ [6.818, 46.122, 0],
2685
+ [6.805, 46.122, 0],
2686
+ [6.805, 46.131, 0],
2687
+ [6.792, 46.131, 0],
2688
+ [6.792, 46.14, 0],
2689
+ [6.792, 46.149, 0],
2690
+ [6.779, 46.149, 0],
2691
+ [6.778, 46.158, 0],
2692
+ [6.778, 46.167, 0],
2693
+ [6.791, 46.167, 0],
2694
+ [6.791, 46.176, 0],
2695
+ [6.804, 46.176, 0],
2696
+ [6.804, 46.185, 0],
2697
+ [6.804, 46.194, 0],
2698
+ [6.791, 46.194, 0],
2699
+ [6.791, 46.203, 0],
2700
+ [6.791, 46.212, 0],
2701
+ [6.804, 46.212, 0],
2702
+ [6.804, 46.221, 0],
2703
+ [6.817, 46.221, 0],
2704
+ [6.816, 46.23, 0],
2705
+ [6.816, 46.239, 0],
2706
+ [6.829, 46.239, 0],
2707
+ [6.829, 46.248, 0],
2708
+ [6.829, 46.257, 0],
2709
+ [6.842, 46.257, 0],
2710
+ [6.842, 46.266, 0],
2711
+ [6.855, 46.266, 0],
2712
+ [6.855, 46.275, 0],
2713
+ [6.855, 46.284, 0],
2714
+ [6.842, 46.284, 0],
2715
+ [6.842, 46.293, 0],
2716
+ [6.829, 46.293, 0],
2717
+ [6.816, 46.293, 0],
2718
+ [6.816, 46.302, 0],
2719
+ [6.816, 46.311, 0],
2720
+ [6.803, 46.311, 0],
2721
+ [6.79, 46.311, 0],
2722
+ [6.789, 46.32, 0],
2723
+ [6.789, 46.329, 0],
2724
+ [6.776, 46.328, 0],
2725
+ [6.776, 46.337, 0],
2726
+ [6.776, 46.346, 0],
2727
+ [6.763, 46.346, 0],
2728
+ [6.763, 46.355, 0],
2729
+ [6.763, 46.364, 0],
2730
+ [6.776, 46.364, 0],
2731
+ [6.776, 46.373, 0],
2732
+ [6.789, 46.374, 0],
2733
+ [6.789, 46.382, 0],
2734
+ [6.789, 46.391, 0],
2735
+ [6.802, 46.392, 0],
2736
+ [6.801, 46.401, 0],
2737
+ [6.801, 46.41, 0],
2738
+ [6.801, 46.419, 0],
2739
+ [6.801, 46.428, 0],
2740
+ [6.788, 46.427, 0],
2741
+ [6.775, 46.427, 0],
2742
+ [6.762, 46.427, 0],
2743
+ [6.762, 46.436, 0],
2744
+ [6.749, 46.436, 0],
2745
+ [6.736, 46.436, 0],
2746
+ [6.723, 46.436, 0],
2747
+ [6.723, 46.445, 0],
2748
+ [6.71, 46.445, 0],
2749
+ [6.697, 46.445, 0],
2750
+ [6.684, 46.445, 0],
2751
+ [6.671, 46.445, 0],
2752
+ [6.671, 46.454, 0],
2753
+ [6.658, 46.454, 0],
2754
+ [6.645, 46.454, 0],
2755
+ [6.632, 46.453, 0],
2756
+ [6.619, 46.453, 0],
2757
+ [6.606, 46.453, 0],
2758
+ [6.593, 46.453, 0],
2759
+ [6.58, 46.453, 0],
2760
+ [6.567, 46.453, 0],
2761
+ [6.554, 46.453, 0],
2762
+ [6.541, 46.453, 0],
2763
+ [6.528, 46.453, 0],
2764
+ [6.515, 46.453, 0],
2765
+ [6.515, 46.444, 0],
2766
+ [6.502, 46.443, 0],
2767
+ [6.502, 46.434, 0],
2768
+ [6.489, 46.434, 0],
2769
+ [6.476, 46.434, 0],
2770
+ [6.476, 46.425, 0],
2771
+ [6.463, 46.425, 0],
2772
+ [6.45, 46.425, 0],
2773
+ [6.45, 46.416, 0],
2774
+ [6.437, 46.416, 0],
2775
+ [6.437, 46.407, 0],
2776
+ [6.424, 46.407, 0],
2777
+ [6.411, 46.407, 0],
2778
+ [6.398, 46.407, 0],
2779
+ [6.385, 46.406, 0],
2780
+ [6.372, 46.406, 0],
2781
+ [6.359, 46.406, 0],
2782
+ [6.359, 46.397, 0],
2783
+ [6.346, 46.397, 0],
2784
+ [6.333, 46.397, 0],
2785
+ [6.334, 46.388, 0],
2786
+ [6.321, 46.388, 0],
2787
+ [6.308, 46.388, 0],
2788
+ [6.308, 46.379, 0],
2789
+ [6.295, 46.379, 0],
2790
+ [6.295, 46.37, 0],
2791
+ [6.282, 46.369, 0],
2792
+ [6.282, 46.36, 0],
2793
+ [6.269, 46.36, 0],
2794
+ [6.256, 46.36, 0],
2795
+ [6.256, 46.351, 0],
2796
+ [6.257, 46.342, 0],
2797
+ [6.244, 46.342, 0],
2798
+ [6.244, 46.333, 0],
2799
+ [6.244, 46.324, 0],
2800
+ [6.244, 46.315, 0],
2801
+ [6.244, 46.306, 0],
2802
+ [6.257, 46.306, 0],
2803
+ [6.258, 46.297, 0],
2804
+ [6.258, 46.288, 0],
2805
+ [6.258, 46.279, 0],
2806
+ [6.258, 46.27, 0],
2807
+ [6.258, 46.261, 0],
2808
+ [6.271, 46.261, 0],
2809
+ [6.284, 46.262, 0],
2810
+ [6.284, 46.271, 0],
2811
+ [6.297, 46.271, 0],
2812
+ [6.297, 46.262, 0],
2813
+ [6.31, 46.262, 0],
2814
+ [6.31, 46.253, 0],
2815
+ [6.311, 46.244, 0],
2816
+ [6.311, 46.235, 0],
2817
+ [6.311, 46.226, 0],
2818
+ [6.298, 46.226, 0],
2819
+ [6.298, 46.217, 0],
2820
+ [6.285, 46.217, 0],
2821
+ [6.285, 46.208, 0],
2822
+ [6.273, 46.207, 0],
2823
+ [6.26, 46.207, 0],
2824
+ [6.26, 46.198, 0],
2825
+ [6.247, 46.198, 0],
2826
+ [6.234, 46.198, 0],
2827
+ [6.221, 46.198, 0],
2828
+ [6.221, 46.189, 0],
2829
+ [6.208, 46.189, 0],
2830
+ [6.208, 46.18, 0],
2831
+ [6.195, 46.18, 0],
2832
+ [6.196, 46.171, 0],
2833
+ [6.196, 46.162, 0],
2834
+ [6.183, 46.161, 0],
2835
+ [6.183, 46.152, 0],
2836
+ [6.17, 46.152, 0],
2837
+ [6.157, 46.152, 0],
2838
+ [6.157, 46.143, 0],
2839
+ [6.144, 46.143, 0],
2840
+ [6.145, 46.134, 0],
2841
+ [6.132, 46.134, 0],
2842
+ [6.119, 46.134, 0],
2843
+ [6.106, 46.134, 0],
2844
+ [6.106, 46.143, 0],
2845
+ [6.093, 46.142, 0],
2846
+ [6.08, 46.142, 0],
2847
+ [6.067, 46.142, 0],
2848
+ [6.054, 46.142, 0],
2849
+ [6.054, 46.133, 0],
2850
+ [6.041, 46.133, 0],
2851
+ [6.028, 46.133, 0],
2852
+ [6.015, 46.132, 0],
2853
+ [6.015, 46.141, 0],
2854
+ [6.002, 46.141, 0],
2855
+ [5.989, 46.141, 0],
2856
+ [5.989, 46.132, 0],
2857
+ [5.976, 46.132, 0],
2858
+ [5.977, 46.123, 0],
2859
+ [5.964, 46.123, 0],
2860
+ [5.951, 46.123, 0],
2861
+ [5.951, 46.132, 0],
2862
+ [5.95, 46.141, 0],
2863
+ [5.963, 46.141, 0],
2864
+ [5.963, 46.15, 0],
2865
+ [5.963, 46.159, 0],
2866
+ [5.963, 46.168, 0],
2867
+ [5.976, 46.168, 0],
2868
+ [5.975, 46.177, 0],
2869
+ [5.975, 46.186, 0],
2870
+ [5.962, 46.186, 0],
2871
+ [5.962, 46.195, 0],
2872
+ [5.962, 46.204, 0],
2873
+ [5.961, 46.213, 0],
2874
+ [5.961, 46.222, 0],
2875
+ [5.974, 46.222, 0],
2876
+ [5.987, 46.222, 0],
2877
+ [5.987, 46.231, 0],
2878
+ [6, 46.231, 0],
2879
+ [6.013, 46.231, 0],
2880
+ [6.012, 46.24, 0],
2881
+ [6.025, 46.241, 0],
2882
+ [6.038, 46.241, 0],
2883
+ [6.051, 46.241, 0],
2884
+ [6.051, 46.25, 0],
2885
+ [6.064, 46.25, 0],
2886
+ [6.077, 46.25, 0],
2887
+ [6.09, 46.25, 0],
2888
+ [6.103, 46.251, 0],
2889
+ [6.103, 46.26, 0],
2890
+ [6.103, 46.269, 0],
2891
+ [6.102, 46.278, 0],
2892
+ [6.089, 46.277, 0],
2893
+ [6.089, 46.286, 0],
2894
+ [6.102, 46.287, 0],
2895
+ [6.102, 46.295, 0],
2896
+ [6.115, 46.296, 0],
2897
+ [6.115, 46.305, 0],
2898
+ [6.114, 46.314, 0],
2899
+ [6.114, 46.323, 0],
2900
+ [6.127, 46.323, 0],
2901
+ [6.127, 46.332, 0],
2902
+ [6.127, 46.341, 0],
2903
+ [6.14, 46.341, 0],
2904
+ [6.14, 46.35, 0],
2905
+ [6.153, 46.35, 0],
2906
+ [6.152, 46.359, 0],
2907
+ [6.152, 46.368, 0],
2908
+ [6.152, 46.377, 0],
2909
+ [6.139, 46.377, 0],
2910
+ [6.126, 46.377, 0],
2911
+ [6.126, 46.386, 0],
2912
+ [6.113, 46.386, 0],
2913
+ [6.112, 46.395, 0],
2914
+ [6.099, 46.394, 0],
2915
+ [6.099, 46.403, 0],
2916
+ [6.086, 46.403, 0],
2917
+ [6.073, 46.403, 0],
2918
+ [6.073, 46.412, 0],
2919
+ [6.06, 46.412, 0],
2920
+ [6.06, 46.421, 0],
2921
+ [6.06, 46.43, 0],
2922
+ [6.073, 46.43, 0],
2923
+ [6.072, 46.439, 0],
2924
+ [6.072, 46.448, 0],
2925
+ [6.072, 46.457, 0],
2926
+ [6.072, 46.466, 0],
2927
+ [6.071, 46.475, 0],
2928
+ [6.084, 46.475, 0],
2929
+ [6.084, 46.484, 0],
2930
+ [6.097, 46.484, 0],
2931
+ [6.097, 46.493, 0],
2932
+ [6.097, 46.502, 0],
2933
+ [6.097, 46.511, 0],
2934
+ [6.11, 46.512, 0],
2935
+ [6.109, 46.521, 0],
2936
+ [6.122, 46.521, 0],
2937
+ [6.122, 46.53, 0],
2938
+ [6.135, 46.53, 0],
2939
+ [6.135, 46.539, 0],
2940
+ [6.135, 46.548, 0],
2941
+ [6.135, 46.557, 0],
2942
+ [6.122, 46.557, 0],
2943
+ [6.121, 46.566, 0],
2944
+ [6.108, 46.565, 0],
2945
+ [6.108, 46.574, 0],
2946
+ [6.108, 46.583, 0],
2947
+ [6.108, 46.592, 0],
2948
+ [6.121, 46.593, 0],
2949
+ [6.12, 46.602, 0],
2950
+ [6.133, 46.602, 0],
2951
+ [6.147, 46.602, 0],
2952
+ [6.146, 46.611, 0],
2953
+ [6.159, 46.611, 0],
2954
+ [6.159, 46.62, 0],
2955
+ [6.172, 46.62, 0],
2956
+ [6.172, 46.629, 0],
2957
+ [6.185, 46.629, 0],
2958
+ [6.185, 46.638, 0],
2959
+ [6.198, 46.638, 0],
2960
+ [6.198, 46.647, 0],
2961
+ [6.211, 46.648, 0],
2962
+ [6.224, 46.648, 0],
2963
+ [6.224, 46.657, 0],
2964
+ [6.223, 46.666, 0],
2965
+ [6.236, 46.666, 0],
2966
+ [6.25, 46.666, 0],
2967
+ [6.249, 46.675, 0],
2968
+ [6.262, 46.675, 0],
2969
+ [6.262, 46.684, 0],
2970
+ [6.262, 46.693, 0],
2971
+ [6.275, 46.693, 0],
2972
+ [6.288, 46.693, 0],
2973
+ [6.288, 46.702, 0],
2974
+ [6.301, 46.703, 0],
2975
+ [6.314, 46.703, 0],
2976
+ [6.314, 46.712, 0],
2977
+ [6.327, 46.712, 0],
2978
+ [6.34, 46.712, 0],
2979
+ [6.34, 46.721, 0],
2980
+ [6.353, 46.721, 0],
2981
+ [6.353, 46.73, 0],
2982
+ [6.366, 46.73, 0],
2983
+ [6.366, 46.739, 0],
2984
+ [6.379, 46.739, 0],
2985
+ [6.379, 46.748, 0],
2986
+ [6.392, 46.748, 0],
2987
+ [6.391, 46.757, 0],
2988
+ [6.405, 46.757, 0],
2989
+ [6.418, 46.758, 0],
2990
+ [6.431, 46.758, 0],
2991
+ [6.431, 46.767, 0],
2992
+ [6.43, 46.776, 0],
2993
+ [6.444, 46.776, 0],
2994
+ [6.443, 46.785, 0],
2995
+ [6.443, 46.794, 0],
2996
+ [6.43, 46.794, 0],
2997
+ [6.43, 46.803, 0],
2998
+ [6.43, 46.812, 0],
2999
+ [6.43, 46.821, 0],
3000
+ [6.429, 46.83, 0],
3001
+ [6.429, 46.839, 0],
3002
+ [6.442, 46.839, 0],
3003
+ [6.442, 46.848, 0],
3004
+ [6.455, 46.848, 0],
3005
+ [6.455, 46.857, 0],
3006
+ [6.455, 46.866, 0],
3007
+ [6.455, 46.875, 0],
3008
+ [6.455, 46.884, 0],
3009
+ [6.454, 46.893, 0],
3010
+ [6.454, 46.902, 0],
3011
+ [6.441, 46.902, 0],
3012
+ [6.441, 46.911, 0],
3013
+ [6.428, 46.911, 0],
3014
+ [6.428, 46.92, 0],
3015
+ [6.428, 46.929, 0],
3016
+ [6.427, 46.938, 0],
3017
+ [6.441, 46.938, 0],
3018
+ [6.44, 46.947, 0],
3019
+ [6.453, 46.947, 0],
3020
+ [6.453, 46.956, 0],
3021
+ [6.466, 46.956, 0],
3022
+ [6.466, 46.965, 0],
3023
+ [6.479, 46.965, 0],
3024
+ [6.479, 46.974, 0],
3025
+ [6.492, 46.974, 0],
3026
+ [6.492, 46.983, 0],
3027
+ [6.505, 46.983, 0],
3028
+ [6.506, 46.974, 0],
3029
+ [6.519, 46.974, 0],
3030
+ [6.532, 46.974, 0],
3031
+ [6.532, 46.983, 0],
3032
+ [6.545, 46.984, 0],
3033
+ [6.558, 46.984, 0],
3034
+ [6.571, 46.984, 0],
3035
+ [6.571, 46.993, 0],
3036
+ [6.584, 46.993, 0],
3037
+ [6.597, 46.993, 0],
3038
+ [6.61, 46.993, 0],
3039
+ [6.61, 47.002, 0],
3040
+ [6.623, 47.002, 0],
3041
+ [6.637, 47.002, 0],
3042
+ [6.636, 47.011, 0],
3043
+ [6.636, 47.02, 0],
3044
+ [6.649, 47.02, 0],
3045
+ [6.649, 47.029, 0],
3046
+ [6.662, 47.029, 0],
3047
+ [6.662, 47.038, 0],
3048
+ [6.675, 47.038, 0],
3049
+ [6.689, 47.039, 0],
3050
+ [6.689, 47.048, 0],
3051
+ [6.688, 47.057, 0],
3052
+ [6.688, 47.066, 0],
3053
+ [6.688, 47.075, 0],
3054
+ [6.701, 47.075, 0],
3055
+ [6.701, 47.084, 0],
3056
+ [6.701, 47.093, 0],
3057
+ [6.714, 47.093, 0],
3058
+ [6.727, 47.093, 0],
3059
+ [6.727, 47.102, 0],
3060
+ [6.727, 47.111, 0],
3061
+ [6.74, 47.111, 0],
3062
+ [6.74, 47.12, 0],
3063
+ [6.753, 47.12, 0],
3064
+ [6.753, 47.129, 0],
3065
+ [6.766, 47.129, 0],
3066
+ [6.78, 47.129, 0],
3067
+ [6.793, 47.129, 0],
3068
+ [6.793, 47.138, 0],
3069
+ [6.806, 47.138, 0],
3070
+ [6.806, 47.147, 0],
3071
+ [6.819, 47.147, 0],
3072
+ [6.819, 47.156, 0],
3073
+ [6.832, 47.156, 0],
3074
+ [6.832, 47.165, 0],
3075
+ [6.832, 47.174, 0],
3076
+ [6.845, 47.174, 0],
3077
+ [6.845, 47.183, 0],
3078
+ [6.858, 47.183, 0],
3079
+ [6.858, 47.192, 0],
3080
+ [6.871, 47.193, 0],
3081
+ [6.871, 47.202, 0],
3082
+ [6.871, 47.211, 0],
3083
+ [6.884, 47.211, 0],
3084
+ [6.897, 47.211, 0],
3085
+ [6.897, 47.22, 0],
3086
+ [6.911, 47.22, 0],
3087
+ [6.91, 47.229, 0],
3088
+ [6.924, 47.229, 0],
3089
+ [6.924, 47.238, 0],
3090
+ [6.937, 47.238, 0],
3091
+ [6.937, 47.247, 0],
3092
+ [6.937, 47.256, 0],
3093
+ [6.937, 47.265, 0],
3094
+ [6.936, 47.274, 0],
3095
+ [6.936, 47.283, 0],
3096
+ [6.936, 47.292, 0],
3097
+ [6.936, 47.301, 0],
3098
+ [6.949, 47.301, 0],
3099
+ [6.963, 47.301, 0],
3100
+ [6.976, 47.301, 0],
3101
+ [6.989, 47.301, 0],
3102
+ [7.002, 47.301, 0],
3103
+ [7.002, 47.31, 0],
3104
+ [7.002, 47.319, 0],
3105
+ [7.002, 47.328, 0],
3106
+ [7.015, 47.328, 0],
3107
+ [7.029, 47.328, 0],
3108
+ [7.028, 47.337, 0],
3109
+ [7.042, 47.337, 0],
3110
+ [7.042, 47.346, 0],
3111
+ [7.042, 47.355, 0],
3112
+ [7.028, 47.355, 0],
3113
+ [7.028, 47.364, 0],
3114
+ [7.015, 47.364, 0],
3115
+ [7.002, 47.364, 0],
3116
+ [7.002, 47.355, 0],
3117
+ [6.989, 47.355, 0],
3118
+ [6.975, 47.355, 0],
3119
+ [6.962, 47.355, 0],
3120
+ [6.949, 47.355, 0],
3121
+ [6.936, 47.355, 0],
3122
+ [6.922, 47.355, 0],
3123
+ [6.909, 47.355, 0],
3124
+ [6.896, 47.355, 0],
3125
+ [6.896, 47.346, 0],
3126
+ [6.883, 47.346, 0],
3127
+ [6.87, 47.345, 0],
3128
+ [6.869, 47.354, 0],
3129
+ [6.869, 47.363, 0],
3130
+ [6.883, 47.363, 0],
3131
+ [6.883, 47.372, 0],
3132
+ [6.882, 47.381, 0],
3133
+ [6.882, 47.39, 0],
3134
+ [6.896, 47.391, 0],
3135
+ [6.909, 47.391, 0],
3136
+ [6.909, 47.4, 0],
3137
+ [6.909, 47.409, 0],
3138
+ [6.922, 47.409, 0],
3139
+ [6.935, 47.409, 0],
3140
+ [6.935, 47.418, 0],
3141
+ [6.935, 47.427, 0],
3142
+ [6.935, 47.436, 0],
3143
+ [6.948, 47.436, 0],
3144
+ [6.961, 47.436, 0],
3145
+ [6.961, 47.445, 0],
3146
+ [6.961, 47.454, 0],
3147
+ [6.975, 47.454, 0],
3148
+ [6.988, 47.454, 0],
3149
+ [6.988, 47.463, 0],
3150
+ [6.988, 47.472, 0],
3151
+ [6.974, 47.472, 0],
3152
+ [6.974, 47.481, 0],
3153
+ [6.974, 47.49, 0],
3154
+ [6.974, 47.499, 0],
3155
+ [6.987, 47.499, 0],
3156
+ [6.987, 47.508, 0],
3157
+ [7.001, 47.508, 0],
3158
+ [7.014, 47.508, 0],
3159
+ [7.027, 47.508, 0],
3160
+ [7.04, 47.508, 0],
3161
+ [7.04, 47.499, 0],
3162
+ [7.054, 47.499, 0],
3163
+ [7.067, 47.499, 0],
3164
+ [7.08, 47.499, 0],
3165
+ [7.094, 47.499, 0],
3166
+ [7.107, 47.499, 0],
3167
+ [7.12, 47.499, 0],
3168
+ [7.12, 47.508, 0],
3169
+ [7.133, 47.508, 0],
3170
+ [7.147, 47.508, 0],
3171
+ [7.147, 47.499, 0],
3172
+ [7.16, 47.499, 0],
3173
+ [7.173, 47.499, 0],
3174
+ [7.186, 47.499, 0],
3175
+ [7.2, 47.5, 0],
3176
+ [7.213, 47.5, 0],
3177
+ [7.213, 47.491, 0],
3178
+ [7.213, 47.482, 0],
3179
+ [7.2, 47.482, 0],
3180
+ [7.2, 47.473, 0],
3181
+ [7.187, 47.472, 0],
3182
+ [7.187, 47.464, 0],
3183
+ [7.187, 47.455, 0],
3184
+ [7.187, 47.446, 0],
3185
+ [7.2, 47.446, 0],
3186
+ [7.213, 47.446, 0],
3187
+ [7.226, 47.446, 0],
3188
+ [7.24, 47.446, 0],
3189
+ [7.24, 47.437, 0],
3190
+ [7.253, 47.437, 0],
3191
+ [7.266, 47.437, 0],
3192
+ [7.28, 47.437, 0],
3193
+ [7.293, 47.437, 0],
3194
+ [7.293, 47.446, 0],
3195
+ [7.306, 47.446, 0],
3196
+ [7.319, 47.446, 0],
3197
+ [7.333, 47.446, 0],
3198
+ [7.346, 47.446, 0],
3199
+ [7.346, 47.437, 0],
3200
+ [7.359, 47.437, 0],
3201
+ [7.372, 47.437, 0],
3202
+ [7.386, 47.437, 0],
3203
+ [7.399, 47.437, 0],
3204
+ [7.399, 47.446, 0],
3205
+ [7.412, 47.446, 0],
3206
+ [7.412, 47.455, 0],
3207
+ [7.425, 47.455, 0],
3208
+ [7.425, 47.464, 0],
3209
+ [7.425, 47.473, 0],
3210
+ [7.412, 47.473, 0],
3211
+ [7.412, 47.482, 0],
3212
+ [7.412, 47.491, 0],
3213
+ [7.425, 47.491, 0],
3214
+ [7.425, 47.5, 0],
3215
+ [7.439, 47.5, 0],
3216
+ [7.452, 47.5, 0],
3217
+ [7.452, 47.491, 0],
3218
+ [7.465, 47.491, 0],
3219
+ [7.478, 47.491, 0],
3220
+ [7.492, 47.491, 0],
3221
+ [7.492, 47.5, 0],
3222
+ [7.492, 47.509, 0],
3223
+ [7.492, 47.518, 0],
3224
+ [7.492, 47.527, 0],
3225
+ [7.492, 47.536, 0],
3226
+ [7.492, 47.545, 0],
3227
+ [7.505, 47.545, 0],
3228
+ [7.505, 47.554, 0],
3229
+ [7.518, 47.554, 0],
3230
+ [7.518, 47.563, 0],
3231
+ [7.532, 47.563, 0],
3232
+ [7.545, 47.563, 0],
3233
+ [7.545, 47.572, 0],
3234
+ [7.545, 47.581, 0],
3235
+ [7.558, 47.581, 0],
3236
+ [7.572, 47.581, 0],
3237
+ [7.572, 47.59, 0],
3238
+ [7.585, 47.59, 0],
3239
+ [7.585, 47.599, 0],
3240
+ [7.598, 47.599, 0],
3241
+ [7.598, 47.59, 0],
3242
+ [7.611, 47.59, 0],
3243
+ [7.625, 47.59, 0],
3244
+ [7.625, 47.599, 0],
3245
+ [7.638, 47.599, 0],
3246
+ [7.651, 47.598, 0],
3247
+ [7.665, 47.598, 0],
3248
+ [7.678, 47.598, 0],
3249
+ [7.678, 47.607, 0],
3250
+ [7.691, 47.607, 0],
3251
+ [7.705, 47.607, 0],
3252
+ [7.705, 47.598, 0],
3253
+ [7.705, 47.589, 0],
3254
+ [7.691, 47.589, 0],
3255
+ [7.691, 47.58, 0],
3256
+ [7.691, 47.571, 0],
3257
+ [7.691, 47.562, 0],
3258
+ [7.678, 47.562, 0],
3259
+ [7.665, 47.562, 0],
3260
+ [7.664, 47.553, 0],
3261
+ [7.664, 47.545, 0],
3262
+ [7.678, 47.544, 0],
3263
+ [7.691, 47.544, 0],
3264
+ [7.704, 47.544, 0],
3265
+ [7.718, 47.544, 0],
3266
+ [7.731, 47.544, 0],
3267
+ [7.744, 47.544, 0],
3268
+ [7.744, 47.553, 0],
3269
+ [7.757, 47.553, 0],
3270
+ [7.771, 47.553, 0],
3271
+ [7.771, 47.562, 0],
3272
+ [7.784, 47.562, 0],
3273
+ [7.797, 47.562, 0],
3274
+ [7.797, 47.571, 0],
3275
+ [7.811, 47.571, 0],
3276
+ [7.811, 47.58, 0],
3277
+ [7.811, 47.589, 0],
3278
+ [7.824, 47.589, 0],
3279
+ [7.837, 47.589, 0],
3280
+ [7.851, 47.589, 0],
3281
+ [7.864, 47.589, 0],
3282
+ [7.864, 47.598, 0],
3283
+ [7.877, 47.598, 0],
3284
+ [7.891, 47.598, 0],
3285
+ [7.891, 47.589, 0],
3286
+ [7.904, 47.589, 0],
3287
+ [7.917, 47.589, 0],
3288
+ [7.917, 47.58, 0],
3289
+ [7.917, 47.571, 0],
3290
+ [7.917, 47.562, 0],
3291
+ [7.917, 47.553, 0],
3292
+ [7.93, 47.553, 0],
3293
+ [7.943, 47.553, 0],
3294
+ [7.944, 47.562, 0],
3295
+ [7.957, 47.562, 0],
3296
+ [7.97, 47.561, 0],
3297
+ [7.983, 47.561, 0],
3298
+ [7.997, 47.561, 0],
3299
+ [8.01, 47.561, 0],
3300
+ [8.023, 47.561, 0],
3301
+ [8.037, 47.561, 0],
3302
+ [8.05, 47.561, 0],
3303
+ [8.05, 47.57, 0],
3304
+ [8.063, 47.57, 0],
3305
+ [8.077, 47.57, 0],
3306
+ [8.09, 47.57, 0],
3307
+ [8.09, 47.579, 0],
3308
+ [8.103, 47.579, 0],
3309
+ [8.103, 47.588, 0],
3310
+ [8.117, 47.588, 0],
3311
+ [8.13, 47.588, 0],
3312
+ [8.13, 47.597, 0],
3313
+ [8.143, 47.597, 0],
3314
+ [8.157, 47.596, 0],
3315
+ [8.157, 47.605, 0],
3316
+ [8.17, 47.605, 0],
3317
+ [8.183, 47.605, 0],
3318
+ [8.183, 47.614, 0],
3319
+ [8.184, 47.623, 0],
3320
+ [8.197, 47.623, 0],
3321
+ [8.21, 47.623, 0],
3322
+ [8.223, 47.623, 0],
3323
+ [8.237, 47.623, 0],
3324
+ [8.25, 47.623, 0],
3325
+ [8.263, 47.623, 0],
3326
+ [8.263, 47.614, 0],
3327
+ [8.277, 47.614, 0],
3328
+ [8.29, 47.614, 0],
3329
+ [8.303, 47.613, 0],
3330
+ [8.303, 47.604, 0],
3331
+ [8.303, 47.595, 0],
3332
+ [8.303, 47.586, 0],
3333
+ [8.316, 47.586, 0],
3334
+ [8.329, 47.586, 0],
3335
+ [8.329, 47.577, 0],
3336
+ [8.342, 47.577, 0],
3337
+ [8.356, 47.577, 0],
3338
+ [8.369, 47.577, 0],
3339
+ [8.382, 47.577, 0],
3340
+ [8.382, 47.586, 0],
3341
+ [8.396, 47.586, 0],
3342
+ [8.409, 47.586, 0],
3343
+ [8.409, 47.577, 0],
3344
+ [8.422, 47.577, 0],
3345
+ [8.435, 47.576, 0],
3346
+ [8.449, 47.576, 0],
3347
+ [8.449, 47.585, 0],
3348
+ [8.449, 47.594, 0],
3349
+ [8.449, 47.603, 0],
3350
+ [8.463, 47.603, 0],
3351
+ [8.463, 47.612, 0],
3352
+ [8.476, 47.612, 0],
3353
+ [8.476, 47.621, 0],
3354
+ [8.49, 47.621, 0],
3355
+ [8.503, 47.621, 0],
3356
+ [8.503, 47.63, 0],
3357
+ [8.503, 47.639, 0],
3358
+ [8.49, 47.639, 0],
3359
+ [8.477, 47.639, 0],
3360
+ [8.476, 47.63, 0],
3361
+ [8.463, 47.63, 0],
3362
+ [8.463, 47.639, 0],
3363
+ [8.463, 47.648, 0],
3364
+ [8.45, 47.648, 0],
3365
+ [8.437, 47.648, 0],
3366
+ [8.424, 47.648, 0],
3367
+ [8.424, 47.657, 0],
3368
+ [8.41, 47.658, 0],
3369
+ [8.411, 47.667, 0],
3370
+ [8.397, 47.667, 0],
3371
+ [8.397, 47.676, 0],
3372
+ [8.398, 47.685, 0],
3373
+ [8.398, 47.694, 0],
3374
+ [8.398, 47.703, 0],
3375
+ [8.398, 47.712, 0],
3376
+ [8.411, 47.712, 0],
3377
+ [8.412, 47.721, 0],
3378
+ [8.425, 47.72, 0],
3379
+ [8.438, 47.72, 0],
3380
+ [8.438, 47.729, 0],
3381
+ [8.439, 47.738, 0],
3382
+ [8.439, 47.747, 0],
3383
+ [8.452, 47.747, 0],
3384
+ [8.452, 47.756, 0],
3385
+ [8.466, 47.756, 0],
3386
+ [8.466, 47.765, 0],
3387
+ [8.466, 47.774, 0],
3388
+ [8.479, 47.774, 0],
3389
+ [8.493, 47.774, 0],
3390
+ [8.493, 47.783, 0],
3391
+ [8.506, 47.783, 0],
3392
+ [8.519, 47.783, 0],
3393
+ [8.533, 47.782, 0],
3394
+ [8.533, 47.791, 0],
3395
+ [8.546, 47.791, 0],
3396
+ [8.56, 47.791, 0],
3397
+ [8.56, 47.8, 0],
3398
+ [8.56, 47.809, 0],
3399
+ [8.573, 47.809, 0],
3400
+ [8.587, 47.809, 0],
3401
+ [8.6, 47.809, 0],
3402
+ [8.613, 47.809, 0],
3403
+ [8.627, 47.808, 0],
3404
+ [8.64, 47.808, 0],
3405
+ [8.653, 47.808, 0],
3406
+ [8.667, 47.808, 0],
3407
+ [8.667, 47.799, 0],
3408
+ [8.666, 47.79, 0],
3409
+ [8.68, 47.79, 0],
3410
+ [8.693, 47.79, 0],
3411
+ [8.693, 47.781, 0],
3412
+ [8.693, 47.772, 0],
3413
+ [8.706, 47.772, 0],
3414
+ [8.719, 47.772, 0],
3415
+ [8.733, 47.771, 0],
3416
+ [8.732, 47.762, 0],
3417
+ [8.746, 47.762, 0],
3418
+ [8.746, 47.753, 0],
3419
+ [8.745, 47.744, 0],
3420
+ [8.732, 47.744, 0],
3421
+ [8.732, 47.735, 0],
3422
+ [8.732, 47.726, 0],
3423
+ [8.745, 47.726, 0],
3424
+ [8.758, 47.726, 0],
3425
+ [8.772, 47.726, 0],
3426
+ [8.772, 47.735, 0],
3427
+ [8.785, 47.735, 0],
3428
+ [8.785, 47.744, 0],
3429
+ [8.799, 47.744, 0],
3430
+ [8.812, 47.743, 0],
3431
+ [8.812, 47.734, 0],
3432
+ [8.825, 47.734, 0],
3433
+ [8.825, 47.725, 0],
3434
+ [8.838, 47.725, 0],
3435
+ [8.838, 47.716, 0],
3436
+ [8.851, 47.716, 0],
3437
+ [8.851, 47.707, 0],
3438
+ [8.864, 47.707, 0],
3439
+ [8.878, 47.707, 0],
3440
+ [8.877, 47.698, 0],
3441
+ [8.877, 47.689, 0],
3442
+ [8.877, 47.68, 0],
3443
+ [8.877, 47.671, 0],
3444
+ [8.876, 47.662, 0],
3445
+ [8.89, 47.662, 0],
3446
+ [8.903, 47.661, 0],
3447
+ [8.916, 47.661, 0],
3448
+ [8.93, 47.661, 0],
3449
+ [8.943, 47.661, 0],
3450
+ [8.943, 47.67, 0],
3451
+ [8.957, 47.67, 0],
3452
+ [8.97, 47.67, 0],
3453
+ [8.97, 47.679, 0],
3454
+ [8.983, 47.678, 0],
3455
+ [8.997, 47.678, 0],
3456
+ [8.997, 47.687, 0],
3457
+ [9.01, 47.687, 0],
3458
+ [9.011, 47.696, 0],
3459
+ [9.024, 47.696, 0],
3460
+ [9.037, 47.696, 0],
3461
+ [9.037, 47.687, 0],
3462
+ [9.05, 47.686, 0],
3463
+ [9.064, 47.686, 0],
3464
+ [9.077, 47.686, 0],
3465
+ [9.09, 47.686, 0],
3466
+ [9.104, 47.686, 0],
3467
+ [9.117, 47.685, 0],
3468
+ [9.117, 47.677, 0],
3469
+ [9.13, 47.676, 0],
3470
+ [9.143, 47.676, 0],
3471
+ [9.157, 47.676, 0],
3472
+ [9.156, 47.667, 0],
3473
+ [9.17, 47.667, 0],
3474
+ [9.183, 47.667, 0],
3475
+ [9.196, 47.666, 0],
3476
+ [9.196, 47.657, 0],
3477
+ [9.209, 47.657, 0],
3478
+ [9.222, 47.657, 0],
3479
+ [9.223, 47.666, 0],
3480
+ [9.236, 47.666, 0],
3481
+ [9.249, 47.666, 0],
3482
+ [9.263, 47.665, 0],
3483
+ [9.276, 47.665, 0],
3484
+ [9.276, 47.656, 0],
3485
+ [9.289, 47.656, 0],
3486
+ [9.302, 47.656, 0],
3487
+ [9.302, 47.647, 0],
3488
+ [9.315, 47.646, 0],
3489
+ [9.329, 47.646, 0],
3490
+ [9.342, 47.646, 0],
3491
+ [9.342, 47.637, 0],
3492
+ [9.355, 47.637, 0],
3493
+ [9.368, 47.637, 0],
3494
+ [9.381, 47.636, 0],
3495
+ [9.381, 47.627, 0],
3496
+ [9.394, 47.627, 0],
3497
+ [9.408, 47.627, 0],
3498
+ [9.407, 47.618, 0],
3499
+ [9.421, 47.618, 0],
3500
+ [9.42, 47.609, 0],
3501
+ [9.434, 47.609, 0],
3502
+ [9.433, 47.6, 0],
3503
+ [9.447, 47.599, 0],
3504
+ [9.446, 47.59, 0],
3505
+ [9.46, 47.59, 0],
3506
+ [9.459, 47.581, 0],
3507
+ [9.473, 47.581, 0],
3508
+ [9.472, 47.572, 0],
3509
+ [9.485, 47.572, 0],
3510
+ [9.485, 47.563, 0],
3511
+ [9.498, 47.562, 0],
3512
+ [9.498, 47.553, 0],
3513
+ [9.511, 47.553, 0],
3514
+ [9.525, 47.553, 0],
3515
+ [9.538, 47.553, 0],
3516
+ [9.551, 47.552, 0],
3517
+ [9.551, 47.543, 0],
3518
+ [9.564, 47.543, 0],
3519
+ [9.564, 47.534, 0],
3520
+ [9.563, 47.525, 0],
3521
+ [9.563, 47.516, 0],
3522
+ [9.563, 47.507, 0],
3523
+ [9.562, 47.498, 0],
3524
+ [9.576, 47.498, 0],
3525
+ [9.575, 47.489, 0],
3526
+ [9.588, 47.489, 0],
3527
+ [9.588, 47.48, 0],
3528
+ [9.601, 47.48, 0],
3529
+ [9.615, 47.479, 0],
3530
+ [9.614, 47.47, 0],
3531
+ [9.628, 47.47, 0],
3532
+ [9.627, 47.461, 0],
3533
+ [9.64, 47.461, 0],
3534
+ [9.654, 47.461, 0],
3535
+ [9.667, 47.46, 0],
3536
+ [9.667, 47.451, 0],
3537
+ [9.666, 47.442, 0],
3538
+ [9.653, 47.443, 0],
3539
+ [9.653, 47.434, 0],
3540
+ [9.652, 47.425, 0],
3541
+ [9.652, 47.416, 0],
3542
+ [9.665, 47.415, 0],
3543
+ [9.665, 47.406, 0],
3544
+ [9.664, 47.397, 0],
3545
+ [9.678, 47.397, 0],
3546
+ [9.677, 47.388, 0],
3547
+ [9.677, 47.379, 0],
3548
+ [9.676, 47.37, 0],
3549
+ [9.663, 47.37, 0],
3550
+ [9.663, 47.361, 0],
3551
+ [9.65, 47.362, 0],
3552
+ [9.636, 47.362, 0],
3553
+ [9.623, 47.362, 0],
3554
+ [9.623, 47.353, 0],
3555
+ [9.609, 47.353, 0],
3556
+ [9.609, 47.344, 0],
3557
+ [9.609, 47.335, 0],
3558
+ [9.608, 47.326, 0],
3559
+ [9.595, 47.327, 0],
3560
+ [9.595, 47.318, 0],
3561
+ [9.594, 47.309, 0],
3562
+ [9.581, 47.309, 0],
3563
+ [9.581, 47.3, 0],
3564
+ [9.568, 47.3, 0],
3565
+ [9.567, 47.291, 0],
3566
+ [9.554, 47.291, 0],
3567
+ [9.554, 47.282, 0],
3568
+ [9.553, 47.273, 0],
3569
+ [9.553, 47.265, 0],
3570
+ [9.553, 47.256, 0],
3571
+ [9.566, 47.255, 0],
3572
+ [9.565, 47.246, 0],
3573
+ [9.579, 47.246, 0],
3574
+ [9.578, 47.237, 0],
3575
+ [9.578, 47.228, 0],
3576
+ [9.578, 47.219, 0],
3577
+ [9.591, 47.219, 0],
3578
+ [9.59, 47.21, 0],
3579
+ [9.59, 47.201, 0],
3580
+ [9.59, 47.192, 0],
3581
+ [9.577, 47.192, 0],
3582
+ [9.576, 47.183, 0],
3583
+ [9.576, 47.174, 0],
3584
+ [9.589, 47.174, 0],
3585
+ [9.602, 47.174, 0],
3586
+ [9.602, 47.165, 0],
3587
+ [9.615, 47.164, 0],
3588
+ [9.615, 47.155, 0],
3589
+ [9.628, 47.155, 0],
3590
+ [9.627, 47.146, 0],
3591
+ [9.627, 47.137, 0],
3592
+ [9.64, 47.137, 0],
3593
+ [9.64, 47.128, 0],
3594
+ [9.64, 47.119, 0],
3595
+ [9.639, 47.11, 0],
3596
+ [9.639, 47.101, 0],
3597
+ [9.638, 47.092, 0],
3598
+ [9.638, 47.083, 0],
3599
+ [9.638, 47.074, 0],
3600
+ [9.637, 47.065, 0],
3601
+ [9.65, 47.065, 0],
3602
+ [9.664, 47.064, 0],
3603
+ [9.677, 47.064, 0],
3604
+ [9.69, 47.064, 0],
3605
+ [9.703, 47.064, 0],
3606
+ [9.703, 47.055, 0],
3607
+ [9.716, 47.054, 0],
3608
+ [9.715, 47.045, 0],
3609
+ [9.729, 47.045, 0],
3610
+ [9.742, 47.045, 0],
3611
+ [9.755, 47.045, 0],
3612
+ [9.768, 47.044, 0],
3613
+ [9.781, 47.044, 0],
3614
+ [9.794, 47.044, 0],
3615
+ [9.794, 47.035, 0],
3616
+ [9.807, 47.035, 0],
3617
+ [9.807, 47.026, 0],
3618
+ [9.82, 47.025, 0],
3619
+ [9.833, 47.025, 0],
3620
+ [9.846, 47.025, 0],
3621
+ [9.859, 47.024, 0],
3622
+ [9.873, 47.024, 0],
3623
+ [9.886, 47.024, 0],
3624
+ [9.885, 47.015, 0],
3625
+ [9.885, 47.006, 0],
3626
+ [9.898, 47.006, 0],
3627
+ [9.898, 46.997, 0],
3628
+ [9.897, 46.988, 0],
3629
+ [9.897, 46.979, 0],
3630
+ [9.884, 46.979, 0],
3631
+ [9.883, 46.97, 0],
3632
+ [9.883, 46.961, 0],
3633
+ [9.882, 46.952, 0],
3634
+ [9.882, 46.943, 0],
3635
+ [9.895, 46.943, 0],
3636
+ [9.895, 46.934, 0],
3637
+ [9.908, 46.933, 0],
3638
+ [9.921, 46.933, 0],
3639
+ [9.921, 46.924, 0],
3640
+ [9.934, 46.924, 0],
3641
+ [9.947, 46.924, 0],
3642
+ [9.96, 46.923, 0],
3643
+ [9.973, 46.923, 0],
3644
+ [9.986, 46.923, 0],
3645
+ [9.986, 46.914, 0],
3646
+ [9.999, 46.913, 0],
3647
+ [9.998, 46.904, 0],
3648
+ [10.012, 46.904, 0],
3649
+ [10.025, 46.904, 0],
3650
+ [10.038, 46.904, 0],
3651
+ [10.037, 46.895, 0],
3652
+ [10.05, 46.894, 0],
3653
+ [10.05, 46.885, 0],
3654
+ [10.063, 46.885, 0],
3655
+ [10.063, 46.876, 0],
3656
+ [10.062, 46.867, 0],
3657
+ [10.075, 46.867, 0],
3658
+ [10.088, 46.866, 0],
3659
+ [10.102, 46.866, 0],
3660
+ [10.101, 46.857, 0],
3661
+ [10.114, 46.857, 0],
3662
+ [10.127, 46.857, 0],
3663
+ [10.14, 46.856, 0],
3664
+ [10.154, 46.856, 0],
3665
+ [10.167, 46.856, 0],
3666
+ [10.18, 46.855, 0],
3667
+ [10.18, 46.864, 0],
3668
+ [10.181, 46.873, 0],
3669
+ [10.194, 46.873, 0],
3670
+ [10.207, 46.873, 0],
3671
+ [10.22, 46.872, 0],
3672
+ [10.22, 46.881, 0],
3673
+ [10.221, 46.89, 0],
3674
+ [10.221, 46.899, 0],
3675
+ [10.222, 46.908, 0],
3676
+ [10.222, 46.917, 0],
3677
+ [10.235, 46.917, 0],
3678
+ [10.236, 46.926, 0],
3679
+ [10.236, 46.935, 0],
3680
+ [10.25, 46.935, 0],
3681
+ [10.263, 46.934, 0],
3682
+ [10.276, 46.934, 0],
3683
+ [10.289, 46.934, 0],
3684
+ [10.302, 46.933, 0],
3685
+ [10.302, 46.942, 0],
3686
+ [10.303, 46.951, 0],
3687
+ [10.303, 46.96, 0],
3688
+ [10.317, 46.96, 0],
3689
+ [10.317, 46.969, 0],
3690
+ [10.33, 46.969, 0],
3691
+ [10.331, 46.978, 0],
3692
+ [10.331, 46.987, 0],
3693
+ [10.344, 46.986, 0],
3694
+ [10.345, 46.995, 0],
3695
+ [10.358, 46.995, 0],
3696
+ [10.371, 46.995, 0],
3697
+ [10.372, 47.004, 0],
3698
+ [10.385, 47.003, 0],
3699
+ [10.398, 47.003, 0],
3700
+ [10.411, 47.003, 0],
3701
+ [10.41, 46.994, 0],
3702
+ [10.424, 46.993, 0],
3703
+ [10.423, 46.984, 0],
3704
+ [10.436, 46.984, 0],
3705
+ [10.436, 46.975, 0],
3706
+ [10.435, 46.966, 0],
3707
+ [10.435, 46.957, 0],
3708
+ [10.448, 46.957, 0],
3709
+ [10.461, 46.956, 0],
3710
+ [10.474, 46.956, 0],
3711
+ [10.474, 46.947, 0],
3712
+ [10.487, 46.947, 0],
3713
+ [10.5, 46.946, 0],
3714
+ [10.499, 46.937, 0],
3715
+ [10.499, 46.928, 0],
3716
+ [10.498, 46.919, 0],
3717
+ [10.498, 46.91, 0],
3718
+ [10.485, 46.911, 0],
3719
+ [10.484, 46.902, 0],
3720
+ [10.484, 46.893, 0],
3721
+ [10.483, 46.884, 0],
3722
+ [10.483, 46.875, 0],
3723
+ [10.482, 46.866, 0],
3724
+ [10.482, 46.857, 0],
3725
+ [10.481, 46.848, 0],
3726
+ [10.481, 46.839, 0],
3727
+ [10.468, 46.839, 0],
3728
+ [10.467, 46.83, 0],
3729
+ [10.466, 46.821, 0],
3730
+ [10.466, 46.812, 0],
3731
+ [10.465, 46.803, 0],
3732
+ [10.452, 46.803, 0],
3733
+ [10.452, 46.794, 0],
3734
+ [10.439, 46.795, 0],
3735
+ [10.438, 46.786, 0],
3736
+ [10.438, 46.777, 0],
3737
+ [10.451, 46.776, 0],
3738
+ [10.45, 46.767, 0],
3739
+ [10.45, 46.758, 0],
3740
+ [10.449, 46.749, 0],
3741
+ [10.436, 46.75, 0],
3742
+ [10.436, 46.741, 0],
3743
+ [10.423, 46.741, 0],
3744
+ [10.422, 46.732, 0],
3745
+ [10.422, 46.723, 0],
3746
+ [10.421, 46.714, 0],
3747
+ [10.421, 46.705, 0],
3748
+ [10.42, 46.696, 0],
3749
+ [10.407, 46.697, 0],
3750
+ [10.407, 46.688, 0],
3751
+ [10.394, 46.688, 0],
3752
+ [10.393, 46.679, 0],
3753
+ [10.393, 46.67, 0],
3754
+ [10.406, 46.67, 0],
3755
+ [10.405, 46.661, 0],
3756
+ [10.405, 46.652, 0],
3757
+ [10.404, 46.643, 0],
3758
+ [10.417, 46.642, 0],
3759
+ [10.43, 46.642, 0],
3760
+ [10.443, 46.642, 0],
3761
+ [10.456, 46.641, 0],
3762
+ [10.469, 46.641, 0],
3763
+ [10.469, 46.632, 0],
3764
+ [10.482, 46.632, 0],
3765
+ [10.482, 46.623, 0],
3766
+ [10.495, 46.622, 0],
3767
+ [10.494, 46.613, 0],
3768
+ [10.494, 46.604, 0],
3769
+ [10.493, 46.595, 0],
3770
+ [10.493, 46.586, 0],
3771
+ [10.492, 46.577, 0],
3772
+ [10.492, 46.568, 0],
3773
+ [10.491, 46.559, 0],
3774
+ [10.49, 46.55, 0],
3775
+ [10.477, 46.551, 0],
3776
+ [10.477, 46.542, 0],
3777
+ [10.476, 46.533, 0],
3778
+ [10.463, 46.533, 0],
3779
+ [10.463, 46.524, 0],
3780
+ [10.45, 46.524, 0],
3781
+ [10.437, 46.525, 0],
3782
+ [10.437, 46.534, 0],
3783
+ [10.424, 46.534, 0],
3784
+ [10.425, 46.543, 0],
3785
+ [10.412, 46.543, 0],
3786
+ [10.399, 46.544, 0],
3787
+ [10.398, 46.535, 0],
3788
+ [10.385, 46.535, 0],
3789
+ [10.386, 46.544, 0],
3790
+ [10.373, 46.544, 0],
3791
+ [10.36, 46.545, 0],
3792
+ [10.347, 46.545, 0],
3793
+ [10.346, 46.536, 0],
3794
+ [10.333, 46.536, 0],
3795
+ [10.334, 46.545, 0],
3796
+ [10.321, 46.546, 0],
3797
+ [10.308, 46.546, 0],
3798
+ [10.295, 46.546, 0],
3799
+ [10.282, 46.547, 0],
3800
+ [10.282, 46.556, 0],
3801
+ [10.282, 46.565, 0],
3802
+ [10.269, 46.565, 0],
3803
+ [10.256, 46.565, 0],
3804
+ [10.243, 46.566, 0],
3805
+ [10.244, 46.575, 0],
3806
+ [10.231, 46.575, 0],
3807
+ [10.231, 46.584, 0],
3808
+ [10.232, 46.593, 0],
3809
+ [10.232, 46.602, 0],
3810
+ [10.245, 46.602, 0],
3811
+ [10.246, 46.611, 0],
3812
+ [10.246, 46.62, 0],
3813
+ [10.233, 46.62, 0],
3814
+ [10.22, 46.62, 0],
3815
+ [10.22, 46.611, 0],
3816
+ [10.207, 46.612, 0],
3817
+ [10.194, 46.612, 0],
3818
+ [10.18, 46.612, 0],
3819
+ [10.167, 46.613, 0],
3820
+ [10.154, 46.613, 0],
3821
+ [10.154, 46.604, 0],
3822
+ [10.141, 46.604, 0],
3823
+ [10.128, 46.604, 0],
3824
+ [10.115, 46.605, 0],
3825
+ [10.114, 46.596, 0],
3826
+ [10.114, 46.587, 0],
3827
+ [10.113, 46.578, 0],
3828
+ [10.1, 46.578, 0],
3829
+ [10.1, 46.569, 0],
3830
+ [10.087, 46.569, 0],
3831
+ [10.087, 46.56, 0],
3832
+ [10.086, 46.551, 0],
3833
+ [10.073, 46.552, 0],
3834
+ [10.073, 46.543, 0],
3835
+ [10.06, 46.543, 0],
3836
+ [10.059, 46.534, 0],
3837
+ [10.059, 46.525, 0],
3838
+ [10.058, 46.516, 0],
3839
+ [10.058, 46.507, 0],
3840
+ [10.057, 46.498, 0],
3841
+ [10.057, 46.489, 0],
3842
+ [10.057, 46.48, 0],
3843
+ [10.056, 46.471, 0],
3844
+ [10.056, 46.462, 0],
3845
+ [10.055, 46.453, 0],
3846
+ [10.055, 46.444, 0],
3847
+ [10.068, 46.444, 0],
3848
+ [10.067, 46.435, 0],
3849
+ [10.08, 46.435, 0],
3850
+ [10.093, 46.434, 0],
3851
+ [10.106, 46.434, 0],
3852
+ [10.119, 46.434, 0],
3853
+ [10.132, 46.433, 0],
3854
+ [10.145, 46.433, 0],
3855
+ [10.158, 46.433, 0],
3856
+ [10.158, 46.424, 0],
3857
+ [10.171, 46.423, 0],
3858
+ [10.17, 46.414, 0],
3859
+ [10.17, 46.405, 0],
3860
+ [10.17, 46.396, 0],
3861
+ [10.169, 46.387, 0],
3862
+ [10.169, 46.378, 0],
3863
+ [10.156, 46.379, 0],
3864
+ [10.143, 46.379, 0],
3865
+ [10.142, 46.37, 0],
3866
+ [10.142, 46.361, 0],
3867
+ [10.141, 46.352, 0],
3868
+ [10.128, 46.352, 0],
3869
+ [10.115, 46.353, 0],
3870
+ [10.115, 46.344, 0],
3871
+ [10.114, 46.335, 0],
3872
+ [10.114, 46.326, 0],
3873
+ [10.127, 46.325, 0],
3874
+ [10.127, 46.316, 0],
3875
+ [10.14, 46.316, 0],
3876
+ [10.139, 46.307, 0],
3877
+ [10.152, 46.307, 0],
3878
+ [10.152, 46.298, 0],
3879
+ [10.165, 46.298, 0],
3880
+ [10.164, 46.289, 0],
3881
+ [10.164, 46.28, 0],
3882
+ [10.177, 46.279, 0],
3883
+ [10.176, 46.27, 0],
3884
+ [10.176, 46.261, 0],
3885
+ [10.189, 46.261, 0],
3886
+ [10.188, 46.252, 0],
3887
+ [10.175, 46.252, 0],
3888
+ [10.175, 46.243, 0],
3889
+ [10.162, 46.244, 0],
3890
+ [10.161, 46.235, 0],
3891
+ [10.161, 46.226, 0],
3892
+ [10.148, 46.226, 0],
3893
+ [10.148, 46.217, 0],
3894
+ [10.135, 46.217, 0],
3895
+ [10.122, 46.218, 0],
3896
+ [10.109, 46.218, 0],
3897
+ [10.096, 46.218, 0],
3898
+ [10.083, 46.219, 0],
3899
+ [10.082, 46.21, 0],
3900
+ [10.069, 46.21, 0],
3901
+ [10.057, 46.21, 0],
3902
+ [10.057, 46.219, 0],
3903
+ [10.044, 46.219, 0],
3904
+ [10.044, 46.228, 0],
3905
+ [10.031, 46.229, 0],
3906
+ [10.032, 46.238, 0],
3907
+ [10.045, 46.237, 0],
3908
+ [10.045, 46.246, 0],
3909
+ [10.046, 46.255, 0],
3910
+ [10.046, 46.264, 0],
3911
+ [10.033, 46.265, 0],
3912
+ [10.034, 46.274, 0],
3913
+ [10.021, 46.274, 0],
3914
+ [10.008, 46.274, 0],
3915
+ [9.995, 46.275, 0],
3916
+ [9.995, 46.284, 0],
3917
+ [9.982, 46.284, 0],
3918
+ [9.983, 46.293, 0],
3919
+ [9.983, 46.302, 0],
3920
+ [9.983, 46.311, 0],
3921
+ [9.984, 46.32, 0],
3922
+ [9.971, 46.32, 0],
3923
+ [9.971, 46.329, 0],
3924
+ [9.972, 46.338, 0],
3925
+ [9.972, 46.347, 0],
3926
+ [9.973, 46.356, 0],
3927
+ [9.96, 46.356, 0],
3928
+ [9.96, 46.365, 0],
3929
+ [9.947, 46.366, 0],
3930
+ [9.934, 46.366, 0],
3931
+ [9.934, 46.357, 0],
3932
+ [9.921, 46.357, 0],
3933
+ [9.921, 46.366, 0],
3934
+ [9.908, 46.366, 0],
3935
+ [9.895, 46.367, 0],
3936
+ [9.882, 46.367, 0],
3937
+ [9.882, 46.358, 0],
3938
+ [9.869, 46.358, 0],
3939
+ [9.856, 46.359, 0],
3940
+ [9.843, 46.359, 0],
3941
+ [9.842, 46.35, 0],
3942
+ [9.829, 46.35, 0],
3943
+ [9.829, 46.341, 0],
3944
+ [9.816, 46.341, 0],
3945
+ [9.803, 46.342, 0],
3946
+ [9.803, 46.333, 0],
3947
+ [9.79, 46.333, 0],
3948
+ [9.777, 46.333, 0],
3949
+ [9.764, 46.334, 0],
3950
+ [9.751, 46.334, 0],
3951
+ [9.738, 46.334, 0],
3952
+ [9.737, 46.325, 0],
3953
+ [9.737, 46.316, 0],
3954
+ [9.737, 46.307, 0],
3955
+ [9.724, 46.307, 0],
3956
+ [9.723, 46.298, 0],
3957
+ [9.723, 46.289, 0],
3958
+ [9.71, 46.29, 0],
3959
+ [9.697, 46.29, 0],
3960
+ [9.684, 46.29, 0],
3961
+ [9.671, 46.29, 0],
3962
+ [9.658, 46.291, 0],
3963
+ [9.658, 46.282, 0],
3964
+ [9.645, 46.282, 0],
3965
+ [9.632, 46.282, 0],
3966
+ [9.619, 46.282, 0],
3967
+ [9.606, 46.283, 0],
3968
+ [9.606, 46.292, 0],
3969
+ [9.593, 46.292, 0],
3970
+ [9.58, 46.292, 0],
3971
+ [9.567, 46.292, 0],
3972
+ [9.554, 46.293, 0],
3973
+ [9.554, 46.302, 0],
3974
+ [9.542, 46.302, 0],
3975
+ [9.529, 46.302, 0],
3976
+ [9.529, 46.311, 0],
3977
+ [9.516, 46.311, 0],
3978
+ [9.516, 46.32, 0],
3979
+ [9.517, 46.329, 0],
3980
+ [9.504, 46.33, 0],
3981
+ [9.504, 46.339, 0],
3982
+ [9.504, 46.348, 0],
3983
+ [9.491, 46.348, 0],
3984
+ [9.492, 46.357, 0],
3985
+ [9.479, 46.357, 0],
3986
+ [9.479, 46.366, 0],
3987
+ [9.466, 46.366, 0],
3988
+ [9.453, 46.366, 0],
3989
+ [9.453, 46.375, 0],
3990
+ [9.454, 46.384, 0],
3991
+ [9.454, 46.393, 0],
3992
+ [9.454, 46.402, 0],
3993
+ [9.455, 46.411, 0],
3994
+ [9.442, 46.412, 0],
3995
+ [9.442, 46.421, 0],
3996
+ [9.442, 46.43, 0],
3997
+ [9.455, 46.429, 0],
3998
+ [9.456, 46.438, 0],
3999
+ [9.456, 46.447, 0],
4000
+ [9.456, 46.456, 0],
4001
+ [9.457, 46.465, 0],
4002
+ [9.457, 46.474, 0],
4003
+ [9.444, 46.475, 0],
4004
+ [9.431, 46.475, 0],
4005
+ [9.431, 46.466, 0],
4006
+ [9.418, 46.466, 0],
4007
+ [9.405, 46.466, 0],
4008
+ [9.392, 46.467, 0],
4009
+ [9.379, 46.467, 0],
4010
+ [9.379, 46.476, 0],
4011
+ [9.366, 46.476, 0],
4012
+ [9.366, 46.485, 0],
4013
+ [9.367, 46.494, 0],
4014
+ [9.367, 46.503, 0],
4015
+ [9.354, 46.503, 0],
4016
+ [9.341, 46.503, 0],
4017
+ [9.328, 46.504, 0],
4018
+ [9.315, 46.504, 0],
4019
+ [9.314, 46.495, 0],
4020
+ [9.301, 46.495, 0],
4021
+ [9.288, 46.495, 0],
4022
+ [9.288, 46.486, 0],
4023
+ [9.288, 46.477, 0],
4024
+ [9.288, 46.468, 0],
4025
+ [9.287, 46.459, 0],
4026
+ [9.287, 46.45, 0],
4027
+ [9.274, 46.45, 0],
4028
+ [9.274, 46.442, 0],
4029
+ [9.273, 46.433, 0],
4030
+ [9.273, 46.424, 0],
4031
+ [9.286, 46.423, 0],
4032
+ [9.286, 46.414, 0],
4033
+ [9.285, 46.405, 0],
4034
+ [9.285, 46.396, 0],
4035
+ [9.285, 46.387, 0],
4036
+ [9.298, 46.387, 0],
4037
+ [9.297, 46.378, 0],
4038
+ [9.284, 46.378, 0],
4039
+ [9.284, 46.369, 0],
4040
+ [9.284, 46.36, 0],
4041
+ [9.297, 46.36, 0],
4042
+ [9.31, 46.36, 0],
4043
+ [9.31, 46.351, 0],
4044
+ [9.309, 46.342, 0],
4045
+ [9.309, 46.333, 0],
4046
+ [9.309, 46.324, 0],
4047
+ [9.308, 46.315, 0],
4048
+ [9.295, 46.315, 0],
4049
+ [9.295, 46.306, 0],
4050
+ [9.295, 46.297, 0],
4051
+ [9.294, 46.288, 0],
4052
+ [9.281, 46.288, 0],
4053
+ [9.281, 46.279, 0],
4054
+ [9.268, 46.28, 0],
4055
+ [9.268, 46.271, 0],
4056
+ [9.268, 46.262, 0],
4057
+ [9.255, 46.262, 0],
4058
+ [9.254, 46.253, 0],
4059
+ [9.254, 46.244, 0],
4060
+ [9.254, 46.235, 0],
4061
+ [9.253, 46.226, 0],
4062
+ [9.24, 46.226, 0],
4063
+ [9.227, 46.226, 0],
4064
+ [9.227, 46.217, 0],
4065
+ [9.227, 46.208, 0],
4066
+ [9.214, 46.209, 0],
4067
+ [9.214, 46.2, 0],
4068
+ [9.201, 46.2, 0],
4069
+ [9.2, 46.191, 0],
4070
+ [9.2, 46.182, 0],
4071
+ [9.2, 46.173, 0],
4072
+ [9.187, 46.173, 0],
4073
+ [9.187, 46.164, 0],
4074
+ [9.174, 46.164, 0],
4075
+ [9.161, 46.164, 0],
4076
+ [9.16, 46.155, 0],
4077
+ [9.147, 46.156, 0],
4078
+ [9.147, 46.147, 0],
4079
+ [9.134, 46.147, 0],
4080
+ [9.134, 46.138, 0],
4081
+ [9.134, 46.129, 0],
4082
+ [9.121, 46.129, 0],
4083
+ [9.108, 46.129, 0],
4084
+ [9.108, 46.12, 0],
4085
+ [9.095, 46.12, 0],
4086
+ [9.094, 46.111, 0],
4087
+ [9.094, 46.102, 0],
4088
+ [9.094, 46.093, 0],
4089
+ [9.093, 46.084, 0],
4090
+ [9.093, 46.075, 0],
4091
+ [9.08, 46.076, 0],
4092
+ [9.08, 46.067, 0],
4093
+ [9.08, 46.058, 0],
4094
+ [9.067, 46.058, 0],
4095
+ [9.054, 46.058, 0],
4096
+ [9.041, 46.058, 0],
4097
+ [9.041, 46.049, 0],
4098
+ [9.028, 46.049, 0],
4099
+ [9.028, 46.04, 0],
4100
+ [9.027, 46.031, 0],
4101
+ [9.027, 46.022, 0],
4102
+ [9.027, 46.013, 0],
4103
+ [9.027, 46.004, 0],
4104
+ [9.039, 46.004, 0],
4105
+ [9.039, 45.995, 0],
4106
+ [9.039, 45.986, 0],
4107
+ [9.026, 45.986, 0],
4108
+ [9.013, 45.987, 0],
4109
+ [9.013, 45.978, 0],
4110
+ [9.013, 45.969, 0],
4111
+ [9.025, 45.968, 0],
4112
+ [9.025, 45.959, 0],
4113
+ [9.025, 45.95, 0],
4114
+ [9.025, 45.941, 0],
4115
+ [9.024, 45.932, 0],
4116
+ [9.037, 45.932, 0],
4117
+ [9.05, 45.932, 0],
4118
+ [9.05, 45.923, 0],
4119
+ [9.063, 45.923, 0],
4120
+ [9.076, 45.923, 0],
4121
+ [9.075, 45.914, 0],
4122
+ [9.088, 45.913, 0],
4123
+ [9.088, 45.904, 0],
4124
+ [9.101, 45.904, 0],
4125
+ [9.101, 45.895, 0],
4126
+ [9.088, 45.896, 0],
4127
+ [9.088, 45.887, 0],
4128
+ [9.087, 45.878, 0],
4129
+ [9.074, 45.878, 0],
4130
+ [9.074, 45.869, 0],
4131
+ [9.061, 45.869, 0],
4132
+ [9.061, 45.86, 0],
4133
+ [9.061, 45.851, 0],
4134
+ [9.048, 45.851, 0],
4135
+ [9.048, 45.842, 0],
4136
+ [9.047, 45.833, 0],
4137
+ [9.047, 45.824, 0],
4138
+ [9.047, 45.815, 0],
4139
+ [9.034, 45.815, 0],
4140
+ [9.021, 45.815, 0],
4141
+ [9.008, 45.816, 0],
4142
+ [8.995, 45.816, 0],
4143
+ ],
4144
+ ],
4145
+ ],
4146
+ },
4147
+ translations: { description: {} },
4148
+ description: '',
4149
+ },
4150
+ ],
4151
+ onlineResources: [
4152
+ {
4153
+ type: 'link',
4154
+ url: new URL(
4155
+ 'https://www.swisstopo.admin.ch/en/geodata/images/ortho/swissimage10.html'
4156
+ ),
4157
+ name: 'Website Link',
4158
+ description: 'This is simple link',
4159
+ translations: { name: {}, description: {} },
4160
+ },
4161
+ {
4162
+ type: 'download',
4163
+ url: new URL(
4164
+ 'https://data.geo.admin.ch/ch.swisstopo.swissboundaries3d/swissboundaries3d_2022-05/swissboundaries3d_2022-05_2056_5728.shp.zip'
4165
+ ),
4166
+ name: 'Download Link (zip file)',
4167
+ description: 'This is a link to download a file',
4168
+ mimeType: 'OGC Webservice (WFS)',
4169
+ translations: { name: {}, description: {} },
4170
+ },
4171
+ {
4172
+ type: 'service',
4173
+ url: new URL(
4174
+ 'https://wmts.geo.admin.ch/EPSG/3857/1.0.0/WMTSCapabilities.xml'
4175
+ ),
4176
+ accessServiceProtocol: 'wmts',
4177
+ identifierInService: 'ch.swisstopo.swissalti3d-reliefschattierung',
4178
+ name: 'ch.swisstopo.swissalti3d-reliefschattierung',
4179
+ description: 'This is a WMTS layer',
4180
+ translations: { description: {}, name: {} },
4181
+ },
4182
+ {
4183
+ type: 'service',
4184
+ url: new URL(
4185
+ 'https://wms.geo.admin.ch/?SERVICE=WMS&REQUEST=GetCapabilities'
4186
+ ),
4187
+ accessServiceProtocol: 'wms',
4188
+ identifierInService: 'ch.swisstopo.swissimage',
4189
+ name: 'ch.swisstopo.swissimage',
4190
+ description: 'This is a WMS group',
4191
+ translations: { description: {}, name: {} },
4192
+ },
4193
+ {
4194
+ type: 'service',
4195
+ url: new URL(
4196
+ 'https://wms.geo.admin.ch/?SERVICE=WMS&REQUEST=GetCapabilities'
4197
+ ),
4198
+ accessServiceProtocol: 'wms',
4199
+ identifierInService: 'ch.swisstopo.images-swissimage',
4200
+ name: 'ch.swisstopo.images-swissimage',
4201
+ description: 'This is a WMS layer',
4202
+ translations: { description: {}, name: {} },
4203
+ },
4204
+ {
4205
+ type: 'service',
4206
+ url: new URL(
4207
+ 'https://api3.geo.admin.ch/rest/services/api/MapServer/ch.swisstopo.fixpunkte-hfp2'
4208
+ ),
4209
+ accessServiceProtocol: 'esriRest',
4210
+ identifierInService: 'Restful API map.geo.admin',
4211
+ name: 'Restful API map.geo.admin',
4212
+ translations: { name: {}, description: {} },
4213
+ description: '',
4214
+ },
4215
+ {
4216
+ type: 'download',
4217
+ url: new URL('https://www.swisstopo.admin.ch/fr/geodata.html'),
4218
+ name: 'swissopo online shop',
4219
+ description:
4220
+ 'This is a link to an online shop with protocole download-app',
4221
+ mimeType: 'OGC Webservice (WFS)',
4222
+ translations: { name: {}, description: {} },
4223
+ },
4224
+ {
4225
+ type: 'link',
4226
+ url: new URL(
4227
+ 'https://map.geo.admin.ch/?lang=en&bgLayer=ch.swisstopo.pixelkarte-farbe&layers=ch.swisstopo.swissimage-product&layers_timestamp=current&topic=ech'
4228
+ ),
4229
+ name: 'Map preview',
4230
+ translations: { name: {}, description: {} },
4231
+ description: '',
4232
+ },
4233
+ ],
4234
+ translations: { lineage: {}, title: {}, abstract: {} },
4235
+ status: 'completed',
4236
+ lineage: 'This is a statement about the lineage.',
4237
+ spatialRepresentation: 'vector',
4238
+ temporalExtents: [],
4239
+ updateFrequency: 'continual',
4240
+ }