overture-schema-theme-base 0.1.1.dev0__tar.gz
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.
- overture_schema_theme_base-0.1.1.dev0/PKG-INFO +19 -0
- overture_schema_theme_base-0.1.1.dev0/README.md +4 -0
- overture_schema_theme_base-0.1.1.dev0/pyproject.toml +212 -0
- overture_schema_theme_base-0.1.1.dev0/pyproject.toml.orig +211 -0
- overture_schema_theme_base-0.1.1.dev0/src/overture/schema/base/__init__.py +45 -0
- overture_schema_theme_base-0.1.1.dev0/src/overture/schema/base/_common.py +89 -0
- overture_schema_theme_base-0.1.1.dev0/src/overture/schema/base/bathymetry.py +44 -0
- overture_schema_theme_base-0.1.1.dev0/src/overture/schema/base/infrastructure.py +265 -0
- overture_schema_theme_base-0.1.1.dev0/src/overture/schema/base/land.py +150 -0
- overture_schema_theme_base-0.1.1.dev0/src/overture/schema/base/land_cover.py +65 -0
- overture_schema_theme_base-0.1.1.dev0/src/overture/schema/base/land_use.py +223 -0
- overture_schema_theme_base-0.1.1.dev0/src/overture/schema/base/py.typed +0 -0
- overture_schema_theme_base-0.1.1.dev0/src/overture/schema/base/water.py +167 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: overture-schema-theme-base
|
|
3
|
+
Version: 0.1.1.dev0
|
|
4
|
+
Summary: Overture Maps base theme shared structures and models (bathymetry, infrastructure, land, land_cover, land_use, water)
|
|
5
|
+
License-Expression: MIT
|
|
6
|
+
Requires-Dist: overture-schema-common>=0.1.1
|
|
7
|
+
Requires-Dist: overture-schema-system>=0.1.1
|
|
8
|
+
Requires-Dist: pydantic>=2.13.0
|
|
9
|
+
Maintainer: Overture Maps Schema Working Group
|
|
10
|
+
Requires-Python: >=3.10
|
|
11
|
+
Project-URL: Homepage, https://overturemaps.org
|
|
12
|
+
Project-URL: Source, https://github.com/OvertureMaps/schema
|
|
13
|
+
Project-URL: Issues, https://github.com/OvertureMaps/schema/issues
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# Overture Schema Base Theme
|
|
17
|
+
|
|
18
|
+
Shared structures and validation logic for Overture Maps' base theme.
|
|
19
|
+
Contains common surface materials, validation utilities, and foundational patterns.
|
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
dependencies = [
|
|
3
|
+
"overture-schema-common>=0.1.1",
|
|
4
|
+
"overture-schema-system>=0.1.1",
|
|
5
|
+
"pydantic>=2.13.0",
|
|
6
|
+
]
|
|
7
|
+
description = "Overture Maps base theme shared structures and models (bathymetry, infrastructure, land, land_cover, land_use, water)"
|
|
8
|
+
version = "0.1.1.dev0"
|
|
9
|
+
license = "MIT"
|
|
10
|
+
name = "overture-schema-theme-base"
|
|
11
|
+
readme = "README.md"
|
|
12
|
+
requires-python = ">=3.10"
|
|
13
|
+
|
|
14
|
+
[[project.maintainers]]
|
|
15
|
+
name = "Overture Maps Schema Working Group"
|
|
16
|
+
|
|
17
|
+
[project.urls]
|
|
18
|
+
Homepage = "https://overturemaps.org"
|
|
19
|
+
Source = "https://github.com/OvertureMaps/schema"
|
|
20
|
+
Issues = "https://github.com/OvertureMaps/schema/issues"
|
|
21
|
+
|
|
22
|
+
[project.entry-points."overture.models"]
|
|
23
|
+
bathymetry = "overture.schema.base:Bathymetry"
|
|
24
|
+
infrastructure = "overture.schema.base:Infrastructure"
|
|
25
|
+
land = "overture.schema.base:Land"
|
|
26
|
+
land_cover = "overture.schema.base:LandCover"
|
|
27
|
+
land_use = "overture.schema.base:LandUse"
|
|
28
|
+
water = "overture.schema.base:Water"
|
|
29
|
+
|
|
30
|
+
[project.entry-points.pytest11]
|
|
31
|
+
overture_baselines = "overture.schema.system.testing.plugin"
|
|
32
|
+
|
|
33
|
+
[tool.uv.sources.overture-schema-common]
|
|
34
|
+
workspace = true
|
|
35
|
+
|
|
36
|
+
[tool.uv.sources.overture-schema-system]
|
|
37
|
+
workspace = true
|
|
38
|
+
|
|
39
|
+
[tool.uv.build-backend]
|
|
40
|
+
module-name = "overture.schema.base"
|
|
41
|
+
|
|
42
|
+
[build-system]
|
|
43
|
+
requires = ["uv_build>=0.11.32,<0.13"]
|
|
44
|
+
build-backend = "uv_build"
|
|
45
|
+
|
|
46
|
+
[[examples.Bathymetry]]
|
|
47
|
+
id = "5d40bd6c-db14-5492-b29f-5e25a59032bc"
|
|
48
|
+
geometry = "MULTIPOLYGON (((-170.71296928 -76.744313428, -170.719841483 -76.757076376, -170.731061124 -76.761566192, -170.775652756 -76.76338726, -170.853616381 -76.76253958, -170.918562293 -76.755380155, -170.970490492 -76.741908984, -170.998699301 -76.729180777, -171.003188718 -76.717195533, -170.990421551 -76.703765214, -170.960397802 -76.68888982, -170.940748072 -76.674697941, -170.931472364 -76.661189576, -170.927114414 -76.637296658, -170.927674224 -76.603019188, -170.939335393 -76.574637428, -170.962097922 -76.552151379, -170.999015387 -76.535715361, -171.050087788 -76.525329373, -171.079133298 -76.50751024, -171.086151917 -76.482257963, -171.098653755 -76.462747286, -171.11663881 -76.448978211, -171.146691397 -76.437601179, -171.188811514 -76.428616191, -171.296181785 -76.4228609, -171.468802209 -76.420335306, -171.566055241 -76.41501101, -171.587940879 -76.406888013, -171.59004284 -76.387987744, -171.572361122 -76.358310204, -171.549343725 -76.334488281, -171.520990649 -76.316521976, -171.453759127 -76.301763636, -171.347649159 -76.290213262, -171.30597166 -76.267707269, -171.328726628 -76.234245658, -171.36676019 -76.195627518, -171.420072345 -76.151852851, -171.444766298 -76.12494912, -171.44084205 -76.114916326, -171.378107286 -76.099627787, -171.256562007 -76.079083503, -171.228218647 -76.058825682, -171.293077208 -76.038854322, -171.421365419 -76.023534207, -171.613083278 -76.012865337, -171.76411833 -75.99938969, -171.874470572 -75.983107266, -172.121928361 -75.958403596, -172.506491695 -75.925278679, -172.744527804 -75.899736153, -172.836036689 -75.88177602, -172.904681746 -75.862406785, -172.950462974 -75.841628448, -173.000855857 -75.830396498, -173.055860393 -75.828710933, -173.177561398 -75.810743709, -173.365958872 -75.776494827, -173.493573084 -75.759370386, -173.560404033 -75.759370386, -173.620925776 -75.77158365, -173.675138312 -75.796010178, -173.733786206 -75.808642966, -173.796869456 -75.809482015, -173.847216433 -75.805553449, -173.884827135 -75.79685727, -173.90475244 -75.789177124, -173.906992347 -75.782513013, -173.881736947 -75.76894365, -173.828986239 -75.748469035, -173.797974615 -75.732298475, -173.788702075 -75.72043197, -173.82491541 -75.701013882, -173.90661462 -75.674044211, -173.977087913 -75.656066882, -174.03633529 -75.647081894, -174.150190099 -75.643010485, -174.31865234 -75.643852655, -174.444433211 -75.652836726, -174.527532713 -75.669962696, -174.581709229 -75.687086831, -174.606962758 -75.704209131, -174.631095834 -75.708279163, -174.654108458 -75.699296928, -174.688637451 -75.699296928, -174.734682816 -75.708279163, -174.797846917 -75.708699866, -174.878129754 -75.700559037, -174.939903816 -75.70870181, -174.9831691 -75.733128185, -175.025841122 -75.746602837, -175.06791988 -75.749125768, -175.09922327 -75.755318987, -175.119751293 -75.765182495, -175.127900229 -75.775197415, -175.123670077 -75.785363749, -175.111718372 -75.791289392, -175.092045112 -75.792974345, -175.049907399 -75.780622976, -174.985305232 -75.754235285, -174.935355308 -75.74552996, -174.900057628 -75.754507001, -174.886060973 -75.766815613, -174.893365345 -75.782455795, -174.907537393 -75.791536245, -174.928577117 -75.794056963, -174.971105378 -75.818213107, -175.035122174 -75.864004677, -175.060941949 -75.892403254, -175.048564703 -75.903408839, -175.020469049 -75.909193043, -174.976654988 -75.909755867, -174.944760829 -75.90482541, -174.924786572 -75.894401673, -174.92111336 -75.881479168, -174.933741192 -75.866057897, -174.900484967 -75.857513625, -174.821344686 -75.855846351, -174.752433709 -75.839289534, -174.693752038 -75.807843172, -174.652894268 -75.780747792, -174.629860399 -75.758003392, -174.571227588 -75.745793709, -174.476995837 -75.744118743, -174.398722205 -75.751841803, -174.336406693 -75.768962888, -174.300477946 -75.783262828, -174.290935964 -75.794741623, -174.28812912 -75.812412878, -174.292057414 -75.836276591, -174.289237223 -75.852155302, -174.279668547 -75.860049012, -174.205113931 -75.879998026, -174.065573375 -75.912002343, -173.957779122 -75.924071248, -173.881731171 -75.916204739, -173.846521251 -75.926706189, -173.852149361 -75.955575598, -173.845408416 -75.979439305, -173.826298414 -75.99829731, -173.76424232 -76.018956172, -173.659240133 -76.041415889, -173.560434089 -76.057698465, -173.467824188 -76.067803901, -173.404678836 -76.077625909, -173.370998032 -76.087164489, -173.332530272 -76.106814524, -173.289275555 -76.136576014, -173.231864101 -76.154545405, -173.160295911 -76.1607227, -173.093917454 -76.17278471, -173.032728732 -76.190731436, -173.009710709 -76.205560908, -173.024863387 -76.217273124, -173.048718935 -76.225374126, -173.081277354 -76.229863912, -173.219658797 -76.237442552, -173.463863265 -76.248110046, -173.60352174 -76.25793895, -173.638634223 -76.266929265, -173.658723482 -76.274676093, -173.663789516 -76.281179435, -173.661403366 -76.289363255, -173.651565032 -76.299227554, -173.627282775 -76.313843189, -173.588556596 -76.33321016, -173.575369172 -76.355231445, -173.587720504 -76.379907046, -173.573965869 -76.402499893, -173.53410527 -76.423009985, -173.518376226 -76.437156259, -173.526778738 -76.444938715, -173.559015515 -76.446303683, -173.615086557 -76.441251162, -173.686785609 -76.421600788, -173.774112673 -76.387352563, -173.854573513 -76.372333877, -173.928168128 -76.37654473, -173.968906731 -76.383732772, -173.97678932 -76.393898005, -173.979325549 -76.410884215, -173.976515417 -76.434691403, -174.000646474 -76.454452818, -174.051718722 -76.470168462, -174.08231827 -76.482963711, -174.092445119 -76.492838563, -174.075053216 -76.514344245, -174.030142562 -76.547480757, -174.016669929 -76.575274601, -174.034635317 -76.597725777, -174.037021169 -76.62030279, -174.023827484 -76.64300564, -174.034634583 -76.661942018, -174.069442464 -76.677111923, -174.086843964 -76.690616859, -174.086839082 -76.702456825, -174.080513222 -76.712456309, -174.067866385 -76.72061531, -174.036259441 -76.725116584, -173.98569239 -76.725960131, -173.93723318 -76.720486558, -173.89088181 -76.708695864, -173.780274695 -76.695221211, -173.605411835 -76.6800626, -173.487930602 -76.662096294, -173.427830996 -76.641322294, -173.370307559 -76.630935294, -173.315360292 -76.630935294, -173.249406002 -76.637251344, -173.17244469 -76.649883444, -173.110795196 -76.653532162, -173.06445752 -76.648197497, -173.029349452 -76.637355272, -173.005470993 -76.621005486, -173.01753216 -76.605236858, -173.065532955 -76.590049388, -173.096548505 -76.576599032, -173.11057881 -76.564885791, -173.108053605 -76.552301955, -173.08897289 -76.538847523, -173.051362225 -76.527628807, -172.99522161 -76.518645807, -172.891534181 -76.516119525, -172.740299938 -76.52004996, -172.648684331 -76.524540794, -172.61668736 -76.529592027, -172.584268588 -76.541098757, -172.551428016 -76.559060982, -172.533042741 -76.576141146, -172.529112765 -76.592339249, -172.540195073 -76.604524646, -172.566289666 -76.612697339, -172.576243291 -76.621303431, -172.570055947 -76.630342924, -172.555183534 -76.636123529, -172.531626051 -76.638645245, -172.517040304 -76.643518276, -172.511426292 -76.650742621, -172.551848294 -76.672312544, -172.63830631 -76.708228042, -172.701431121 -76.728711408, -172.741222726 -76.733762641, -172.81460886 -76.72534004, -172.921589524 -76.703443605, -173.006960733 -76.697273314, -173.070722487 -76.706829166, -173.101615682 -76.719791531, -173.099640316 -76.736160408, -173.033958817 -76.759064999, -172.904571183 -76.788505304, -172.847033841 -76.810916113, -172.861346791 -76.826297424, -172.924787296 -76.856444925, -173.037355356 -76.901358615, -173.149640378 -76.935043659, -173.26164236 -76.957500057, -173.354942309 -76.968728255, -173.429540223 -76.968728255, -173.487771718 -76.964657535, -173.529636796 -76.956516094, -173.572768938 -76.955559014, -173.617168145 -76.961786296, -173.614655836 -76.97446809, -173.565232013 -76.993604396, -173.461502424 -77.006682128, -173.303467069 -77.013701287, -173.163373388 -77.02787859, -173.041221382 -77.049214037, -172.918094542 -77.059179951, -172.793992869 -77.057776334, -172.720418717 -77.044861043, -172.697372088 -77.020434079, -172.675885915 -77.003730799, -172.655960197 -76.994751205, -172.60882792 -76.987594764, -172.534489083 -76.982261476, -172.480072837 -76.983094424, -172.445579184 -76.990093609, -172.428332542 -76.998610734, -172.428332911 -77.008645799, -172.435068344 -77.018150822, -172.448538839 -77.027125803, -172.490777829 -77.039613708, -172.561785312 -77.055614535, -172.628175119 -77.080598263, -172.68994725 -77.114564892, -172.751818039 -77.133793765, -172.813787485 -77.138284883, -172.900229764 -77.131828165, -173.011144875 -77.114423613, -173.119679588 -77.128474884, -173.2258339 -77.17398198, -173.273849553 -77.202664633, -173.263726547 -77.214522842, -173.165895559 -77.239681117, -172.980356589 -77.278139457, -172.880291531 -77.312658914, -172.865700386 -77.343239487, -172.867667457 -77.371126102, -172.886192744 -77.39631876, -172.999732531 -77.429966955, -173.208286817 -77.472070689, -173.335454668 -77.509278677, -173.381236082 -77.541590921, -173.403703936 -77.570407724, -173.40285823 -77.595729086, -173.378288408 -77.634921, -173.329994472 -77.687983467, -173.241287742 -77.735563094, -173.112168219 -77.777659882, -173.054064387 -77.81089869, -173.066976248 -77.835279519, -173.063736051 -77.854657976, -173.044343797 -77.869034061, -172.890349983 -77.896435115, -172.60175461 -77.936861139, -172.376181212 -77.961986812, -172.213629791 -77.971812135, -172.023427102 -77.967320559, -171.805573145 -77.948512083, -171.581263004 -77.918894833, -171.350496677 -77.87846881, -171.217147208 -77.851799157, -171.181214596 -77.838885875, -171.160572341 -77.826074082, -171.155220441 -77.813363779, -171.178789134 -77.790158543, -171.231278422 -77.756458375, -171.27338337 -77.70988804, -171.305103978 -77.65044754, -171.293875473 -77.602346602, -171.239697854 -77.565585227, -171.168401509 -77.532887375, -171.079986438 -77.504253044, -171.028614514 -77.483042244, -171.014285737 -77.469254974, -171.016677114 -77.456576914, -171.035788644 -77.445008064, -171.086879845 -77.431646501, -171.169950715 -77.416492226, -171.216537864 -77.403175691, -171.226641293 -77.391696895, -171.228607057 -77.378968685, -171.222435157 -77.364991059, -171.168824693 -77.334840949, -171.067775664 -77.288518355, -171.000402018 -77.24121644, -170.966703754 -77.192935206, -170.894838531 -77.157002595, -170.784806349 -77.133418606, -170.725150821 -77.11627156, -170.715871945 -77.105561456, -170.710674146 -77.077210652, -170.709557424 -77.031219147, -170.697909144 -76.992502178, -170.675729304 -76.961059744, -170.654536164 -76.940848729, -170.634329723 -76.931869135, -170.581564681 -76.922044903, -170.496241038 -76.911376032, -170.429709562 -76.893409727, -170.381970254 -76.868145986, -170.285260999 -76.838950739, -170.139581798 -76.805823986, -170.061542334 -76.78431495, -170.051142608 -76.77442363, -170.076677284 -76.763148845, -170.138146365 -76.750490597, -170.192753568 -76.731526593, -170.240498896 -76.706256833, -170.315896371 -76.686462585, -170.418945993 -76.67214385, -170.498267121 -76.665405567, -170.553859754 -76.666247738, -170.609039198 -76.673409769, -170.663805452 -76.68689166, -170.695686968 -76.698414281, -170.704683743 -76.70797763, -170.710444514 -76.723277346, -170.71296928 -76.744313428), (-172.46185717 -77.485683162, -172.491725041 -77.49003391, -172.535448064 -77.490594163, -172.566986057 -77.488349711, -172.586339021 -77.483300552, -172.598540475 -77.476173053, -172.60359042 -77.466967216, -172.601627836 -77.458872071, -172.592652724 -77.451887618, -172.556765055 -77.448396429, -172.49396483 -77.448398503, -172.453726685 -77.452881992, -172.436050621 -77.461846897, -172.429868964 -77.468114837, -172.435181715 -77.47168581, -172.44584445 -77.477541919, -172.46185717 -77.485683162), (-172.812798475 -76.363628771, -172.855573928 -76.365453015, -172.885037626 -76.36040045, -172.90720433 -76.351027386, -172.92207404 -76.337333821, -172.9168827 -76.324750727, -172.89163031 -76.313278104, -172.862193885 -76.307261221, -172.828573425 -76.30670008, -172.792121028 -76.311189877, -172.752836694 -76.320730613, -172.732062811 -76.331770033, -172.729799379 -76.344308139, -172.756711267 -76.354927718, -172.812798475 -76.363628771), (-171.932998671 -76.183124002, -172.010021088 -76.180457336, -172.070931389 -76.166984091, -172.113033554 -76.150312062, -172.136327583 -76.130441248, -172.133522137 -76.111120124, -172.104617217 -76.092348689, -172.06028165 -76.080296327, -172.000515436 -76.074963039, -171.918725408 -76.076928027, -171.814911566 -76.086191292, -171.745182124 -76.097695899, -171.709537083 -76.111441849, -171.696346087 -76.126554541, -171.705609136 -76.143033974, -171.731004713 -76.156183802, -171.77253282 -76.166004024, -171.83986414 -76.174984091, -171.932998671 -76.183124002), (-173.16885937 -76.066345013, -173.199147981 -76.070696107, -173.23950163 -76.071257052, -173.269213382 -76.065813298, -173.288283234 -76.054364845, -173.2799961 -76.038973879, -173.244351978 -76.0196404, -173.207608446 -76.007588038, -173.169765504 -76.002816794, -173.139490241 -76.003094691, -173.116782658 -76.008421729, -173.104589039 -76.016938854, -173.102909386 -76.028646065, -173.111183172 -76.03940804, -173.129410398 -76.049224779, -173.148635798 -76.05820377, -173.16885937 -76.066345013)))"
|
|
49
|
+
version = 0
|
|
50
|
+
depth = 500
|
|
51
|
+
theme = "base"
|
|
52
|
+
type = "bathymetry"
|
|
53
|
+
|
|
54
|
+
[examples.Bathymetry.bbox]
|
|
55
|
+
xmin = -175.12791442871094
|
|
56
|
+
xmax = -170.05111694335938
|
|
57
|
+
ymin = -77.9718246459961
|
|
58
|
+
ymax = -75.64299774169922
|
|
59
|
+
|
|
60
|
+
[[examples.Bathymetry.sources]]
|
|
61
|
+
property = ""
|
|
62
|
+
dataset = "ETOPO/GLOBathy"
|
|
63
|
+
record_id = "2024-12-09T00:00:00.000Z"
|
|
64
|
+
|
|
65
|
+
[examples.Bathymetry.cartography]
|
|
66
|
+
sort_key = 12
|
|
67
|
+
|
|
68
|
+
[[examples.Infrastructure]]
|
|
69
|
+
id = "e9e3d506-89c0-3473-8cee-5e5ac6596d6c"
|
|
70
|
+
geometry = "POINT (-179.9999994 -82.42408)"
|
|
71
|
+
version = 0
|
|
72
|
+
subtype = "pedestrian"
|
|
73
|
+
class = "information"
|
|
74
|
+
wikidata = "Q800558"
|
|
75
|
+
theme = "base"
|
|
76
|
+
type = "infrastructure"
|
|
77
|
+
|
|
78
|
+
[examples.Infrastructure.bbox]
|
|
79
|
+
xmin = -180.0
|
|
80
|
+
xmax = -179.99998474121094
|
|
81
|
+
ymin = -82.42408752441406
|
|
82
|
+
ymax = -82.42407989501953
|
|
83
|
+
|
|
84
|
+
[[examples.Infrastructure.sources]]
|
|
85
|
+
property = ""
|
|
86
|
+
dataset = "OpenStreetMap"
|
|
87
|
+
record_id = "n7674174803@2"
|
|
88
|
+
update_time = "2023-04-07T17:37:48.000Z"
|
|
89
|
+
|
|
90
|
+
[examples.Infrastructure.names]
|
|
91
|
+
primary = "1306 km to South Pole"
|
|
92
|
+
|
|
93
|
+
[examples.Infrastructure.source_tags]
|
|
94
|
+
description = "1036 km to South Pole."
|
|
95
|
+
information = "route_marker"
|
|
96
|
+
note = "The road continue in west side of the map"
|
|
97
|
+
start_date = "2007"
|
|
98
|
+
tourism = "information"
|
|
99
|
+
wikipedia = "en:South Pole Traverse"
|
|
100
|
+
|
|
101
|
+
[[examples.Land]]
|
|
102
|
+
id = "70fc3596-a987-3fea-820c-c016c0a2f0da"
|
|
103
|
+
geometry = "POINT (-178.7 -85.45)"
|
|
104
|
+
version = 0
|
|
105
|
+
subtype = "physical"
|
|
106
|
+
class = "cliff"
|
|
107
|
+
wikidata = "Q5282342"
|
|
108
|
+
theme = "base"
|
|
109
|
+
type = "land"
|
|
110
|
+
|
|
111
|
+
[examples.Land.bbox]
|
|
112
|
+
xmin = -178.7000274658203
|
|
113
|
+
xmax = -178.6999969482422
|
|
114
|
+
ymin = -85.45001220703125
|
|
115
|
+
ymax = -85.44999694824219
|
|
116
|
+
|
|
117
|
+
[[examples.Land.sources]]
|
|
118
|
+
property = ""
|
|
119
|
+
dataset = "OpenStreetMap"
|
|
120
|
+
record_id = "n11693475112@1"
|
|
121
|
+
update_time = "2024-03-05T09:23:39.000Z"
|
|
122
|
+
|
|
123
|
+
[examples.Land.names]
|
|
124
|
+
primary = "Dismal Buttress"
|
|
125
|
+
|
|
126
|
+
[examples.Land.source_tags]
|
|
127
|
+
natural = "cliff"
|
|
128
|
+
"ref:linz:place_id" = "12318"
|
|
129
|
+
wikipedia = "en:Dismal Buttress"
|
|
130
|
+
|
|
131
|
+
[[examples.LandCover]]
|
|
132
|
+
id = "c347312d-012b-5e73-8bd3-a10d04b2981d"
|
|
133
|
+
geometry = "POLYGON ((-179.99877531181616 65.95172539425603, -179.99740705536922 65.95265577758867, -179.99751722434937 65.9532545912543, -179.9974078443441 65.9541507615366, -179.9965398649702 65.95451215813897, -179.99644396804533 65.95493010632842, -179.99602533095998 65.95502533095993, -179.99468737767813 65.95677071067811, -179.9933586639601 65.9576086639598, -179.99313729490444 65.95812767174695, -179.99314866836227 65.95857649030111, -179.99370507548738 65.95907781410224, -179.99372539425596 65.95947468818369, -179.99395850935272 65.95967260714353, -179.99410866395988 65.96030800303998, -179.99534017576838 65.96101799736452, -179.99575621846904 65.96104928900519, -179.9959057775888 65.96150961146397, -179.9965950523775 65.96161426988128, -179.99663895270027 65.96216619349144, -179.99807649030126 65.96218466463768, -179.99819891654494 65.96189707483568, -179.99799883949768 65.96160842248709, -179.99825961146388 65.96142755541139, -179.99830761159433 65.9610635173197, -179.99936104612706 65.9609995273612, -179.9993797906372 65.96051410937864, -179.99964133604004 65.96039133604008, -179.9997 65.96016912258357, -179.99936104729989 65.95958380650865, -179.99900447103303 65.95954329910117, -179.9987608894112 65.95924038853603, -179.99806463264497 65.95902716440592, -179.99798856507215 65.95838313921075, -179.99834294463088 65.95801088941111, -179.9983374593203 65.9575910941953, -179.99855761159426 65.95723018431977, -179.99921013502978 65.95698784186104, -179.99931463264488 65.95663950159415, -179.99990450886096 65.95637680202988, -179.99997427859432 65.9560635173197, -180.00019127274402 65.9558913550169, -180.00019127274405 65.95544197881631, -180.0000389948438 65.9553039610106, -179.9996246090062 65.9553159274193, -179.99935793918766 65.95327531026125, -179.9988434361254 65.95288259953995, -179.99885243016726 65.95244253241113, -179.9991661934914 65.95227771429981, -179.9991960389287 65.95187767174694, -179.99877531181616 65.95172539425603))"
|
|
134
|
+
version = 0
|
|
135
|
+
subtype = "barren"
|
|
136
|
+
theme = "base"
|
|
137
|
+
type = "land_cover"
|
|
138
|
+
|
|
139
|
+
[examples.LandCover.bbox]
|
|
140
|
+
xmin = -180.0001983642578
|
|
141
|
+
xmax = -179.99313354492188
|
|
142
|
+
ymin = 65.95172119140625
|
|
143
|
+
ymax = 65.96218872070313
|
|
144
|
+
|
|
145
|
+
[[examples.LandCover.sources]]
|
|
146
|
+
property = ""
|
|
147
|
+
dataset = "ESA WorldCover"
|
|
148
|
+
update_time = "2024-11-07T00:00:00.000Z"
|
|
149
|
+
|
|
150
|
+
[examples.LandCover.cartography]
|
|
151
|
+
min_zoom = 8
|
|
152
|
+
max_zoom = 15
|
|
153
|
+
sort_key = 3
|
|
154
|
+
|
|
155
|
+
[[examples.LandUse]]
|
|
156
|
+
id = "1e1f6095-5bd2-3fdb-a422-41351b848e9d"
|
|
157
|
+
geometry = "POLYGON ((-176.5623454 -43.9567812, -176.5627644 -43.9561272, -176.5626898 -43.9557432, -176.5624297 -43.9553592, -176.562679 -43.9551603, -176.5629058 -43.9552064, -176.5631441 -43.9551769, -176.5632428 -43.9550676, -176.5633066 -43.9548702, -176.5634402 -43.9548071, -176.5639052 -43.9546682, -176.5642479 -43.9544118, -176.5647302 -43.9542142, -176.5651547 -43.954277, -176.5658293 -43.9545243, -176.5659454 -43.9543521, -176.566934 -43.9547987, -176.5669179 -43.955018, -176.5682465 -43.9553205, -176.5671004 -43.9579593, -176.5662034 -43.9600044, -176.5655366 -43.9597247, -176.5646109 -43.9595326, -176.564467 -43.9592563, -176.5639885 -43.9589226, -176.5637013 -43.9586925, -176.563223 -43.9586237, -176.5623454 -43.9567812))"
|
|
158
|
+
version = 0
|
|
159
|
+
subtype = "golf"
|
|
160
|
+
class = "golf_course"
|
|
161
|
+
theme = "base"
|
|
162
|
+
type = "land_use"
|
|
163
|
+
|
|
164
|
+
[examples.LandUse.bbox]
|
|
165
|
+
xmin = -176.56825256347656
|
|
166
|
+
xmax = -176.56231689453125
|
|
167
|
+
ymin = -43.96001052856445
|
|
168
|
+
ymax = -43.95420837402344
|
|
169
|
+
|
|
170
|
+
[[examples.LandUse.sources]]
|
|
171
|
+
property = ""
|
|
172
|
+
dataset = "OpenStreetMap"
|
|
173
|
+
record_id = "w56117029@3"
|
|
174
|
+
update_time = "2010-04-24T22:35:13.000Z"
|
|
175
|
+
|
|
176
|
+
[examples.LandUse.names]
|
|
177
|
+
primary = "Chatham Islands Golf Club"
|
|
178
|
+
|
|
179
|
+
[examples.LandUse.source_tags]
|
|
180
|
+
"LINZ:source_version" = "V16"
|
|
181
|
+
attribution = "http://wiki.osm.org/wiki/Attribution#LINZ"
|
|
182
|
+
leisure = "golf_course"
|
|
183
|
+
source_ref = "http://www.linz.govt.nz/topography/topo-maps/"
|
|
184
|
+
|
|
185
|
+
[[examples.Water]]
|
|
186
|
+
id = "6bbb5fe5-bf26-3efa-b120-0a7079b60840"
|
|
187
|
+
geometry = "POINT (-177.031799 -84.934793)"
|
|
188
|
+
version = 0
|
|
189
|
+
subtype = "physical"
|
|
190
|
+
class = "cape"
|
|
191
|
+
wikidata = "Q33140589"
|
|
192
|
+
theme = "base"
|
|
193
|
+
type = "water"
|
|
194
|
+
|
|
195
|
+
[examples.Water.bbox]
|
|
196
|
+
xmin = -177.03179931640625
|
|
197
|
+
xmax = -177.0317840576172
|
|
198
|
+
ymin = -84.93480682373047
|
|
199
|
+
ymax = -84.9347915649414
|
|
200
|
+
|
|
201
|
+
[[examples.Water.sources]]
|
|
202
|
+
property = ""
|
|
203
|
+
dataset = "OpenStreetMap"
|
|
204
|
+
record_id = "n11109190647@2"
|
|
205
|
+
update_time = "2024-02-11T05:52:05.000Z"
|
|
206
|
+
|
|
207
|
+
[examples.Water.names]
|
|
208
|
+
primary = "Thanksgiving Point"
|
|
209
|
+
|
|
210
|
+
[examples.Water.source_tags]
|
|
211
|
+
natural = "cape"
|
|
212
|
+
"ref:linz:place_id" = "13433"
|
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
maintainers = [
|
|
3
|
+
{name = "Overture Maps Schema Working Group"},
|
|
4
|
+
]
|
|
5
|
+
dependencies = [
|
|
6
|
+
"overture-schema-common>=0.1.1",
|
|
7
|
+
"overture-schema-system>=0.1.1",
|
|
8
|
+
"pydantic>=2.13.0",
|
|
9
|
+
]
|
|
10
|
+
description = "Overture Maps base theme shared structures and models (bathymetry, infrastructure, land, land_cover, land_use, water)"
|
|
11
|
+
version = "0.1.1.dev0"
|
|
12
|
+
license = "MIT"
|
|
13
|
+
name = "overture-schema-theme-base"
|
|
14
|
+
readme = "README.md"
|
|
15
|
+
requires-python = ">=3.10"
|
|
16
|
+
|
|
17
|
+
[project.urls]
|
|
18
|
+
Homepage = "https://overturemaps.org"
|
|
19
|
+
Source = "https://github.com/OvertureMaps/schema"
|
|
20
|
+
Issues = "https://github.com/OvertureMaps/schema/issues"
|
|
21
|
+
|
|
22
|
+
[tool.uv.sources]
|
|
23
|
+
overture-schema-common = { workspace = true }
|
|
24
|
+
overture-schema-system = { workspace = true }
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
[build-system]
|
|
28
|
+
requires = ["uv_build>=0.11.32,<0.13"]
|
|
29
|
+
build-backend = "uv_build"
|
|
30
|
+
|
|
31
|
+
[tool.uv.build-backend]
|
|
32
|
+
module-name = "overture.schema.base"
|
|
33
|
+
|
|
34
|
+
[project.entry-points."overture.models"]
|
|
35
|
+
bathymetry = "overture.schema.base:Bathymetry"
|
|
36
|
+
infrastructure = "overture.schema.base:Infrastructure"
|
|
37
|
+
land = "overture.schema.base:Land"
|
|
38
|
+
land_cover = "overture.schema.base:LandCover"
|
|
39
|
+
land_use = "overture.schema.base:LandUse"
|
|
40
|
+
water = "overture.schema.base:Water"
|
|
41
|
+
|
|
42
|
+
[project.entry-points.pytest11]
|
|
43
|
+
overture_baselines = "overture.schema.system.testing.plugin"
|
|
44
|
+
|
|
45
|
+
[[examples.Bathymetry]]
|
|
46
|
+
id = "5d40bd6c-db14-5492-b29f-5e25a59032bc"
|
|
47
|
+
geometry = "MULTIPOLYGON (((-170.71296928 -76.744313428, -170.719841483 -76.757076376, -170.731061124 -76.761566192, -170.775652756 -76.76338726, -170.853616381 -76.76253958, -170.918562293 -76.755380155, -170.970490492 -76.741908984, -170.998699301 -76.729180777, -171.003188718 -76.717195533, -170.990421551 -76.703765214, -170.960397802 -76.68888982, -170.940748072 -76.674697941, -170.931472364 -76.661189576, -170.927114414 -76.637296658, -170.927674224 -76.603019188, -170.939335393 -76.574637428, -170.962097922 -76.552151379, -170.999015387 -76.535715361, -171.050087788 -76.525329373, -171.079133298 -76.50751024, -171.086151917 -76.482257963, -171.098653755 -76.462747286, -171.11663881 -76.448978211, -171.146691397 -76.437601179, -171.188811514 -76.428616191, -171.296181785 -76.4228609, -171.468802209 -76.420335306, -171.566055241 -76.41501101, -171.587940879 -76.406888013, -171.59004284 -76.387987744, -171.572361122 -76.358310204, -171.549343725 -76.334488281, -171.520990649 -76.316521976, -171.453759127 -76.301763636, -171.347649159 -76.290213262, -171.30597166 -76.267707269, -171.328726628 -76.234245658, -171.36676019 -76.195627518, -171.420072345 -76.151852851, -171.444766298 -76.12494912, -171.44084205 -76.114916326, -171.378107286 -76.099627787, -171.256562007 -76.079083503, -171.228218647 -76.058825682, -171.293077208 -76.038854322, -171.421365419 -76.023534207, -171.613083278 -76.012865337, -171.76411833 -75.99938969, -171.874470572 -75.983107266, -172.121928361 -75.958403596, -172.506491695 -75.925278679, -172.744527804 -75.899736153, -172.836036689 -75.88177602, -172.904681746 -75.862406785, -172.950462974 -75.841628448, -173.000855857 -75.830396498, -173.055860393 -75.828710933, -173.177561398 -75.810743709, -173.365958872 -75.776494827, -173.493573084 -75.759370386, -173.560404033 -75.759370386, -173.620925776 -75.77158365, -173.675138312 -75.796010178, -173.733786206 -75.808642966, -173.796869456 -75.809482015, -173.847216433 -75.805553449, -173.884827135 -75.79685727, -173.90475244 -75.789177124, -173.906992347 -75.782513013, -173.881736947 -75.76894365, -173.828986239 -75.748469035, -173.797974615 -75.732298475, -173.788702075 -75.72043197, -173.82491541 -75.701013882, -173.90661462 -75.674044211, -173.977087913 -75.656066882, -174.03633529 -75.647081894, -174.150190099 -75.643010485, -174.31865234 -75.643852655, -174.444433211 -75.652836726, -174.527532713 -75.669962696, -174.581709229 -75.687086831, -174.606962758 -75.704209131, -174.631095834 -75.708279163, -174.654108458 -75.699296928, -174.688637451 -75.699296928, -174.734682816 -75.708279163, -174.797846917 -75.708699866, -174.878129754 -75.700559037, -174.939903816 -75.70870181, -174.9831691 -75.733128185, -175.025841122 -75.746602837, -175.06791988 -75.749125768, -175.09922327 -75.755318987, -175.119751293 -75.765182495, -175.127900229 -75.775197415, -175.123670077 -75.785363749, -175.111718372 -75.791289392, -175.092045112 -75.792974345, -175.049907399 -75.780622976, -174.985305232 -75.754235285, -174.935355308 -75.74552996, -174.900057628 -75.754507001, -174.886060973 -75.766815613, -174.893365345 -75.782455795, -174.907537393 -75.791536245, -174.928577117 -75.794056963, -174.971105378 -75.818213107, -175.035122174 -75.864004677, -175.060941949 -75.892403254, -175.048564703 -75.903408839, -175.020469049 -75.909193043, -174.976654988 -75.909755867, -174.944760829 -75.90482541, -174.924786572 -75.894401673, -174.92111336 -75.881479168, -174.933741192 -75.866057897, -174.900484967 -75.857513625, -174.821344686 -75.855846351, -174.752433709 -75.839289534, -174.693752038 -75.807843172, -174.652894268 -75.780747792, -174.629860399 -75.758003392, -174.571227588 -75.745793709, -174.476995837 -75.744118743, -174.398722205 -75.751841803, -174.336406693 -75.768962888, -174.300477946 -75.783262828, -174.290935964 -75.794741623, -174.28812912 -75.812412878, -174.292057414 -75.836276591, -174.289237223 -75.852155302, -174.279668547 -75.860049012, -174.205113931 -75.879998026, -174.065573375 -75.912002343, -173.957779122 -75.924071248, -173.881731171 -75.916204739, -173.846521251 -75.926706189, -173.852149361 -75.955575598, -173.845408416 -75.979439305, -173.826298414 -75.99829731, -173.76424232 -76.018956172, -173.659240133 -76.041415889, -173.560434089 -76.057698465, -173.467824188 -76.067803901, -173.404678836 -76.077625909, -173.370998032 -76.087164489, -173.332530272 -76.106814524, -173.289275555 -76.136576014, -173.231864101 -76.154545405, -173.160295911 -76.1607227, -173.093917454 -76.17278471, -173.032728732 -76.190731436, -173.009710709 -76.205560908, -173.024863387 -76.217273124, -173.048718935 -76.225374126, -173.081277354 -76.229863912, -173.219658797 -76.237442552, -173.463863265 -76.248110046, -173.60352174 -76.25793895, -173.638634223 -76.266929265, -173.658723482 -76.274676093, -173.663789516 -76.281179435, -173.661403366 -76.289363255, -173.651565032 -76.299227554, -173.627282775 -76.313843189, -173.588556596 -76.33321016, -173.575369172 -76.355231445, -173.587720504 -76.379907046, -173.573965869 -76.402499893, -173.53410527 -76.423009985, -173.518376226 -76.437156259, -173.526778738 -76.444938715, -173.559015515 -76.446303683, -173.615086557 -76.441251162, -173.686785609 -76.421600788, -173.774112673 -76.387352563, -173.854573513 -76.372333877, -173.928168128 -76.37654473, -173.968906731 -76.383732772, -173.97678932 -76.393898005, -173.979325549 -76.410884215, -173.976515417 -76.434691403, -174.000646474 -76.454452818, -174.051718722 -76.470168462, -174.08231827 -76.482963711, -174.092445119 -76.492838563, -174.075053216 -76.514344245, -174.030142562 -76.547480757, -174.016669929 -76.575274601, -174.034635317 -76.597725777, -174.037021169 -76.62030279, -174.023827484 -76.64300564, -174.034634583 -76.661942018, -174.069442464 -76.677111923, -174.086843964 -76.690616859, -174.086839082 -76.702456825, -174.080513222 -76.712456309, -174.067866385 -76.72061531, -174.036259441 -76.725116584, -173.98569239 -76.725960131, -173.93723318 -76.720486558, -173.89088181 -76.708695864, -173.780274695 -76.695221211, -173.605411835 -76.6800626, -173.487930602 -76.662096294, -173.427830996 -76.641322294, -173.370307559 -76.630935294, -173.315360292 -76.630935294, -173.249406002 -76.637251344, -173.17244469 -76.649883444, -173.110795196 -76.653532162, -173.06445752 -76.648197497, -173.029349452 -76.637355272, -173.005470993 -76.621005486, -173.01753216 -76.605236858, -173.065532955 -76.590049388, -173.096548505 -76.576599032, -173.11057881 -76.564885791, -173.108053605 -76.552301955, -173.08897289 -76.538847523, -173.051362225 -76.527628807, -172.99522161 -76.518645807, -172.891534181 -76.516119525, -172.740299938 -76.52004996, -172.648684331 -76.524540794, -172.61668736 -76.529592027, -172.584268588 -76.541098757, -172.551428016 -76.559060982, -172.533042741 -76.576141146, -172.529112765 -76.592339249, -172.540195073 -76.604524646, -172.566289666 -76.612697339, -172.576243291 -76.621303431, -172.570055947 -76.630342924, -172.555183534 -76.636123529, -172.531626051 -76.638645245, -172.517040304 -76.643518276, -172.511426292 -76.650742621, -172.551848294 -76.672312544, -172.63830631 -76.708228042, -172.701431121 -76.728711408, -172.741222726 -76.733762641, -172.81460886 -76.72534004, -172.921589524 -76.703443605, -173.006960733 -76.697273314, -173.070722487 -76.706829166, -173.101615682 -76.719791531, -173.099640316 -76.736160408, -173.033958817 -76.759064999, -172.904571183 -76.788505304, -172.847033841 -76.810916113, -172.861346791 -76.826297424, -172.924787296 -76.856444925, -173.037355356 -76.901358615, -173.149640378 -76.935043659, -173.26164236 -76.957500057, -173.354942309 -76.968728255, -173.429540223 -76.968728255, -173.487771718 -76.964657535, -173.529636796 -76.956516094, -173.572768938 -76.955559014, -173.617168145 -76.961786296, -173.614655836 -76.97446809, -173.565232013 -76.993604396, -173.461502424 -77.006682128, -173.303467069 -77.013701287, -173.163373388 -77.02787859, -173.041221382 -77.049214037, -172.918094542 -77.059179951, -172.793992869 -77.057776334, -172.720418717 -77.044861043, -172.697372088 -77.020434079, -172.675885915 -77.003730799, -172.655960197 -76.994751205, -172.60882792 -76.987594764, -172.534489083 -76.982261476, -172.480072837 -76.983094424, -172.445579184 -76.990093609, -172.428332542 -76.998610734, -172.428332911 -77.008645799, -172.435068344 -77.018150822, -172.448538839 -77.027125803, -172.490777829 -77.039613708, -172.561785312 -77.055614535, -172.628175119 -77.080598263, -172.68994725 -77.114564892, -172.751818039 -77.133793765, -172.813787485 -77.138284883, -172.900229764 -77.131828165, -173.011144875 -77.114423613, -173.119679588 -77.128474884, -173.2258339 -77.17398198, -173.273849553 -77.202664633, -173.263726547 -77.214522842, -173.165895559 -77.239681117, -172.980356589 -77.278139457, -172.880291531 -77.312658914, -172.865700386 -77.343239487, -172.867667457 -77.371126102, -172.886192744 -77.39631876, -172.999732531 -77.429966955, -173.208286817 -77.472070689, -173.335454668 -77.509278677, -173.381236082 -77.541590921, -173.403703936 -77.570407724, -173.40285823 -77.595729086, -173.378288408 -77.634921, -173.329994472 -77.687983467, -173.241287742 -77.735563094, -173.112168219 -77.777659882, -173.054064387 -77.81089869, -173.066976248 -77.835279519, -173.063736051 -77.854657976, -173.044343797 -77.869034061, -172.890349983 -77.896435115, -172.60175461 -77.936861139, -172.376181212 -77.961986812, -172.213629791 -77.971812135, -172.023427102 -77.967320559, -171.805573145 -77.948512083, -171.581263004 -77.918894833, -171.350496677 -77.87846881, -171.217147208 -77.851799157, -171.181214596 -77.838885875, -171.160572341 -77.826074082, -171.155220441 -77.813363779, -171.178789134 -77.790158543, -171.231278422 -77.756458375, -171.27338337 -77.70988804, -171.305103978 -77.65044754, -171.293875473 -77.602346602, -171.239697854 -77.565585227, -171.168401509 -77.532887375, -171.079986438 -77.504253044, -171.028614514 -77.483042244, -171.014285737 -77.469254974, -171.016677114 -77.456576914, -171.035788644 -77.445008064, -171.086879845 -77.431646501, -171.169950715 -77.416492226, -171.216537864 -77.403175691, -171.226641293 -77.391696895, -171.228607057 -77.378968685, -171.222435157 -77.364991059, -171.168824693 -77.334840949, -171.067775664 -77.288518355, -171.000402018 -77.24121644, -170.966703754 -77.192935206, -170.894838531 -77.157002595, -170.784806349 -77.133418606, -170.725150821 -77.11627156, -170.715871945 -77.105561456, -170.710674146 -77.077210652, -170.709557424 -77.031219147, -170.697909144 -76.992502178, -170.675729304 -76.961059744, -170.654536164 -76.940848729, -170.634329723 -76.931869135, -170.581564681 -76.922044903, -170.496241038 -76.911376032, -170.429709562 -76.893409727, -170.381970254 -76.868145986, -170.285260999 -76.838950739, -170.139581798 -76.805823986, -170.061542334 -76.78431495, -170.051142608 -76.77442363, -170.076677284 -76.763148845, -170.138146365 -76.750490597, -170.192753568 -76.731526593, -170.240498896 -76.706256833, -170.315896371 -76.686462585, -170.418945993 -76.67214385, -170.498267121 -76.665405567, -170.553859754 -76.666247738, -170.609039198 -76.673409769, -170.663805452 -76.68689166, -170.695686968 -76.698414281, -170.704683743 -76.70797763, -170.710444514 -76.723277346, -170.71296928 -76.744313428), (-172.46185717 -77.485683162, -172.491725041 -77.49003391, -172.535448064 -77.490594163, -172.566986057 -77.488349711, -172.586339021 -77.483300552, -172.598540475 -77.476173053, -172.60359042 -77.466967216, -172.601627836 -77.458872071, -172.592652724 -77.451887618, -172.556765055 -77.448396429, -172.49396483 -77.448398503, -172.453726685 -77.452881992, -172.436050621 -77.461846897, -172.429868964 -77.468114837, -172.435181715 -77.47168581, -172.44584445 -77.477541919, -172.46185717 -77.485683162), (-172.812798475 -76.363628771, -172.855573928 -76.365453015, -172.885037626 -76.36040045, -172.90720433 -76.351027386, -172.92207404 -76.337333821, -172.9168827 -76.324750727, -172.89163031 -76.313278104, -172.862193885 -76.307261221, -172.828573425 -76.30670008, -172.792121028 -76.311189877, -172.752836694 -76.320730613, -172.732062811 -76.331770033, -172.729799379 -76.344308139, -172.756711267 -76.354927718, -172.812798475 -76.363628771), (-171.932998671 -76.183124002, -172.010021088 -76.180457336, -172.070931389 -76.166984091, -172.113033554 -76.150312062, -172.136327583 -76.130441248, -172.133522137 -76.111120124, -172.104617217 -76.092348689, -172.06028165 -76.080296327, -172.000515436 -76.074963039, -171.918725408 -76.076928027, -171.814911566 -76.086191292, -171.745182124 -76.097695899, -171.709537083 -76.111441849, -171.696346087 -76.126554541, -171.705609136 -76.143033974, -171.731004713 -76.156183802, -171.77253282 -76.166004024, -171.83986414 -76.174984091, -171.932998671 -76.183124002), (-173.16885937 -76.066345013, -173.199147981 -76.070696107, -173.23950163 -76.071257052, -173.269213382 -76.065813298, -173.288283234 -76.054364845, -173.2799961 -76.038973879, -173.244351978 -76.0196404, -173.207608446 -76.007588038, -173.169765504 -76.002816794, -173.139490241 -76.003094691, -173.116782658 -76.008421729, -173.104589039 -76.016938854, -173.102909386 -76.028646065, -173.111183172 -76.03940804, -173.129410398 -76.049224779, -173.148635798 -76.05820377, -173.16885937 -76.066345013)))"
|
|
48
|
+
version = 0
|
|
49
|
+
depth = 500
|
|
50
|
+
theme = "base"
|
|
51
|
+
type = "bathymetry"
|
|
52
|
+
|
|
53
|
+
[examples.Bathymetry.bbox]
|
|
54
|
+
xmin = -175.12791442871094
|
|
55
|
+
xmax = -170.05111694335938
|
|
56
|
+
ymin = -77.9718246459961
|
|
57
|
+
ymax = -75.64299774169922
|
|
58
|
+
|
|
59
|
+
[[examples.Bathymetry.sources]]
|
|
60
|
+
property = ""
|
|
61
|
+
dataset = "ETOPO/GLOBathy"
|
|
62
|
+
record_id = "2024-12-09T00:00:00.000Z"
|
|
63
|
+
|
|
64
|
+
[examples.Bathymetry.cartography]
|
|
65
|
+
sort_key = 12
|
|
66
|
+
|
|
67
|
+
[[examples.Infrastructure]]
|
|
68
|
+
id = "e9e3d506-89c0-3473-8cee-5e5ac6596d6c"
|
|
69
|
+
geometry = "POINT (-179.9999994 -82.42408)"
|
|
70
|
+
version = 0
|
|
71
|
+
subtype = "pedestrian"
|
|
72
|
+
class = "information"
|
|
73
|
+
wikidata = "Q800558"
|
|
74
|
+
theme = "base"
|
|
75
|
+
type = "infrastructure"
|
|
76
|
+
|
|
77
|
+
[examples.Infrastructure.bbox]
|
|
78
|
+
xmin = -180.0
|
|
79
|
+
xmax = -179.99998474121094
|
|
80
|
+
ymin = -82.42408752441406
|
|
81
|
+
ymax = -82.42407989501953
|
|
82
|
+
|
|
83
|
+
[[examples.Infrastructure.sources]]
|
|
84
|
+
property = ""
|
|
85
|
+
dataset = "OpenStreetMap"
|
|
86
|
+
record_id = "n7674174803@2"
|
|
87
|
+
update_time = "2023-04-07T17:37:48.000Z"
|
|
88
|
+
|
|
89
|
+
[examples.Infrastructure.names]
|
|
90
|
+
primary = "1306 km to South Pole"
|
|
91
|
+
|
|
92
|
+
[examples.Infrastructure.source_tags]
|
|
93
|
+
description = "1036 km to South Pole."
|
|
94
|
+
information = "route_marker"
|
|
95
|
+
note = "The road continue in west side of the map"
|
|
96
|
+
start_date = "2007"
|
|
97
|
+
tourism = "information"
|
|
98
|
+
wikipedia = "en:South Pole Traverse"
|
|
99
|
+
|
|
100
|
+
[[examples.Land]]
|
|
101
|
+
id = "70fc3596-a987-3fea-820c-c016c0a2f0da"
|
|
102
|
+
geometry = "POINT (-178.7 -85.45)"
|
|
103
|
+
version = 0
|
|
104
|
+
subtype = "physical"
|
|
105
|
+
class = "cliff"
|
|
106
|
+
wikidata = "Q5282342"
|
|
107
|
+
theme = "base"
|
|
108
|
+
type = "land"
|
|
109
|
+
|
|
110
|
+
[examples.Land.bbox]
|
|
111
|
+
xmin = -178.7000274658203
|
|
112
|
+
xmax = -178.6999969482422
|
|
113
|
+
ymin = -85.45001220703125
|
|
114
|
+
ymax = -85.44999694824219
|
|
115
|
+
|
|
116
|
+
[[examples.Land.sources]]
|
|
117
|
+
property = ""
|
|
118
|
+
dataset = "OpenStreetMap"
|
|
119
|
+
record_id = "n11693475112@1"
|
|
120
|
+
update_time = "2024-03-05T09:23:39.000Z"
|
|
121
|
+
|
|
122
|
+
[examples.Land.names]
|
|
123
|
+
primary = "Dismal Buttress"
|
|
124
|
+
|
|
125
|
+
[examples.Land.source_tags]
|
|
126
|
+
natural = "cliff"
|
|
127
|
+
"ref:linz:place_id" = "12318"
|
|
128
|
+
wikipedia = "en:Dismal Buttress"
|
|
129
|
+
|
|
130
|
+
[[examples.LandCover]]
|
|
131
|
+
id = "c347312d-012b-5e73-8bd3-a10d04b2981d"
|
|
132
|
+
geometry = "POLYGON ((-179.99877531181616 65.95172539425603, -179.99740705536922 65.95265577758867, -179.99751722434937 65.9532545912543, -179.9974078443441 65.9541507615366, -179.9965398649702 65.95451215813897, -179.99644396804533 65.95493010632842, -179.99602533095998 65.95502533095993, -179.99468737767813 65.95677071067811, -179.9933586639601 65.9576086639598, -179.99313729490444 65.95812767174695, -179.99314866836227 65.95857649030111, -179.99370507548738 65.95907781410224, -179.99372539425596 65.95947468818369, -179.99395850935272 65.95967260714353, -179.99410866395988 65.96030800303998, -179.99534017576838 65.96101799736452, -179.99575621846904 65.96104928900519, -179.9959057775888 65.96150961146397, -179.9965950523775 65.96161426988128, -179.99663895270027 65.96216619349144, -179.99807649030126 65.96218466463768, -179.99819891654494 65.96189707483568, -179.99799883949768 65.96160842248709, -179.99825961146388 65.96142755541139, -179.99830761159433 65.9610635173197, -179.99936104612706 65.9609995273612, -179.9993797906372 65.96051410937864, -179.99964133604004 65.96039133604008, -179.9997 65.96016912258357, -179.99936104729989 65.95958380650865, -179.99900447103303 65.95954329910117, -179.9987608894112 65.95924038853603, -179.99806463264497 65.95902716440592, -179.99798856507215 65.95838313921075, -179.99834294463088 65.95801088941111, -179.9983374593203 65.9575910941953, -179.99855761159426 65.95723018431977, -179.99921013502978 65.95698784186104, -179.99931463264488 65.95663950159415, -179.99990450886096 65.95637680202988, -179.99997427859432 65.9560635173197, -180.00019127274402 65.9558913550169, -180.00019127274405 65.95544197881631, -180.0000389948438 65.9553039610106, -179.9996246090062 65.9553159274193, -179.99935793918766 65.95327531026125, -179.9988434361254 65.95288259953995, -179.99885243016726 65.95244253241113, -179.9991661934914 65.95227771429981, -179.9991960389287 65.95187767174694, -179.99877531181616 65.95172539425603))"
|
|
133
|
+
version = 0
|
|
134
|
+
subtype = "barren"
|
|
135
|
+
theme = "base"
|
|
136
|
+
type = "land_cover"
|
|
137
|
+
|
|
138
|
+
[examples.LandCover.bbox]
|
|
139
|
+
xmin = -180.0001983642578
|
|
140
|
+
xmax = -179.99313354492188
|
|
141
|
+
ymin = 65.95172119140625
|
|
142
|
+
ymax = 65.96218872070312
|
|
143
|
+
|
|
144
|
+
[[examples.LandCover.sources]]
|
|
145
|
+
property = ""
|
|
146
|
+
dataset = "ESA WorldCover"
|
|
147
|
+
update_time = "2024-11-07T00:00:00.000Z"
|
|
148
|
+
|
|
149
|
+
[examples.LandCover.cartography]
|
|
150
|
+
min_zoom = 8
|
|
151
|
+
max_zoom = 15
|
|
152
|
+
sort_key = 3
|
|
153
|
+
|
|
154
|
+
[[examples.LandUse]]
|
|
155
|
+
id = "1e1f6095-5bd2-3fdb-a422-41351b848e9d"
|
|
156
|
+
geometry = "POLYGON ((-176.5623454 -43.9567812, -176.5627644 -43.9561272, -176.5626898 -43.9557432, -176.5624297 -43.9553592, -176.562679 -43.9551603, -176.5629058 -43.9552064, -176.5631441 -43.9551769, -176.5632428 -43.9550676, -176.5633066 -43.9548702, -176.5634402 -43.9548071, -176.5639052 -43.9546682, -176.5642479 -43.9544118, -176.5647302 -43.9542142, -176.5651547 -43.954277, -176.5658293 -43.9545243, -176.5659454 -43.9543521, -176.566934 -43.9547987, -176.5669179 -43.955018, -176.5682465 -43.9553205, -176.5671004 -43.9579593, -176.5662034 -43.9600044, -176.5655366 -43.9597247, -176.5646109 -43.9595326, -176.564467 -43.9592563, -176.5639885 -43.9589226, -176.5637013 -43.9586925, -176.563223 -43.9586237, -176.5623454 -43.9567812))"
|
|
157
|
+
version = 0
|
|
158
|
+
subtype = "golf"
|
|
159
|
+
class = "golf_course"
|
|
160
|
+
theme = "base"
|
|
161
|
+
type = "land_use"
|
|
162
|
+
|
|
163
|
+
[examples.LandUse.bbox]
|
|
164
|
+
xmin = -176.56825256347656
|
|
165
|
+
xmax = -176.56231689453125
|
|
166
|
+
ymin = -43.96001052856445
|
|
167
|
+
ymax = -43.95420837402344
|
|
168
|
+
|
|
169
|
+
[[examples.LandUse.sources]]
|
|
170
|
+
property = ""
|
|
171
|
+
dataset = "OpenStreetMap"
|
|
172
|
+
record_id = "w56117029@3"
|
|
173
|
+
update_time = "2010-04-24T22:35:13.000Z"
|
|
174
|
+
|
|
175
|
+
[examples.LandUse.names]
|
|
176
|
+
primary = "Chatham Islands Golf Club"
|
|
177
|
+
|
|
178
|
+
[examples.LandUse.source_tags]
|
|
179
|
+
"LINZ:source_version" = "V16"
|
|
180
|
+
attribution = "http://wiki.osm.org/wiki/Attribution#LINZ"
|
|
181
|
+
leisure = "golf_course"
|
|
182
|
+
source_ref = "http://www.linz.govt.nz/topography/topo-maps/"
|
|
183
|
+
|
|
184
|
+
[[examples.Water]]
|
|
185
|
+
id = "6bbb5fe5-bf26-3efa-b120-0a7079b60840"
|
|
186
|
+
geometry = "POINT (-177.031799 -84.934793)"
|
|
187
|
+
version = 0
|
|
188
|
+
subtype = "physical"
|
|
189
|
+
class = "cape"
|
|
190
|
+
wikidata = "Q33140589"
|
|
191
|
+
theme = "base"
|
|
192
|
+
type = "water"
|
|
193
|
+
|
|
194
|
+
[examples.Water.bbox]
|
|
195
|
+
xmin = -177.03179931640625
|
|
196
|
+
xmax = -177.0317840576172
|
|
197
|
+
ymin = -84.93480682373047
|
|
198
|
+
ymax = -84.9347915649414
|
|
199
|
+
|
|
200
|
+
[[examples.Water.sources]]
|
|
201
|
+
property = ""
|
|
202
|
+
dataset = "OpenStreetMap"
|
|
203
|
+
record_id = "n11109190647@2"
|
|
204
|
+
update_time = "2024-02-11T05:52:05.000Z"
|
|
205
|
+
|
|
206
|
+
[examples.Water.names]
|
|
207
|
+
primary = "Thanksgiving Point"
|
|
208
|
+
|
|
209
|
+
[examples.Water.source_tags]
|
|
210
|
+
natural = "cape"
|
|
211
|
+
"ref:linz:place_id" = "13433"
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"""Base theme.
|
|
2
|
+
|
|
3
|
+
Fundamental geographic features including bathymetry, infrastructure, land, land cover,
|
|
4
|
+
land use, and water features.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
__path__ = __import__("pkgutil").extend_path(__path__, __name__)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
from ._common import (
|
|
11
|
+
Depth,
|
|
12
|
+
Elevation,
|
|
13
|
+
Height,
|
|
14
|
+
SourceTags,
|
|
15
|
+
SurfaceMaterial,
|
|
16
|
+
)
|
|
17
|
+
from .bathymetry import Bathymetry
|
|
18
|
+
from .infrastructure import Infrastructure, InfrastructureClass, InfrastructureSubtype
|
|
19
|
+
from .land import Land, LandClass, LandSubtype
|
|
20
|
+
from .land_cover import LandCover, LandCoverSubtype
|
|
21
|
+
from .land_use import LandUse, LandUseClass, LandUseSubtype
|
|
22
|
+
from .water import Water, WaterClass, WaterSubtype
|
|
23
|
+
|
|
24
|
+
__all__ = [
|
|
25
|
+
"Bathymetry",
|
|
26
|
+
"Depth",
|
|
27
|
+
"Elevation",
|
|
28
|
+
"Height",
|
|
29
|
+
"Infrastructure",
|
|
30
|
+
"InfrastructureClass",
|
|
31
|
+
"InfrastructureSubtype",
|
|
32
|
+
"Land",
|
|
33
|
+
"LandClass",
|
|
34
|
+
"LandCover",
|
|
35
|
+
"LandCoverSubtype",
|
|
36
|
+
"LandSubtype",
|
|
37
|
+
"LandUse",
|
|
38
|
+
"LandUseClass",
|
|
39
|
+
"LandUseSubtype",
|
|
40
|
+
"SourceTags",
|
|
41
|
+
"SurfaceMaterial",
|
|
42
|
+
"Water",
|
|
43
|
+
"WaterClass",
|
|
44
|
+
"WaterSubtype",
|
|
45
|
+
]
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import textwrap
|
|
2
|
+
from enum import Enum
|
|
3
|
+
from typing import Annotated, Any, NewType
|
|
4
|
+
|
|
5
|
+
from pydantic import BaseModel, Field
|
|
6
|
+
|
|
7
|
+
from overture.schema.system.numeric import float64, int32
|
|
8
|
+
from overture.schema.system.string import WikidataId
|
|
9
|
+
|
|
10
|
+
Depth = NewType(
|
|
11
|
+
"Depth",
|
|
12
|
+
Annotated[
|
|
13
|
+
int32,
|
|
14
|
+
Field(
|
|
15
|
+
ge=0,
|
|
16
|
+
description="Depth below surface level of the feature in meters.",
|
|
17
|
+
),
|
|
18
|
+
],
|
|
19
|
+
)
|
|
20
|
+
|
|
21
|
+
Elevation = NewType(
|
|
22
|
+
"Elevation",
|
|
23
|
+
Annotated[
|
|
24
|
+
int32,
|
|
25
|
+
Field(
|
|
26
|
+
le=9000,
|
|
27
|
+
description="Elevation above sea level of the feature in meters.",
|
|
28
|
+
),
|
|
29
|
+
],
|
|
30
|
+
)
|
|
31
|
+
|
|
32
|
+
Height = NewType(
|
|
33
|
+
"Height",
|
|
34
|
+
Annotated[float64, Field(gt=0, description="Height of the feature in meters.")],
|
|
35
|
+
)
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
SourceTags = NewType(
|
|
39
|
+
"SourceTags",
|
|
40
|
+
Annotated[
|
|
41
|
+
dict[str, Any],
|
|
42
|
+
Field(
|
|
43
|
+
description=textwrap.dedent("""
|
|
44
|
+
Key/value pairs imported directly from the source data without change.
|
|
45
|
+
|
|
46
|
+
This field provides access to raw OSM entity tags for features sourced from
|
|
47
|
+
OpenStreetMap.
|
|
48
|
+
""").strip()
|
|
49
|
+
),
|
|
50
|
+
],
|
|
51
|
+
)
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
class SourcedFromOpenStreetMap(BaseModel):
|
|
55
|
+
"""
|
|
56
|
+
Model derived from an OpenStreetMap entity and containing the entity's OSM tags and wikidata ID.
|
|
57
|
+
"""
|
|
58
|
+
|
|
59
|
+
source_tags: SourceTags | None = None
|
|
60
|
+
wikidata: WikidataId | None = None
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
class SurfaceMaterial(str, Enum):
|
|
64
|
+
"""Material that makes up the surface of `Infrastructure` and `Land` features."""
|
|
65
|
+
|
|
66
|
+
ASPHALT = "asphalt"
|
|
67
|
+
COBBLESTONE = "cobblestone"
|
|
68
|
+
COMPACTED = "compacted"
|
|
69
|
+
CONCRETE = "concrete"
|
|
70
|
+
CONCRETE_PLATES = "concrete_plates"
|
|
71
|
+
DIRT = "dirt"
|
|
72
|
+
EARTH = "earth"
|
|
73
|
+
FINE_GRAVEL = "fine_gravel"
|
|
74
|
+
GRASS = "grass"
|
|
75
|
+
GRAVEL = "gravel"
|
|
76
|
+
GROUND = "ground"
|
|
77
|
+
PAVED = "paved"
|
|
78
|
+
PAVING_STONES = "paving_stones"
|
|
79
|
+
PEBBLESTONE = "pebblestone"
|
|
80
|
+
RECREATION_GRASS = "recreation_grass"
|
|
81
|
+
RECREATION_PAVED = "recreation_paved"
|
|
82
|
+
RECREATION_SAND = "recreation_sand"
|
|
83
|
+
RUBBER = "rubber"
|
|
84
|
+
SAND = "sand"
|
|
85
|
+
SETT = "sett"
|
|
86
|
+
TARTAN = "tartan"
|
|
87
|
+
UNPAVED = "unpaved"
|
|
88
|
+
WOOD = "wood"
|
|
89
|
+
WOODCHIPS = "woodchips"
|