Skip to content
This repository has been archived by the owner on Oct 5, 2024. It is now read-only.

Feature/new filters #431

Merged
merged 15 commits into from
Oct 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/osmstats.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ buildings_modified | This value is updated by counting the existing buildings mo
pois_added | This value is updated by counting the POIs added by the user in the change file
pois_modified | This value is updated by counting the existing POIs modified by the user in the change file
editor | The editor used, and comes from the changeset
user_id | The user ID, comes from the changeset
uid | The user ID, comes from the changeset
created_at | The timestamp this changeset was created, comes from the changeset
closed_at | The timestamp this changeset was closed, comes from the changeset
verified | Whether this data has been validated
Expand Down Expand Up @@ -128,7 +128,7 @@ level | The badge level

Keyword | Description
--------|------------
user_id | The OSM user ID
uid | The OSM user ID
badge_id | The badge ID
updated_at | The timestamp of the user receiving this badge

Expand Down
4 changes: 2 additions & 2 deletions docs/statistics.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ backend and the frontend, without having modify the database schema.
An example query to count the total number of buildings added by the
user **4321** for a Tasking Manager project **1234** would be this:
> SELECT SUM(CAST(added::hstore->'building' AS DOUBLE precision)) FROM
changesets WHERE 'hotosm-project-1234' = ANY(hashtags) AND user_id=4321;
changesets WHERE 'hotosm-project-1234' = ANY(hashtags) AND uid=4321;

The source is the satellite imagery used for remote mapping.

Expand All @@ -221,7 +221,7 @@ Keyword | Description
--------|------------
id | The ID of this changeset
editor | The editor used for this changeset
user_id | The OSM User ID of the mapper
uid | The OSM User ID of the mapper
created_at | The timestamp when this changes was uploaded
closed_at | The timestamp when this uploaded change completed processing
updated_at | The timestamp when this last had data updated
Expand Down
Loading