A searchable repository of wildlife icons.
- Search icons by name or keywords
- Filter by source (SMART, EarthRanger, Aerial, etc)
- Download selected icons as ZIP files
icons/- Contains all icon files organized by sourceicons.json- Metadata file containing icon informationimport_icons.py- Script to automatically generate icons.json from the icons directoryscientific_names.txt- Lookup table for scientific names to common names
- Add your icon files to the appropriate subdirectory in the
icons/folder - Run the import script:
python import_icons.py
- The script will automatically generate entries in
icons.jsonfor all new icons
Note: Files that start with a dot (.) will be automatically renamed by removing the leading dot to ensure compatibility with GitHub Pages.
- Add your icon file to the
iconsdirectory - Manually update the
icons.jsonfile with the icon's metadata:{ "filename": "path/to/icon.svg", "key": "normalized_key", "source": "SMART", "name": "Icon Name", "tags": ["tag1", "tag2"] }
The readonly property allows you to preserve manually edited icon entries when running the import script.
readonly: true- The import script will preserve this entry exactly as it is, even if the file changesreadonly: falseor not specified - The import script will regenerate this entry based on the current file
- Run the import script to generate initial entries
- Manually edit specific entries in
icons.json(e.g., improve names, add custom tags) - Add
"readonly": trueto entries you want to preserve:{ "filename": "SMART/color/elephant.svg", "key": "elephant", "source": "SMART", "name": "Custom Name", "tags": ["color", "custom_tag"], "readonly": true } - Run the import script again - readonly entries will be preserved, others will be regenerated
This is a static website that can be served directly from GitHub Pages. No build process is required.
- Clone the repository
- Run a local web server:
python -m http.server 8000
- Open
http://localhost:8000in your browser
This repository includes icons from several conservation technology platforms and organizations:
- SMART - Spatial Monitoring and Reporting Tool for conservation management
- EarthRanger - Real-time conservation software for protected area management
- WCS - Wildlife Conservation Society
We thank these organizations for their contributions to conservation technology and for making their icon libraries available to the broader conservation community.
This project is licensed under the MIT License - see the LICENSE file for details.