diff --git a/CHANGELOG.md b/CHANGELOG.md index 6141b9d..56d4949 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,12 +8,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Added - Canadian prefix info to the `?prefixes` command. - `?worksplit` command. +- Maps for CQ Zones, ITU Zones, ITU Regions, and Canadian prefixes. +- Attribution for all maps. +### Changed +- ARRL/RAC section maps to include all current ARRL/RAC sections. ## [2.3.2] - 2020-07-22 ### Fixed - Dependency issues + ## [2.3.1] - 2020-04-02 ### Fixed - Wordlist containing innappropriate words. diff --git a/dev-notes/image-processing.md b/dev-notes/image-processing.md new file mode 100644 index 0000000..1b7fa1e --- /dev/null +++ b/dev-notes/image-processing.md @@ -0,0 +1,4 @@ +# Image processing instructions + +For images like bandplans and maps, first resize the image to a reasonable size, then run `pngquant --quality 30-40` on the images. +Do not apply that to non-flat images like actual pictures. diff --git a/dev-notes/metadata-format.md b/dev-notes/metadata-format.md index fe7cb57..1b7e281 100644 --- a/dev-notes/metadata-format.md +++ b/dev-notes/metadata-format.md @@ -20,5 +20,5 @@ Used for grouping info such as name, description, source, and such. | `name` | The name of the file. | `Canada`, `ITU Zones` | | `long_name` | The long name (title) of the file. | `Worldwide map of ITU Zones` | | `description` | The description accompanying the file. | `Full radio allocations chart for all services.` | -| `source` | The source of the file. | `Instituto Federal de Telecomunicaciones (IFT)` | +| `source` | The source of the file. | `Instituto Federal de Telecomunicaciones (IFT)` | | `emoji` | A Unicode emoji associated with the file. | `πŸ“»`, `πŸ‡¨πŸ‡¦` | diff --git a/resources/img/maps/arrl-rac.png b/resources/img/maps/arrl-rac.png index 2d21664..a8523f6 100644 Binary files a/resources/img/maps/arrl-rac.png and b/resources/img/maps/arrl-rac.png differ diff --git a/resources/img/maps/ca.png b/resources/img/maps/ca.png new file mode 100644 index 0000000..c89d36e Binary files /dev/null and b/resources/img/maps/ca.png differ diff --git a/resources/img/maps/cq-zones.png b/resources/img/maps/cq-zones.png new file mode 100644 index 0000000..ba6c042 Binary files /dev/null and b/resources/img/maps/cq-zones.png differ diff --git a/resources/img/maps/itu-regions.png b/resources/img/maps/itu-regions.png new file mode 100644 index 0000000..7adac4c Binary files /dev/null and b/resources/img/maps/itu-regions.png differ diff --git a/resources/img/maps/itu-zones.png b/resources/img/maps/itu-zones.png new file mode 100644 index 0000000..9905b90 Binary files /dev/null and b/resources/img/maps/itu-zones.png differ diff --git a/resources/img/maps/meta.json b/resources/img/maps/meta.json index 287b23e..14452ea 100644 --- a/resources/img/maps/meta.json +++ b/resources/img/maps/meta.json @@ -1,6 +1,10 @@ { - "arrl": ["arrl-rac.png", "ARRL Sections", "ARRL Sections", "", "", "πŸ‡ΊπŸ‡Έ"], - "rac": ["arrl-rac.png", "RAC Sections", "RAC Sections", "", "", "πŸ‡¨πŸ‡¦"], + "arrl": ["arrl-rac.png", "ARRL Sections", "ARRL Sections", "", "[EI8IC](https://www.mapability.com/ei8ic/maps/maps.php)", "πŸ‡ΊπŸ‡Έ"], + "rac": ["arrl-rac.png", "RAC Sections", "RAC Sections", "", "[EI8IC](https://www.mapability.com/ei8ic/maps/maps.php)", "πŸ‡¨πŸ‡¦"], "cn": ["cn.png", "China's Prefixes", "Map of prefix regions in China", "", "CRAC", "πŸ‡¨πŸ‡³"], - "us": ["us.png", "USA's Prefixes", "Map of prefix regions in the USA", "", "*[ARRL WAS Map](https://www.arrl.org/was-forms)* [[PDF]](http://www.arrl.org/files/file/Awards%20Application%20Forms/WASmap_Color.pdf)", "πŸ‡ΊπŸ‡Έ"] + "us": ["us.png", "USA's Prefixes", "Map of prefix regions in the USA", "", "*[ARRL WAS Map](https://www.arrl.org/was-forms)* [[PDF]](http://www.arrl.org/files/file/Awards%20Application%20Forms/WASmap_Color.pdf)", "πŸ‡ΊπŸ‡Έ"], + "ca": ["ca.png", "Canada's Prefixes", "Map of the prefix regions in Canada", "", "[Denelson83 (Wikimedia Commons)](https://commons.wikimedia.org/wiki/File:Amateur_radio_prefixes_in_Canada.svg)", "πŸ‡¨πŸ‡¦"], + "ituz": ["itu-zones.png", "ITU Zones", "ITU Zones", "", "[EI8IC](https://www.mapability.com/ei8ic/maps/maps.php)", "πŸ‡ΊπŸ‡³"], + "itur": ["itu-regions.png", "ITU Regions", "ITU Regions", "These are also used by the IARU for their regions.", "[EI8IC](https://www.mapability.com/ei8ic/maps/maps.php)", "πŸ‡ΊπŸ‡³"], + "cq": ["cq-zones.png", "CQ Zones", "CQ Zones", "These are used for the CQWW contest.", "[EI8IC](https://www.mapability.com/ei8ic/maps/maps.php)", "🌐"] }