Skip to content

Scanning & GPS

GPS tagging and place names

Every scan records where it happened — coordinates automatically, a place name when you add one. What that is good for and what to watch.

← All guides4 minUpdated Jul 28, 2026

What gets recorded

Every scan carries three location fields: latitude, longitude, and a free-text place name. The coordinates are captured automatically at the moment you scan; the place name is yours to type — “Aisle 4, Bay 2”, “Dock door 3”, “Client site, back office”.

The coordinates answer “where was this, roughly, on a map”. The place name answers “where do I walk to pick it up”. They solve different problems, and the place name is usually the one your team actually searches.

Where it shows up

All three fields ride along everywhere the scan goes:

  • in the dashboard, searchable by place name
  • in the export, as location_name, location_lat and location_lng columns
  • through the API on every scan you list

Working offline

GPS does not need a network. A scan captured with no signal still carries its coordinates from the moment of capture, and they sync unchanged when the phone reconnects — see offline scanning for the full contract.

One export caveat

fieldscan-export.csvCSV
barcode,location_name,location_lat,location_lng
5901234123457,Sydney depot,'-33.8688,151.2093
The leading apostrophe is formula-injection protection, not part of the coordinate. Strip it if you parse these as numbers.

Exports guard against spreadsheet formula injection: any cell that starts with =, +, - or @ is prefixed with an apostrophe so a spreadsheet treats it as text. A negative latitude or longitude starts with a minus sign, so it arrives as '-33.8688. Southern and western hemispheres, take note before feeding coordinates into a parser — strip the leading apostrophe if your tooling needs a number.