├── .env.example ├── .github └── workflows │ ├── update_data_on_hf.yml │ └── update_notebooks.yml ├── .gitignore ├── .pre-commit-config.yaml ├── AGENTS.md ├── LICENSE ├── README.md ├── archive ├── assets │ ├── background_map.png │ ├── data │ │ ├── all_tags_top_100_changeset_count_monthly.json │ │ ├── all_tags_top_100_changeset_count_total.json │ │ ├── all_tags_top_100_changeset_count_yearly.json │ │ ├── all_tags_top_100_changeset_count_yearly_total.json │ │ ├── all_tags_top_10_changeset_count_monthly.json │ │ ├── all_tags_top_10_changeset_count_monthly_percent.json │ │ ├── bot_avg_edit_count_per_changeset_monthly.json │ │ ├── bot_changeset_count_monthly.json │ │ ├── bot_changeset_count_monthly_accumulated.json │ │ ├── bot_contributor_count_monthly.json │ │ ├── bot_created_by_top_100_edit_count_monthly.json │ │ ├── bot_created_by_top_100_edit_count_total.json │ │ ├── bot_created_by_top_100_edit_count_yearly.json │ │ ├── bot_created_by_top_100_edit_count_yearly_total.json │ │ ├── bot_edit_count_map_total.json │ │ ├── bot_edit_count_monthly.json │ │ ├── bot_edit_count_monthly_accumulated.json │ │ ├── bot_edit_count_monthly_percent.json │ │ ├── bot_new_contributor_count_monthly.json │ │ ├── bot_new_contributor_count_monthly_accumulated.json │ │ ├── corporation_name_to_link.json │ │ ├── corporation_top_100_changeset_count_monthly.json │ │ ├── corporation_top_100_changeset_count_total.json │ │ ├── corporation_top_100_contributor_count_total.json │ │ ├── corporation_top_100_edit_count_monthly.json │ │ ├── corporation_top_100_edit_count_monthly_sum_top_k.json │ │ ├── corporation_top_100_edit_count_monthly_sum_top_k_percent.json │ │ ├── corporation_top_100_edit_count_total.json │ │ ├── corporation_top_100_edit_count_yearly.json │ │ ├── corporation_top_100_edit_count_yearly_total.json │ │ ├── corporation_top_100_new_contributor_count_monthly.json │ │ ├── corporation_top_10_changeset_count_monthly.json │ │ ├── corporation_top_10_changeset_count_monthly_accumulated.json │ │ ├── corporation_top_10_edit_count_maps_total.json │ │ ├── corporation_top_10_edit_count_monthly.json │ │ ├── corporation_top_10_edit_count_monthly_accumulated.json │ │ ├── corporation_top_10_new_contributor_count_monthly.json │ │ ├── corporation_top_10_new_contributor_count_monthly_accumulated.json │ │ ├── corporation_top_10_to_20_edit_count_maps_total.json │ │ ├── corporation_top_20_to_30_edit_count_maps_total.json │ │ ├── corporation_top_30_to_40_edit_count_maps_total.json │ │ ├── created_by_JOSM_all_tags_top_10_changeset_count_monthly.json │ │ ├── created_by_JOSM_all_tags_top_10_changeset_count_monthly_percent.json │ │ ├── created_by_JOSM_all_tags_top_10_changeset_count_total.json │ │ ├── created_by_Potlatch_all_tags_top_10_changeset_count_monthly.json │ │ ├── created_by_Potlatch_all_tags_top_10_changeset_count_monthly_percent.json │ │ ├── created_by_Potlatch_all_tags_top_10_changeset_count_total.json │ │ ├── created_by_Rapid_all_tags_top_10_changeset_count_monthly.json │ │ ├── created_by_Rapid_all_tags_top_10_changeset_count_monthly_percent.json │ │ ├── created_by_Rapid_all_tags_top_10_changeset_count_total.json │ │ ├── created_by_StreetComplete_all_tags_top_10_changeset_count_monthly.json │ │ ├── created_by_StreetComplete_all_tags_top_10_changeset_count_monthly_percent.json │ │ ├── created_by_StreetComplete_all_tags_top_10_changeset_count_total.json │ │ ├── created_by_Vespucci_all_tags_top_10_changeset_count_monthly.json │ │ ├── created_by_Vespucci_all_tags_top_10_changeset_count_monthly_percent.json │ │ ├── created_by_Vespucci_all_tags_top_10_changeset_count_total.json │ │ ├── created_by_device_type_contributor_count_monthly.json │ │ ├── created_by_device_type_edit_count_monthly.json │ │ ├── created_by_device_type_edit_count_monthly_percent.json │ │ ├── created_by_iD_all_tags_top_10_changeset_count_monthly.json │ │ ├── created_by_iD_all_tags_top_10_changeset_count_monthly_percent.json │ │ ├── created_by_iD_all_tags_top_10_changeset_count_total.json │ │ ├── created_by_name_to_link.json │ │ ├── created_by_top_100_changeset_count_monthly.json │ │ ├── created_by_top_100_changeset_count_total.json │ │ ├── created_by_top_100_contributor_count_monthly.json │ │ ├── created_by_top_100_contributor_count_total.json │ │ ├── created_by_top_100_contributor_count_yearly.json │ │ ├── created_by_top_100_contributor_count_yearly_total.json │ │ ├── created_by_top_100_edit_count_monthly.json │ │ ├── created_by_top_100_edit_count_total.json │ │ ├── created_by_top_100_edit_count_yearly.json │ │ ├── created_by_top_100_edit_count_yearly_total.json │ │ ├── created_by_top_100_new_contributor_count_monthly.json │ │ ├── created_by_top_10_changeset_count_monthly.json │ │ ├── created_by_top_10_changeset_count_monthly_accumulated.json │ │ ├── created_by_top_10_contributor_count_first_changeset_monthly.json │ │ ├── created_by_top_10_contributor_count_monthly.json │ │ ├── created_by_top_10_contributor_count_monthly_percent.json │ │ ├── created_by_top_10_edit_count_monthly.json │ │ ├── created_by_top_10_edit_count_monthly_accumulated.json │ │ ├── created_by_top_10_edit_count_monthly_percent.json │ │ ├── created_by_top_10_new_contributor_count_monthly.json │ │ ├── created_by_top_10_new_contributor_count_monthly_accumulated.json │ │ ├── general_changeset_count_monthly.json │ │ ├── general_changeset_count_monthly_accumulated.json │ │ ├── general_contributor_count_attrition_rate_yearly.json │ │ ├── general_contributor_count_attrition_rate_yearly_percent.json │ │ ├── general_contributor_count_monthly.json │ │ ├── general_contributor_count_more_the_k_edits_monthly.json │ │ ├── general_contributors_unique_yearly.json │ │ ├── general_edit_count_map_total.json │ │ ├── general_edit_count_maps_yearly.json │ │ ├── general_edit_count_monthly.json │ │ ├── general_edit_count_monthly_accumulated.json │ │ ├── general_edit_count_per_contributor_median_monthly.json │ │ ├── general_edit_count_per_contributor_median_monthly_since_2010.json │ │ ├── general_edit_count_yearly.json │ │ ├── general_edit_count_yearly_full_years_only.json │ │ ├── general_new_contributor_count_monthly.json │ │ ├── general_new_contributor_count_monthly_accumulated.json │ │ ├── general_no_maps_me_contributor_count_monthly.json │ │ ├── hashtag_edit_count_monthly.json │ │ ├── hashtag_edit_count_monthly_percent.json │ │ ├── hashtag_top_100_changeset_count_monthly.json │ │ ├── hashtag_top_100_changeset_count_total.json │ │ ├── hashtag_top_100_contributor_count_monthly.json │ │ ├── hashtag_top_100_contributor_count_total.json │ │ ├── hashtag_top_100_contributor_count_yearly.json │ │ ├── hashtag_top_100_contributor_count_yearly_total.json │ │ ├── hashtag_top_100_edit_count_monthly.json │ │ ├── hashtag_top_100_edit_count_total.json │ │ ├── hashtag_top_100_edit_count_yearly.json │ │ ├── hashtag_top_100_edit_count_yearly_total.json │ │ ├── hashtag_top_100_new_contributor_count_monthly.json │ │ ├── hashtag_top_10_changeset_count_monthly.json │ │ ├── hashtag_top_10_changeset_count_monthly_accumulated.json │ │ ├── hashtag_top_10_contributor_count_monthly.json │ │ ├── hashtag_top_10_edit_count_maps_total.json │ │ ├── hashtag_top_10_edit_count_monthly.json │ │ ├── hashtag_top_10_edit_count_monthly_accumulated.json │ │ ├── hashtag_top_10_new_contributor_count_monthly.json │ │ ├── hashtag_top_10_new_contributor_count_monthly_accumulated.json │ │ ├── imagery_and_source_name_to_link.json │ │ ├── imagery_edit_count_monthly.json │ │ ├── imagery_edit_count_monthly_percent.json │ │ ├── imagery_top_100_changeset_count_monthly.json │ │ ├── imagery_top_100_changeset_count_total.json │ │ ├── imagery_top_100_contributor_count_monthly.json │ │ ├── imagery_top_100_contributor_count_total.json │ │ ├── imagery_top_100_contributor_count_yearly.json │ │ ├── imagery_top_100_contributor_count_yearly_total.json │ │ ├── imagery_top_100_edit_count_monthly.json │ │ ├── imagery_top_100_edit_count_total.json │ │ ├── imagery_top_100_edit_count_yearly.json │ │ ├── imagery_top_100_edit_count_yearly_total.json │ │ ├── imagery_top_100_new_contributor_count_monthly.json │ │ ├── imagery_top_10_changeset_count_monthly.json │ │ ├── imagery_top_10_changeset_count_monthly_accumulated.json │ │ ├── imagery_top_10_contributor_count_monthly.json │ │ ├── imagery_top_10_edit_count_monthly.json │ │ ├── imagery_top_10_edit_count_monthly_accumulated.json │ │ ├── imagery_top_10_new_contributor_count_monthly.json │ │ ├── imagery_top_10_new_contributor_count_monthly_accumulated.json │ │ ├── source_edit_count_monthly.json │ │ ├── source_edit_count_monthly_percent.json │ │ ├── source_top_100_changeset_count_monthly.json │ │ ├── source_top_100_changeset_count_total.json │ │ ├── source_top_100_contributor_count_monthly.json │ │ ├── source_top_100_contributor_count_total.json │ │ ├── source_top_100_contributor_count_yearly.json │ │ ├── source_top_100_contributor_count_yearly_total.json │ │ ├── source_top_100_edit_count_monthly.json │ │ ├── source_top_100_edit_count_total.json │ │ ├── source_top_100_edit_count_yearly.json │ │ ├── source_top_100_edit_count_yearly_total.json │ │ ├── source_top_100_new_contributor_count_monthly.json │ │ ├── source_top_10_changeset_count_monthly.json │ │ ├── source_top_10_changeset_count_monthly_accumulated.json │ │ ├── source_top_10_contributor_count_monthly.json │ │ ├── source_top_10_edit_count_monthly.json │ │ ├── source_top_10_edit_count_monthly_accumulated.json │ │ ├── source_top_10_new_contributor_count_monthly.json │ │ ├── source_top_10_new_contributor_count_monthly_accumulated.json │ │ ├── streetcomplete_contributor_count_monthly.json │ │ ├── streetcomplete_contributor_count_monthly_percent.json │ │ ├── streetcomplete_edit_count_map_total.json │ │ ├── streetcomplete_edit_count_monthly.json │ │ ├── streetcomplete_edit_count_monthly_percent.json │ │ ├── streetcomplete_top_10_changeset_count_monthly.json │ │ ├── streetcomplete_top_10_changeset_count_monthly_accumulated.json │ │ ├── streetcomplete_top_10_edit_count_monthly.json │ │ ├── streetcomplete_top_10_edit_count_monthly_accumulated.json │ │ ├── streetcomplete_top_10_new_contributor_count_monthly.json │ │ ├── streetcomplete_top_10_new_contributor_count_monthly_accumulated.json │ │ ├── streetcomplete_top_300_changeset_count_monthly.json │ │ ├── streetcomplete_top_300_changeset_count_total.json │ │ ├── streetcomplete_top_300_contributor_count_total.json │ │ ├── streetcomplete_top_300_edit_count_monthly.json │ │ ├── streetcomplete_top_300_edit_count_total.json │ │ ├── streetcomplete_top_300_edit_count_yearly.json │ │ ├── streetcomplete_top_300_edit_count_yearly_total.json │ │ └── streetcomplete_top_300_new_contributor_count_monthly.json │ ├── favicon.ico │ ├── plotly-custom.min.js │ ├── statistic_website.css │ ├── statistic_website.js │ ├── style.css │ ├── table.css │ └── util.js └── index.html ├── config ├── organised_teams.json ├── organised_teams_contributors.json ├── replace_rules_created_by.json └── replace_rules_imagery_and_source.json ├── favicon.ico ├── index.html ├── notebooks ├── 01_general.ipynb ├── 02_editing_software.ipynb ├── 03_organised_teams.ipynb ├── 04_streetcomplete.ipynb ├── 05_hashtags.ipynb ├── 06_bot.ipynb ├── 07_imagery_service.ipynb ├── 08_source.ipynb ├── 09_tags.ipynb ├── 10_notes.ipynb ├── 11_changeset_comments.ipynb ├── notebook.css ├── notebook.js ├── saved_figures │ ├── 01_general │ │ ├── Edit Count 2005.json │ │ ├── Edit Count 2006.json │ │ ├── Edit Count 2007.json │ │ ├── Edit Count 2008.json │ │ ├── Edit Count 2009.json │ │ ├── Edit Count 2010.json │ │ ├── Edit Count 2011.json │ │ ├── Edit Count 2012.json │ │ ├── Edit Count 2013.json │ │ ├── Edit Count 2014.json │ │ ├── Edit Count 2015.json │ │ ├── Edit Count 2016.json │ │ ├── Edit Count 2017.json │ │ ├── Edit Count 2018.json │ │ ├── Edit Count 2019.json │ │ ├── Edit Count 2020.json │ │ ├── Edit Count 2021.json │ │ ├── Edit Count 2022.json │ │ ├── Edit Count 2023.json │ │ ├── Edit Count 2024.json │ │ └── Edit Count 2025.json │ └── 05_hashtags │ │ ├── Edit Distribution - adt.json │ │ ├── Edit Distribution - india.json │ │ ├── Edit Distribution - kaart.json │ │ ├── Edit Distribution - maproulette.json │ │ ├── Edit Distribution - mapwithai.json │ │ ├── Edit Distribution - missingmaps.json │ │ ├── Edit Distribution - msf.json │ │ ├── Edit Distribution - redcross.json │ │ ├── Edit Distribution - tanzania.json │ │ └── Edit Distribution - youthmappers.json └── util.py ├── pyproject.toml ├── scripts ├── changeset_osm_to_raw_data.py ├── changeset_raw_data_to_data.py ├── html_templates │ ├── base.html │ ├── duckdb_wasm_llm_hints.md │ ├── footer.html │ ├── header.html │ └── interactive.html ├── notebook_to_html.py ├── notes_osm_to_data.py ├── save_organised_teams.py └── upload_data_to_huggingface.sh ├── stats ├── 01_general.html ├── 02_editing_software.html ├── 03_organised_teams.html ├── 04_streetcomplete.html ├── 05_hashtags.html ├── 06_bot.html ├── 07_imagery_service.html ├── 08_source.html ├── 09_tags.html ├── 10_notes.html ├── 11_changeset_comments.html ├── 12_interactive.html ├── background_map.png └── notebook_styles.css ├── tests └── test_changeset_raw_data_to_data.py ├── total_global_edit_count_map.png └── uv.lock /.env.example: -------------------------------------------------------------------------------- 1 | HF_TOKEN="huggingface token to upload the dataset" -------------------------------------------------------------------------------- /.github/workflows/update_data_on_hf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/.github/workflows/update_data_on_hf.yml -------------------------------------------------------------------------------- /.github/workflows/update_notebooks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/.github/workflows/update_notebooks.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/AGENTS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/README.md -------------------------------------------------------------------------------- /archive/assets/background_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/background_map.png -------------------------------------------------------------------------------- /archive/assets/data/all_tags_top_100_changeset_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/all_tags_top_100_changeset_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/all_tags_top_100_changeset_count_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/all_tags_top_100_changeset_count_total.json -------------------------------------------------------------------------------- /archive/assets/data/all_tags_top_100_changeset_count_yearly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/all_tags_top_100_changeset_count_yearly.json -------------------------------------------------------------------------------- /archive/assets/data/all_tags_top_100_changeset_count_yearly_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/all_tags_top_100_changeset_count_yearly_total.json -------------------------------------------------------------------------------- /archive/assets/data/all_tags_top_10_changeset_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/all_tags_top_10_changeset_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/all_tags_top_10_changeset_count_monthly_percent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/all_tags_top_10_changeset_count_monthly_percent.json -------------------------------------------------------------------------------- /archive/assets/data/bot_avg_edit_count_per_changeset_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/bot_avg_edit_count_per_changeset_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/bot_changeset_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/bot_changeset_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/bot_changeset_count_monthly_accumulated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/bot_changeset_count_monthly_accumulated.json -------------------------------------------------------------------------------- /archive/assets/data/bot_contributor_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/bot_contributor_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/bot_created_by_top_100_edit_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/bot_created_by_top_100_edit_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/bot_created_by_top_100_edit_count_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/bot_created_by_top_100_edit_count_total.json -------------------------------------------------------------------------------- /archive/assets/data/bot_created_by_top_100_edit_count_yearly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/bot_created_by_top_100_edit_count_yearly.json -------------------------------------------------------------------------------- /archive/assets/data/bot_created_by_top_100_edit_count_yearly_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/bot_created_by_top_100_edit_count_yearly_total.json -------------------------------------------------------------------------------- /archive/assets/data/bot_edit_count_map_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/bot_edit_count_map_total.json -------------------------------------------------------------------------------- /archive/assets/data/bot_edit_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/bot_edit_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/bot_edit_count_monthly_accumulated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/bot_edit_count_monthly_accumulated.json -------------------------------------------------------------------------------- /archive/assets/data/bot_edit_count_monthly_percent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/bot_edit_count_monthly_percent.json -------------------------------------------------------------------------------- /archive/assets/data/bot_new_contributor_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/bot_new_contributor_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/bot_new_contributor_count_monthly_accumulated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/bot_new_contributor_count_monthly_accumulated.json -------------------------------------------------------------------------------- /archive/assets/data/corporation_name_to_link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/corporation_name_to_link.json -------------------------------------------------------------------------------- /archive/assets/data/corporation_top_100_changeset_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/corporation_top_100_changeset_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/corporation_top_100_changeset_count_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/corporation_top_100_changeset_count_total.json -------------------------------------------------------------------------------- /archive/assets/data/corporation_top_100_contributor_count_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/corporation_top_100_contributor_count_total.json -------------------------------------------------------------------------------- /archive/assets/data/corporation_top_100_edit_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/corporation_top_100_edit_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/corporation_top_100_edit_count_monthly_sum_top_k.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/corporation_top_100_edit_count_monthly_sum_top_k.json -------------------------------------------------------------------------------- /archive/assets/data/corporation_top_100_edit_count_monthly_sum_top_k_percent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/corporation_top_100_edit_count_monthly_sum_top_k_percent.json -------------------------------------------------------------------------------- /archive/assets/data/corporation_top_100_edit_count_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/corporation_top_100_edit_count_total.json -------------------------------------------------------------------------------- /archive/assets/data/corporation_top_100_edit_count_yearly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/corporation_top_100_edit_count_yearly.json -------------------------------------------------------------------------------- /archive/assets/data/corporation_top_100_edit_count_yearly_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/corporation_top_100_edit_count_yearly_total.json -------------------------------------------------------------------------------- /archive/assets/data/corporation_top_100_new_contributor_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/corporation_top_100_new_contributor_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/corporation_top_10_changeset_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/corporation_top_10_changeset_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/corporation_top_10_changeset_count_monthly_accumulated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/corporation_top_10_changeset_count_monthly_accumulated.json -------------------------------------------------------------------------------- /archive/assets/data/corporation_top_10_edit_count_maps_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/corporation_top_10_edit_count_maps_total.json -------------------------------------------------------------------------------- /archive/assets/data/corporation_top_10_edit_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/corporation_top_10_edit_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/corporation_top_10_edit_count_monthly_accumulated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/corporation_top_10_edit_count_monthly_accumulated.json -------------------------------------------------------------------------------- /archive/assets/data/corporation_top_10_new_contributor_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/corporation_top_10_new_contributor_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/corporation_top_10_new_contributor_count_monthly_accumulated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/corporation_top_10_new_contributor_count_monthly_accumulated.json -------------------------------------------------------------------------------- /archive/assets/data/corporation_top_10_to_20_edit_count_maps_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/corporation_top_10_to_20_edit_count_maps_total.json -------------------------------------------------------------------------------- /archive/assets/data/corporation_top_20_to_30_edit_count_maps_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/corporation_top_20_to_30_edit_count_maps_total.json -------------------------------------------------------------------------------- /archive/assets/data/corporation_top_30_to_40_edit_count_maps_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/corporation_top_30_to_40_edit_count_maps_total.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_JOSM_all_tags_top_10_changeset_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_JOSM_all_tags_top_10_changeset_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_JOSM_all_tags_top_10_changeset_count_monthly_percent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_JOSM_all_tags_top_10_changeset_count_monthly_percent.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_JOSM_all_tags_top_10_changeset_count_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_JOSM_all_tags_top_10_changeset_count_total.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_Potlatch_all_tags_top_10_changeset_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_Potlatch_all_tags_top_10_changeset_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_Potlatch_all_tags_top_10_changeset_count_monthly_percent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_Potlatch_all_tags_top_10_changeset_count_monthly_percent.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_Potlatch_all_tags_top_10_changeset_count_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_Potlatch_all_tags_top_10_changeset_count_total.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_Rapid_all_tags_top_10_changeset_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_Rapid_all_tags_top_10_changeset_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_Rapid_all_tags_top_10_changeset_count_monthly_percent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_Rapid_all_tags_top_10_changeset_count_monthly_percent.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_Rapid_all_tags_top_10_changeset_count_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_Rapid_all_tags_top_10_changeset_count_total.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_StreetComplete_all_tags_top_10_changeset_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_StreetComplete_all_tags_top_10_changeset_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_StreetComplete_all_tags_top_10_changeset_count_monthly_percent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_StreetComplete_all_tags_top_10_changeset_count_monthly_percent.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_StreetComplete_all_tags_top_10_changeset_count_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_StreetComplete_all_tags_top_10_changeset_count_total.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_Vespucci_all_tags_top_10_changeset_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_Vespucci_all_tags_top_10_changeset_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_Vespucci_all_tags_top_10_changeset_count_monthly_percent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_Vespucci_all_tags_top_10_changeset_count_monthly_percent.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_Vespucci_all_tags_top_10_changeset_count_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_Vespucci_all_tags_top_10_changeset_count_total.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_device_type_contributor_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_device_type_contributor_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_device_type_edit_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_device_type_edit_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_device_type_edit_count_monthly_percent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_device_type_edit_count_monthly_percent.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_iD_all_tags_top_10_changeset_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_iD_all_tags_top_10_changeset_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_iD_all_tags_top_10_changeset_count_monthly_percent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_iD_all_tags_top_10_changeset_count_monthly_percent.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_iD_all_tags_top_10_changeset_count_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_iD_all_tags_top_10_changeset_count_total.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_name_to_link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_name_to_link.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_top_100_changeset_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_top_100_changeset_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_top_100_changeset_count_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_top_100_changeset_count_total.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_top_100_contributor_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_top_100_contributor_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_top_100_contributor_count_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_top_100_contributor_count_total.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_top_100_contributor_count_yearly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_top_100_contributor_count_yearly.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_top_100_contributor_count_yearly_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_top_100_contributor_count_yearly_total.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_top_100_edit_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_top_100_edit_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_top_100_edit_count_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_top_100_edit_count_total.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_top_100_edit_count_yearly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_top_100_edit_count_yearly.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_top_100_edit_count_yearly_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_top_100_edit_count_yearly_total.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_top_100_new_contributor_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_top_100_new_contributor_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_top_10_changeset_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_top_10_changeset_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_top_10_changeset_count_monthly_accumulated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_top_10_changeset_count_monthly_accumulated.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_top_10_contributor_count_first_changeset_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_top_10_contributor_count_first_changeset_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_top_10_contributor_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_top_10_contributor_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_top_10_contributor_count_monthly_percent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_top_10_contributor_count_monthly_percent.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_top_10_edit_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_top_10_edit_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_top_10_edit_count_monthly_accumulated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_top_10_edit_count_monthly_accumulated.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_top_10_edit_count_monthly_percent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_top_10_edit_count_monthly_percent.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_top_10_new_contributor_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_top_10_new_contributor_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/created_by_top_10_new_contributor_count_monthly_accumulated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/created_by_top_10_new_contributor_count_monthly_accumulated.json -------------------------------------------------------------------------------- /archive/assets/data/general_changeset_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/general_changeset_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/general_changeset_count_monthly_accumulated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/general_changeset_count_monthly_accumulated.json -------------------------------------------------------------------------------- /archive/assets/data/general_contributor_count_attrition_rate_yearly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/general_contributor_count_attrition_rate_yearly.json -------------------------------------------------------------------------------- /archive/assets/data/general_contributor_count_attrition_rate_yearly_percent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/general_contributor_count_attrition_rate_yearly_percent.json -------------------------------------------------------------------------------- /archive/assets/data/general_contributor_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/general_contributor_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/general_contributor_count_more_the_k_edits_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/general_contributor_count_more_the_k_edits_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/general_contributors_unique_yearly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/general_contributors_unique_yearly.json -------------------------------------------------------------------------------- /archive/assets/data/general_edit_count_map_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/general_edit_count_map_total.json -------------------------------------------------------------------------------- /archive/assets/data/general_edit_count_maps_yearly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/general_edit_count_maps_yearly.json -------------------------------------------------------------------------------- /archive/assets/data/general_edit_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/general_edit_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/general_edit_count_monthly_accumulated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/general_edit_count_monthly_accumulated.json -------------------------------------------------------------------------------- /archive/assets/data/general_edit_count_per_contributor_median_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/general_edit_count_per_contributor_median_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/general_edit_count_per_contributor_median_monthly_since_2010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/general_edit_count_per_contributor_median_monthly_since_2010.json -------------------------------------------------------------------------------- /archive/assets/data/general_edit_count_yearly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/general_edit_count_yearly.json -------------------------------------------------------------------------------- /archive/assets/data/general_edit_count_yearly_full_years_only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/general_edit_count_yearly_full_years_only.json -------------------------------------------------------------------------------- /archive/assets/data/general_new_contributor_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/general_new_contributor_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/general_new_contributor_count_monthly_accumulated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/general_new_contributor_count_monthly_accumulated.json -------------------------------------------------------------------------------- /archive/assets/data/general_no_maps_me_contributor_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/general_no_maps_me_contributor_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/hashtag_edit_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/hashtag_edit_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/hashtag_edit_count_monthly_percent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/hashtag_edit_count_monthly_percent.json -------------------------------------------------------------------------------- /archive/assets/data/hashtag_top_100_changeset_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/hashtag_top_100_changeset_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/hashtag_top_100_changeset_count_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/hashtag_top_100_changeset_count_total.json -------------------------------------------------------------------------------- /archive/assets/data/hashtag_top_100_contributor_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/hashtag_top_100_contributor_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/hashtag_top_100_contributor_count_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/hashtag_top_100_contributor_count_total.json -------------------------------------------------------------------------------- /archive/assets/data/hashtag_top_100_contributor_count_yearly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/hashtag_top_100_contributor_count_yearly.json -------------------------------------------------------------------------------- /archive/assets/data/hashtag_top_100_contributor_count_yearly_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/hashtag_top_100_contributor_count_yearly_total.json -------------------------------------------------------------------------------- /archive/assets/data/hashtag_top_100_edit_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/hashtag_top_100_edit_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/hashtag_top_100_edit_count_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/hashtag_top_100_edit_count_total.json -------------------------------------------------------------------------------- /archive/assets/data/hashtag_top_100_edit_count_yearly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/hashtag_top_100_edit_count_yearly.json -------------------------------------------------------------------------------- /archive/assets/data/hashtag_top_100_edit_count_yearly_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/hashtag_top_100_edit_count_yearly_total.json -------------------------------------------------------------------------------- /archive/assets/data/hashtag_top_100_new_contributor_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/hashtag_top_100_new_contributor_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/hashtag_top_10_changeset_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/hashtag_top_10_changeset_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/hashtag_top_10_changeset_count_monthly_accumulated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/hashtag_top_10_changeset_count_monthly_accumulated.json -------------------------------------------------------------------------------- /archive/assets/data/hashtag_top_10_contributor_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/hashtag_top_10_contributor_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/hashtag_top_10_edit_count_maps_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/hashtag_top_10_edit_count_maps_total.json -------------------------------------------------------------------------------- /archive/assets/data/hashtag_top_10_edit_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/hashtag_top_10_edit_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/hashtag_top_10_edit_count_monthly_accumulated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/hashtag_top_10_edit_count_monthly_accumulated.json -------------------------------------------------------------------------------- /archive/assets/data/hashtag_top_10_new_contributor_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/hashtag_top_10_new_contributor_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/hashtag_top_10_new_contributor_count_monthly_accumulated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/hashtag_top_10_new_contributor_count_monthly_accumulated.json -------------------------------------------------------------------------------- /archive/assets/data/imagery_and_source_name_to_link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/imagery_and_source_name_to_link.json -------------------------------------------------------------------------------- /archive/assets/data/imagery_edit_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/imagery_edit_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/imagery_edit_count_monthly_percent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/imagery_edit_count_monthly_percent.json -------------------------------------------------------------------------------- /archive/assets/data/imagery_top_100_changeset_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/imagery_top_100_changeset_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/imagery_top_100_changeset_count_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/imagery_top_100_changeset_count_total.json -------------------------------------------------------------------------------- /archive/assets/data/imagery_top_100_contributor_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/imagery_top_100_contributor_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/imagery_top_100_contributor_count_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/imagery_top_100_contributor_count_total.json -------------------------------------------------------------------------------- /archive/assets/data/imagery_top_100_contributor_count_yearly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/imagery_top_100_contributor_count_yearly.json -------------------------------------------------------------------------------- /archive/assets/data/imagery_top_100_contributor_count_yearly_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/imagery_top_100_contributor_count_yearly_total.json -------------------------------------------------------------------------------- /archive/assets/data/imagery_top_100_edit_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/imagery_top_100_edit_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/imagery_top_100_edit_count_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/imagery_top_100_edit_count_total.json -------------------------------------------------------------------------------- /archive/assets/data/imagery_top_100_edit_count_yearly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/imagery_top_100_edit_count_yearly.json -------------------------------------------------------------------------------- /archive/assets/data/imagery_top_100_edit_count_yearly_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/imagery_top_100_edit_count_yearly_total.json -------------------------------------------------------------------------------- /archive/assets/data/imagery_top_100_new_contributor_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/imagery_top_100_new_contributor_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/imagery_top_10_changeset_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/imagery_top_10_changeset_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/imagery_top_10_changeset_count_monthly_accumulated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/imagery_top_10_changeset_count_monthly_accumulated.json -------------------------------------------------------------------------------- /archive/assets/data/imagery_top_10_contributor_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/imagery_top_10_contributor_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/imagery_top_10_edit_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/imagery_top_10_edit_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/imagery_top_10_edit_count_monthly_accumulated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/imagery_top_10_edit_count_monthly_accumulated.json -------------------------------------------------------------------------------- /archive/assets/data/imagery_top_10_new_contributor_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/imagery_top_10_new_contributor_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/imagery_top_10_new_contributor_count_monthly_accumulated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/imagery_top_10_new_contributor_count_monthly_accumulated.json -------------------------------------------------------------------------------- /archive/assets/data/source_edit_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/source_edit_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/source_edit_count_monthly_percent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/source_edit_count_monthly_percent.json -------------------------------------------------------------------------------- /archive/assets/data/source_top_100_changeset_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/source_top_100_changeset_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/source_top_100_changeset_count_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/source_top_100_changeset_count_total.json -------------------------------------------------------------------------------- /archive/assets/data/source_top_100_contributor_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/source_top_100_contributor_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/source_top_100_contributor_count_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/source_top_100_contributor_count_total.json -------------------------------------------------------------------------------- /archive/assets/data/source_top_100_contributor_count_yearly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/source_top_100_contributor_count_yearly.json -------------------------------------------------------------------------------- /archive/assets/data/source_top_100_contributor_count_yearly_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/source_top_100_contributor_count_yearly_total.json -------------------------------------------------------------------------------- /archive/assets/data/source_top_100_edit_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/source_top_100_edit_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/source_top_100_edit_count_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/source_top_100_edit_count_total.json -------------------------------------------------------------------------------- /archive/assets/data/source_top_100_edit_count_yearly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/source_top_100_edit_count_yearly.json -------------------------------------------------------------------------------- /archive/assets/data/source_top_100_edit_count_yearly_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/source_top_100_edit_count_yearly_total.json -------------------------------------------------------------------------------- /archive/assets/data/source_top_100_new_contributor_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/source_top_100_new_contributor_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/source_top_10_changeset_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/source_top_10_changeset_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/source_top_10_changeset_count_monthly_accumulated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/source_top_10_changeset_count_monthly_accumulated.json -------------------------------------------------------------------------------- /archive/assets/data/source_top_10_contributor_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/source_top_10_contributor_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/source_top_10_edit_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/source_top_10_edit_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/source_top_10_edit_count_monthly_accumulated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/source_top_10_edit_count_monthly_accumulated.json -------------------------------------------------------------------------------- /archive/assets/data/source_top_10_new_contributor_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/source_top_10_new_contributor_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/source_top_10_new_contributor_count_monthly_accumulated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/source_top_10_new_contributor_count_monthly_accumulated.json -------------------------------------------------------------------------------- /archive/assets/data/streetcomplete_contributor_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/streetcomplete_contributor_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/streetcomplete_contributor_count_monthly_percent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/streetcomplete_contributor_count_monthly_percent.json -------------------------------------------------------------------------------- /archive/assets/data/streetcomplete_edit_count_map_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/streetcomplete_edit_count_map_total.json -------------------------------------------------------------------------------- /archive/assets/data/streetcomplete_edit_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/streetcomplete_edit_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/streetcomplete_edit_count_monthly_percent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/streetcomplete_edit_count_monthly_percent.json -------------------------------------------------------------------------------- /archive/assets/data/streetcomplete_top_10_changeset_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/streetcomplete_top_10_changeset_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/streetcomplete_top_10_changeset_count_monthly_accumulated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/streetcomplete_top_10_changeset_count_monthly_accumulated.json -------------------------------------------------------------------------------- /archive/assets/data/streetcomplete_top_10_edit_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/streetcomplete_top_10_edit_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/streetcomplete_top_10_edit_count_monthly_accumulated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/streetcomplete_top_10_edit_count_monthly_accumulated.json -------------------------------------------------------------------------------- /archive/assets/data/streetcomplete_top_10_new_contributor_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/streetcomplete_top_10_new_contributor_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/streetcomplete_top_10_new_contributor_count_monthly_accumulated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/streetcomplete_top_10_new_contributor_count_monthly_accumulated.json -------------------------------------------------------------------------------- /archive/assets/data/streetcomplete_top_300_changeset_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/streetcomplete_top_300_changeset_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/streetcomplete_top_300_changeset_count_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/streetcomplete_top_300_changeset_count_total.json -------------------------------------------------------------------------------- /archive/assets/data/streetcomplete_top_300_contributor_count_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/streetcomplete_top_300_contributor_count_total.json -------------------------------------------------------------------------------- /archive/assets/data/streetcomplete_top_300_edit_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/streetcomplete_top_300_edit_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/data/streetcomplete_top_300_edit_count_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/streetcomplete_top_300_edit_count_total.json -------------------------------------------------------------------------------- /archive/assets/data/streetcomplete_top_300_edit_count_yearly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/streetcomplete_top_300_edit_count_yearly.json -------------------------------------------------------------------------------- /archive/assets/data/streetcomplete_top_300_edit_count_yearly_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/streetcomplete_top_300_edit_count_yearly_total.json -------------------------------------------------------------------------------- /archive/assets/data/streetcomplete_top_300_new_contributor_count_monthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/data/streetcomplete_top_300_new_contributor_count_monthly.json -------------------------------------------------------------------------------- /archive/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/favicon.ico -------------------------------------------------------------------------------- /archive/assets/plotly-custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/plotly-custom.min.js -------------------------------------------------------------------------------- /archive/assets/statistic_website.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/statistic_website.css -------------------------------------------------------------------------------- /archive/assets/statistic_website.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/statistic_website.js -------------------------------------------------------------------------------- /archive/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/style.css -------------------------------------------------------------------------------- /archive/assets/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/table.css -------------------------------------------------------------------------------- /archive/assets/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/assets/util.js -------------------------------------------------------------------------------- /archive/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/archive/index.html -------------------------------------------------------------------------------- /config/organised_teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/config/organised_teams.json -------------------------------------------------------------------------------- /config/organised_teams_contributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/config/organised_teams_contributors.json -------------------------------------------------------------------------------- /config/replace_rules_created_by.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/config/replace_rules_created_by.json -------------------------------------------------------------------------------- /config/replace_rules_imagery_and_source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/config/replace_rules_imagery_and_source.json -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/index.html -------------------------------------------------------------------------------- /notebooks/01_general.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/01_general.ipynb -------------------------------------------------------------------------------- /notebooks/02_editing_software.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/02_editing_software.ipynb -------------------------------------------------------------------------------- /notebooks/03_organised_teams.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/03_organised_teams.ipynb -------------------------------------------------------------------------------- /notebooks/04_streetcomplete.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/04_streetcomplete.ipynb -------------------------------------------------------------------------------- /notebooks/05_hashtags.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/05_hashtags.ipynb -------------------------------------------------------------------------------- /notebooks/06_bot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/06_bot.ipynb -------------------------------------------------------------------------------- /notebooks/07_imagery_service.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/07_imagery_service.ipynb -------------------------------------------------------------------------------- /notebooks/08_source.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/08_source.ipynb -------------------------------------------------------------------------------- /notebooks/09_tags.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/09_tags.ipynb -------------------------------------------------------------------------------- /notebooks/10_notes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/10_notes.ipynb -------------------------------------------------------------------------------- /notebooks/11_changeset_comments.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/11_changeset_comments.ipynb -------------------------------------------------------------------------------- /notebooks/notebook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/notebook.css -------------------------------------------------------------------------------- /notebooks/notebook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/notebook.js -------------------------------------------------------------------------------- /notebooks/saved_figures/01_general/Edit Count 2005.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/saved_figures/01_general/Edit Count 2005.json -------------------------------------------------------------------------------- /notebooks/saved_figures/01_general/Edit Count 2006.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/saved_figures/01_general/Edit Count 2006.json -------------------------------------------------------------------------------- /notebooks/saved_figures/01_general/Edit Count 2007.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/saved_figures/01_general/Edit Count 2007.json -------------------------------------------------------------------------------- /notebooks/saved_figures/01_general/Edit Count 2008.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/saved_figures/01_general/Edit Count 2008.json -------------------------------------------------------------------------------- /notebooks/saved_figures/01_general/Edit Count 2009.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/saved_figures/01_general/Edit Count 2009.json -------------------------------------------------------------------------------- /notebooks/saved_figures/01_general/Edit Count 2010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/saved_figures/01_general/Edit Count 2010.json -------------------------------------------------------------------------------- /notebooks/saved_figures/01_general/Edit Count 2011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/saved_figures/01_general/Edit Count 2011.json -------------------------------------------------------------------------------- /notebooks/saved_figures/01_general/Edit Count 2012.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/saved_figures/01_general/Edit Count 2012.json -------------------------------------------------------------------------------- /notebooks/saved_figures/01_general/Edit Count 2013.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/saved_figures/01_general/Edit Count 2013.json -------------------------------------------------------------------------------- /notebooks/saved_figures/01_general/Edit Count 2014.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/saved_figures/01_general/Edit Count 2014.json -------------------------------------------------------------------------------- /notebooks/saved_figures/01_general/Edit Count 2015.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/saved_figures/01_general/Edit Count 2015.json -------------------------------------------------------------------------------- /notebooks/saved_figures/01_general/Edit Count 2016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/saved_figures/01_general/Edit Count 2016.json -------------------------------------------------------------------------------- /notebooks/saved_figures/01_general/Edit Count 2017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/saved_figures/01_general/Edit Count 2017.json -------------------------------------------------------------------------------- /notebooks/saved_figures/01_general/Edit Count 2018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/saved_figures/01_general/Edit Count 2018.json -------------------------------------------------------------------------------- /notebooks/saved_figures/01_general/Edit Count 2019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/saved_figures/01_general/Edit Count 2019.json -------------------------------------------------------------------------------- /notebooks/saved_figures/01_general/Edit Count 2020.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/saved_figures/01_general/Edit Count 2020.json -------------------------------------------------------------------------------- /notebooks/saved_figures/01_general/Edit Count 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/saved_figures/01_general/Edit Count 2021.json -------------------------------------------------------------------------------- /notebooks/saved_figures/01_general/Edit Count 2022.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/saved_figures/01_general/Edit Count 2022.json -------------------------------------------------------------------------------- /notebooks/saved_figures/01_general/Edit Count 2023.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/saved_figures/01_general/Edit Count 2023.json -------------------------------------------------------------------------------- /notebooks/saved_figures/01_general/Edit Count 2024.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/saved_figures/01_general/Edit Count 2024.json -------------------------------------------------------------------------------- /notebooks/saved_figures/01_general/Edit Count 2025.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/saved_figures/01_general/Edit Count 2025.json -------------------------------------------------------------------------------- /notebooks/saved_figures/05_hashtags/Edit Distribution - adt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/saved_figures/05_hashtags/Edit Distribution - adt.json -------------------------------------------------------------------------------- /notebooks/saved_figures/05_hashtags/Edit Distribution - india.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/saved_figures/05_hashtags/Edit Distribution - india.json -------------------------------------------------------------------------------- /notebooks/saved_figures/05_hashtags/Edit Distribution - kaart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/saved_figures/05_hashtags/Edit Distribution - kaart.json -------------------------------------------------------------------------------- /notebooks/saved_figures/05_hashtags/Edit Distribution - maproulette.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/saved_figures/05_hashtags/Edit Distribution - maproulette.json -------------------------------------------------------------------------------- /notebooks/saved_figures/05_hashtags/Edit Distribution - mapwithai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/saved_figures/05_hashtags/Edit Distribution - mapwithai.json -------------------------------------------------------------------------------- /notebooks/saved_figures/05_hashtags/Edit Distribution - missingmaps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/saved_figures/05_hashtags/Edit Distribution - missingmaps.json -------------------------------------------------------------------------------- /notebooks/saved_figures/05_hashtags/Edit Distribution - msf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/saved_figures/05_hashtags/Edit Distribution - msf.json -------------------------------------------------------------------------------- /notebooks/saved_figures/05_hashtags/Edit Distribution - redcross.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/saved_figures/05_hashtags/Edit Distribution - redcross.json -------------------------------------------------------------------------------- /notebooks/saved_figures/05_hashtags/Edit Distribution - tanzania.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/saved_figures/05_hashtags/Edit Distribution - tanzania.json -------------------------------------------------------------------------------- /notebooks/saved_figures/05_hashtags/Edit Distribution - youthmappers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/saved_figures/05_hashtags/Edit Distribution - youthmappers.json -------------------------------------------------------------------------------- /notebooks/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/notebooks/util.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/changeset_osm_to_raw_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/scripts/changeset_osm_to_raw_data.py -------------------------------------------------------------------------------- /scripts/changeset_raw_data_to_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/scripts/changeset_raw_data_to_data.py -------------------------------------------------------------------------------- /scripts/html_templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/scripts/html_templates/base.html -------------------------------------------------------------------------------- /scripts/html_templates/duckdb_wasm_llm_hints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/scripts/html_templates/duckdb_wasm_llm_hints.md -------------------------------------------------------------------------------- /scripts/html_templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/scripts/html_templates/footer.html -------------------------------------------------------------------------------- /scripts/html_templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/scripts/html_templates/header.html -------------------------------------------------------------------------------- /scripts/html_templates/interactive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/scripts/html_templates/interactive.html -------------------------------------------------------------------------------- /scripts/notebook_to_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/scripts/notebook_to_html.py -------------------------------------------------------------------------------- /scripts/notes_osm_to_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/scripts/notes_osm_to_data.py -------------------------------------------------------------------------------- /scripts/save_organised_teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/scripts/save_organised_teams.py -------------------------------------------------------------------------------- /scripts/upload_data_to_huggingface.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/scripts/upload_data_to_huggingface.sh -------------------------------------------------------------------------------- /stats/01_general.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/stats/01_general.html -------------------------------------------------------------------------------- /stats/02_editing_software.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/stats/02_editing_software.html -------------------------------------------------------------------------------- /stats/03_organised_teams.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/stats/03_organised_teams.html -------------------------------------------------------------------------------- /stats/04_streetcomplete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/stats/04_streetcomplete.html -------------------------------------------------------------------------------- /stats/05_hashtags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/stats/05_hashtags.html -------------------------------------------------------------------------------- /stats/06_bot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/stats/06_bot.html -------------------------------------------------------------------------------- /stats/07_imagery_service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/stats/07_imagery_service.html -------------------------------------------------------------------------------- /stats/08_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/stats/08_source.html -------------------------------------------------------------------------------- /stats/09_tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/stats/09_tags.html -------------------------------------------------------------------------------- /stats/10_notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/stats/10_notes.html -------------------------------------------------------------------------------- /stats/11_changeset_comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/stats/11_changeset_comments.html -------------------------------------------------------------------------------- /stats/12_interactive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/stats/12_interactive.html -------------------------------------------------------------------------------- /stats/background_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/stats/background_map.png -------------------------------------------------------------------------------- /stats/notebook_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/stats/notebook_styles.css -------------------------------------------------------------------------------- /tests/test_changeset_raw_data_to_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/tests/test_changeset_raw_data_to_data.py -------------------------------------------------------------------------------- /total_global_edit_count_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/total_global_edit_count_map.png -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piebro/openstreetmap-statistics/HEAD/uv.lock --------------------------------------------------------------------------------