Transit Planner  1.0
An experiment on transfer patterns robustness
src/GeoInfo.h
00001 // Copyright 2011: Eugen Sawin, Philip Stahl, Jonas Sternisko
00002 #ifndef SRC_GEOINFO_H_
00003 #define SRC_GEOINFO_H_
00004 
00005 struct GeoInfo {
00006   // Geometric minima.
00007   float latMin;
00008   float lonMin;
00009   // Geometric maxima.
00010   float latMax;
00011   float lonMax;
00012 };
00013 
00014 #endif  // SRC_GEOINFO_H_
 All Classes