Compare commits

...

3 Commits

Author SHA1 Message Date
Jean-Baptiste
7b5878b010 [editor] Remove ability to add attraction and remove name field for charging station
Signed-off-by: Jean-Baptiste <jeanbaptiste.charron@outlook.fr>
Co-authored-by: Jean-Baptiste <jeanbaptiste.charron@outlook.fr>
Co-committed-by: Jean-Baptiste <jeanbaptiste.charron@outlook.fr>
2025-12-10 20:52:16 +01:00
matheusgomesms
3fabbae3f7 [core] Added landuse in address checker
Signed-off-by: matheusgomesms <matheusgomesms@noreply.codeberg.org>
2025-12-10 20:39:46 +01:00
Konstantin Pastbin
0add23fcf2 [planet] Update map data to 251209
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
2025-12-10 22:55:03 +07:00
3 changed files with 2312 additions and 2313 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -519,7 +519,6 @@
<include group="poi_internet" />
</type>
<type id="amenity-charging_station">
<include field="name" />
<include group="charge_sockets" />
<include field="opening_hours" />
<include field="operator" />
@@ -1116,7 +1115,7 @@
<type id="tourism-artwork">
<include field="name" />
</type>
<type id="tourism-attraction">
<type id="tourism-attraction" can_add="no">
<include group="poi_internet" />
<!-- <include field="wikipedia" />-->
</type>

View File

@@ -372,7 +372,7 @@ IsAddressObjectChecker::IsAddressObjectChecker() : BaseChecker(1 /* level */)
m_types = OneLevelPOIChecker().GetTypes();
Classificator const & c = classif();
for (auto const * p : {"addr:interpolation", "building", "entrance"})
for (auto const * p : {"addr:interpolation", "building", "entrance", "landuse"})
m_types.push_back(c.GetTypeByPath({p}));
}
@@ -381,7 +381,7 @@ IsAddressObjectChecker::IsAddressObjectChecker() : BaseChecker(1 /* level */)
IsAddressChecker::IsAddressChecker() : BaseChecker(1 /* level */)
{
Classificator const & c = classif();
for (auto const * p : {"addr:interpolation", "building", "entrance"})
for (auto const * p : {"addr:interpolation", "building", "entrance", "landuse"})
m_types.push_back(c.GetTypeByPath({p}));
}