MATSIM
ZCensusEntry.java
Go to the documentation of this file.
1 package tutorial.programming.example08DemandGeneration;
2 
3 public class ZCensusEntry {
4 
5  /*
6  * Data Structure:
7  *
8  * field data example
9  * ID_PERSON 2601
10  * WP 1.3521340353191
11  * TRIP_NR 1
12  * S_Time 1
13  * H_X 683520
14  * H_Y 248260
15  * S_X 683520
16  * S_Y 248260
17  * D_X 682080
18  * D_Y 246020
19  * BIKE 2
20  * AGE 51
21  * GENDER 0
22  * LICENSE 1
23  * GA 1
24  * MODE_CHOICE 2
25  * CAR_AV 1
26  * MOB_TOOLS 3
27  * INC_1000 4.19421907421241
28  * DAY 4
29  * TRIP_MODE 4
30  * TRIP_PURPOSE 1
31  * TRIP_DISTANCE 2.7
32  * TRIP_DURATION 32
33  * ID_TOUR 26011
34  */
35 
36  int id_person;
37  double wp;
38  int tripnum;
39  int starttime;
40  double h_x;
41  double h_y;
42  double s_x;
43  double s_y;
44  double d_x;
45  double d_y;
46  int bike;
47  int age;
48  int gender;
49  int license;
50  int tickets;
51  int modechoice;
52  int caravailability;
53  int mobtools;
54  double inc1000;
55  int day;
56  int tripmode;
57  int trippurpose;
58  double tripdistance;
59  int tripduration;
60  int id_tour;
61 }