Paper2GIS is a participatory GIS / mapping platform that allows participants to draw markup onto a paper map (using a thick black marker pen), which can then be automatically extracted into georeferenced Shapefile or GeoTiff datasets. This is intended to reduce the impact of digital divides on the collection of participatory map data. Paper2GIS was created in 2016 for students to use on a field course in the Indian Himalaya. It has since been used for a range of teaching research applications, some of which are listed in the References section of this document.
The basics of the extraction workflow is illustrated below: you simply generate a map, draw on it and take a photograph, then pass the photograph back to the software to extract it either to a Shapefile or a GeoTiff (Shapefile shown).
Paper2GIS no longer supports map generation using Mapnik Stylesheets, as the Mapnik Python Bindings proved to be increasingly challenging for people to build and appear to have very limited support / development at the moment. Instead, you can now either:
- provide a map image that will be used instead. For now, I would recommend making your map 1084 x 1436 @ 96dpi, and ensuring that there are no very dark areas (e.g. prominent black labels), which may be misinterpreted as markup.
- provide your desired map bounds and Paper2GIS will generate a map for you using OSM map tiles. You control the desired zoom level of the map tiles that it uses, so that you can make sure that the map looks as good as possible. To get an idea, if you go to OpenStreetMap, you can see the zoom level currently visible on the screen by looking at the URL. For example, if the URL is
https://www.openstreetmap.org/#map=18/2.78882/32.29586
, then the zoom level is 18 (the number that immediately follows#map=
). The range is between0
(for the whole world on a single tile) and19
(the finest level of detail).If you are using the OSM tiles option, you can also add an optional hillshade layer courtesy of ESRI. An example of a Paper2GIS map with and without hillshade is given below:
It is always good to thoroughly test a map using the extractor before using a Paper2GIS layout 'in the wild', and remember that the extract
software has loads of settings to help make sure that you get a nice result, so don't panic if you don't get a perfect result first time with the default settings!
Markup can be extracted as-is (marked areas will become polygons), as convex hulls, as centroids (point representing the geometric centroid, irrespoective of whether or not it is contained within the original polygon), as representative points (point that is definitely inside the original polygon) or as polygons from boundaries (where only the boundary is marked on the map, but a filled polygon is extracted using either the exterior interior ring(s)). All extraction can be in the form of either a ShapeFile (.shp
) or GeoTiff (.tif
).
Paper2GIS is accessed via a Python-based CLI package (p2g.py
), the basic functionality is explained with the commands below. On a Mac or Linux machine, these commands can simply be typed into the the Terminal. on Windows, these commands should be run in the Anaconda Prompt.
Note that Terminal / Anaconda Prompt should be pointed to your Paper2GIS
directory (i.e., the directory containing p2g.py
) before running any of these commands. This can be achieved by running the command cd <PATH_TO_Paper2GIS>
(e.g., cd /Users/user/Paper2GIS/
).
To view the basic functionality of p2g.py
, you can type the following command:
python p2g.py -h
Which returns:
usage: Paper2GIS [-h] {generate,extract,test} ...
positional arguments:
{generate,extract,test}
either: 'generate' to make a Paper2GIS layout; 'extract' to retrieve markup from a
photograph of a used Paper2GIS layout; or 'test' to test that a new installation
is functioning
options:
-h, --help show this help message and exit
This explains that there are three possible commands: generate
, extract
and test
. Each es explained in more detail below.
Before running any commands, you must activate the paper2gis
environment:
conda activate paper2gis
Example call with a pre-existing map (1084 x 1436px @ 96dpi
):
python p2g.py generate -a -2462672.600 -b 9330748.585 -c -2393838.600 -d 9421934.585
Example call with a map drawn using OSM tiles:
python p2g.py generate -a -2462672.600 -b 9330748.585 -c -2393838.600 -d 9421934.585 -o test2.png -t True -z 10
Full details:
usage: Paper2GIS generate [-h] -a BL_X -b BL_Y -c TR_X -d TR_Y [-e EPSG] [-r RESOLUTION] [-i INPUT] [-o OUTPUT] [-t {True,False}] [-f FADE] [-z ZOOM] [-s {True,False}] [-sa HILLSHADEALPHA]
options:
-h, --help show this help message and exit
-a BL_X, --bl_x BL_X bottom left x coord
-b BL_Y, --bl_y BL_Y bottom left y coord
-c TR_X, --tr_x TR_X top right x coord
-d TR_Y, --tr_y TR_Y top right y coord
-e EPSG, --epsg EPSG EPSG code for the map CRS
-r RESOLUTION, --resolution RESOLUTION
Resolution of the input map image (dpi)
-i INPUT, --input INPUT
the input map image (file path) - this is ignored if --tiles=True
-o OUTPUT, --output OUTPUT
the output data file (file path)
-t {True,False}, --tiles {True,False}
create a OSM map (ignores --input)
-f FADE, --fade FADE intensity of the white filter over the tiles (0-255)
-z ZOOM, --zoom ZOOM requested zoom level of OSM tiles (necessary if using tiles)
-s {True,False}, --hillshade {True,False}
add hillshade to generated OSM map
-sa HILLSHADEALPHA, --hillshadealpha HILLSHADEALPHA
the alpha value for the hillshade layer
Before running any commands, you must activate the paper2gis
environment:
conda activate paper2gis
Example call for extraction:
python p2g.py extract --reference map.png --target in.jpg -o out.shp --threshold 100 --kernel 0
Full details:
usage: Paper2GIS extract [-h] -r REFERENCE -t TARGET [-o OUTPUT] [-l LOWE_DISTANCE] [-k KERNEL] [-i THRESHOLD] [-m HOMO_MATCHES] [-f FRAME] [-a MIN_AREA] [-x MIN_RATIO] [-b BUFFER] [-cc {True,False}]
[-cx {True,False}] [-cr {True,False}] [-ce {True,False}] [-ci {True,False}] [-d {True,False}]
options:
-h, --help show this help message and exit
-r REFERENCE, --reference REFERENCE
the reference image
-t TARGET, --target TARGET
the target image
-o OUTPUT, --output OUTPUT
the name of the output file
-l LOWE_DISTANCE, --lowe_distance LOWE_DISTANCE
the lowe distance threshold
-k KERNEL, --kernel KERNEL
the size of the kernel used for opening the image
-i THRESHOLD, --threshold THRESHOLD
the threshold the target image
-m HOMO_MATCHES, --homo_matches HOMO_MATCHES
the number of matches required for homography
-f FRAME, --frame FRAME
a frame to add round the image if the map is too close to the edge
-a MIN_AREA, --min_area MIN_AREA
the area below which features will be rejected
-x MIN_RATIO, --min_ratio MIN_RATIO
the ratio (long/short) below which features will be rejected
-b BUFFER, --buffer BUFFER
buffer around the edge used for data cleaning
-cc {True,False}, --convex_hull {True,False}
store convex hulls of extracted shapes?
-cx {True,False}, --centroid {True,False}
store centroids of extracted shapes?
-cr {True,False}, --representative_point {True,False}
store representative points of extracted shapes?
-ce {True,False}, --exterior {True,False}
extract polygons from boundaries by extracting the outer ring
-ci {True,False}, --interior {True,False}
extract polygons from boundaries by extracting the inner rings
-d {True,False}, --demo {True,False}
the output data file
Note that the -cc
, -cx
, -cr
, -ce
and -ci
parameters allow you to control what type of geometry output you get (without these, the markup is converted directly to polygons).
To test than an installation works, the easiest approach is to simply run the following commands in your Terminal (Linux/Mac) or Anaconda Prompt (Windows). This runs a simple test that will complete an image extraction of the markup on test/target.png
and tell you how different it is to the reference version at test/out.png
(the value should be close to 0%).
Note that Terminal / Anaconda Prompt should be pointed to your Paper2GIS
directory (i.e., the directory containing p2g.py
) before running any of these commands. This can be achieved by running the command cd <PATH_TO_Paper2GIS>
(e.g., cd /Users/user/Paper2GIS/
).
conda activate paper2gis
python p2g.py test
Which, if successful, will return something like (the percentage might vary slightly between platforms):
running test image extraction...
Your installation works!
The result is 0.00% different to the reference version.
The below examples use conda to manage the Python installations, but there is no reason that you could not do this with pip
, virtualenv
, or any other similar package management / virtual environment system.
Open Terminal and run through the following steps:
- Install X Code tools:
xcode-select --install
- Install Homebrew:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- Install C library dependencies:
brew install zbar opencv gdal geos imagemagick
-
Set up conda environment (note the need to use
pip
foropencv-contrib-python
):
conda create -n paper2gis -c conda-forge -y python=3 numpy=1.26.4 fiona rasterio pyzbar qrcode pillow cartopy
conda activate paper2gis
pip install opencv-contrib-python
- Get Paper2GIS:
git clone https://github.com/jonnyhuck/Paper2GIS
cd Paper2GIS
At this point, you should have a working installation that you can test with:
python p2g.py test
Which, if successful, will return something like (the percentage might vary slightly between platforms):
running test image extraction...
Your installation works!
The result is 0.00% different to the reference version.
Open Terminal and run through the following steps:
- Install C library dependencies:
sudo apt install libopencv-dev python3-opencv libgdal-dev gdal-bin libzbar0 libgeos3.10.2
-
Set up conda environment (note the need to use
pip
foropencv-contrib-python
):
conda create -n paper2gis -c conda-forge -y python=3 numpy=1.26.4 fiona rasterio pyzbar qrcode pillow cartopy
conda activate paper2gis
pip install opencv-contrib-python
- Get Paper2GIS:
git clone https://github.com/jonnyhuck/Paper2GIS
cd Paper2GIS
At this point, you should have a working installation that you can test with:
python p2g.py test
Which, if successful, will return something like (the percentage might vary slightly between platforms):
running test image extraction...
Your installation works!
The result is 0.00% different to the reference version.
- Install the Visual C++ Redistributable Packages from here. Note that you need to selectthe version that best suits your system:
vcredist_x64.exe
for 64 bit systems,vcredist_x86.exe
for 32 bit systems, orvcredist_arm.exe
for arm-based systems. If you are not sure and are using a relatively 'standard' laptop, it is likely that the one you need will bevcredist_x64.exe
. - Install GEOS and GDAL:
Download the OSGeo4W Network Installer, run it and select Advanced Install → Install from the Internet and the accept the defaults on the Select Root install Directory, Set Local Package Directory and Select your Internet Connection pages. When you are asked to Choose a Download Site, choose the top option in the list.
Now, will be looking at a long list of things that you can install. Expand the Libraries and select the following options by clicking once on the Skip label next to the following (this changes it from Skip to the current version):
- gdal: The GDAL/OGR library and commandline tools
- geos: The GEOS geometry library (Runtime)
Now click Next and the software will present you with a longer list of software that comprises the dependencies of your selected packages. Make sure the Install these packages to meet dependencies box at the bottom is ticked and click Next. The download process will begin and you may be presented with one or more license agreements that you must Agree before proceeding. When the Installation Complete message appears, click Finish.
Now, open Anaconda Command Prompt and run through the remaining steps:
- Create the
paper2gis
Anaconda Environment
conda create -n paper2gis -c conda-forge -y python=3 numpy=1.26.4 fiona rasterio pyzbar qrcode pillow cartopy
conda activate paper2gis
pip install opencv-contrib-python pyzbar
- Get Paper2GIS:
git clone https://github.com/jonnyhuck/Paper2GIS
cd Paper2GIS
At this point, you should have a working installation that you can test with:
python p2g.py test
Which, if successful, will return something like (the percentage might vary slightly between platforms):
running test image extraction...
Your installation works!
The result is 0.00% different to the reference version.
Paper2GIS does not currently have any specific bulk data processing functionality. This can be achieved using a simple shell script, and example of which is given in processor.sh and below:
#!/bin/bash
# this prevents an error for loops that match no file
shopt -s nullglob
# convert any iphone images to jpg and fix spaces in file names
for FILE in *.HEIC
do
FILEJPG=`echo $FILE | sed "s/.HEIC/.jpg/"`
convert -quality 100% $FILE $FILEJPG
rm $FILE
done
# extract shapefiles
for FILE in *.jpg
do
# print name of current file
echo $FILE
# run the extractor
FILENEW=`echo $FILE | sed "s/.jpg/.shp/"`
echo python ../p2g.py extract --reference ../out.png --target $FILE -o $FILENEW
python ../p2g.py extract --reference ../out.png --target $FILE -o $FILENEW
echo ""
done
# unset shell option again
shopt -u nullglob
echo "done."
I am planning to add the following features to Paper2GIS:
- Implement better support for layouts of different sizes and resolutions, including landscape layouts
- Implement batch processing for extraction
- Improved output cleaning for GeoTiff outputs (so that it is the same as for the Shapefile outputs)
- Automated version of the frame function where low number of matches are detected
- Built in handling for HEIC files (from iPhones)
- Handle polygons with holes in when using boundary generator
- Improve handling of boundary polygons that intersect the edge of the map
- The ability to draw maps from custom tile sources
- Automated histogram stretch for input images to improve definition of markup
- A QGIS Plugin to interface with Paper2GIS
If you would like to request a feature, you can do so by opening an Issue.
The software is licensed under the GNU General Public License v3. Bundled with it is the Open Sans font, which is licensed under the Apache License v2.
Paper2GIS has been described in the academic literature (* = open access).