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