Faculty of Informatics / Mathematics

Data Set htwddKogRob-InfReal for Localization and Lifelong Mapping

[Translate to English:] realhtwInf_rawPath
HTW Dresden/Bahrmann

This small data set contains real world logs from a 2.2 km long patrol between two points of a previously known map. The environment changed slightly and there are some dynamic obstacles present. The figure shows the robots driven path according to its raw odometry pose and the patrol points.

 

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]);

 

Reference

If you want to use this dataset in your own publication, please use the provided bibtex below:

@misc{htwddKogRobInfReal2015,
  title = {Data Set 
htwddKogRob-InfReal for Localization and Lifelong Mapping},
  author = {Bahrmann, Frank},
  howpublished = {\url{http://www.htw-dresden.de/\~kogrob/datasets/
htwddKogRob-InfReal/}},
  year = {2015},
  publisher = {University of Applied Sciences Dresden, Artificial Intelligence and Cognitive Robotics Labs},
}

 

Copyright

These datasets are made available under the Open Data Commons Attribution License:
http://opendatacommons.org/licenses/by/1.0/