CrowdSenSim  1.0
MapCity.h
Go to the documentation of this file.
1 /*
2  * MapCity.h
3 
4  *
5  * Created on: 30 giu 2016
6  * Author: Giuseppe Cacciatore
7  */
8 
9 #ifndef MAPCITY_H_
10 #define MAPCITY_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 
33 double dist(double th1, double ph1, double th2, double ph2);
34 
40 void creatingMapAssociationGraphPoints(string mapPointsCentreCity, string nameCity);
41 
42 typedef std::map<int, list<int> > GraphCityMap;
43 
44 #endif /* MAPCITY_H_ */
std::map< int, list< int > > GraphCityMap
Definition: MapCity.h:42
void creatingMapAssociationGraphPoints(string mapPointsCentreCity, string nameCity)
Definition: MapCity.cc:58
double dist(double th1, double ph1, double th2, double ph2)
Definition: MapCity.cc:31