Data Set htwddKogRob-InfDynSim for Localization in Highly Crowded Environments
This data set presents a tough challenge for robot localization in highly crowded environments. The total driven path over all runs is 113.3 km. 50 dynamic obstacles had been placed into the map.
How to use
Within the zip archives are ascii files containing logs of robot observation and robot poses. If this data set was recorded in a simulated environment, the log contains an altered raw pose as well as a ground truth pose.
You can find more information in the log files header. To offer some help parsing the files, we give two Java-code snippets:
Laser Range Measurements:
List<Double> ranges = new ArrayList<>(numOfLaserRays);
List<Error> errors = new ArrayList<>(numOfLaserRays);
String s = line.substring(4);
String delimiter = "()";
StringTokenizer tokenizer = new StringTokenizer(s, delimiter);
while(tokenizer.hasMoreElements()){
String[] arr = tokenizer.nextToken().split(";");
boolean usable = (arr[0].equals("0")?false:true);
double range = Double.parseDouble(arr[1]);
ranges.add(range);
errors.add(usable?Error.OKAY:Error.INVALID_MEASUREMENT);
}
Poses:
String poseString = line.split(":")[2];
String[] elements = poseString.substring(1, poseString.length()-1).split(";");
double x = Double.parseDouble(elements[0]);
double y = Double.parseDouble(elements[1]);
double phi = Double.parseDouble(elements[2]);
[Translate to English:] Reference
[Translate to English:]
If you want to use this dataset in your own publication, please use the provided bibtex below:
@misc{htwddKogRobInfDynSim2015,
title = {Data Set htwddKogRob-InfDynSim for Localization in Highly Crowded Environments},
author = {Bahrmann, Frank},
howpublished = {\url{http://www.htw-dresden.de/\~kogrob/datasets/htwddKogRob-InfDynSim/}},
year = {2015},
publisher = {University of Applied Sciences Dresden, Artificial Intelligence and Cognitive Robotics Labs},
}
Runs
- Runs 1-20
2.0 GB
- Runs 21-40
2.0 GB
- Runs 41-60
2.7 GB
- Runs 61-80
1.7 GB
- Runs 81-100
1.6 GB
- Runs 101-120
2.0 GB
- Runs 121-140
1.8 GB
- Runs 141-160
1.9 GB
- Runs 161-180
2.4 GB
- Runs 181-200
1.9 GB
- Runs 201-220
3.0 GB
- Runs 221-233
1.6 GB
Weitere Dokumente/ Antragsformulare finden Sie hier: https://www.htw-dresden.de/en/university/facultys/info-math/research/artificial-intelligence-cognitive-robotics/datasets/htwddkogrob-infdynsim
Copyright
These datasets are made available under the Open Data Commons Attribution License:
http://opendatacommons.org/licenses/by/1.0/