-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathreports.xml
5510 lines (5368 loc) · 312 KB
/
reports.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version='1.0' encoding='UTF-8' standalone='no' ?>
<!DOCTYPE ReportDefinition SYSTEM "reports.dtd" >
<!--
=======================================================================================
Project: OpenGTS - Open GPS Tracking System
URL : http://www.opengts.org
File : report.xml
=======================================================================================
Note:
- The format of this XML file is subject to change.
- This file is parsed by class "org.opengts.war.tools.ReportFactory".
- The following tags can contain displayable text:
MenuDescrption, Title, Subtitle, Column, ReportType
The text described these tags can be localized by formatting the text as in the following example:
<Title i18n="Reports.sampleTitle">This is a sample title</Title>
Where "Report.sampleTitle" is the localization lookup key used to find the text value for
current Locale in the file "LocalStrings_XX.properties". The text "This is a sample title"
above is the default text value used if no Locale value is found. The location where the
"LocalStrings_XX.properties" file should be located is defined by the "i18nPackage" attribute
on the 'ReportDefinition' tag.
=======================================================================================
Change History:
2008/03/28 Martin D. Flynn
- Changed "Limit" tag "SelectionLimit"
- Added new constraint tag "ReportLimit".
2009/01/01 Martin D. Flynn
- Added degree 'heading' format options.
- Initialized for 'gts' enterprise version
2009/05/01 Martin D. Flynn
- Included additional report definitions
2009/11/01 Martin D. Flynn
- Added "cssFile" attribute to "DefaultLayout" and "LayoutStyle" tags.
- Added "Properties" tag (used for 'ifTrue'/'ifFalse' column inclusion)
- Added "Options" tag to Report definitions.
2009/06/17 Martin D. Flynn
- Added Fleet Detail reports
2010/07/17 Martin D. Flynn
- Fixed i18n issue with strings "ReportsXML.fuelSummary.title", "ReportsXML.fuelSummary.subtitle", etc.
2010/09/09 Martin D. Flynn
- Added optional Antx daily reports
2011/03/08 Martin D. Flynn
- Added Geozone 'visit' count to Geozone report (see "columnGeozoneVisitCount")
2011/06/16 Martin D. Flynn
- Added TripReport "tripStartStopOnly" property
2013/11/27 Martin D. Flynn
- Added EventIdle report
=======================================================================================
-->
<ReportDefinition i18nPackage="org.opengts.war.report">
<!-- Properties: "ReportDefinition." -->
<!-- Report Properties =====================================================================
=== Currently these property definitions are only used for Column inclusion/exclusion
=== within specific reports. "ifTrue" and "ifFalse" are new attributes on the "Column" tag
=== for a report. To conditionally include a column, an 'ifTrue="propertyKey"' attribute
=== can be specified, in the case of 'ifTrue', if the property specified below is 'true',
=== the column will be included, otherwise it will be omittted. Conversly for 'ifFalse',if
=== the property is false, it will be included, otherwise it will be omitted.
=== These properties can be overridden in a runtime configuration file (ie. '.conf' file)
=== by specifying "ReportDefinition." before the property name. For example to override
=== the "columnLatLon" property, you could add the following definition to one of the loaded
=== runtime config files: IE.
=== ReportDefinition.columnIndexMapLink=true
=== ReportDefinition.columnLatLon=false
=== ReportDefinition.TripReport.showFuelTotal=true
=== ReportDefinition.DeviceFaultCodes.columnServiceDist0=false
=== Important Note:
=== - These properties may only be overridden in the runtime config (".conf") files!
=== They cannot be overridden using Domain defined "Include" properties.
-->
<Properties>
<!-- column properties -->
<Property key="columnIndexMapLink" >false</Property>
<Property key="columnDeviceIDAdmin" >false</Property>
<Property key="columnPushpin" >false</Property>
<Property key="columnLatLon" >true</Property>
<Property key="columnBattery" >true</Property>
<Property key="columnInputState8" >true</Property>
<Property key="columnInputState16" >false</Property>
<Property key="columnSpeedLimit" >false</Property>
<Property key="columnOdometer" >true</Property>
<Property key="columnReportDistance" >false</Property>
<Property key="columnFuelUsage" >false</Property>
<Property key="columnFuelEconomy" >false</Property>
<Property key="columnGeozoneDesc" >false</Property>
<Property key="columnDevicePhone" >false</Property>
<Property key="columnDriverMessage" >false</Property>
<Property key="columnAttachURL" >false</Property>
<Property key="columnFaultCodes" >true</Property>
<Property key="columnServiceDist0" >true</Property>
<Property key="columnServiceDist1" >false</Property>
<Property key="columnServiceNotes" >true</Property>
<Property key="columnSampleCollection" >false</Property>
<Property key="columnTripWorkDistance" >false</Property>
<Property key="columnTripWorkElapsed" >false</Property>
<Property key="columnOdomDelta" >false</Property>
<Property key="columnCreateDateTime" >false</Property>
<!-- option properties -->
<Property key="optionTripStartType_default" >false</Property>
<Property key="optionTripStartType_ignition" >true</Property>
<Property key="optionTripStartType_startstop" >true</Property>
<Property key="optionTripStartType_motion" >true</Property>
<Property key="optionSummary_waymark0" >true</Property>
<Property key="optionSummary_waymark1" >false</Property>
<!--- GeozoneReport: specific properties -->
<Property key="columnGeozoneVisitCount" >true</Property>
<Property key="columnGeozoneCorridorID" >false</Property>
<Property key="columnGeozoneFuelDelta" >false</Property>
<Property key="columnGeozoneOdomDelta" >false</Property>
<!--- FleetMotion: specific properties -->
<Property key="FleetMotion.tabulateByWorkHours" >false</Property>
<Property key="FleetMotion.WorkHours.sun" >06:00-18:00</Property>
<Property key="FleetMotion.WorkHours.mon" >06:00-18:00</Property>
<Property key="FleetMotion.WorkHours.tue" >06:00-18:00</Property>
<Property key="FleetMotion.WorkHours.wed" >06:00-18:00</Property>
<Property key="FleetMotion.WorkHours.thu" >06:00-18:00</Property>
<Property key="FleetMotion.WorkHours.fri" >06:00-18:00</Property>
<Property key="FleetMotion.WorkHours.sat" ></Property>
<!--- MotionSummary: specific properties -->
<Property key="MotionSummary.tabulateByWorkHours" >false</Property>
<Property key="MotionSummary.WorkHours.sun" >06:00-18:00</Property>
<Property key="MotionSummary.WorkHours.mon" >06:00-18:00</Property>
<Property key="MotionSummary.WorkHours.tue" >06:00-18:00</Property>
<Property key="MotionSummary.WorkHours.wed" >06:00-18:00</Property>
<Property key="MotionSummary.WorkHours.thu" >06:00-18:00</Property>
<Property key="MotionSummary.WorkHours.fri" >06:00-18:00</Property>
<Property key="MotionSummary.WorkHours.sat" ></Property>
<!--- TripReport specific properties -->
<Property key="TripReport.SelectionLimit" >9002</Property>
<Property key="TripReport.ReportLimit" >6002</Property>
<Property key="TripReport.showIdleElapsed" >false</Property>
<Property key="TripReport.showFuelTotal" >false</Property>
<Property key="TripReport.showFuelTrip" >true</Property>
<Property key="TripReport.showFuelTripCost" >false</Property>
<Property key="TripReport.showFuelEconomy" >true</Property>
<Property key="TripReport.estimateFuelTotal" >false</Property>
<Property key="TripReport.kilometersPerLiter" >0.0</Property> <!-- 20mpg: mpg * 0.425 = 8.5 km/L -->
<Property key="TripReport.tripStartStopOnly" >false</Property>
<Property key="TripReport.showSpeedingDuration" >false</Property>
<Property key="TripReport.speedingThresholdKPH" >0.0</Property> <!-- device=DeviceLimit, anylimit=AnyLimit -->
<Property key="TripReport.minimumSpeedingDuration" >0</Property>
<Property key="TripReport.tripStopLookAheadSeconds" >0</Property> <!-- EXPERIMENTAL - leave as '0' -->
<Property key="TripReport.showFuelEconomyType" >false</Property>
<Property key="TripReport.showFuelRemain" >false</Property>
<Property key="TripReport.showFuelRefill" >false</Property>
<Property key="TripReport.showDriver" >false</Property>
<!-- Event Detail OBD specific properties -->
<Property key="EventDetailOBD.statusDesc" >true</Property>
<Property key="EventDetailOBD.geoPoint" >true</Property>
<Property key="EventDetailOBD.address" >true</Property>
<Property key="EventDetailOBD.geozoneDesc" >true</Property>
<Property key="EventDetailOBD.speedH" >true</Property>
<Property key="EventDetailOBD.speedLimit" >false</Property>
<Property key="EventDetailOBD.altitude" >true</Property>
<Property key="EventDetailOBD.odometer" >true</Property>
<Property key="EventDetailOBD.fuelLevel" >true</Property>
<Property key="EventDetailOBD.fuelEconomy" >true</Property>
<Property key="EventDetailOBD.fuelTotal" >true</Property>
<Property key="EventDetailOBD.fuelIdle" >true</Property>
<Property key="EventDetailOBD.fuelPressure" >true</Property>
<Property key="EventDetailOBD.fuelRate" >true</Property>
<Property key="EventDetailOBD.engineRpm" >true</Property>
<Property key="EventDetailOBD.engineHours" >true</Property>
<Property key="EventDetailOBD.engineLoad" >true</Property>
<Property key="EventDetailOBD.idleHours" >true</Property>
<Property key="EventDetailOBD.transOilTemp" >true</Property>
<Property key="EventDetailOBD.oilCoolerInTemp" >true</Property>
<Property key="EventDetailOBD.oilCoolerOutTemp" >true</Property>
<Property key="EventDetailOBD.coolantLevel" >true</Property>
<Property key="EventDetailOBD.coolantTemp" >true</Property>
<Property key="EventDetailOBD.engineTemp" >true</Property>
<Property key="EventDetailOBD.brakeGForce" >true</Property>
<Property key="EventDetailOBD.brakePressure" >true</Property>
<Property key="EventDetailOBD.brakePos" >true</Property>
<Property key="EventDetailOBD.oilLevel" >true</Property>
<Property key="EventDetailOBD.oilPressure" >true</Property>
<Property key="EventDetailOBD.ptoEngaged" >true</Property>
<Property key="EventDetailOBD.ptoHours" >true</Property>
<Property key="EventDetailOBD.vBatteryVolts" >true</Property>
<Property key="EventDetailOBD.throttlePos" >true</Property>
<Property key="EventDetailOBD.intakeTemp" >true</Property>
<Property key="EventDetailOBD.airPressure" >true</Property>
<Property key="EventDetailOBD.airFilterPressure" >true</Property>
<Property key="EventDetailOBD.turboPressure" >true</Property>
<Property key="EventDetailOBD.malfunctionLamp" >true</Property>
<Property key="EventDetailOBD.faultCode" >true</Property>
<Property key="EventDetailOBD.faultCodes" >true</Property>
<!-- DeviceFaultCodes specific properties -->
<Property key="DeviceFaultCodes.columnServiceDist0" >true</Property>
<Property key="DeviceFaultCodes.columnServiceDist1" >false</Property>
<Property key="DeviceFaultCodes.columnServiceNotes" >true</Property>
<!-- DistanceTraveled specific properties -->
<Property key="DistanceTraveled.startOdometer" >true</Property>
<Property key="DistanceTraveled.stopOdometer" >true</Property>
<Property key="DistanceTraveled.odomDelta" >true</Property>
<Property key="DistanceTraveled.plannedDistance" >false</Property>
<Property key="DistanceTraveled.startFuel" >false</Property>
<Property key="DistanceTraveled.stopFuel" >false</Property>
<Property key="DistanceTraveled.fuelDelta" >false</Property>
<!-- DigitalIOReport's specific properties -->
<Property key="DigitalIOReport.odometerDelta" >false</Property>
<!-- FuelSummaryReport's specific properties -->
<Property key="FuelSummaryReport.showFuelEconomyType" >false</Property>
<!-- EventThermo's specific properties -->
<Property key="EventThermo.columnThermo1" >true</Property>
<Property key="EventThermo.columnThermo2" >true</Property>
<Property key="EventThermo.columnThermo3" >true</Property>
<Property key="EventThermo.columnThermo4" >false</Property>
<Property key="EventThermo.columnThermo5" >false</Property>
<Property key="EventThermo.columnThermo6" >false</Property>
<Property key="EventThermo.columnThermo7" >false</Property>
<Property key="EventThermo.columnThermo8" >false</Property>
<!-- EngineThermo's specific properties -->
<Property key="EngineThermo.columnCoolantTemp" >true</Property>
<Property key="EngineThermo.columnEngineTemp" >true</Property>
<Property key="EngineThermo.columnBatteryTemp" >true</Property>
<Property key="EngineThermo.columnOilTemp" >false</Property>
<Property key="EngineThermo.columnTransOilTemp" >false</Property>
<Property key="EngineThermo.columnOilCoolerInTemp" >false</Property>
<Property key="EngineThermo.columnOilCoolerOutTemp" >false</Property>
<Property key="EngineThermo.columnIntakeTemp" >false</Property>
<Property key="EngineThermo.columnAmbientTemp" >false</Property>
<Property key="EngineThermo.columnCabinTemp" >false</Property>
<Property key="EngineThermo.columnThermo1" >false</Property>
<Property key="EngineThermo.columnThermo2" >false</Property>
<Property key="EngineThermo.columnThermo3" >false</Property>
<Property key="EngineThermo.columnThermo4" >false</Property>
<Property key="EngineThermo.columnThermo5" >false</Property>
<Property key="EngineThermo.columnThermo6" >false</Property>
<Property key="EngineThermo.columnThermo7" >false</Property>
<Property key="EngineThermo.columnThermo8" >false</Property>
<!-- VehicleDriverBehavior specific properties -->
<Property key="VehicleDriverBehavior.startOdometer" >true</Property>
<Property key="VehicleDriverBehavior.stopOdometer" >true</Property>
<Property key="VehicleDriverBehavior.odomDelta" >true</Property>
<Property key="VehicleDriverBehavior.statusCount_F11A" >true</Property> <!-- STATUS_MOTION_EXCESS_SPEED -->
<Property key="VehicleDriverBehavior.statusCount_F11B" >true</Property> <!-- STATUS_MOTION_OVER_SPEED_2 -->
<Property key="VehicleDriverBehavior.statusCount_F160" >false</Property> <!-- STATUS_SPEEDING_BEGIN -->
<Property key="VehicleDriverBehavior.statusCount_F161" >false</Property> <!-- STATUS_SPEEDING_LIMIT_1 -->
<Property key="VehicleDriverBehavior.statusCount_F162" >false</Property> <!-- STATUS_SPEEDING_LIMIT_2 -->
<Property key="VehicleDriverBehavior.statusCount_F163" >false</Property> <!-- STATUS_SPEEDING_LIMIT_3 -->
<Property key="VehicleDriverBehavior.statusCount_F126" >true</Property> <!-- STATUS_MOTION_DECELERATION -->
<Property key="VehicleDriverBehavior.statusCount_F930" >true</Property> <!-- STATUS_EXCESS_BRAKING -->
<Property key="VehicleDriverBehavior.statusCount_F931" >false</Property> <!-- STATUS_EXCESS_BRAKING_2 -->
<Property key="VehicleDriverBehavior.statusCount_F932" >false</Property> <!-- STATUS_EXCESS_BRAKING_3 -->
<Property key="VehicleDriverBehavior.statusCount_F123" >true</Property> <!-- STATUS_MOTION_ACCELERATION -->
<Property key="VehicleDriverBehavior.statusCount_F960" >true</Property> <!-- STATUS_EXCESS_ACCEL -->
<Property key="VehicleDriverBehavior.statusCount_F961" >false</Property> <!-- STATUS_EXCESS_ACCEL_2 -->
<Property key="VehicleDriverBehavior.statusCount_F962" >false</Property> <!-- STATUS_EXCESS_ACCEL_3 -->
<Property key="VehicleDriverBehavior.statusCount_F937" >false</Property> <!-- STATUS_EXCESS_CORNERING -->
<Property key="VehicleDriverBehavior.statusCount_F938" >false</Property> <!-- STATUS_EXCESS_CORNERING_2 -->
<Property key="VehicleDriverBehavior.statusCount_F939" >false</Property> <!-- STATUS_EXCESS_CORNERING_3 -->
<Property key="VehicleDriverBehavior.statusCount_F92E" >false</Property> <!-- STATUS_HARSH_BEHAVIOR -->
<Property key="VehicleDriverBehavior.statusCount_F116" >true</Property> <!-- STATUS_MOTION_IDLE -->
<Property key="VehicleDriverBehavior.statusCount_F118" >false</Property> <!-- STATUS_MOTION_EXCESS_IDLE -->
<!-- AccountLoginReport specific properties -->
<Property key="AccountLoginReport.smsCount" >false</Property>
</Properties>
<!-- Global Style Sheet ==================================================================== -->
<DefaultStyle cssFile="RptGlobalStyle.css"/>
<!-- the style may be included directly here as well:
<DefaultStyle><![CDATA[
<style>
/* add style here */
</style>
<link rel="stylesheet" type="text/css" href="css/RptGlobalStyle.css"/>
]]></DefaultStyle>
-->
<!-- ======================================================================================= -->
<!-- Report Layout configuration =========================================================== -->
<!-- (must be a subclass of "org.opengts.war.report.ReportLayout") -->
<!-- EventData based reports -->
<ReportLayout
class="org.opengts.war.report.event.EventDataLayout"
>
<!--
=== This report layout supports the following columns
=== Name Example output
=== index - # record number
=== deviceId - "dev32"
=== deviceDesc - "Linehaul #1"
=== deviceName - "LH-1"
=== deviceUniqueID - "tk_123456789012345"
=== deviceModemID - "123456789012345"
=== deviceBatteryLevel - "89%"
=== deviceBatteryVolts - "4.56"
=== deviceVehicleID - "1X3458299384792"
=== devicePhoneNumber - "<a href='tel:19165551212'>1-916-555-1212</a>"
=== deviceCreateDateTime - "2007/03/08 23:31:47"
=== date - "2007/03/08"
=== time - "23:31:47"
=== dateTime - "2007/03/08 23:31:47"
=== timestamp - "1173350990"
=== createDate - "2007/03/08"
=== createTime - "23:31:47"
=== createDateTime - "2007/03/08 23:31:47"
=== createTimestamp - "1173350990"
=== createMillis - "1173350990123"
=== createMillis:frac - "123"
=== createMillis:sec - "1173350990"
=== createAge - "123"
=== groupId - "sac"
=== statusCode - "0xF011"
=== statusCode:dec - "61457"
=== statusDesc - "InMotion"
=== gpsAge - "7"
=== latitude - "49.1234" or "49.07'24"N or "49.07.40N"
=== latitude:dms - "49.07'24"W"
=== latitude:dm - "49.07.40"W"
=== latitude:3 - "49.123"
=== latitude:4 - "49.1234"
=== latitude:5 - "49.12345"
=== longitude - "-110.1234" or "110.07'24"W" or "110.07.40W"
=== longitude:dms - "110.07'24"W"
=== longitude:dm - "110.07.40"W"
=== longitude:3 - "-110.123"
=== longitude:4 - "-110.1234"
=== longitude:5 - "-110.12345"
=== geoPoint - "49.1234/-110.1234" or "49.07'24"N/110.07'24"W" or "49.07.40N/110.07.40W"
=== geoPoint:dms - "49.07'24"N/110.07'24"W"
=== geoPoint:dm - "49.07.40N/110.07.40W"
=== geoPoint:3 - "49.123/-110.123"
=== geoPoint:4 - "49.1234/-110.1234"
=== geoPoint:5 - "49.12345/-110.12345"
=== accuracy - "20"
=== cellLatitude - "49.1234" or "49.07'24"N or "49.07.40N"
=== cellLongitude - "-110.1234" or "110.07'24"W" or "110.07.40W"
=== cellGeoPoint - "49.1234/-110.1234" or "49.07'24"N/110.07'24"W" or "49.07.40N/110.07.40W"
=== cellAccuracy - "20"
=== bestLatitude - "49.1234" or "49.07'24"N or "49.07.40N"
=== bestLongitude - "-110.1234" or "110.07'24"W" or "110.07.40W"
=== bestGeoPoint - "49.1234/-110.1234" or "49.07'24"N/110.07'24"W" or "49.07.40N/110.07.40W"
=== bestAccuracy - "20"
=== altitude - "324.5" (units specified on column header)
=== altitude:1 - "324.4" (units specified on column header)
=== satellites - "6"
=== speedLimit - "65" (units specified on column header)
=== overSpeedLimit - "7" (units specified on column header)
=== speed - "47" (units specified on column header)
=== speed:1 - "47.1" (units specified on column header)
=== speed:2 - "47.13" (units specified on column header)
=== speedH - "47 NW" (units specified on column header)
=== speedH:1 - "47.1 NW" (units specified on column header)
=== speedH:2 - "47.13 NW" (units specified on column header)
=== speedU - "47mph NE"
=== speedU:1 - "47.1mph NE"
=== speedU:2 - "47.13mph NE"
=== heading - "NE"
=== heading:0 - "325"
=== heading:1 - "325.2"
=== distance - "4587" (units specified on column header)
=== distance:0 - "4587" (units specified on column header)
=== distance:1 - "4587.2" (units specified on column header)
=== odometer - "34297" (units specified on column header)
=== odometer:0 - "34297" (units specified on column header)
=== odometer:1 - "34297.2" (units specified on column header)
=== reportDistance - "345" (units specified on column header)
=== reportDistance:0 - "345" (units specified on column header)
=== reportDistance:1 - "345.2" (units specified on column header)
=== stopDateTime - "2007/03/08 23:31:47" *** MAY NOT BE IMPLEMENTED
=== stopElapsed:0 - "12:34:56" (HH:MM:SS) *** MAY NOT BE IMPLEMENTED
=== stopElapsed:1 - "12:34" (HH:MM) *** MAY NOT BE IMPLEMENTED
=== stopElapsed:2 - "12.56" (HHH.hh) *** MAY NOT BE IMPLEMENTED
=== stopElapsed:3 - "12.6" (HHH.h) *** MAY NOT BE IMPLEMENTED
=== battery - "24%"
=== batteryVolts - "3.65"
=== batteryPercent - "24%"
=== batteryTemp - "24.5"
=== inputState - "10010000" (8-bit binary input state)
=== inputState:16 - "0001000010010000" (16-bit binary input state)
=== inputBit:0 - "On" (arg is bit index)
=== outputState - "10010000" (binary output state)
=== outputBit:0 - "On" (arg is bit index)
=== seatbeltState - "0001" (binary seatbelt state)
=== seatbeltBit:0 - "On" (arg is bit index)
=== doorState - "0001" (binary door state)
=== doorBit:0 - "On" (arg is bit index)
=== lightsState - "0001" (binary lights state)
=== lightsBit:0 - "On" (arg is bit index)
=== analog0 - "12.4"
=== analog1 - "12.4"
=== analog2 - "12.4"
=== analog3 - "12.4"
=== pulseCount - "82834.0"
=== frequencyHz - "1257082834.0"
=== frequencyKHz - "1257082.834"
=== frequencyMHz - "1257.082834"
=== frequencyGHz - "1.257082834"
=== address - "1234 Somewhere Lane, Anytown, CA"
=== city - "Anytown"
=== state - "CA"
=== country - "US"
=== subdivision - "US/CA"
=== geozoneId - "home"
=== geozoneDesc - "Home Base"
=== entityId - "00000123"
=== entityDesc - "Trailer 123"
=== driverId - "john"
=== driverDesc - "Jon Smith"
=== driverStatus:desc - "Off Duty"
=== driverStatus:num - "1"
=== driverMessage - "Hello World"
=== messageDateTime - "2007/03/08 23:31:47" (Garmin FMI support only)
=== messageTimestamp - "1173350990" (Garmin FMI support only)
=== messageId - "1" (Garmin FMI support only)
=== messageStatus - "1" (Garmin FMI support only)
=== messageStatusDesc - "Read" (Garmin FMI support only)
=== jobNumber - "12345"
=== rfidTag - "abcdfe"
=== sampleIndex - "47"
=== sampleId - "123-456"
=== barometer - "15.5"
=== ambientTemp - "32.5"
=== thermo#:0 - "14F" ('#' may be 1..4)
=== thermo#:1 - "-2.3C" ('#' may be 1..4)
=== fuelLevel - "87%"
=== fuelLevelVolume - "7.5" (units specified on column header)
=== fuelLevel2 - "23%"
=== fuelLevelVolume2 - "7.5" (units specified on column header)
=== fuelEconomy - "6.4" (units specified on column header)
=== fuelEconomyType - "Event Economy"
=== fuelEconomyType:abbr - "Event"
=== fuelTotal - "1032.4" (units specified on column header)
=== fuelRemain - "27.3" (units specified on column header)
=== fuelRefill - "27.3" (units specified on column header)
=== fuelTrip - "97.4" (units specified on column header)
=== fuelIdle - "232.4" (units specified on column header)
=== fuelEngineOn - "10.6" (units specified on column header)
=== fuelPressure - "23.4" (units specified on column header)
=== fuelRate - "3.2" (units specified on column header)
=== faultCode - "128/123/1"
=== faultCodes - "P0123,P0321,P1234"
=== lastFaultCodes - "P0123,P0321,P1234"
=== malfunctionLamp - "Off" (MIL)
=== airbagLamp - "Off"
=== absLamp - "Off"
=== brakeLamp - "On"
=== oilLevel - "98%"
=== oilPressure - "13.9"
=== oilTemp - "56..7"
=== engineRpm - "1352"
=== engineHours - "5647.8"
=== engineOnHours - "3.4"
=== engineLoad - "78.5%"
=== idleHours - "2387.2"
=== transOilTemp - "65.3"
=== oilCoolerInTemp - "65.3"
=== oilCoolerOutTemp - "65.3"
=== coolantLevel - "97.3%"
=== coolantTemp - "96.4"
=== engineTemp - "96.4"
=== acceleration - "10.2" (meters/sec/sec)
=== accelXYZ - "0.050,-0.200,-1.100" (G-force, M/S/S)
=== accelMagnitude - "-1.700" (G-force, M/S/S)
=== brakeGForce - "1.3" (G-force)
=== brakeForce - "1.3" (km/hr/sec)
=== brakePressure - "23.4"
=== brakePos - "10%"
=== ptoEngaged - "true"
=== ptoHours - "1234.4"
=== ptoDistance - "123456"
=== workHours - "1234.4"
=== workDistance - "123456"
=== serviceDistance - "123456"
=== vBatteryVolts - "13.6"
=== throttlePos - "80%"
=== intakeTemp - "96.4"
=== airPressure - "22.4"
=== airFilterPressure - "22.4"
=== massAirFlow - "3.5" (units specified on column header)
=== turboPressure - "22.4"
=== tirePressure - "32,29,29,30"
=== tireTemp - "40,40,40,40"
=== tirePressTemp - "32/40,29/42,33/47"
=== tankLevel - "13%"
=== checkinDateTime - "2007/03/08 23:31:47"
=== checkinAge - "2d 04h 37m"
=== lastBatteryPercent - "45.6%"
=== fuelCapacity - "20.0"
=== etaDateTime - "2007/03/08 23:31:47"
=== etaTimestamp - "1173350990"
=== etaUniqueID - "123"
=== etaDistance - "4587" (units specified on column header)
=== etaDistance:0 - "4587" (units specified on column header)
=== etaDistance:1 - "4587.2" (units specified on column header)
=== etaDistance:2 - "4587.23" (units specified on column header)
=== etaLatitude - "49.1234" or "49.07'24"N or "49.07.40N"
=== etaLatitude:dms - "49.07'24"W"
=== etaLatitude:dm - "49.07.40"W"
=== etaLatitude:3 - "49.123"
=== etaLatitude:4 - "49.1234"
=== etaLatitude:5 - "49.12345"
=== etaLongitude - "-110.1234" or "110.07'24"W" or "110.07.40W"
=== etaLongitude:dms - "110.07'24"W"
=== etaLongitude:dm - "110.07.40"W"
=== etaLongitude:3 - "-110.123"
=== etaLongitude:4 - "-110.1234"
=== etaLongitude:5 - "-110.12345"
=== etaGeoPoint - "49.1234/-110.1234" or "49.07'24"N/110.07'24"W" or "49.07.40N/110.07.40W"
=== etaGeoPoint:dms - "49.07'24"N/110.07'24"W"
=== etaGeoPoint:dm - "49.07.40N/110.07.40W"
=== etaGeoPoint:3 - "49.123/-110.123"
=== etaGeoPoint:4 - "49.1234/-110.1234"
=== etaGeoPoint:5 - "49.12345/-110.12345"
=== stopUniqueID - "123"
=== stopStatus - "103"
=== stopStatusDesc - "Active"
=== stopIndex - "1"
=== tripStartDateTime - "2007/03/08 23:31:47"
=== tripStopDateTime - "2007/03/08 23:31:47"
=== tripDistance:0 - "4587" (units specified on column header)
=== tripIdleHours - "12:34:46"
=== tripMaxSpeed - "47" (units specified on column header)
=== tripMaxRPM - "1352"
=== tripStartLatitude:4 - "49.1234"
=== tripStartLongitude:4 - "-140.1234"
=== tripElapsed:0 - "12:34:56" (HH:MM:SS)
=== tripElapsed:1 - "12:34" (HH:MM)
=== tripElapsed:2 - "12.56" (HHH.hh)
=== tripElapsed:3 - "12.6" (HHH.h)
=== attachURL - "./Attach.jpeg?d=DEVICE&ts=TIMESTAMP&sc=CODE"
=== attachProp:varName - "Value"
=== dataSource - "gprs"
=== rawData - "imei=1234567890&rmc=$GPRMC,..."
-->
<!-- Date/Time format (Note: case is import!)
=== yyyy - year
=== MM - month
=== dd - day
=== HH - hour
=== mm - minute
=== ss - second
=== (these will default to the format provided in 'private.xml' if not defined here)
-->
<!-- <DateFormat>yyyy/MM/dd</DateFormat> --> <!-- see "java.text.SimpleDateFormat" -->
<!-- <TimeFormat>HH:mm:ss</TimeFormat> --> <!-- see "java.text.SimpleDateFormat" -->
<!-- layout css style -->
<LayoutStyle cssFile="RptEventDataLayout.css"/>
<!--
<LayoutStyle><![CDATA[
<link rel="stylesheet" type="text/css" href="css/RptEventDataLayout.css"/>
]]></LayoutStyle>
-->
</ReportLayout>
<!-- FieldLayout: Generic field based reports -->
<ReportLayout
class="org.opengts.war.report.field.FieldLayout"
>
<!--
=== Notes:
=== - Not every field will contain a value for every report. Only those fields
=== which have been populated by the report itself will contain values.
===
=== This report layout supports the following columns
=== index - # record number
=== displayName - "Acme"
=== accountId - "acme"
=== accountDesc - "Acme Incorporated"
=== userId - "smith"
=== userDesc - "John Smith"
=== deviceId - "dev32"
=== deviceDesc - "Linehaul #1"
=== deviceName - "LH-1"
=== deviceActive - "Yes"
=== deviceBatteryLevel - "97%"
=== deviceBatteryVolts - "4.56"
=== deviceVehicleVolts - "13.78"
=== deviceVehicleID - "1X3458299384792"
=== devicePhoneNumber - "<a href='tel:19165551212'>1-916-555-1212</a>"
=== deviceFuelCost - "2.59"
=== vehicleId - "J123456789012345" (ie. VIN)
=== vehicleMake - "Ford"
=== vehicleModel - "F150"
=== licensePlate - "123ABC"
=== equipmentType - "Truck"
=== uniqueId - "gts_123456789012345"
=== groupId - "sac"
=== date - "2007/03/08"
=== time - "23:31:47"
=== dateTime - "2007/03/08 23:31:47"
=== timestamp - "1173350990"
=== statusCode - "0xF011"
=== statusDesc - "InMotion"
=== pushpin - "http://localhost/track/images/blue_pushpin.png"
=== entityId - "00000123"
=== entityDesc - "Jon Smith"
=== driverId - "smith"
=== driverDesc - "John Smith"
=== driverNickname - "Johnny"
=== driverBirthdate - "1960/01/01"
=== driverBadge - "X12345"
=== driverLicense - "X123456789"
=== driverLicenseType - "CDL"
=== driverLicenseExp - "2011/03/01"
=== driverLicenseExp:days - "35 days"
=== driverStatus:desc - "Off Duty"
=== driverStatus:num - "1"
=== driverDeviceID - "t1234"
=== driverDeviceDesc - "Truck 1234"
=== latitude - "49.1234" or "49.07'24"N or "49.07.40N"
=== latitude:dms - "49.07'24"W"
=== latitude:dm - "49.07.40"W"
=== latitude:3 - "49.123"
=== latitude:4 - "49.1234"
=== latitude:5 - "49.12345"
=== longitude - "-110.1234" or "110.07'24"W" or "110.07.40W"
=== longitude:dms - "110.07'24"W"
=== longitude:dm - "110.07.40"W"
=== longitude:3 - "-110.123"
=== longitude:4 - "-110.1234"
=== longitude:5 - "-110.12345"
=== geoPoint - "49.1234/-110.1234" or "49.07'24"N/110.07'24"W" or "49.07.40N/110.07.40W"
=== geoPoint:dms - "49.07'24"N/110.07'24"W"
=== geoPoint:dm - "49.07.40N/110.07.40W"
=== geoPoint:3 - "49.123/-110.123"
=== geoPoint:4 - "49.1234/-110.1234"
=== geoPoint:5 - "49.12345/-110.12345"
=== altitude - "324" (units specified on column header)
=== altitude:1 - "324.4" (units specified on column header)
=== speedLimit - "47" (units specified on column header)
=== speed - "47" (units specified on column header)
=== speed:1 - "47.1" (units specified on column header)
=== speed:2 - "47.13" (units specified on column header)
=== speedH - "47 NW" (units specified on column header)
=== speedH:1 - "47.1 NW" (units specified on column header)
=== speedH:2 - "47.13 NW" (units specified on column header)
=== speedU - "47mph NE"
=== speedU:1 - "47.1mph NE"
=== speedU:2 - "47.13mph NE"
=== speedDuration - "300 sec"
=== speedMaximum = "75.0"
=== heading - "NE"
=== heading:0 - "325"
=== heading:1 - "325.2"
=== distance - "4587" (units specified on column header)
=== distance:0 - "4587" (units specified on column header)
=== distance:1 - "4587.2" (units specified on column header)
=== distance:2 - "4587.23" (units specified on column header)
=== plannedDistance - "4587" (units specified on column header)
=== plannedDistance:0 - "4587" (units specified on column header)
=== plannedDistance:1 - "4587.2" (units specified on column header)
=== plannedDistance:2 - "4587.23" (units specified on column header)
=== odometer - "34297" (units specified on column header)
=== odometer:0 - "34297" (units specified on column header)
=== odometer:1 - "34297.2" (units specified on column header)
=== odometer:2 - "34297.23" (units specified on column header)
=== odomDelta - "34297" (units specified on column header)
=== odomDelta:0 - "34297" (units specified on column header)
=== odomDelta:1 - "34297.2" (units specified on column header)
=== odomDelta:2 - "34297.23" (units specified on column header)
=== odomDeltaWH - "34297" (units specified on column header)
=== odomDeltaWH:0 - "34297" (units specified on column header)
=== odomDeltaWH:1 - "34297.2" (units specified on column header)
=== odomDeltaWH:2 - "34297.23" (units specified on column header)
=== address - "1234 Somewhere Lane, Anytown, CA"
=== notes - "General notes"
=== description - "This is a test"
=== utilization - "23%"
=== count - "45"
=== ipAddress - "10.0.0.1"
=== isDuplex - "true"
=== tcpConnections - "5"
=== udpConnections - "10"
=== connections - "15"
=== bytesRead - "128"
=== bytesWritten - "128"
=== bytesOverhead - "128"
=== bytesTotal - "256"
=== bytesRounded - "1024"
=== eventsReceived - "2"
=== startDateTime - "2007/03/08 23:31:47"
=== startTimestamp - "1173350990"
=== startOdometer - "34297"
=== enterOdometer - "34297"
=== stopDateTime - "2007/03/08 23:31:47"
=== stopTimestamp - "1173350990"
=== stopGeoPoint - "49.1234/-110.1234"
=== stopGeoPoint:3 - "49.123/-110.123"
=== stopGeoPoint:4 - "49.1234/-110.1234"
=== stopGeoPoint:5 - "49.12345/-110.12345"
=== stopOdometer - "34297"
=== exitOdometer - "34297"
=== startEngineHours - "12:34:46"
=== enterEngineHours - "12:34:46"
=== stopEngineHours - "12:34:46"
=== exitEngineHours - "12:34:46"
=== engineHoursDelta - "00:34:56"
=== stopCount - "5"
=== enterDateTime - "2007/03/08 23:31:47"
=== enterTimestamp - "1173350990"
=== exitDateTime - "2007/03/08 23:31:47"
=== exitTimestamp - "1173350990"
=== fuelCapacity - "20.0" (units specified on column header)
=== fuelLevel - "62%"
=== fuelTotal - "1045.3" (units specified on column header)
=== fuelTrip - "15.3" (units specified on column header)
=== fuelTripWH - "15.3" (units specified on column header)
=== fuelIdle - "10.7" (units specified on column header)
=== fuelIdleWH - "10.7" (units specified on column header)
=== fuelWork - "87.7" (units specified on column header)
=== fuelPTO - "14.7" (units specified on column header)
=== fuelRemain - "27.3" (units specified on column header)
=== fuelRefill - "27.3" (units specified on column header)
=== fuelEconomy - "6.3" (units specified on column header)
=== fuelEconomyType - "Fuel Used"
=== fuelEconomyType:abbr - "Used"
=== startFuel - "1433.5" (units specified on column header)
=== stopFuel - "1433.5" (units specified on column header)
=== fuelDelta - "33.0" (units specified on column header)
=== drivingElapse - "01:23:43"
=== drivingElapseWH - "01:23:43"
=== stopElapse - "01:23:43"
=== idleElapse - "01:23:43"
=== acceleration - "10.2" (meters/sec/sec)
=== accelMagnitude - "-1.700" (G-force, M/S/S)
=== incidentTimestamp - "1173350990"
=== incidentDateTime - "2007/03/08 23:31:47"
=== checkinDateTime - "2007/03/08 23:31:47"
=== checkinAge - "2d 04h 37m"
=== lastIPAddress - "192.168.1.1"
=== propertyKey - "0xF911"
=== propertyDesc - "mot.inmotion"
=== propertyValue - "120"
=== diagError - "true"
=== diagKey - "0xF911"
=== diagDesc - "GPS Expired"
=== diagValue - "lastFix=2008/01/03 12:12:32"
=== serviceLastHR0 - "123.0"
=== serviceIntervalHR0 - "100.0"
=== serviceNextHR0 - "200.0"
=== serviceRemainingHR0 - "54.0"
=== serviceLastDist0 - "12345.0"
=== serviceIntervalDist0 - "2000.0"
=== serviceNextDist0 - "13000.0"
=== serviceRemainingDist0 - "567.0"
=== serviceLastDist1 - "12345.0"
=== serviceIntervalDist1 - "2000.0"
=== serviceNextDist1 - "13000.0"
=== serviceRemainingDist1 - "567.0"
=== serviceNotes - "These are notes"
=== faultCodes - "P0123,P0234,P0345"
=== billingCost - "6.75"
=== billingProrated - "Yes"
-->
<!-- Date/Time format (Note: case is import!)
=== yyyy - year
=== MM - month
=== dd - day
=== HH - hour
=== mm - minute
=== ss - second
=== (these will default to the format provided in 'private.xml' if not defined here)
-->
<!-- <DateFormat>yyyy/MM/dd</DateFormat> --> <!-- see "java.text.SimpleDateFormat" -->
<!-- <TimeFormat>HH:mm:ss</TimeFormat> --> <!-- see "java.text.SimpleDateFormat" -->
<!-- FieldLayout css style -->
<LayoutStyle cssFile="RptFieldLayout.css"/>
</ReportLayout>
<!-- OPTIONAL LAYOUT: may not be supported in all releases -->
<!-- Border Crossing reports -->
<ReportLayout
class="org.opengts.bcross.war.report.BCLayout"
optional="true"
>
<!-- 'BCLayout' supports the following columns
=== index - # record number
=== deviceId - "dev32"
=== deviceDesc - "Linehaul #1"
=== deviceName - "LH-1"
=== groupId - "sac"
=== enterDateTime - "2007/03/08 23:31:47"
=== enterTimestamp - "1173350990"
=== enterGeoPoint - "49.1234/-110.1234"
=== enterGeoPoint:3 - "49.123/-110.123"
=== enterGeoPoint:4 - "49.1234/-110.1234"
=== enterGeoPoint:5 - "49.12345/-110.12345"
=== enterOdometer - "34297" (units specified on column header)
=== enterOdometer:0 - "34297" (units specified on column header)
=== enterOdometer:1 - "34297.2" (units specified on column header)
=== exitDateTime - "2007/03/08 23:31:47"
=== exitTimestamp - "1173350990"
=== exitGeoPoint - "49.1234/-110.1234"
=== exitGeoPoint:3 - "49.123/-110.123"
=== exitGeoPoint:4 - "49.1234/-110.1234"
=== exitGeoPoint:5 - "49.12345/-110.12345"
=== exitOdometer - "34297" (units specified on column header)
=== exitOdometer:0 - "34297" (units specified on column header)
=== exitOdometer:1 - "34297.2" (units specified on column header)
=== distanceTraveled - "7" (units specified on column header)
=== distanceTraveled:0 - "7" (units specified on column header)
=== distanceTraveled:1 - "7.2" (units specified on column header)
-->
<!-- Date/Time format (Note: case is import!)
=== yyyy - year
=== MM - month
=== dd - day
=== HH - hour
=== mm - minute
=== ss - second
=== (these will default to the format provided in 'private.xml' if not defined here)
-->
<!-- <DateFormat>yyyy/MM/dd</DateFormat> --> <!-- see "java.text.SimpleDateFormat" -->
<!-- <TimeFormat>HH:mm:ss</TimeFormat> --> <!-- see "java.text.SimpleDateFormat" -->
<!-- layout css style -->
<LayoutStyle cssFile="RptBCLayout.css"/>
</ReportLayout>
<!-- OPTIONAL LAYOUT: may not be supported in all releases -->
<!-- Antx daily reports -->
<ReportLayout
class="org.opengts.extra.war.report.antx.AntxLayout"
optional="true"
>
<!-- 'AntxLayout' supports the following columns
=== index - # record number
=== deviceId - "dev32"
=== deviceDesc - "Linehaul #1"
=== deviceName - "LH-1"
=== dateTime - "2007/03/08 23:31:47"
=== timestamp - "1173350990"
=== fieldID - "10"
=== fieldDesc - "Trans Oil Temp"
=== channelID - "153"
=== channelDesc - "Digital"
=== type - "Min/Max"
=== data0 - "0.0"
=== data1 - "0.0"
=== data2 - "0.0"
=== data3 - "0.0"
=== data4 - "0.0"
-->
<!-- Date/Time format (Note: case is import!)
=== yyyy - year
=== MM - month
=== dd - day
=== HH - hour
=== mm - minute
=== ss - second
=== (these will default to the format provided in 'private.xml' if not defined here)
-->
<!-- <DateFormat>yyyy/MM/dd</DateFormat> --> <!-- see "java.text.SimpleDateFormat" -->
<!-- <TimeFormat>HH:mm:ss</TimeFormat> --> <!-- see "java.text.SimpleDateFormat" -->
<!-- layout css style -->
<LayoutStyle cssFile="RptAntxLayout.css"/>
</ReportLayout>
<!-- ======================================================================================= -->
<!-- ======================================================================================= -->
<!-- Report Types ========================================================================== -->
<!--
=== Notes:
=== - These must match the "REPORT_TYPE_..." names defined in "src/org/opengts/war/report/ReportFactory.java"
=== - See "src/org/opengts/war/report/ReportFactory.java" for the default descriptions used for these report groups.
=== - the "attr" value determines what type of vehicle/group pulldown selection is displayed. Currently, "device"
=== will displaye the device/vehicle pulldown selection, and "group" will display the deviceGroup selection.
=== Any other value will cause the pulldown selection to not display at all.
-->
<ReportTypes>
<ReportType name="device.detail" isGroup="false" attr="device"/> <!-- i18n="ReportsXML.type.deviceDetail" >Device Detail Reports:</ReportType> -->
<ReportType name="device.summary" isGroup="false" attr="device"/> <!-- i18n="ReportsXML.type.deviceSummary" >Device Summary Reports:</ReportType> -->
<ReportType name="device.performance" isGroup="false" attr="device"/> <!-- i18n="ReportsXML.type.devicePerformance">Device Performance Reports:</ReportType> -->
<ReportType name="driver.performance" isGroup="false" attr="driver"/> <!-- i18n="ReportsXML.type.driverPerformance">Driver Performance Reports:</ReportType> -->
<ReportType name="fleet.detail" isGroup="true" attr="group" /> <!-- i18n="ReportsXML.type.fleetDetail" >Fleet Detail Reports:</ReportType> -->
<ReportType name="fleet.summary" isGroup="true" attr="group" /> <!-- i18n="ReportsXML.type.fleetSummary" >Fleet Summary Reports:</ReportType> -->
<ReportType name="ifta.detail" isGroup="false" attr="device"/> <!-- i18n="ReportsXML.type.iftaDetail" >I.F.T.A. Reports:</ReportType> -->
<ReportType name="ifta.summary" isGroup="true" attr="group" /> <!-- i18n="ReportsXML.type.iftaSummary" >I.F.T.A. Reports:</ReportType> -->
<ReportType name="table.admin" isGroup="true" attr="table" /> <!-- i18n="ReportsXML.type.tableAdmin" >Table Admin Reports:</ReportType> -->
<ReportType name="sysadmin.summary" isGroup="true" attr="group" /> <!-- i18n="ReportsXML.type.sysadminSummary" >System Administrator Reports:</ReportType> -->
</ReportTypes>
<!-- ======================================================================================= -->
<!-- ======================================================================================= -->
<!-- Report Definition ===================================================================== -->
<!-- (must be a subclass of "org.opengts.war.report.ReportData")
=== 'Title', and 'Subtitle', may contain the following vars (many of these are not necessarily
=== applicable to including in a report title):
=== ${navigation} - Page navigation string
=== ${pageTitle} - Page title
=== ${copyright} - Copyright string
=== ${isLoggedIn} - "true" (account will always be logged-in on the report)
=== ${loginCount} - Number of Account/User login sessions
=== ${i18n.Login} - Localized "Login" string
=== ${ipAddress} - Logged-in user IP Address
=== ${timezone} - (Report) Selected Time Zone
=== ${dateRange} - (Report) Selected date range
=== ${limit} - (Report) Report record selection limit
=== ${version} - GTS version string
=== ${locale} - Current Locale
=== ${accountID} - Account ID
=== ${accountDesc} - Account description
=== ${i18n.Account} - Account singular "Acount" title
=== ${i18n.Accounts} - Account plural "Acounts" title
=== ${deviceID} - Device ID
=== ${deviceDesc} - Device description
=== ${i18n.Device} - Account singular "Device" title
=== ${i18n.Devices} - Account plural "Devices" title
=== ${i18n.Vehicle} - alias for ${i18n.Device}
=== ${i18n.Vehicles} - alias for ${i18n.Devices}
=== ${groupID} - DeviceGroup ID
=== ${groupDesc} - DeviceGroup description
=== ${i18n.Group} - Account singular "DeviceGroup" title
=== ${i18n.Groups} - Account plural "DeviceGroups" title
=== ${userID} - Logged-in User ID
=== ${userDesc} - Logged-in User description
=== ${i18n.User} - Account singular "User" title
=== ${i18n.Users} - Account plural "Users" title
=== ${speedUnits} - Account 'speed' units (ie. "mph", "kph")
=== ${distanceUnits} - Account 'distance' units (ie. "miles", "km")
=== ${altitudeUnits} - Account 'altitude' units (ie. "feet", "meters")
=== ${economyUnits} - Account 'economy' units (ie. "mpg", "kpl")
=== ${pressureUnits} - Account 'pressure' units (ie. "kPa", "psi")
=== ${volumeUnits} - Account 'volume' units (ie. "Liters", "Gallons")
=== ${statusCodeDesc:X} - Account status-code description for 'X'
===
=== Report 'type' must be one of the following:
=== device.detail
=== fleet.detail
=== fleet.summary
=== device.performance
=== driver.performance
=== ifta.detail
=== table.admin
=== sysadmin.summary
-->
<!-- ======================================================================================= -->
<!-- ======================================================================================= -->
<!-- device.detail ========================================================================= -->
<!-- example device detail report showing all events for a given device (and all possible fields) -->
<Report name="EventDetailAll" type="device.detail"
class="org.opengts.war.report.event.EventDetailReport"
layout="org.opengts.war.report.event.EventDataLayout"
sortable="true"
>
<MenuDescription i18n="ReportsXML.eventDetailAll.menu">Event Detail (All fields)</MenuDescription>
<Title i18n="ReportsXML.eventDetailAll.title">Event Detail (All fields)</Title>
<Subtitle i18n="ReportsXML.eventDetailAll.subtitle">${deviceDesc} [${deviceId}]\n${dateRange}</Subtitle>
<Columns>
<Column name="index" arg="mapLink" ifTrue="columnIndexMapLink"/>
<Column name="index" ifFalse="columnIndexMapLink"/>
<Column name="deviceId" arg="adminEdit" ifTrue="columnDeviceIDAdmin"/>
<Column name="deviceId" ifFalse="columnDeviceIDAdmin"/>
<Column name="deviceDesc" />
<Column name="timestamp" />
<Column name="date" />
<Column name="time" />
<Column name="statusCode" arg="color" />
<Column name="statusDesc" arg="color" />
<Column name="pushpin" ifTrue="columnPushpin"/>
<Column name="latitude" arg="5" /> <!-- "bestLatitude" -->
<Column name="longitude" arg="5" /> <!-- "bestLongitude" -->
<Column name="accuracy" />
<Column name="cellLatitude" arg="5" />
<Column name="cellLongitude" arg="5" />
<Column name="cellAccuracy" />
<Column name="gpsAge" />
<Column name="satellites" />
<!-- Column name="speed" arg="1" / -->
<Column name="speedH" />
<!-- Column name="speedU" / -->
<!-- Column name="heading" arg="0" / -->
<Column name="speedLimit" arg="0" ifTrue="columnSpeedLimit"/>
<!-- Column name="stopElapsed" arg="0" / -->
<Column name="altitude" />
<Column name="odometer" arg="0" />
<Column name="distance" arg="0" />
<Column name="reportDistance" arg="0" ifTrue="columnReportDistance"/>
<Column name="inputState" arg="8" ifTrue="columnInputState8"/>
<Column name="inputState" arg="16" ifTrue="columnInputState16"/>
<Column name="address" />
<Column name="geozoneDesc" />
<Column name="subdivision" />
<Column name="batteryPercent" />
<Column name="batteryVolts" />
<Column name="batteryTemp" />
<!-- J1708/J1939/OBDII fields -->
<Column name="malfunctionLamp" />
<Column name="airbagLamp" />
<Column name="absLamp" />