Add Poland_powiaty map

sql-rework
Tomasz Golinski 2020-04-01 02:47:14 +02:00
rodzic 8add963fed
commit 77b30761f6
4 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -71,6 +71,8 @@ run `meson build; cd build; ninja`. You might need to set `CXX` variable to poin
* Map of Poland `Poland_relief.png` comes from https://commons.wikimedia.org/wiki/File:Relief_Map_of_Poland.svg and is licensed under CC-BY-SA.
* Map of Poland `Poland_powiaty.png` comes from https://en.wikipedia.org/wiki/File:POLSKA_powiaty.svg and is licensed under CC-BY-SA.
* Map of France `Benelux.png` comes from https://pl.wikipedia.org/wiki/Plik:Benelux_location_map.svg and is licensed under CC-BY-SA.
* Map of France `France.png` comes from https://commons.wikimedia.org/wiki/File:France_location_map.svg and is licensed under CC-BY-SA and GNU FDL.

2
maps.h
Wyświetl plik

@ -29,8 +29,8 @@ public:
const std::map<std::string, Map> maps = {
{ "Poland", Map(1000, 972, 48.7, 55.2, 13.8, 24.5, "Poland.png") },
{ "Poland_relief", Map(1000, 972, 48.7, 55.2, 13.8, 24.5, "Poland_relief.png") },
{ "Poland_powiaty", Map(1406, 1339, 49.00238, 54.833333, 14.12298, 24.14585, "Poland_powiaty.png") },
{ "Poland_big", Map(2560, 2488, 48.7, 55.2, 13.8, 24.5, "Poland_big.png") },
{ "Podlaskie", Map(727, 1024, 52.17, 54.5, 21.45, 24.1, "Podlaskie.png") },
{ "Pomorskie", Map(1000, 785, 53.40, 54.92, 16.65, 19.75, "Pomorskie.png") },
{ "Kujawsko-Pomorskie", Map(1122, 1024, 52.28, 53.83, 17.16, 19.88, "Kujawsko-Pomorskie.png") },

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 295 KiB

Wyświetl plik

@ -24,6 +24,7 @@ executable('geodb', src_db, dependencies : [sqlite_dep, json_dep, curl_dep], ins
configure_file(input: 'maps/Poland.png', output: 'Poland.png', copy: true, install: true, install_dir: '.')
configure_file(input: 'maps/Poland_big.png', output: 'Poland_big.png', copy: true, install: true, install_dir: '.')
configure_file(input: 'maps/Poland_powiaty.png', output: 'Poland_powiaty.png', copy: true, install: true, install_dir: '.')
configure_file(input: 'maps/Poland_relief.png', output: 'Poland_relief.png', copy: true, install: true, install_dir: '.')
configure_file(input: 'maps/Podlaskie.png', output: 'Podlaskie.png', copy: true, install: true, install_dir: '.')