CrowdSenSim  1.0
Location.h
Go to the documentation of this file.
1 /*
2  * Location.h
3 
4  *
5  * Created on: 30 giu 2016
6  * Author: Giuseppe Cacciatore
7  */
8 
9 #ifndef LOCATION_H_
10 #define LOCATION_H_
11 
12 #include <fstream>
13 #include <iostream>
14 #include <string>
15 #include <cstdlib>
16 #include <sstream>
17 #include <vector>
18 #include <cmath>
19 #include <stdlib.h>
20 #include <map>
21 #include <list>
22 #include <algorithm>
23 #include <iomanip>
24 
25 using namespace std;
26 
27 
28 struct Location{
29 
30  float lat;
31  float lon;
32  float alt;
34  Location(float A, float B, float C): lat(A), lon(B), alt(C){}
35 };
36 
37 typedef map<int,Location> StreetPoint;
38 
39 #endif /* LOCATION_H_ */
Location(float A, float B, float C)
Definition: Location.h:34
map< int, Location > StreetPoint
Definition: Location.h:37
float alt
Definition: Location.h:32
float lat
Definition: Location.h:30
float lon
Definition: Location.h:31
Definition: Location.h:28