This User Guide will take you through the steps required to generate a location-based dataset that you can see mapped in Peripleo. It assumes that you already have data in tabular format, perhaps in a Google Sheet or an Excel file. The linking of features to other web-resources is explained in the Advanced User Guide.
-
Set Table Headers
- Labels: Each of the records in your table will need to have a label for use in the mapping software: the text in the top row of the column that contains the labels should be
title
,name
, orlabel
. - Location: Ideally, you should provide the location of each of the records in your table (but don't worry if you don't have this information, as it can be added using Locolligo's advanced features). You can provide the location in one of several ways:
- Coordinates in two separate columns (headed
longitude
,long
,lng
,easting
,westing
, orX
andlatitude
,lat
,northing
,southing
, orY
). - Coordinates in a single column headed
coordinates
orcoords
. In this case, the coordinates must be ordered as longitude then latitude (not vice-versa), separated by a comma and enclosed in square brackets (for example[-96.840728,32.776078]
). - If your location information is in one of the GB Ordnance Survey formats, in a column headed
OSGB
.
- Coordinates in two separate columns (headed
- URL Each record in your table should have a URL. Add this in a column headed
url
oridentifier
if you would like the URL to appear in the Peripleo popup. - ID: If each of your records has unique identifier, give their column the heading
uuid
,id
, or@id
. - Other Columns: Every column in your table must have a distinguishing heading, even if you do not intend to use its data in the mapping software.
- Labels: Each of the records in your table will need to have a label for use in the mapping software: the text in the top row of the column that contains the labels should be
-
Save or Export your table as CSV (Comma Separated Values).
-
Point your browser to https://docuracy.github.io/Locolligo/ (right-click this link to avoid losing your place in this Guide).
-
Click on
Choose Input
, thenUpload
, and follow your device's usual steps for locating and uploading the file you saved in Step 2 above. -
Click on
Assign CSV Columns
. A form should appear listing the column headers in your original table together with theproperties
to which they will be mapped in the conversion process. Any column header not set in Step 1 above will by default be ignored (but such columns can be configured using Locolligo's advanced features). -
Check the
Dataset CRS
dropbox toward the bottom of the form:WGS84
is the most commonly-used global coordinate reference standard (decimal degrees east/west of Greenwich and north/south of the equator). -
Click on
Convert
. -
You will see a Validation Report: you can safely ignore warnings about Feature IDs, Google indexing, and Dataset Creator(s). Click on
Close
. -
The converted dataset is shown in the maroon-coloured box at the bottom of the screen. Click on the
Download
button within this box, and save the file. -
If you want to visualise your file using Peripleo in your own GitHub repository, and are following the process outlined here, you should now:
- Go to the
docs
folder in your repository. - Click on
Add file
andUpload files
. - Drag or choose the file containing your converted dataset and
Commit changes
. - Edit the
peripleo.config.json
file in yourdocs
folder so that the "data" property points to your dataset file. For example:
"data": [ { "name": "Places Where Stuff Happened", "format": "LINKED_PLACES", "src": "./places-where-stuff-happened.json", "attribution": "Stuff data © Your Mum" } ]
- Go to the
- Read the Locolligo Advanced User Guide.
- Read the Peripleo Configuration Guide.