Compare commits

..

2 Commits

Author SHA1 Message Date
Konstantin Pastbin
0aed244f5e [generator] Use 56 threads for Features stage
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
2026-01-23 00:04:35 +07:00
Konstantin Pastbin
222d611ca6 [generator] Use 52 general threads
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
2026-01-23 00:03:12 +07:00
9 changed files with 8 additions and 28 deletions

View File

@@ -268,7 +268,6 @@ android {
"da",
"de",
"el",
"en-rAU",
"en-rGB",
"es",
"es-rMX",

View File

@@ -13,7 +13,6 @@
<locale android:name="da" />
<locale android:name="de" />
<locale android:name="el" />
<locale android:name="en-AU" />
<locale android:name="en-GB" />
<locale android:name="es" />
<locale android:name="es-MX" />

View File

@@ -207,13 +207,6 @@ node|z19-[man_made=water_well][drinking_water=not],
node|z19-[amenity=water_point][drinking_water=not],
{icon-image: drinking-water-no-m.svg;}
line|z18-[natural=tree_row],
{pattern-image: tree-m.svg;pattern-spacing: 60;}
line|z19[natural=tree_row],
{pattern-spacing: 70;}
line|z19[natural=tree_row],
{pattern-spacing: 80;}
node|z17-[natural=tree][name],
{icon-image: tree-special-m.svg;}
node|z18-[natural=tree][!name],

View File

@@ -479,6 +479,3 @@ piste:type-snow_park # area z14- (also has captio
man_made-bridge # area z14-
=== 10
natural-tree_row # line z18-
=== 5

View File

@@ -1401,9 +1401,6 @@ leisure-park-private # icon z14- (also has captio
leisure-swimming_pool-private # icon z17- (also has caption(optional) z17-, area z13-)
=== 100
natural-tree # icon z17- (also has caption(optional) z17-)
=== 6
#
# All automatic optional captions priorities are below 0.
# They follow the order of their correspoding icons.
@@ -2463,8 +2460,8 @@ emergency-life_ring # icon z19- (also has captio
power-substation # icon z17- (also has caption(optional) z18-, area z13-)
=== -9990
# natural-tree # caption(optional) z17- (also has icon z17-)
# === -9994
natural-tree # icon z17- (also has caption(optional) z17-)
=== -9991
# amenity-bench # caption(optional) z19- (also has icon z18-)
# amenity-bench-backless # caption(optional) z19- (also has icon z18-)
@@ -2502,6 +2499,7 @@ entrance-service # icon z19- (also has captio
# man_made-survey_point # caption(optional) z18- (also has icon z18-)
# man_made-telescope # caption(optional) z18- (also has icon z18-)
# man_made-telescope-optical # caption(optional) z17- (also has icon z17-)
# natural-tree # caption(optional) z17- (also has icon z17-)
# power-substation # caption(optional) z18- (also has icon z17-, area z13-)
# tourism-information # caption(optional) z16- (also has icon z16-)
# tourism-information-board # caption(optional) z16- (also has icon z16-)

View File

@@ -488,6 +488,3 @@ piste:type-snow_park # area z13- (also has captio
man_made-bridge # area z14-
=== 10
natural-tree_row # line z18-
=== 5

View File

@@ -1404,9 +1404,6 @@ leisure-park-private # icon z14- (also has captio
leisure-swimming_pool-private # icon z17- (also has caption(optional) z17-, area z13-)
=== 100
natural-tree # icon z16- (also has caption(optional) z16-)
=== 6
#
# All automatic optional captions priorities are below 0.
# They follow the order of their correspoding icons.
@@ -2469,8 +2466,8 @@ emergency-life_ring # icon z19- (also has captio
power-substation # icon z17- (also has caption(optional) z18-, area z13-)
=== -9990
# natural-tree # caption(optional) z16- (also has icon z16-)
# === -9994
natural-tree # icon z16- (also has caption(optional) z16-)
=== -9991
# amenity-bench # caption(optional) z19- (also has icon z18-)
# amenity-bench-backless # caption(optional) z19- (also has icon z18-)
@@ -2508,6 +2505,7 @@ entrance-service # icon z19- (also has captio
# man_made-survey_point # caption(optional) z15- (also has icon z14-)
# man_made-telescope # caption(optional) z18- (also has icon z18-)
# man_made-telescope-optical # caption(optional) z17- (also has icon z17-)
# natural-tree # caption(optional) z16- (also has icon z16-)
# power-substation # caption(optional) z18- (also has icon z17-, area z13-)
# tourism-information # caption(optional) z15- (also has icon z15-)
# tourism-information-board # caption(optional) z15- (also has icon z15-)

View File

@@ -423,7 +423,6 @@ IsUnderBuildingChecker::IsUnderBuildingChecker()
{
Classificator const & c = classif();
m_types.push_back(c.GetTypeByPath({"natural", "tree"}));
m_types.push_back(c.GetTypeByPath({"natural", "tree_row"}));
}
IsIsolineChecker::IsIsolineChecker() : BaseChecker(1 /* level */)

View File

@@ -20,7 +20,7 @@ MAIN_OUT_PATH: /mnt/4tbexternal/osm-maps
# Path to the data/ folder in the repository:
USER_RESOURCE_PATH: ${Developer:OMIM_PATH}/data
# Features stage only parallelism level. Set to 0 for auto detection.
THREADS_COUNT_FEATURES_STAGE: 0
THREADS_COUNT_FEATURES_STAGE: 56
# Do not change it. This is determined automatically.
NODE_STORAGE: mem
@@ -99,7 +99,7 @@ DIFF_VERSION_DEPTH: 2
[Common]
# Default parallelism level for the most of jobs. Set to 0 for auto detection.
THREADS_COUNT: 0
THREADS_COUNT: 52
[Stats]