The HOT Tasking Manager coordinates large-scale OpenStreetMap editing campaigns by dividing a project’s area of interest into discrete tasks that mappers claim and work on independently. A two-phase workflow — mapping followed by validation — ensures that every task is both contributed and quality-checked before a project reaches completion. This page explains each phase in detail, from browsing projects to marking a task as fully validated.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/hotosm/tasking-manager/llms.txt
Use this file to discover all available pages before exploring further.
Mapper Levels
Mapper levels are not global roles — they are experience indicators derived from a user’s OSM history. They determine which projects are visible and accessible to a contributor. The level thresholds are configured via environment variables inbackend/config.py:
| Level | Changeset Threshold | Environment Variable |
|---|---|---|
| Beginner | Fewer than TM_MAPPER_LEVEL_INTERMEDIATE changesets | — |
| Intermediate | TM_MAPPER_LEVEL_INTERMEDIATE to TM_MAPPER_LEVEL_ADVANCED changesets | TM_MAPPER_LEVEL_INTERMEDIATE (default: 250) |
| Advanced | TM_MAPPER_LEVEL_ADVANCED or more changesets | TM_MAPPER_LEVEL_ADVANCED (default: 500) |
EASY, MODERATE, or CHALLENGING). The platform uses mapping levels to surface appropriate projects to each contributor.
Supported Editors
Tasking Manager can open tasks directly in any of the following OSM editors:| Editor | Type | Notes |
|---|---|---|
| iD | Web (browser-based) | Default editor; beginner-friendly |
| Rapid | Web (browser-based) | AI-assisted mapping powered by Meta |
| JOSM | Desktop | Advanced editor; requires local installation |
| Potlatch 2 | Web (Flash-based) | Legacy editor |
| Custom | Configurable | Project managers can specify a custom editor URL |
mapping_editors) and validation (validation_editors). A mapper will only see editor buttons for editors the project manager has enabled.
OSM Changeset Comments
Every edit made through Tasking Manager should carry an OSM changeset comment that includes the project hashtag. Tasking Manager automatically prepends the system-wide default prefix (configured viaTM_DEFAULT_CHANGESET_COMMENT, default: #hot-tm-stage-project) followed by the project ID:
Mapping Workflow
The mapping phase moves a task fromREADY through LOCKED_FOR_MAPPING to MAPPED (or BADIMAGERY).
Browse projects and select a task
Open the Tasking Manager project list and choose a project that matches your mapper level and interests. On the project’s task grid, select any task shown in
READY status (displayed in grey). Priority areas — sub-polygons defined by the project manager — are highlighted to guide where to map first.Lock the task for mapping
Click Map to lock the task. The API call issued is:The task status changes to
LOCKED_FOR_MAPPING and is associated with your user ID. No other mapper can lock the same task until the lock is released. You may only hold one task lock per project at a time.Edit in your chosen OSM editor
Tasking Manager opens the selected editor (iD, Rapid, JOSM, or Potlatch 2) pre-zoomed to the task boundary. Trace the features described in the project instructions — typically buildings, roads, waterways, or land use polygons — and save your edits to OSM with the auto-populated changeset comment.
Submit the task
Return to Tasking Manager and submit the task by calling:with a JSON body specifying the new status:Valid target statuses after mapping are:
MAPPED— Mapping is complete; task is ready for validation.BADIMAGERY— Imagery is too cloudy or low-resolution to map reliably. The task is marked and excluded from the progress percentage.READY— Stop and release the task without any changes (equivalent to abandoning).
Auto-unlock if you step away
If a task lock is held beyond the configured timeout without being submitted, the system automatically releases it and reverts the task to its previous status. The timeout is set by:Auto-unlock runs when any user fetches the project page. Mappers can also manually stop mapping at any time via:
Validation Workflow
Validation is the quality-assurance phase. Validators review mapped tasks, check OSM edits against imagery and tagging standards, and either approve or reject the work.A user cannot validate their own mapped tasks. The system enforces this rule in
ValidatorService._user_can_validate_task — the only exception is for system admins, who can validate any task.Select tasks for validation
On the project map, filter for tasks in
MAPPED status (shown in yellow). Validators can select one or multiple tasks to review in a batch. Tasks in INVALIDATED or BADIMAGERY status can also be selected for re-validation.Lock tasks for validation
Lock the selected tasks with:with a body listing the task IDs:Each task moves to
LOCKED_FOR_VALIDATION. Other users cannot modify the tasks while they are locked.Review OSM edits
Open the locked tasks in your preferred editor (iD, Rapid, or JOSM) and examine the edits made by the mapper. Check that:
- All requested features (e.g., buildings, roads) have been traced within the task boundary.
- Tags are correct (e.g.,
building=yes,highway=residential). - Geometry is accurate relative to the available imagery.
- No features cross the task boundary in ways that create topology errors.
Submit validation decision
Unlock the tasks and record your decision:with a body such as:
VALIDATED— Edits are correct. Task moves toVALIDATEDstatus and is counted in the project’s completion percentage.INVALIDATED— Edits need revision. Task reverts toREADYso another mapper can correct it. The original mapper receives a notification with the validator’s comment.
Stop validation without a decision
If you need to release validation locks without submitting a verdict, call:with a body listing the tasks to reset:This returns each task to its previous status (the state it was in before it was locked for validation — typically
MAPPED, BADIMAGERY, or INVALIDATED).Real-Time Statistics
Tasking Manager integrates with ohsome Now Stats (https://stats.now.ohsome.org) to provide real-time contribution statistics per project, based on the changeset hashtag. Stats include total edits, feature counts, and active contributor numbers — useful for monitoring progress during live mapathon events.
Sandbox and Practice Projects
Projects withsandbox: true connect to a practice OSM database instead of the live openstreetmap.org database. All editor sessions opened from a sandbox project write to this isolated environment. Sandbox projects are ideal for:
- Training new mappers at mapathons
- Testing project configurations before publishing to production
- Allowing contributors to practice difficult feature types without risk
Related Topics
- Projects and Tasks — How projects and task grids are structured
- Teams and Organisations — Restricting who can map or validate a project
- Roles and Permissions — Global and project-level permission model