diff --git a/README.md b/README.md index c78f326..76cb41f 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/maps.h b/maps.h index 7db9b49..a6bb68b 100644 --- a/maps.h +++ b/maps.h @@ -29,8 +29,8 @@ public: const std::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") }, diff --git a/maps/Poland_powiaty.png b/maps/Poland_powiaty.png new file mode 100644 index 0000000..53a9e22 Binary files /dev/null and b/maps/Poland_powiaty.png differ diff --git a/meson.build b/meson.build index ff9a8eb..0d006e6 100644 --- a/meson.build +++ b/meson.build @@ -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: '.')