[planet] New data from 220204.

Signed-off-by: Viktor Govako <viktor.govako@gmail.com>
This commit is contained in:
Viktor Govako 2022-02-09 13:32:55 +03:00
parent 2df22450fb
commit 71de1db197
6 changed files with 2360 additions and 2308 deletions

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load diff

View file

@ -1,5 +1,5 @@
World.mwm 35670693
WorldCoasts.mwm 4796912
World.mwm 35685298
WorldCoasts.mwm 4799911
00_NotoNaskhArabic-Regular.ttf 149192
00_NotoSansThai-Regular.ttf 21952
01_dejavusans.ttf 757076

View file

@ -4,6 +4,7 @@ set(SRC
multithread_mwm_test.cpp
mwm_foreach_test.cpp
mwm_index_test.cpp
world_map_test.cpp
)
omim_add_test(${PROJECT_NAME} ${SRC})

View file

@ -0,0 +1,51 @@
#include "testing/testing.hpp"
#include "indexer/classificator.hpp"
#include "indexer/classificator_loader.hpp"
#include "indexer/data_source.hpp"
#include "indexer/feature.hpp"
#include "coding/string_utf8_multilang.hpp"
#include <iostream>
UNIT_TEST(World_Capitals)
{
classificator::Load();
auto const capitalType = classif().GetTypeByPath({"place", "city", "capital", "2"});
std::set<std::string> testCapitals = { "Lisbon", "Warsaw", "Kyiv", "Roseau" };
platform::LocalCountryFile localFile(platform::LocalCountryFile::MakeForTesting(WORLD_FILE_NAME));
FrozenDataSource dataSource;
auto const res = dataSource.RegisterMap(localFile);
TEST_EQUAL(res.second, MwmSet::RegResult::Success, ());
size_t capitalsCount = 0;
FeaturesLoaderGuard guard(dataSource, res.first);
size_t const count = guard.GetNumFeatures();
for (size_t id = 0; id < count; ++id)
{
auto ft = guard.GetFeatureByIndex(id);
if (ft->GetGeomType() != feature::GeomType::Point)
continue;
bool found = false;
ft->ForEachType([&found, capitalType](uint32_t t)
{
if (t == capitalType)
found = true;
});
if (found)
++capitalsCount;
std::string name;
if (ft->GetName(StringUtf8Multilang::kEnglishCode, name) && testCapitals.count(name) > 0)
TEST(found, (name));
}
// Got 225 values from the first launch. May vary slightly ..
TEST_GREATER_OR_EQUAL(capitalsCount, 220, ());
}