File size: 1,770 Bytes
533fb49
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
pretty_name: "SanD-Planner — dataset_avoid (obstacle-avoidance subset)"
tags:
- robotics
- navigation
- trajectory-prediction
- depth
- diffusion-policy
---

# SanD-Planner training data — `dataset_avoid`

The **`dataset_avoid`** subset (obstacle-avoidance runs) used to train the
[**SanD-Planner**](https://github.com/WangJinCheng1998/sandplanner) local trajectory
planner.

- Collected in a **custom Gazebo simulation environment** (self-built).
- This is **one subset of a larger training set** — only part of the full dataset is released here.

## Contents

A single archive `dataset_avoid.zip` (~14 GB) that extracts to:

```
dataset_avoid/
└── run_XXXX/                # 152 runs, variable length
    ├── traj_xyz.npy         # (T, 3) trajectory positions (x, y, z), metres
    ├── traj_yaw.npy         # (T,)   heading (yaw)
    ├── traj_pitch.npy       # (T,)   pitch
    └── depth/
        └── depth_NNNN.png   # per-frame depth images (uint16, mm)
```

## Usage

```bash
hf download WJCUCL/sandplanner-dataset-avoid dataset_avoid.zip --repo-type dataset --local-dir .
unzip dataset_avoid.zip -d dataset/        # -> dataset/dataset_avoid/run_XXXX/
DATASET_ROOT=dataset bash run_train.sh     # run inside the SanD-Planner repo
```

See the [SanD-Planner repository](https://github.com/WangJinCheng1998/sandplanner) for
the training and inference code.

## Citation

```bibtex
@article{wang2026sand,
  title   = {SanD-Planner: Sample-Efficient Diffusion Planner in B-Spline Space for Robust Local Navigation},
  author  = {Wang, Jincheng and Bao, Lingfan and Yang, Tong and Plasencia, Diego Martinez and Jiao, Jianhao and Kanoulas, Dimitrios},
  journal = {arXiv preprint arXiv:2602.00923},
  year    = {2026}
}
```