Issue #63: add ghost icons.

Add keys with lifecycle prefixes to MapCSS with ghost icons (icons with
low opacity).
This commit is contained in:
Sergey Vartanov 2021-07-27 03:29:17 +03:00
parent 071164efe0
commit afaeb6f37a
3 changed files with 94 additions and 40 deletions

View file

@ -23,6 +23,18 @@ KILOMETERS_PATTERN = re.compile("^(?P<value>\\d*\\.?\\d*)\\s*km$")
MILES_PATTERN = re.compile("^(?P<value>\\d*\\.?\\d*)\\s*mi$")
STAGES_OF_DECAY: List[str] = [
"disused",
"abandoned",
"ruins",
"demolished",
"removed",
"razed",
"destroyed",
"was", # is not actually a stage of decay
]
def parse_float(string: str) -> Optional[float]:
"""
Parse string representation of a float or integer value.