Datasets:
Tasks:
Question Answering
Modalities:
Geospatial
Languages:
English
Size:
10K<n<100K
ArXiv:
License:
File size: 2,426 Bytes
1060e3c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | ---
license: mit
task_categories:
- question-answering
language:
- en
tags:
- geospatial
- gps
- benchmark
- geography
- spatial-reasoning
- coordinates
size_categories:
- 10K<n<100K
pretty_name: "GPSBench: GPS Reasoning Benchmark for LLMs"
dataset_info:
- config_name: pure_gps
description: "Pure GPS track: coordinate manipulation tasks"
- config_name: applied
description: "Applied track: geographic reasoning tasks"
---
# GPSBench: Do Large Language Models Understand GPS Coordinates?
GPSBench is a benchmark dataset of **57,800 samples** across **17 tasks** for evaluating geospatial reasoning in Large Language Models (LLMs).
- **Paper**: [arXiv:2602.16105](https://arxiv.org/abs/2602.16105)
- **Code**: [github.com/joey234/gpsbench](https://github.com/joey234/gpsbench)
- **Leaderboard**: [gpsbench.github.io](https://gpsbench.github.io)
## Benchmark Structure
GPSBench is organized into two complementary evaluation tracks:
### Pure GPS Track (9 tasks)
Coordinate manipulation without geographic knowledge:
- **Representation**: Format Conversion, Coordinate System Transformation
- **Measurement**: Distance Calculation, Bearing Computation, Area & Perimeter
- **Spatial Operations**: Coordinate Interpolation, Bounding Box, Route Geometry, Relative Position
### Applied Track (9 tasks)
Real-world geographic reasoning requiring world knowledge:
- **Knowledge Retrieval**: Place Association, Name Disambiguation, Terrain Classification
- **Spatial Reasoning**: Relative Position, Proximity & Nearest Neighbor, Boundary Analysis
- **Pattern Analysis**: Route Analysis, Spatial Patterns, Missing Data Inference
## Dataset Splits
| Split | Ratio | Samples |
|-------|-------|---------|
| Train | 60% | ~34,680 |
| Dev | 10% | ~5,780 |
| Test | 30% | ~17,340 |
Each task contains approximately 3,400 samples (1,020 test).
## Data Format
Each sample is a JSON object containing:
- `task`: Task identifier
- `question`: Human-readable question/prompt
- `ground_truth`: Expected answer with evaluation metrics
- `coordinate(s)`: GPS coordinate data
- `metadata`: Track, task description, and other context
## Citation
```bibtex
@article{gpsbench2025,
title = {GPSBench: Do Large Language Models Understand GPS Coordinates?},
author = {Truong, Thinh Hung and Lau, Jey Han and Qi, Jianzhong},
journal = {arXiv preprint arXiv:2602.16105},
year = {2025}
}
```
|