A tool for easier automation of OSM edits without causing problems.
Project description
OSM bot abstraction layer is a python package making easier to automate OSM edits without causing problems.
This projects contains code shared between OSM bots, to avoid writing the same functionality more than once.
For example, automated edit may change many objects across large area. In that case it is preferable to split it into multiple edits to avoid country-sized bounding boxes. This logic is available as one of tools included in this project.
Installation
pip install osm-bot-abstraction-layer
Contributing
First contact with any project is crucial, so please report any and all issues in this readme. If you needed tool like this but decided to not use it for some fixable reason - please open an issue!
Reports about how documentation can be improved, bug reports, pull requests are welcomed!
Pull requests are welcomed from smallest typo to big new features - though in case of huge changes it is always a good idea to start from opening an issue.
Purpose
This tool is for people who are at once
- programmers
- experienced OSM editors
- following OSM rules
Anyone who runs automated edits is responsible for all problems that appear, including ones caused bugs in external libraries like this one.
I eliminated all bugs that I noticed, after all I am using this code myself, but some are still lurking. Issue reports and pull requests are welcomed!
Reminder about OSM rules
Note that automated must not be done without consultation or agreement of a community.
See the Import/Guidelines and Automated Edits/Code of Conduct for more information.
Note that automated edits violating rules mentioned above are routinely undone. Undiscussed automatic edits may be reverted by anybody, without any consultation.
And yes, it means that some automated edits that would save time and make perfect sense were rejected and should not be made. It is still preferable over unrestricted automateed edits.
Configuration
Create secret.json
file with content like this:
{
"bot_account": {
"username": "Your OSM username for a bot account",
"password": "?6ofGZm=qr*skR?C,a,1E#k9g8:kE7"
},
"human_account": {
"username": "Your OSM username for a human operated account",
"password": "t?\q~,?m;2l?Dd$cKc`?n9PeSDBjj/"
}
}
Usage example
Following is example based on a real automated edit, following guidelines for the automatic edits.
- Relevant community was asked. In this case it affected Polish mappers, so thread appeared in Polish section of forum.openstreetmap.org. Note that different communities may use different forums or mailing lists as their communication channels.
- In addition Page documenting the automated edit was created at OSM wiki.
- OSM community accepted the edit.
- Following code was created using
run_simple_retagging_task
component. Running this script will result in: - downloading OSM data using Overpass Turbo as specified inobjects_to_consider_query
parameter - iterate over all and objects, ignoring ones where function passed as parameteris_element_editable_checker_function
returns false - for all otheredit_element_function
is applied - changes are automatically split in multiple changesets (if necessary) to avoid too large bounding boxes or too many objects in one edit -changeset_comment
,discussion_url
,osm_wiki_documentation_page
parameter values are used to apply correct changeset tags - Running this code resulted in two edits: #64628901 and #64628951
from osm_bot_abstraction_layer.generic_bot_retagging import run_simple_retagging_task
def edit_element(tags):
if tags.get('amenity') != ("atm"):
return tags
if tags.get('name') == ("bankomat"):
tags.pop('name', None)
if tags.get('name') == ("Bankomat"):
tags.pop('name', None)
return tags
def main():
run_simple_retagging_task(
max_count_of_elements_in_one_changeset=500,
objects_to_consider_query="""
[out:xml][timeout:25000];
area[name="Polska"]->.a;
(
nwr[amenity='atm'][name='Bankomat'](area.a);
nwr[amenity='atm'][name='bankomat'](area.a);
);
out body;
>;
out skel qt;
""",
objects_to_consider_query_storage_file='/media/mateusz/5bfa9dfc-ed86-4d19-ac36-78df1060707c/OSM-cache/overpass/tags_for_retagging_descriptive_atm.osm',
is_in_manual_mode=False,
changeset_comment='usuwanie nazw opisowych z bankomatów (name="bankomat" i name="Bankomat")',
discussion_url='https://forum.openstreetmap.org/viewtopic.php?id=66038',
osm_wiki_documentation_page='https://wiki.openstreetmap.org/wiki/Mechanical_Edits/Mateusz_Konieczny_-_bot_account/fix_descriptive_name_on_ATMs_in_Poland',
edit_element_function=edit_element,
)
main()
Further documentation
Documentation is currently mostly missing - please, open an issue if it would be useful for you (pull requests are also welcomed).
History and etymology
Parts of the project built upon osmapi and provide an additional abstraction layer. This part was initial and was source of the project name.
Project location
This project resides at https://github.com/matkoniecz/osm_bot_abstraction_layer
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file osm_bot_abstraction_layer-0.0.9.tar.gz
.
File metadata
- Download URL: osm_bot_abstraction_layer-0.0.9.tar.gz
- Upload date:
- Size: 15.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 98c0eefff76c63e9ff3f57806fc3428ad5f3c883abd6bef6da032cfaa80053a0 |
|
MD5 | b58554d97d8f48c9e82c783243713e02 |
|
BLAKE2b-256 | ae3a00d1eee694d9e95a311643da625ee14858a0dc47ba8a3b27f91fd340b7e6 |
File details
Details for the file osm_bot_abstraction_layer-0.0.9-py3-none-any.whl
.
File metadata
- Download URL: osm_bot_abstraction_layer-0.0.9-py3-none-any.whl
- Upload date:
- Size: 27.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a148783eb5ad4cf22e03451c3cba0455c1385703038ac2b673b7be997000df73 |
|
MD5 | ad8bccaaee838071b968cf0862ca7f9b |
|
BLAKE2b-256 | 2e41eacae8946164fdea34385ec6ca3046c5021a381960775d3d1468d99cf79d |