MapCampaigner is aimed at managing and monitoring field data collection campaigns in OpenStreetMap. Campaign managers may use this tool to setup new and review ongoing and completed campaigns. Mappers can find nearby field campaigns to participate in. The result – improved data collection standards and project management.
Join the development:
- Add to the discussion in the issue tracker. Tag issues as Discussion or Ideas to contribute.
- More information and project documentation about the vision and scope in the wiki
- Join online chat on HOT’s Slack community, #mapcampaigner channel.
This project is based on the original work done in the osm-reporter. The project was extended to include a campaign management application. The aim of the campaign management is to allow field campaigns to be tracked and their quality measured.
The OSM user identity is used in this project. All actions are performed as such. A list of authorized admin users is maintained in the settings file.
-
Fork this repo into your github account.
-
Clone the repo (from your github account).
-
Create a OpenStreetMap account
- Go to My Settings > oauth settings > Register your application
- Name: my-mapcampaigner-local
- Main Application URL: http://localhost:5000
- Permissions: read their users preferences
- Keep the consumer key (OAUTH_CONSUMER_KEY) and secret (OAUTH_SECRET) somewhere, you'll need them later.
-
Create an AWS account
-
Create a S3 bucket in whatever region you like
-
Must be a public bucket.
-
Edit CORS configuration:
<?xml version="1.0" encoding="UTF-8"?> <CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/"> <CORSRule> <AllowedOrigin>*</AllowedOrigin> <AllowedMethod>GET</AllowedMethod> <AllowedMethod>HEAD</AllowedMethod> <MaxAgeSeconds>3000</MaxAgeSeconds> <AllowedHeader>Authorization</AllowedHeader> </CORSRule> </CORSConfiguration>
-
In flask_project/app_config.py, in DevelopmentConfig, add your bucket name.
-
Upload folders (in bucket) "surveys", "campaigns" and "thumbnail" at the root of your project. Your S3 structure should look like:
campaigns/ surveys/ buildings ... thumbnail/
-
-
Get your AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY: Go to your AWS account > My Security Credentials > Access keys
-
Create a file on your machine ~/.aws/credentials
[default] aws_access_key_id=YOUR_AWS_ACCESS_KEY_ID aws_secret_access_key=YOUR_AWS_SECRET_ACCESS_KEY region=YOUR_REGION
-
Create a virtualenv:
$> virtualenv venv $> source venv/bin/activate
-
Install requirements:
$> pip install -r requirements.txt
-
Create a file: flask_project/secret.py
SECRET_KEY = 'YOUR_SECRET_KEY' OAUTH_CONSUMER_KEY = 'YOUR_OAUTH_CONSUMER_KEY' OAUTH_SECRET = 'YOUR_OAUTH_SECRET'
-
Go to the AWS Console > IAM console > Create a policy
{ "Version": "2012-10-17", "Statement": [ { "Sid": "Stmt1464440182000", "Effect": "Allow", "Action": [ "logs:CreateLogGroup", "logs:CreateLogStream", "logs:PutLogEvents", "lambda:InvokeAsync", "lambda:InvokeFunction" ], "Resource": [ "arn:aws:logs:*:*:*", "*" ] } ] }
-
Stay in the IAM console > Create a Role
- Service that will use this role: Lambda
- Policies:
- the one you just created
- AmazonS3FullAccess
- AWSLambdaFullAccess
- AWSLambdaRole
- Role name: whatever name you like
- Role description: role to execute MapCampaigner lambda functions
- Keep the role ARN (arn:aws:iam:::.....)
-
Edit ./travis/deploy_lambda_functions.py
CONFIG = { 'local': { 'env': { 's3_bucket': 'YOUR_BUCKET', 'env': 'local' }, 'role': 'YOUR_ROLE_IN_ARN_FORMAT' }, ...
-
Download and install Docker
-
Deploy the lambda functions
$> python ./.travis/deploy_lambda_functions.py
-
Run the server:
$> python flask_project/runserver.py
-
Open your browser and visit localhost:5000
-
Log in
- It should open an OpenStreetMap popup
- If not, then you didn't set up properly OAUTH_CONSUMER_KEY and OAUTH_SECRET
-
Create a campaign
Authorized users may start a campaign. This is done by selecting the “Add Campaign” button on the Landing Page.
A campaign has standard attributes, such as boundaries, start and end dates as well as name and description. The campaign progress is obtained through insights functions, which are broken up into classes. These insights functions take data from a data source, such as the OSM reporter, and convert them to quantifiable insights. The campaign manager selects which insights functions best meet the requirements of this campaign.
The Campaign Dashboard Page shows the default attributes as well as the UI component of the Insights Function. Alongside the UI component each of the insights functions provide additional details on how these insights where obtained. These additional details may are shown if the user explodes the hyperlink with this information.
A campaign is edited in the same view as it is created. As such this is not a very different experience.
The insights functions are clearly understandable english sentences, which highlight an analytical goal. Some additional parameters may be given, but this is made clear when selecting this function. Under the hood there are two parts to this the first is the Data Provider, against which an Insights Function can be registered and the Insights Function itself.
The Data Provider is an abstraction around the data source. External resource querying is handled here. The prime example is the OSM Reporter Function Provider, which provides the feature list over a given time period for a specific area. This data is aggregated here and passed on to the relevant insights functions.
The Insights Function takes data from a Data Provider and performs a calculation over this data. The output of this function is a UI component, for displaying on the dashboard, a detailed description of how this data was obtained and, where relevant, a set of links on where to view/correct these.
See LICENSE.md file.
Built by Kartoza:
@cchristelis @ann26 @meomancer @dimasciput @MariaSolovyeva @pierrealixt
Based on previous osm-reporter work by:
Tim Sutton - tim@linfiniti.com Yohan Boniface - yb@enix.org Sun Ning - sunng@about.me