exiftool_vendored 13.55.0 → 13.57.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/bin/Changes +23 -1
- data/bin/MANIFEST +7 -1
- data/bin/META.json +1 -1
- data/bin/META.yml +1 -1
- data/bin/README +48 -48
- data/bin/config_files/local_time.config +25 -2
- data/bin/exiftool +56 -54
- data/bin/lib/Image/ExifTool/BuildTagLookup.pm +4 -4
- data/bin/lib/Image/ExifTool/DJI.pm +2 -0
- data/bin/lib/Image/ExifTool/Exif.pm +97 -2
- data/bin/lib/Image/ExifTool/FlashPix.pm +1 -1
- data/bin/lib/Image/ExifTool/GE.pm +2 -0
- data/bin/lib/Image/ExifTool/Garmin.pm +9678 -0
- data/bin/lib/Image/ExifTool/Geotag.pm +100 -12
- data/bin/lib/Image/ExifTool/Google.pm +2 -0
- data/bin/lib/Image/ExifTool/InfiRay.pm +2 -0
- data/bin/lib/Image/ExifTool/Lang/de.pm +1 -1
- data/bin/lib/Image/ExifTool/Lang/fr.pm +1 -1
- data/bin/lib/Image/ExifTool/MXF.pm +1 -1
- data/bin/lib/Image/ExifTool/MakerNotes.pm +1 -1
- data/bin/lib/Image/ExifTool/Panasonic.pm +1 -0
- data/bin/lib/Image/ExifTool/Protobuf.pm +2 -0
- data/bin/lib/Image/ExifTool/QuickTime.pm +2 -2
- data/bin/lib/Image/ExifTool/QuickTimeStream.pl +1 -1
- data/bin/lib/Image/ExifTool/RIFF.pm +1 -0
- data/bin/lib/Image/ExifTool/Reconyx.pm +2 -0
- data/bin/lib/Image/ExifTool/TagLookup.pm +7 -3
- data/bin/lib/Image/ExifTool/TagNames.pod +2791 -8
- data/bin/lib/Image/ExifTool/Validate.pm +10 -1
- data/bin/lib/Image/ExifTool/Writer.pl +12 -4
- data/bin/lib/Image/ExifTool.pm +26 -13
- data/bin/lib/Image/ExifTool.pod +107 -90
- data/bin/perl-Image-ExifTool.spec +47 -47
- data/lib/exiftool_vendored/version.rb +1 -1
- metadata +3 -2
|
@@ -12,7 +12,7 @@ meta information extracted from or written to a file.
|
|
|
12
12
|
=head1 TAG TABLES
|
|
13
13
|
|
|
14
14
|
The tables listed below give the names of all tags recognized by ExifTool.
|
|
15
|
-
They contain a total of
|
|
15
|
+
They contain a total of 33465 tags, with 21435 unique tag names.
|
|
16
16
|
|
|
17
17
|
B<Tag ID>, B<Index#> or B<Sequence> is given in the first column of each
|
|
18
18
|
table. A B<Tag ID> is the computer-readable equivalent of a tag name, and
|
|
@@ -365,11 +365,11 @@ tags remain.
|
|
|
365
365
|
|
|
366
366
|
The table below lists all EXIF tags. Also listed are TIFF, DNG, HDP and
|
|
367
367
|
other tags which are not part of the EXIF specification, but may co-exist
|
|
368
|
-
with EXIF tags in some images. Tags which are part of the EXIF 3.
|
|
368
|
+
with EXIF tags in some images. Tags which are part of the EXIF 3.1
|
|
369
369
|
specification have an underlined B<Tag Name> in the HTML version of this
|
|
370
370
|
documentation. See
|
|
371
|
-
L<https://www.cipa.jp/std/documents/download_e.html?CIPA_DC-008-
|
|
372
|
-
for the official EXIF 3.
|
|
371
|
+
L<https://www.cipa.jp/std/documents/download_e.html?CIPA_DC-008-2026-E>
|
|
372
|
+
for the official EXIF 3.1 specification.
|
|
373
373
|
|
|
374
374
|
Tag ID Tag Name Group Writable
|
|
375
375
|
------ -------- ----- --------
|
|
@@ -826,6 +826,7 @@ for the official EXIF 3.0 specification.
|
|
|
826
826
|
MakerNoteUnknownBinary ExifIFD undef
|
|
827
827
|
MakerNoteUnknown ExifIFD Unknown
|
|
828
828
|
0x9286 UserComment ExifIFD undef
|
|
829
|
+
0x9287 LearningOptOutIn ExifIFD undef[n]
|
|
829
830
|
0x9290 SubSecTime ExifIFD string
|
|
830
831
|
0x9291 SubSecTimeOriginal ExifIFD string
|
|
831
832
|
0x9292 SubSecTimeDigitized ExifIFD string
|
|
@@ -884,6 +885,12 @@ for the official EXIF 3.0 specification.
|
|
|
884
885
|
0xa40a Sharpness ExifIFD int16u
|
|
885
886
|
0xa40b DeviceSettingDescription - no
|
|
886
887
|
0xa40c SubjectDistanceRange ExifIFD int16u
|
|
888
|
+
0xa40d DevelopmentType ExifIFD int16u
|
|
889
|
+
0xa40e DevelopmentTypeDescription ExifIFD string
|
|
890
|
+
0xa40f DistortionCorrection ExifIFD int16u
|
|
891
|
+
0xa410 ChromaticAberrationCorrection ExifIFD int16u
|
|
892
|
+
0xa411 ShadingCorrection ExifIFD int16u
|
|
893
|
+
0xa412 NoiseReduction ExifIFD int16u
|
|
887
894
|
0xa420 ImageUniqueID ExifIFD string
|
|
888
895
|
0xa430 OwnerName ExifIFD string
|
|
889
896
|
0xa431 SerialNumber ExifIFD string
|
|
@@ -12319,7 +12326,7 @@ These tags belong to the ExifTool XMP-Device family 1 group.
|
|
|
12319
12326
|
RotationX real
|
|
12320
12327
|
RotationY real
|
|
12321
12328
|
RotationZ real
|
|
12322
|
-
|
|
12329
|
+
TimeStamp integer
|
|
12323
12330
|
|
|
12324
12331
|
=head3 Google VendorInfo Struct
|
|
12325
12332
|
|
|
@@ -12361,7 +12368,7 @@ These tags belong to the ExifTool XMP-Device family 1 group.
|
|
|
12361
12368
|
RotationX real
|
|
12362
12369
|
RotationY real
|
|
12363
12370
|
RotationZ real
|
|
12364
|
-
|
|
12371
|
+
TimeStamp integer
|
|
12365
12372
|
|
|
12366
12373
|
=head3 Google DevicePlanes Struct
|
|
12367
12374
|
|
|
@@ -25404,7 +25411,7 @@ UserDefined properties.
|
|
|
25404
25411
|
0x2500000b Flash no
|
|
25405
25412
|
0x2500000c FlashEnergy no
|
|
25406
25413
|
0x2500000d FlashReturn no
|
|
25407
|
-
0x2500000e
|
|
25414
|
+
0x2500000e Backlight no
|
|
25408
25415
|
0x2500000f SubjectLocation no
|
|
25409
25416
|
0x25000010 ExposureIndex no
|
|
25410
25417
|
0x25000011 SpecialEffectsOpticalFilter no
|
|
@@ -31043,7 +31050,7 @@ for the official QuickTime specification.
|
|
|
31043
31050
|
The tags below are extracted from timed metadata in QuickTime and other
|
|
31044
31051
|
formats of video files when the ExtractEmbedded option is used. Although
|
|
31045
31052
|
most of these tags are combined into the single table below, ExifTool
|
|
31046
|
-
currently reads
|
|
31053
|
+
currently reads 123 different types of timed GPS metadata.
|
|
31047
31054
|
|
|
31048
31055
|
Tag ID Tag Name Writable
|
|
31049
31056
|
------ -------- --------
|
|
@@ -43102,6 +43109,2782 @@ L<XMP DICOM Tags|Image::ExifTool::TagNames/XMP DICOM Tags>.
|
|
|
43102
43109
|
FFFE,E00D EndOfItems no
|
|
43103
43110
|
FFFE,E0DD EndOfSequence no
|
|
43104
43111
|
|
|
43112
|
+
=head2 Garmin Tags
|
|
43113
|
+
|
|
43114
|
+
=head3 Garmin FIT Tags
|
|
43115
|
+
|
|
43116
|
+
Information extracted from Garmin FIT (Flexible and Interoperable data
|
|
43117
|
+
Transfer) files. By default, only timestamps and GPS-related FIT messages
|
|
43118
|
+
are decoded, and the rest are marked as Unknown to be extracted only if the
|
|
43119
|
+
Unknown (-u) option is used. And unless the ExtractEmbedded (-ee) option is
|
|
43120
|
+
used, only the first FIT message of each type is extracted. When both of
|
|
43121
|
+
these options are used, a significant amount of information may be
|
|
43122
|
+
extracted, and processing times may be lengthy. The family 1 group names of
|
|
43123
|
+
the extracted tags correspond to the FIT message names. The first table
|
|
43124
|
+
below lists the FIT messages, and subsequent tables list the extracted tags.
|
|
43125
|
+
See L<https://developer.garmin.com/fit/> for the specification.
|
|
43126
|
+
|
|
43127
|
+
Tag ID Tag Name Writable
|
|
43128
|
+
------ -------- --------
|
|
43129
|
+
'vers' ProtocolVersion no
|
|
43130
|
+
0 FileID? Garmin FileID
|
|
43131
|
+
1 Capabilities? Garmin Capabilities
|
|
43132
|
+
2 DeviceSettings? Garmin DeviceSettings
|
|
43133
|
+
3 UserProfile? Garmin UserProfile
|
|
43134
|
+
4 HRMProfile? Garmin HRMProfile
|
|
43135
|
+
5 SDMProfile? Garmin SDMProfile
|
|
43136
|
+
6 BikeProfile? Garmin BikeProfile
|
|
43137
|
+
7 ZonesTarget? Garmin ZonesTarget
|
|
43138
|
+
8 HRZone? Garmin HRZone
|
|
43139
|
+
9 PowerZone? Garmin PowerZone
|
|
43140
|
+
10 MetZone? Garmin MetZone
|
|
43141
|
+
12 Sport? Garmin Sport
|
|
43142
|
+
13 TrainingSettings? Garmin TrainingSettings
|
|
43143
|
+
14 DataScreen? Garmin DataScreen
|
|
43144
|
+
15 Goal? Garmin Goal
|
|
43145
|
+
16 Alert? Garmin Alert
|
|
43146
|
+
17 RangeAlert? Garmin RangeAlert
|
|
43147
|
+
18 Session Garmin Session
|
|
43148
|
+
19 Lap Garmin Lap
|
|
43149
|
+
20 Record Garmin Record
|
|
43150
|
+
21 Event? Garmin Event
|
|
43151
|
+
22 DeviceUsed? Garmin DeviceUsed
|
|
43152
|
+
23 DeviceInfo? Garmin DeviceInfo
|
|
43153
|
+
26 Workout? Garmin Workout
|
|
43154
|
+
27 WorkoutStep? Garmin WorkoutStep
|
|
43155
|
+
28 Schedule? Garmin Schedule
|
|
43156
|
+
29 Location? Garmin Location
|
|
43157
|
+
30 WeightScale? Garmin WeightScale
|
|
43158
|
+
31 Course? Garmin Course
|
|
43159
|
+
32 CoursePoint Garmin CoursePoint
|
|
43160
|
+
33 Totals? Garmin Totals
|
|
43161
|
+
34 Activity? Garmin Activity
|
|
43162
|
+
35 Software? Garmin Software
|
|
43163
|
+
37 FileCapabilities? Garmin FileCapabilities
|
|
43164
|
+
38 MesgCapabilities? Garmin MesgCapabilities
|
|
43165
|
+
39 FieldCapabilities? Garmin FieldCapabilities
|
|
43166
|
+
49 FileCreator? Garmin FileCreator
|
|
43167
|
+
51 BloodPressure? Garmin BloodPressure
|
|
43168
|
+
53 SpeedZone? Garmin SpeedZone
|
|
43169
|
+
55 Monitoring? Garmin Monitoring
|
|
43170
|
+
70 MapLayer? Garmin MapLayer
|
|
43171
|
+
71 Routing? Garmin Routing
|
|
43172
|
+
72 TrainingFile? Garmin TrainingFile
|
|
43173
|
+
78 HRV? Garmin HRV
|
|
43174
|
+
79 UserMetrics? Garmin UserMetrics
|
|
43175
|
+
80 AntRx? Garmin AntRx
|
|
43176
|
+
81 AntTx? Garmin AntTx
|
|
43177
|
+
82 AntChannelID? Garmin AntChannelID
|
|
43178
|
+
89 OpenWaterEvent? Garmin OpenWaterEvent
|
|
43179
|
+
101 Length? Garmin Length
|
|
43180
|
+
103 MonitoringInfo? Garmin MonitoringInfo
|
|
43181
|
+
104 DeviceStatus? Garmin DeviceStatus
|
|
43182
|
+
105 Pad? no
|
|
43183
|
+
106 SlaveDevice? Garmin SlaveDevice
|
|
43184
|
+
113 BestEffort? Garmin BestEffort
|
|
43185
|
+
114 PersonalRecord? Garmin PersonalRecord
|
|
43186
|
+
127 Connectivity? Garmin Connectivity
|
|
43187
|
+
128 WeatherConditions Garmin WeatherConditions
|
|
43188
|
+
129 WeatherAlert? Garmin WeatherAlert
|
|
43189
|
+
131 CadenceZone? Garmin CadenceZone
|
|
43190
|
+
132 HR? Garmin HR
|
|
43191
|
+
140 ActivityMetrics? Garmin ActivityMetrics
|
|
43192
|
+
141 EPOStatus? Garmin EPOStatus
|
|
43193
|
+
142 SegmentLap Garmin SegmentLap
|
|
43194
|
+
143 MultisportSettings? Garmin MultisportSettings
|
|
43195
|
+
144 MultisportActivity? Garmin MultisportActivity
|
|
43196
|
+
145 MemoGlob? Garmin MemoGlob
|
|
43197
|
+
147 SensorSettings? Garmin SensorSettings
|
|
43198
|
+
148 SegmentID? Garmin SegmentID
|
|
43199
|
+
149 SegmentLeaderboardEntry? Garmin SegmentLeaderboardEntry
|
|
43200
|
+
150 SegmentPoint Garmin SegmentPoint
|
|
43201
|
+
151 SegmentFile? Garmin SegmentFile
|
|
43202
|
+
152 Metronome? Garmin Metronome
|
|
43203
|
+
158 WorkoutSession? Garmin WorkoutSession
|
|
43204
|
+
159 WatchfaceSettings? Garmin WatchfaceSettings
|
|
43205
|
+
160 GPS Garmin GPS
|
|
43206
|
+
161 CameraEvent? Garmin CameraEvent
|
|
43207
|
+
162 TimeStampCorrelation? Garmin TimeStampCorrelation
|
|
43208
|
+
164 GyroscopeData? Garmin GyroscopeData
|
|
43209
|
+
165 AccelerometerData? Garmin AccelerometerData
|
|
43210
|
+
167 ThreeDSensorCalibration? Garmin ThreeDSensorCalibration
|
|
43211
|
+
169 VideoFrame? Garmin VideoFrame
|
|
43212
|
+
170 ConnectIQField? Garmin ConnectIQField
|
|
43213
|
+
173 Clubs? Garmin Clubs
|
|
43214
|
+
174 OBDIIData? Garmin OBDIIData
|
|
43215
|
+
177 NMEASentence? Garmin NMEASentence
|
|
43216
|
+
178 AviationAttitude? Garmin AviationAttitude
|
|
43217
|
+
184 Video? Garmin Video
|
|
43218
|
+
185 VideoTitle? Garmin VideoTitle
|
|
43219
|
+
186 VideoDescription? Garmin VideoDescription
|
|
43220
|
+
187 VideoClip? Garmin VideoClip
|
|
43221
|
+
188 OHRSettings? Garmin OHRSettings
|
|
43222
|
+
189 WaypointHandling? Garmin WaypointHandling
|
|
43223
|
+
190 GolfCourse? Garmin GolfCourse
|
|
43224
|
+
191 GolfStats? Garmin GolfStats
|
|
43225
|
+
192 Score? Garmin Score
|
|
43226
|
+
193 Hole? Garmin Hole
|
|
43227
|
+
194 Shot? Garmin Shot
|
|
43228
|
+
200 ExdScreenConfiguration? Garmin ExdScreenConfiguration
|
|
43229
|
+
201 ExdDataFieldConfiguration? Garmin ExdDataFieldConfiguration
|
|
43230
|
+
202 ExdDataConceptConfiguration? Garmin ExdDataConceptConfiguration
|
|
43231
|
+
206 FieldDescription? Garmin FieldDescription
|
|
43232
|
+
207 DeveloperDataID? Garmin DeveloperDataID
|
|
43233
|
+
208 MagnetometerData? Garmin MagnetometerData
|
|
43234
|
+
209 BarometerData? Garmin BarometerData
|
|
43235
|
+
210 OneDSensorCalibration? Garmin OneDSensorCalibration
|
|
43236
|
+
211 MonitoringHRData? Garmin MonitoringHRData
|
|
43237
|
+
216 TimeInZone? Garmin TimeInZone
|
|
43238
|
+
222 AlarmSettings? Garmin AlarmSettings
|
|
43239
|
+
225 Set? Garmin Set
|
|
43240
|
+
227 StressLevel? Garmin StressLevel
|
|
43241
|
+
229 MaxMetData? Garmin MaxMetData
|
|
43242
|
+
243 MusicInfo? Garmin MusicInfo
|
|
43243
|
+
258 DiveSettings? Garmin DiveSettings
|
|
43244
|
+
259 DiveGas? Garmin DiveGas
|
|
43245
|
+
262 DiveAlarm? Garmin DiveAlarm
|
|
43246
|
+
264 ExerciseTitle? Garmin ExerciseTitle
|
|
43247
|
+
268 DiveSummary? Garmin DiveSummary
|
|
43248
|
+
269 SPO2Data? Garmin SPO2Data
|
|
43249
|
+
273 SleepDataInfo? Garmin SleepDataInfo
|
|
43250
|
+
275 SleepLevel? Garmin SleepLevel
|
|
43251
|
+
285 Jump Garmin Jump
|
|
43252
|
+
289 AADAccelFeatures? Garmin AADAccelFeatures
|
|
43253
|
+
290 BeatIntervals? Garmin BeatIntervals
|
|
43254
|
+
297 RespirationRate? Garmin RespirationRate
|
|
43255
|
+
302 HSAAccelerometerData? Garmin HSAAccelerometerData
|
|
43256
|
+
304 HSAStepData? Garmin HSAStepData
|
|
43257
|
+
305 HSA_SPO2Data? Garmin HSA_SPO2Data
|
|
43258
|
+
306 HSAStressData? Garmin HSAStressData
|
|
43259
|
+
307 HSARespirationData? Garmin HSARespirationData
|
|
43260
|
+
308 HSAHeartRateData? Garmin HSAHeartRateData
|
|
43261
|
+
309 MtbCx? Garmin MtbCx
|
|
43262
|
+
310 Race? Garmin Race
|
|
43263
|
+
311 SplitTime? Garmin SplitTime
|
|
43264
|
+
312 Split Garmin Split
|
|
43265
|
+
313 SplitSummary? Garmin SplitSummary
|
|
43266
|
+
314 HSABodyBatteryData? Garmin HSABodyBatteryData
|
|
43267
|
+
315 HSAEvent? Garmin HSAEvent
|
|
43268
|
+
317 ClimbPro Garmin ClimbPro
|
|
43269
|
+
319 TankUpdate? Garmin TankUpdate
|
|
43270
|
+
321 PowerMode? Garmin PowerMode
|
|
43271
|
+
323 TankSummary? Garmin TankSummary
|
|
43272
|
+
326 GPSEvent? Garmin GPSEvent
|
|
43273
|
+
336 ECGSummary? Garmin ECGSummary
|
|
43274
|
+
337 ECGRawSample? Garmin ECGRawSample
|
|
43275
|
+
338 ECGSmoothSample? Garmin ECGSmoothSample
|
|
43276
|
+
346 SleepAssessment? Garmin SleepAssessment
|
|
43277
|
+
356 FunctionalMetrics? Garmin FunctionalMetrics
|
|
43278
|
+
358 RaceEvent? Garmin RaceEvent
|
|
43279
|
+
369 TrainingReadiness? Garmin TrainingReadiness
|
|
43280
|
+
370 HRVStatusSummary? Garmin HRVStatusSummary
|
|
43281
|
+
371 HRVValue? Garmin HRVValue
|
|
43282
|
+
372 RawBBI? Garmin RawBBI
|
|
43283
|
+
375 DeviceAuxBatteryInfo? Garmin DeviceAuxBatteryInfo
|
|
43284
|
+
376 HSAGyroscopeData? Garmin HSAGyroscopeData
|
|
43285
|
+
378 TrainingLoad? Garmin TrainingLoad
|
|
43286
|
+
379 SleepSchedule? Garmin SleepSchedule
|
|
43287
|
+
382 SleepRestlessMoments? Garmin SleepRestlessMoments
|
|
43288
|
+
387 ChronoShotSession? Garmin ChronoShotSession
|
|
43289
|
+
388 ChronoShotData? Garmin ChronoShotData
|
|
43290
|
+
389 HSAConfigurationData? Garmin HSAConfigurationData
|
|
43291
|
+
393 DiveApneaAlarm? Garmin DiveApneaAlarm
|
|
43292
|
+
394 CPEStatus? Garmin CPEStatus
|
|
43293
|
+
398 SkinTempOvernight? Garmin SkinTempOvernight
|
|
43294
|
+
402 HillScore? Garmin HillScore
|
|
43295
|
+
403 EnduranceScore? Garmin EnduranceScore
|
|
43296
|
+
409 HSAWristTemperatureData? Garmin HSAWristTemperatureData
|
|
43297
|
+
412 NapEvent? Garmin NapEvent
|
|
43298
|
+
428 WorkoutSchedule? Garmin WorkoutSchedule
|
|
43299
|
+
470 SleepDisruptionSeverityPeriod? Garmin SleepDisruptionSeverityPeriod
|
|
43300
|
+
471 SleepDisruptionOvernightSeverity? Garmin SleepDisruptionOvernightSeverity
|
|
43301
|
+
|
|
43302
|
+
=head3 Garmin Common Tags
|
|
43303
|
+
|
|
43304
|
+
Tags listed here are common to all FIT messages (ie. all tag tables below).
|
|
43305
|
+
|
|
43306
|
+
Tag ID Tag Name Writable
|
|
43307
|
+
------ -------- --------
|
|
43308
|
+
250 PartIndex no
|
|
43309
|
+
253 TimeStamp no
|
|
43310
|
+
254 MessageIndex no
|
|
43311
|
+
|
|
43312
|
+
=head3 Garmin FileID Tags
|
|
43313
|
+
|
|
43314
|
+
Tag ID Tag Name Writable
|
|
43315
|
+
------ -------- --------
|
|
43316
|
+
0 FITFileType no
|
|
43317
|
+
1 Manufacturer no
|
|
43318
|
+
2 Product no
|
|
43319
|
+
3 SerialNumber no
|
|
43320
|
+
4 TimeCreated no
|
|
43321
|
+
5 Number no
|
|
43322
|
+
8 ProductName no
|
|
43323
|
+
|
|
43324
|
+
=head3 Garmin Capabilities Tags
|
|
43325
|
+
|
|
43326
|
+
Tag ID Tag Name Writable
|
|
43327
|
+
------ -------- --------
|
|
43328
|
+
0 Languages no
|
|
43329
|
+
1 Sports no
|
|
43330
|
+
21 WorkoutsSupported no
|
|
43331
|
+
23 ConnectivitySupported no
|
|
43332
|
+
|
|
43333
|
+
=head3 Garmin DeviceSettings Tags
|
|
43334
|
+
|
|
43335
|
+
Tag ID Tag Name Writable
|
|
43336
|
+
------ -------- --------
|
|
43337
|
+
0 ActiveTimeZone no
|
|
43338
|
+
1 UtcOffset no
|
|
43339
|
+
2 TimeOffset no
|
|
43340
|
+
4 TimeMode no
|
|
43341
|
+
5 TimeZoneOffset no
|
|
43342
|
+
8 AlarmsTime no
|
|
43343
|
+
12 BacklightMode no
|
|
43344
|
+
28 AlarmsEnabled no
|
|
43345
|
+
36 ActivityTrackerEnabled no
|
|
43346
|
+
39 ClockTime no
|
|
43347
|
+
40 PagesEnabled no
|
|
43348
|
+
46 MoveAlertEnabled no
|
|
43349
|
+
47 DateMode no
|
|
43350
|
+
55 DisplayOrientation no
|
|
43351
|
+
56 MountingSide no
|
|
43352
|
+
57 DefaultPage no
|
|
43353
|
+
58 AutosyncMinSteps no
|
|
43354
|
+
59 AutosyncMinTime no
|
|
43355
|
+
80 LactateThresholdAutodetectEnabled no
|
|
43356
|
+
86 BleAutoUploadEnabled no
|
|
43357
|
+
89 AutoSyncFrequency no
|
|
43358
|
+
90 AutoActivityDetect no
|
|
43359
|
+
92 AlarmsRepeat no
|
|
43360
|
+
94 NumberOfScreens no
|
|
43361
|
+
95 SmartNotificationDisplayOrientation no
|
|
43362
|
+
134 TapInterface no
|
|
43363
|
+
174 TapSensitivity no
|
|
43364
|
+
|
|
43365
|
+
=head3 Garmin UserProfile Tags
|
|
43366
|
+
|
|
43367
|
+
Tag ID Tag Name Writable
|
|
43368
|
+
------ -------- --------
|
|
43369
|
+
0 FriendlyName no
|
|
43370
|
+
1 Gender no
|
|
43371
|
+
2 Age no
|
|
43372
|
+
3 Height no
|
|
43373
|
+
4 Weight no
|
|
43374
|
+
5 Language no
|
|
43375
|
+
6 ElevSetting no
|
|
43376
|
+
7 WeightSetting no
|
|
43377
|
+
8 RestingHeartRate no
|
|
43378
|
+
9 DefaultMaxRunningHeartRate no
|
|
43379
|
+
10 DefaultMaxBikingHeartRate no
|
|
43380
|
+
11 DefaultMaxHeartRate no
|
|
43381
|
+
12 HRSetting no
|
|
43382
|
+
13 SpeedSetting no
|
|
43383
|
+
14 DistSetting no
|
|
43384
|
+
16 PowerSetting no
|
|
43385
|
+
17 ActivityClass no
|
|
43386
|
+
18 PositionSetting no
|
|
43387
|
+
21 TemperatureSetting no
|
|
43388
|
+
22 LocalID no
|
|
43389
|
+
23 GlobalID no
|
|
43390
|
+
24 YearOfBirth no
|
|
43391
|
+
28 WakeTime no
|
|
43392
|
+
29 SleepTime no
|
|
43393
|
+
30 HeightSetting no
|
|
43394
|
+
31 UserRunningStepLength no
|
|
43395
|
+
32 UserWalkingStepLength no
|
|
43396
|
+
37 Ltspeed no
|
|
43397
|
+
41 TimeLast-LthrUpdate no
|
|
43398
|
+
47 DepthSetting no
|
|
43399
|
+
49 DiveCount no
|
|
43400
|
+
62 GenderX no
|
|
43401
|
+
|
|
43402
|
+
=head3 Garmin HRMProfile Tags
|
|
43403
|
+
|
|
43404
|
+
Tag ID Tag Name Writable
|
|
43405
|
+
------ -------- --------
|
|
43406
|
+
0 Enabled no
|
|
43407
|
+
1 HRMAntID no
|
|
43408
|
+
2 LogHRV no
|
|
43409
|
+
3 HRMAntIDTransType no
|
|
43410
|
+
|
|
43411
|
+
=head3 Garmin SDMProfile Tags
|
|
43412
|
+
|
|
43413
|
+
Tag ID Tag Name Writable
|
|
43414
|
+
------ -------- --------
|
|
43415
|
+
0 Enabled no
|
|
43416
|
+
1 SDMAntID no
|
|
43417
|
+
2 SDMCalFactor no
|
|
43418
|
+
3 Odometer no
|
|
43419
|
+
4 SpeedSource no
|
|
43420
|
+
5 SDMAntIDTransType no
|
|
43421
|
+
7 OdometerRollover no
|
|
43422
|
+
|
|
43423
|
+
=head3 Garmin BikeProfile Tags
|
|
43424
|
+
|
|
43425
|
+
Tag ID Tag Name Writable
|
|
43426
|
+
------ -------- --------
|
|
43427
|
+
0 BikeProfileName no
|
|
43428
|
+
1 Sport no
|
|
43429
|
+
2 SubSport no
|
|
43430
|
+
3 Odometer no
|
|
43431
|
+
4 BikeSpdAntID no
|
|
43432
|
+
5 BikeCadAntID no
|
|
43433
|
+
6 BikeSpdcadAntID no
|
|
43434
|
+
7 BikePowerAntID no
|
|
43435
|
+
8 CustomWheelsize no
|
|
43436
|
+
9 AutoWheelsize no
|
|
43437
|
+
10 BikeWeight no
|
|
43438
|
+
11 PowerCalFactor no
|
|
43439
|
+
12 AutoWheelCal no
|
|
43440
|
+
13 AutoPowerZero no
|
|
43441
|
+
14 ID no
|
|
43442
|
+
15 SpdEnabled no
|
|
43443
|
+
16 CadEnabled no
|
|
43444
|
+
17 SpdcadEnabled no
|
|
43445
|
+
18 PowerEnabled no
|
|
43446
|
+
19 CrankLength no
|
|
43447
|
+
20 Enabled no
|
|
43448
|
+
21 BikeSpdAntIDTransType no
|
|
43449
|
+
22 BikeCadAntIDTransType no
|
|
43450
|
+
23 BikeSpdcadAntIDTransType no
|
|
43451
|
+
24 BikePowerAntIDTransType no
|
|
43452
|
+
37 OdometerRollover no
|
|
43453
|
+
38 FrontGearNum no
|
|
43454
|
+
39 FrontGear no
|
|
43455
|
+
40 RearGearNum no
|
|
43456
|
+
41 RearGear no
|
|
43457
|
+
44 ShimanoDi2Enabled no
|
|
43458
|
+
|
|
43459
|
+
=head3 Garmin ZonesTarget Tags
|
|
43460
|
+
|
|
43461
|
+
Tag ID Tag Name Writable
|
|
43462
|
+
------ -------- --------
|
|
43463
|
+
1 MaxHeartRate no
|
|
43464
|
+
2 ThresholdHeartRate no
|
|
43465
|
+
3 FunctionalThresholdPower no
|
|
43466
|
+
5 HRCalcType no
|
|
43467
|
+
7 PwrCalcType no
|
|
43468
|
+
|
|
43469
|
+
=head3 Garmin HRZone Tags
|
|
43470
|
+
|
|
43471
|
+
Tag ID Tag Name Writable
|
|
43472
|
+
------ -------- --------
|
|
43473
|
+
1 HighBpm no
|
|
43474
|
+
2 HRZoneName no
|
|
43475
|
+
|
|
43476
|
+
=head3 Garmin PowerZone Tags
|
|
43477
|
+
|
|
43478
|
+
Tag ID Tag Name Writable
|
|
43479
|
+
------ -------- --------
|
|
43480
|
+
1 HighValue no
|
|
43481
|
+
2 PowerZoneName no
|
|
43482
|
+
|
|
43483
|
+
=head3 Garmin MetZone Tags
|
|
43484
|
+
|
|
43485
|
+
Tag ID Tag Name Writable
|
|
43486
|
+
------ -------- --------
|
|
43487
|
+
1 HighBpm no
|
|
43488
|
+
2 Calories no
|
|
43489
|
+
3 FatCalories no
|
|
43490
|
+
|
|
43491
|
+
=head3 Garmin Sport Tags
|
|
43492
|
+
|
|
43493
|
+
Tag ID Tag Name Writable
|
|
43494
|
+
------ -------- --------
|
|
43495
|
+
0 Sport no
|
|
43496
|
+
1 SubSport no
|
|
43497
|
+
3 SportName no
|
|
43498
|
+
15 PopularityRouting no
|
|
43499
|
+
17 NavigationPrompt no
|
|
43500
|
+
18 SharpBendWarnings no
|
|
43501
|
+
21 WorkoutVideos no
|
|
43502
|
+
22 HighTrafficRoadWarnings no
|
|
43503
|
+
23 RoadHazardWarnings no
|
|
43504
|
+
24 UnpavedRoadWarnings no
|
|
43505
|
+
|
|
43506
|
+
=head3 Garmin TrainingSettings Tags
|
|
43507
|
+
|
|
43508
|
+
Tag ID Tag Name Writable
|
|
43509
|
+
------ -------- --------
|
|
43510
|
+
2 VirtualPartnerPace no
|
|
43511
|
+
3 AutoLapMode no
|
|
43512
|
+
4 AutoLapDistance no
|
|
43513
|
+
7 AutoPause no
|
|
43514
|
+
8 AutoPauseThreshold no
|
|
43515
|
+
12 PowerAveraging no
|
|
43516
|
+
15 AutoScroll no
|
|
43517
|
+
18 TimerStartPrompt no
|
|
43518
|
+
22 PoolLength no
|
|
43519
|
+
25 AutoSleep no
|
|
43520
|
+
27 Satellites no
|
|
43521
|
+
31 TargetDistance no
|
|
43522
|
+
32 TargetSpeed no
|
|
43523
|
+
33 TargetTime no
|
|
43524
|
+
35 ThreeDSpeed no
|
|
43525
|
+
36 ThreeDDistance no
|
|
43526
|
+
37 AutoClimb no
|
|
43527
|
+
40 AutoClimbInvertColors no
|
|
43528
|
+
41 AutoClimbVerticalSpeed no
|
|
43529
|
+
42 AutoClimbModeSwitch no
|
|
43530
|
+
46 LapKey no
|
|
43531
|
+
50 WorkoutTargetAlerts no
|
|
43532
|
+
51 TimerStartAuto no
|
|
43533
|
+
52 TimerStartSpeed no
|
|
43534
|
+
53 SegmentAlerts no
|
|
43535
|
+
57 CountdownStart no
|
|
43536
|
+
63 ClimbPro no
|
|
43537
|
+
67 TrackConsumption no
|
|
43538
|
+
69 BottleSize no
|
|
43539
|
+
70 Volume no
|
|
43540
|
+
80 MinimumRideDuration no
|
|
43541
|
+
86 LaneNumber no
|
|
43542
|
+
87 BroadcastHeartRate no
|
|
43543
|
+
93 SelfEvaluation no
|
|
43544
|
+
102 SpeedPro no
|
|
43545
|
+
103 Touch no
|
|
43546
|
+
106 RecordTemperature no
|
|
43547
|
+
109 RunningPowerMode no
|
|
43548
|
+
110 AccountForWind no
|
|
43549
|
+
111 ClimbProMode no
|
|
43550
|
+
117 ClimbDetection no
|
|
43551
|
+
119 ClimbProTerrain no
|
|
43552
|
+
153 PreciseTargetSpeed no
|
|
43553
|
+
1001 GPS no
|
|
43554
|
+
1002 Glonass no
|
|
43555
|
+
1003 Galileo no
|
|
43556
|
+
1004 Beidou no
|
|
43557
|
+
|
|
43558
|
+
=head3 Garmin DataScreen Tags
|
|
43559
|
+
|
|
43560
|
+
Tag ID Tag Name Writable
|
|
43561
|
+
------ -------- --------
|
|
43562
|
+
3 NrFields no
|
|
43563
|
+
7 DataFields no
|
|
43564
|
+
8 Layout no
|
|
43565
|
+
9 Position no
|
|
43566
|
+
10 ScreenType no
|
|
43567
|
+
|
|
43568
|
+
=head3 Garmin Goal Tags
|
|
43569
|
+
|
|
43570
|
+
Tag ID Tag Name Writable
|
|
43571
|
+
------ -------- --------
|
|
43572
|
+
0 Sport no
|
|
43573
|
+
1 SubSport no
|
|
43574
|
+
2 StartDate no
|
|
43575
|
+
3 EndDate no
|
|
43576
|
+
4 GoalType no
|
|
43577
|
+
5 Value no
|
|
43578
|
+
6 Repeat no
|
|
43579
|
+
7 TargetValue no
|
|
43580
|
+
8 Recurrence no
|
|
43581
|
+
9 RecurrenceValue no
|
|
43582
|
+
10 Enabled no
|
|
43583
|
+
11 Source no
|
|
43584
|
+
|
|
43585
|
+
=head3 Garmin Alert Tags
|
|
43586
|
+
|
|
43587
|
+
Tag ID Tag Name Writable
|
|
43588
|
+
------ -------- --------
|
|
43589
|
+
1 Metric no
|
|
43590
|
+
2 Value no
|
|
43591
|
+
3 Status no
|
|
43592
|
+
4 Message no
|
|
43593
|
+
5 Repeat no
|
|
43594
|
+
|
|
43595
|
+
=head3 Garmin RangeAlert Tags
|
|
43596
|
+
|
|
43597
|
+
Tag ID Tag Name Writable
|
|
43598
|
+
------ -------- --------
|
|
43599
|
+
1 Metric no
|
|
43600
|
+
2 LowStatus no
|
|
43601
|
+
3 LowValue no
|
|
43602
|
+
4 HighStatus no
|
|
43603
|
+
5 HighValue no
|
|
43604
|
+
|
|
43605
|
+
=head3 Garmin Session Tags
|
|
43606
|
+
|
|
43607
|
+
Tag ID Tag Name Writable
|
|
43608
|
+
------ -------- --------
|
|
43609
|
+
0 Event no
|
|
43610
|
+
1 EventType no
|
|
43611
|
+
2 GPSDateTime no
|
|
43612
|
+
3 GPSLatitude no
|
|
43613
|
+
4 GPSLongitude no
|
|
43614
|
+
5 Sport no
|
|
43615
|
+
6 SubSport no
|
|
43616
|
+
7 TotalElapsedTime no
|
|
43617
|
+
8 TotalTimerTime no
|
|
43618
|
+
9 TotalDistance no
|
|
43619
|
+
10 TotalCycles no
|
|
43620
|
+
11 TotalCalories no
|
|
43621
|
+
13 TotalFatCalories no
|
|
43622
|
+
14 AvgSpeed no
|
|
43623
|
+
15 MaxSpeed no
|
|
43624
|
+
16 AvgHeartRate no
|
|
43625
|
+
17 MaxHeartRate no
|
|
43626
|
+
18 AvgCadence no
|
|
43627
|
+
19 MaxCadence no
|
|
43628
|
+
20 AvgPower no
|
|
43629
|
+
21 MaxPower no
|
|
43630
|
+
22 TotalAscent no
|
|
43631
|
+
23 TotalDescent no
|
|
43632
|
+
24 TotalTrainingEffect no
|
|
43633
|
+
25 FirstLapIndex no
|
|
43634
|
+
26 NumLaps no
|
|
43635
|
+
27 EventGroup no
|
|
43636
|
+
28 Trigger no
|
|
43637
|
+
29 NECLatitude no
|
|
43638
|
+
30 NECLongitude no
|
|
43639
|
+
31 SWCLatitude no
|
|
43640
|
+
32 SWCLongitude no
|
|
43641
|
+
33 NumLengths no
|
|
43642
|
+
34 NormalizedPower no
|
|
43643
|
+
35 TrainingStressScore no
|
|
43644
|
+
36 IntensityFactor no
|
|
43645
|
+
37 LeftRightBalance no
|
|
43646
|
+
38 GPSDestLatitude no
|
|
43647
|
+
39 GPSDestLongitude no
|
|
43648
|
+
41 AvgStrokeCount no
|
|
43649
|
+
42 AvgStrokeDistance no
|
|
43650
|
+
43 SwimStroke no
|
|
43651
|
+
44 PoolLength no
|
|
43652
|
+
45 ThresholdPower no
|
|
43653
|
+
46 PoolLengthUnit no
|
|
43654
|
+
47 NumActiveLengths no
|
|
43655
|
+
48 TotalWork no
|
|
43656
|
+
49 AvgAltitude no
|
|
43657
|
+
50 MaxAltitude no
|
|
43658
|
+
51 GPSAccuracy no
|
|
43659
|
+
52 AvgGrade no
|
|
43660
|
+
53 AvgPosGrade no
|
|
43661
|
+
54 AvgNegGrade no
|
|
43662
|
+
55 MaxPosGrade no
|
|
43663
|
+
56 MaxNegGrade no
|
|
43664
|
+
57 AvgTemperature no
|
|
43665
|
+
58 MaxTemperature no
|
|
43666
|
+
59 TotalMovingTime no
|
|
43667
|
+
60 AvgPosVerticalSpeed no
|
|
43668
|
+
61 AvgNegVerticalSpeed no
|
|
43669
|
+
62 MaxPosVerticalSpeed no
|
|
43670
|
+
63 MaxNegVerticalSpeed no
|
|
43671
|
+
64 MinHeartRate no
|
|
43672
|
+
65 TimeInHRZone no
|
|
43673
|
+
66 TimeInSpeedZone no
|
|
43674
|
+
67 TimeInCadenceZone no
|
|
43675
|
+
68 TimeInPowerZone no
|
|
43676
|
+
69 AvgLapTime no
|
|
43677
|
+
70 BestLapIndex no
|
|
43678
|
+
71 MinAltitude no
|
|
43679
|
+
78 WorkTime no
|
|
43680
|
+
79 AvgSwimCadence no
|
|
43681
|
+
80 AvgSwolf no
|
|
43682
|
+
82 PlayerScore no
|
|
43683
|
+
83 OpponentScore no
|
|
43684
|
+
84 OpponentName no
|
|
43685
|
+
85 StrokeCount no
|
|
43686
|
+
86 ZoneCount no
|
|
43687
|
+
87 MaxBallSpeed no
|
|
43688
|
+
88 AvgBallSpeed no
|
|
43689
|
+
89 AvgVerticalOscillation no
|
|
43690
|
+
90 AvgStanceTimePercent no
|
|
43691
|
+
91 AvgStanceTime no
|
|
43692
|
+
92 AvgFractionalCadence no
|
|
43693
|
+
93 MaxFractionalCadence no
|
|
43694
|
+
94 TotalFractionalCycles no
|
|
43695
|
+
95 AvgTotalHemoglobinConc no
|
|
43696
|
+
96 MinTotalHemoglobinConc no
|
|
43697
|
+
97 MaxTotalHemoglobinConc no
|
|
43698
|
+
98 AvgSaturatedHemoglobinPercent no
|
|
43699
|
+
99 MinSaturatedHemoglobinPercent no
|
|
43700
|
+
100 MaxSaturatedHemoglobinPercent no
|
|
43701
|
+
101 AvgLeftTorqueEffectiveness no
|
|
43702
|
+
102 AvgRightTorqueEffectiveness no
|
|
43703
|
+
103 AvgLeftPedalSmoothness no
|
|
43704
|
+
104 AvgRightPedalSmoothness no
|
|
43705
|
+
105 AvgCombinedPedalSmoothness no
|
|
43706
|
+
110 SportProfileName no
|
|
43707
|
+
111 SportIndex no
|
|
43708
|
+
112 TimeStanding no
|
|
43709
|
+
113 StandCount no
|
|
43710
|
+
114 AvgLeftPco no
|
|
43711
|
+
115 AvgRightPco no
|
|
43712
|
+
116 AvgLeftPowerPhase no
|
|
43713
|
+
117 AvgLeftPowerPhasePeak no
|
|
43714
|
+
118 AvgRightPowerPhase no
|
|
43715
|
+
119 AvgRightPowerPhasePeak no
|
|
43716
|
+
120 AvgPowerPosition no
|
|
43717
|
+
121 MaxPowerPosition no
|
|
43718
|
+
122 AvgCadencePosition no
|
|
43719
|
+
123 MaxCadencePosition no
|
|
43720
|
+
124 EnhancedAvgSpeed no
|
|
43721
|
+
125 EnhancedMaxSpeed no
|
|
43722
|
+
126 EnhancedAvgAltitude no
|
|
43723
|
+
127 EnhancedMinAltitude no
|
|
43724
|
+
128 EnhancedMaxAltitude no
|
|
43725
|
+
129 AvgLevMotorPower no
|
|
43726
|
+
130 MaxLevMotorPower no
|
|
43727
|
+
131 LevBatteryConsumption no
|
|
43728
|
+
132 AvgVerticalRatio no
|
|
43729
|
+
133 AvgStanceTimeBalance no
|
|
43730
|
+
134 AvgStepLength no
|
|
43731
|
+
137 TotalAnaerobicTrainingEffect no
|
|
43732
|
+
139 AvgVam no
|
|
43733
|
+
140 AvgDepth no
|
|
43734
|
+
141 MaxDepth no
|
|
43735
|
+
142 SurfaceInterval no
|
|
43736
|
+
143 StartCns no
|
|
43737
|
+
144 EndCns no
|
|
43738
|
+
145 StartN2 no
|
|
43739
|
+
146 EndN2 no
|
|
43740
|
+
147 AvgRespirationRate no
|
|
43741
|
+
148 MaxRespirationRate no
|
|
43742
|
+
149 MinRespirationRate no
|
|
43743
|
+
150 MinTemperature no
|
|
43744
|
+
151 TotalSets no
|
|
43745
|
+
152 Volume no
|
|
43746
|
+
155 O2Toxicity no
|
|
43747
|
+
156 DiveNumber no
|
|
43748
|
+
168 TrainingLoadPeak no
|
|
43749
|
+
169 EnhancedAvgRespirationRate no
|
|
43750
|
+
170 EnhancedMaxRespirationRate no
|
|
43751
|
+
177 CaloriesConsumed no
|
|
43752
|
+
178 EstSweatLoss no
|
|
43753
|
+
179 FluidConsumed no
|
|
43754
|
+
180 EnhancedMinRespirationRate no
|
|
43755
|
+
181 TotalGrit no
|
|
43756
|
+
182 TotalFlow no
|
|
43757
|
+
183 JumpCount no
|
|
43758
|
+
185 ExecutionScore no
|
|
43759
|
+
186 AvgGrit no
|
|
43760
|
+
187 AvgFlow no
|
|
43761
|
+
188 PrimaryBenefit no
|
|
43762
|
+
192 WorkoutFeel no
|
|
43763
|
+
193 WorkoutRpe no
|
|
43764
|
+
194 AvgSPO2 no
|
|
43765
|
+
195 AvgStress no
|
|
43766
|
+
196 MetabolicCalories no
|
|
43767
|
+
197 SDRRHRV no
|
|
43768
|
+
198 RMSSD_HRV no
|
|
43769
|
+
199 TotalFractionalAscent no
|
|
43770
|
+
200 TotalFractionalDescent no
|
|
43771
|
+
202 RecoveryHeartRate no
|
|
43772
|
+
205 BeginningPotential no
|
|
43773
|
+
206 EndingPotential no
|
|
43774
|
+
207 MinStamina no
|
|
43775
|
+
208 AvgCoreTemperature no
|
|
43776
|
+
209 MinCoreTemperature no
|
|
43777
|
+
210 MaxCoreTemperature no
|
|
43778
|
+
211 GradeAdjustedSpeed no
|
|
43779
|
+
212 WindData no
|
|
43780
|
+
215 BeginningBodyBattery no
|
|
43781
|
+
216 EndingBodyBattery no
|
|
43782
|
+
220 PackWeight no
|
|
43783
|
+
222 StepSpeedLossDistance no
|
|
43784
|
+
223 StepSpeedLossPercent no
|
|
43785
|
+
224 AvgForce no
|
|
43786
|
+
225 MaxForce no
|
|
43787
|
+
226 NormalizedForce no
|
|
43788
|
+
|
|
43789
|
+
=head3 Garmin Lap Tags
|
|
43790
|
+
|
|
43791
|
+
Tag ID Tag Name Writable
|
|
43792
|
+
------ -------- --------
|
|
43793
|
+
0 Event no
|
|
43794
|
+
1 EventType no
|
|
43795
|
+
2 GPSDateTime no
|
|
43796
|
+
3 GPSLatitude no
|
|
43797
|
+
4 GPSLongitude no
|
|
43798
|
+
5 GPSDestLatitude no
|
|
43799
|
+
6 GPSDestLongitude no
|
|
43800
|
+
7 TotalElapsedTime no
|
|
43801
|
+
8 TotalTimerTime no
|
|
43802
|
+
9 TotalDistance no
|
|
43803
|
+
10 TotalCycles no
|
|
43804
|
+
11 TotalCalories no
|
|
43805
|
+
12 TotalFatCalories no
|
|
43806
|
+
13 AvgSpeed no
|
|
43807
|
+
14 MaxSpeed no
|
|
43808
|
+
15 AvgHeartRate no
|
|
43809
|
+
16 MaxHeartRate no
|
|
43810
|
+
17 AvgCadence no
|
|
43811
|
+
18 MaxCadence no
|
|
43812
|
+
19 AvgPower no
|
|
43813
|
+
20 MaxPower no
|
|
43814
|
+
21 TotalAscent no
|
|
43815
|
+
22 TotalDescent no
|
|
43816
|
+
23 Intensity no
|
|
43817
|
+
24 LapTrigger no
|
|
43818
|
+
25 Sport no
|
|
43819
|
+
26 EventGroup no
|
|
43820
|
+
27 NECLatitude no
|
|
43821
|
+
28 NECLongitude no
|
|
43822
|
+
29 SWCLatitude no
|
|
43823
|
+
30 SWCLongitude no
|
|
43824
|
+
32 NumLengths no
|
|
43825
|
+
33 NormalizedPower no
|
|
43826
|
+
34 LeftRightBalance no
|
|
43827
|
+
35 FirstLengthIndex no
|
|
43828
|
+
37 AvgStrokeDistance no
|
|
43829
|
+
38 SwimStroke no
|
|
43830
|
+
39 SubSport no
|
|
43831
|
+
40 NumActiveLengths no
|
|
43832
|
+
41 TotalWork no
|
|
43833
|
+
42 AvgAltitude no
|
|
43834
|
+
43 MaxAltitude no
|
|
43835
|
+
44 GPSAccuracy no
|
|
43836
|
+
45 AvgGrade no
|
|
43837
|
+
46 AvgPosGrade no
|
|
43838
|
+
47 AvgNegGrade no
|
|
43839
|
+
48 MaxPosGrade no
|
|
43840
|
+
49 MaxNegGrade no
|
|
43841
|
+
50 AvgTemperature no
|
|
43842
|
+
51 MaxTemperature no
|
|
43843
|
+
52 TotalMovingTime no
|
|
43844
|
+
53 AvgPosVerticalSpeed no
|
|
43845
|
+
54 AvgNegVerticalSpeed no
|
|
43846
|
+
55 MaxPosVerticalSpeed no
|
|
43847
|
+
56 MaxNegVerticalSpeed no
|
|
43848
|
+
57 TimeInHRZone no
|
|
43849
|
+
58 TimeInSpeedZone no
|
|
43850
|
+
59 TimeInCadenceZone no
|
|
43851
|
+
60 TimeInPowerZone no
|
|
43852
|
+
61 RepetitionNum no
|
|
43853
|
+
62 MinAltitude no
|
|
43854
|
+
63 MinHeartRate no
|
|
43855
|
+
71 WktStepIndex no
|
|
43856
|
+
73 AvgSwolf no
|
|
43857
|
+
74 OpponentScore no
|
|
43858
|
+
75 StrokeCount no
|
|
43859
|
+
76 ZoneCount no
|
|
43860
|
+
77 AvgVerticalOscillation no
|
|
43861
|
+
78 AvgStanceTimePercent no
|
|
43862
|
+
79 AvgStanceTime no
|
|
43863
|
+
80 AvgFractionalCadence no
|
|
43864
|
+
81 MaxFractionalCadence no
|
|
43865
|
+
82 TotalFractionalCycles no
|
|
43866
|
+
83 PlayerScore no
|
|
43867
|
+
84 AvgTotalHemoglobinConc no
|
|
43868
|
+
85 MinTotalHemoglobinConc no
|
|
43869
|
+
86 MaxTotalHemoglobinConc no
|
|
43870
|
+
87 AvgSaturatedHemoglobinPercent no
|
|
43871
|
+
88 MinSaturatedHemoglobinPercent no
|
|
43872
|
+
89 MaxSaturatedHemoglobinPercent no
|
|
43873
|
+
91 AvgLeftTorqueEffectiveness no
|
|
43874
|
+
92 AvgRightTorqueEffectiveness no
|
|
43875
|
+
93 AvgLeftPedalSmoothness no
|
|
43876
|
+
94 AvgRightPedalSmoothness no
|
|
43877
|
+
95 AvgCombinedPedalSmoothness no
|
|
43878
|
+
98 TimeStanding no
|
|
43879
|
+
99 StandCount no
|
|
43880
|
+
100 AvgLeftPco no
|
|
43881
|
+
101 AvgRightPco no
|
|
43882
|
+
102 AvgLeftPowerPhase no
|
|
43883
|
+
103 AvgLeftPowerPhasePeak no
|
|
43884
|
+
104 AvgRightPowerPhase no
|
|
43885
|
+
105 AvgRightPowerPhasePeak no
|
|
43886
|
+
106 AvgPowerPosition no
|
|
43887
|
+
107 MaxPowerPosition no
|
|
43888
|
+
108 AvgCadencePosition no
|
|
43889
|
+
109 MaxCadencePosition no
|
|
43890
|
+
110 EnhancedAvgSpeed no
|
|
43891
|
+
111 EnhancedMaxSpeed no
|
|
43892
|
+
112 EnhancedAvgAltitude no
|
|
43893
|
+
113 EnhancedMinAltitude no
|
|
43894
|
+
114 EnhancedMaxAltitude no
|
|
43895
|
+
115 AvgLevMotorPower no
|
|
43896
|
+
116 MaxLevMotorPower no
|
|
43897
|
+
117 LevBatteryConsumption no
|
|
43898
|
+
118 AvgVerticalRatio no
|
|
43899
|
+
119 AvgStanceTimeBalance no
|
|
43900
|
+
120 AvgStepLength no
|
|
43901
|
+
121 AvgVam no
|
|
43902
|
+
122 AvgDepth no
|
|
43903
|
+
123 MaxDepth no
|
|
43904
|
+
124 MinTemperature no
|
|
43905
|
+
136 EnhancedAvgRespirationRate no
|
|
43906
|
+
137 EnhancedMaxRespirationRate no
|
|
43907
|
+
145 EstSweatLoss no
|
|
43908
|
+
147 AvgRespirationRate no
|
|
43909
|
+
148 MaxRespirationRate no
|
|
43910
|
+
149 TotalGrit no
|
|
43911
|
+
150 TotalFlow no
|
|
43912
|
+
151 JumpCount no
|
|
43913
|
+
152 ExecutionScore no
|
|
43914
|
+
153 AvgGrit no
|
|
43915
|
+
154 AvgFlow no
|
|
43916
|
+
155 RestingCalories no
|
|
43917
|
+
156 TotalFractionalAscent no
|
|
43918
|
+
157 TotalFractionalDescent no
|
|
43919
|
+
158 AvgCoreTemperature no
|
|
43920
|
+
159 MinCoreTemperature no
|
|
43921
|
+
160 MaxCoreTemperature no
|
|
43922
|
+
161 GradeAdjustedSpeed no
|
|
43923
|
+
163 Unpaved no
|
|
43924
|
+
164 StepSpeedLossDistance no
|
|
43925
|
+
165 StepSpeedLossPercentage no
|
|
43926
|
+
166 AvgForce no
|
|
43927
|
+
167 MaxForce no
|
|
43928
|
+
168 NormalizedForce no
|
|
43929
|
+
|
|
43930
|
+
=head3 Garmin Record Tags
|
|
43931
|
+
|
|
43932
|
+
Tag ID Tag Name Writable
|
|
43933
|
+
------ -------- --------
|
|
43934
|
+
0 GPSLatitude no
|
|
43935
|
+
1 GPSLongitude no
|
|
43936
|
+
2 GPSAltitude no
|
|
43937
|
+
3 HeartRate no
|
|
43938
|
+
4 Cadence no
|
|
43939
|
+
5 Distance no
|
|
43940
|
+
6 GPSSpeed no
|
|
43941
|
+
7 Power no
|
|
43942
|
+
8 CompressedSpeedDistance no
|
|
43943
|
+
9 Grade no
|
|
43944
|
+
10 Resistance no
|
|
43945
|
+
11 TimeFromCourse no
|
|
43946
|
+
12 CycleLength no
|
|
43947
|
+
13 Temperature no
|
|
43948
|
+
17 Speed_1s no
|
|
43949
|
+
18 Cycles no
|
|
43950
|
+
19 TotalCycles no
|
|
43951
|
+
28 CompressedAccumulatedPower no
|
|
43952
|
+
29 AccumulatedPower no
|
|
43953
|
+
30 LeftRightBalance no
|
|
43954
|
+
31 GPSAccuracy no
|
|
43955
|
+
32 VerticalSpeed no
|
|
43956
|
+
33 Calories no
|
|
43957
|
+
39 VerticalOscillation no
|
|
43958
|
+
40 StanceTimePercent no
|
|
43959
|
+
41 StanceTime no
|
|
43960
|
+
42 ActivityType no
|
|
43961
|
+
43 LeftTorqueEffectiveness no
|
|
43962
|
+
44 RightTorqueEffectiveness no
|
|
43963
|
+
45 LeftPedalSmoothness no
|
|
43964
|
+
46 RightPedalSmoothness no
|
|
43965
|
+
47 CombinedPedalSmoothness no
|
|
43966
|
+
48 Time128 no
|
|
43967
|
+
49 StrokeType no
|
|
43968
|
+
50 Zone no
|
|
43969
|
+
51 BallSpeed no
|
|
43970
|
+
52 Cadence256 no
|
|
43971
|
+
53 FractionalCadence no
|
|
43972
|
+
54 TotalHemoglobinConc no
|
|
43973
|
+
55 TotalHemoglobinConcMin no
|
|
43974
|
+
56 TotalHemoglobinConcMax no
|
|
43975
|
+
57 SaturatedHemoglobinPercent no
|
|
43976
|
+
58 SaturatedHemoglobinPercentMin no
|
|
43977
|
+
59 SaturatedHemoglobinPercentMax no
|
|
43978
|
+
62 DeviceIndex no
|
|
43979
|
+
67 LeftPco no
|
|
43980
|
+
68 RightPco no
|
|
43981
|
+
69 LeftPowerPhase no
|
|
43982
|
+
70 LeftPowerPhasePeak no
|
|
43983
|
+
71 RightPowerPhase no
|
|
43984
|
+
72 RightPowerPhasePeak no
|
|
43985
|
+
73 GPSSpeed no
|
|
43986
|
+
78 GPSAltitude no
|
|
43987
|
+
81 BatterySoc no
|
|
43988
|
+
82 MotorPower no
|
|
43989
|
+
83 VerticalRatio no
|
|
43990
|
+
84 StanceTimeBalance no
|
|
43991
|
+
85 StepLength no
|
|
43992
|
+
87 CycleLength16 no
|
|
43993
|
+
90 PerformanceCondition no
|
|
43994
|
+
91 AbsolutePressure no
|
|
43995
|
+
92 Depth no
|
|
43996
|
+
93 NextStopDepth no
|
|
43997
|
+
94 NextStopTime no
|
|
43998
|
+
95 TimeToSurface no
|
|
43999
|
+
96 NdlTime no
|
|
44000
|
+
97 CnsLoad no
|
|
44001
|
+
98 N2Load no
|
|
44002
|
+
99 RespirationRate no
|
|
44003
|
+
108 EnhancedRespirationRate no
|
|
44004
|
+
114 Grit no
|
|
44005
|
+
115 Flow no
|
|
44006
|
+
116 CurrentStress no
|
|
44007
|
+
117 EbikeTravelRange no
|
|
44008
|
+
118 EbikeBatteryLevel no
|
|
44009
|
+
119 EbikeAssistMode no
|
|
44010
|
+
120 EbikeAssistLevelPercent no
|
|
44011
|
+
121 TotalAscent no
|
|
44012
|
+
123 AirTimeRemaining no
|
|
44013
|
+
124 PressureSac no
|
|
44014
|
+
125 VolumeSac no
|
|
44015
|
+
126 Rmv no
|
|
44016
|
+
127 AscentRate no
|
|
44017
|
+
129 PO2 no
|
|
44018
|
+
136 WristHeartRate no
|
|
44019
|
+
137 StaminaPotential no
|
|
44020
|
+
138 Stamina no
|
|
44021
|
+
139 CoreTemperature no
|
|
44022
|
+
140 GradeAdjustedSpeed no
|
|
44023
|
+
143 BodyBattery no
|
|
44024
|
+
144 ExternalHeartRate no
|
|
44025
|
+
146 StepSpeedLossDistance no
|
|
44026
|
+
147 StepSpeedLossPercentage no
|
|
44027
|
+
148 Force no
|
|
44028
|
+
|
|
44029
|
+
=head3 Garmin Event Tags
|
|
44030
|
+
|
|
44031
|
+
Tag ID Tag Name Writable
|
|
44032
|
+
------ -------- --------
|
|
44033
|
+
0 Event no
|
|
44034
|
+
1 EventType no
|
|
44035
|
+
2 Data16 no
|
|
44036
|
+
3 Data no
|
|
44037
|
+
4 EventGroup no
|
|
44038
|
+
7 Score no
|
|
44039
|
+
8 OpponentScore no
|
|
44040
|
+
9 FrontGearNum no
|
|
44041
|
+
10 FrontGear no
|
|
44042
|
+
11 RearGearNum no
|
|
44043
|
+
12 RearGear no
|
|
44044
|
+
13 DeviceIndex no
|
|
44045
|
+
14 ActivityType no
|
|
44046
|
+
15 StartTimeStamp no
|
|
44047
|
+
21 RadarThreatLevelMax no
|
|
44048
|
+
22 RadarThreatCount no
|
|
44049
|
+
23 RadarThreatAvgApproachSpeed no
|
|
44050
|
+
24 RadarThreatMaxApproachSpeed no
|
|
44051
|
+
|
|
44052
|
+
=head3 Garmin DeviceUsed Tags
|
|
44053
|
+
|
|
44054
|
+
Tag ID Tag Name Writable
|
|
44055
|
+
------ -------- --------
|
|
44056
|
+
0 DevSpeed no
|
|
44057
|
+
1 DevDistance no
|
|
44058
|
+
2 DevCadence no
|
|
44059
|
+
3 DevElevation no
|
|
44060
|
+
4 DevHeartRate no
|
|
44061
|
+
6 DevPower no
|
|
44062
|
+
|
|
44063
|
+
=head3 Garmin DeviceInfo Tags
|
|
44064
|
+
|
|
44065
|
+
Tag ID Tag Name Writable
|
|
44066
|
+
------ -------- --------
|
|
44067
|
+
0 DeviceIndex no
|
|
44068
|
+
1 DeviceType no
|
|
44069
|
+
2 Manufacturer no
|
|
44070
|
+
3 SerialNumber no
|
|
44071
|
+
4 Product no
|
|
44072
|
+
5 SoftwareVersion no
|
|
44073
|
+
6 HardwareVersion no
|
|
44074
|
+
7 CumOperatingTime no
|
|
44075
|
+
10 BatteryVoltage no
|
|
44076
|
+
11 BatteryStatus no
|
|
44077
|
+
18 SensorPosition no
|
|
44078
|
+
19 Descriptor no
|
|
44079
|
+
20 AntTransmissionType no
|
|
44080
|
+
21 AntDeviceNumber no
|
|
44081
|
+
22 AntNetwork no
|
|
44082
|
+
24 AntID no
|
|
44083
|
+
25 SourceType no
|
|
44084
|
+
27 ProductName no
|
|
44085
|
+
32 BatteryLevel no
|
|
44086
|
+
|
|
44087
|
+
=head3 Garmin Workout Tags
|
|
44088
|
+
|
|
44089
|
+
Tag ID Tag Name Writable
|
|
44090
|
+
------ -------- --------
|
|
44091
|
+
4 Sport no
|
|
44092
|
+
5 Capabilities no
|
|
44093
|
+
6 NumValidSteps no
|
|
44094
|
+
8 WorkoutName no
|
|
44095
|
+
9 DurationType no
|
|
44096
|
+
10 DurationValue no
|
|
44097
|
+
11 SubSport no
|
|
44098
|
+
14 PoolLength no
|
|
44099
|
+
15 PoolLengthUnit no
|
|
44100
|
+
17 WorkoutDescription no
|
|
44101
|
+
20 WorkoutIndex no
|
|
44102
|
+
21 Time no
|
|
44103
|
+
22 Distance no
|
|
44104
|
+
|
|
44105
|
+
=head3 Garmin WorkoutStep Tags
|
|
44106
|
+
|
|
44107
|
+
Tag ID Tag Name Writable
|
|
44108
|
+
------ -------- --------
|
|
44109
|
+
0 WktStepName no
|
|
44110
|
+
1 DurationType no
|
|
44111
|
+
2 DurationValue no
|
|
44112
|
+
3 TargetType no
|
|
44113
|
+
4 TargetValue no
|
|
44114
|
+
5 CustomTargetValueLow no
|
|
44115
|
+
6 CustomTargetValueHigh no
|
|
44116
|
+
7 Intensity no
|
|
44117
|
+
8 Notes no
|
|
44118
|
+
9 Equipment no
|
|
44119
|
+
10 ExerciseCategory no
|
|
44120
|
+
11 ExerciseName no
|
|
44121
|
+
12 ExerciseWeight no
|
|
44122
|
+
13 WeightDisplayUnit no
|
|
44123
|
+
18 SkipLastRecover no
|
|
44124
|
+
19 SecondaryTargetType no
|
|
44125
|
+
20 SecondaryTargetValue no
|
|
44126
|
+
21 SecondaryCustomTargetValueLow no
|
|
44127
|
+
22 SecondaryCustomTargetValueHigh no
|
|
44128
|
+
31 WorkoutIndex no
|
|
44129
|
+
|
|
44130
|
+
=head3 Garmin Schedule Tags
|
|
44131
|
+
|
|
44132
|
+
Tag ID Tag Name Writable
|
|
44133
|
+
------ -------- --------
|
|
44134
|
+
0 Manufacturer no
|
|
44135
|
+
1 Product no
|
|
44136
|
+
2 SerialNumber no
|
|
44137
|
+
3 TimeCreated no
|
|
44138
|
+
4 Completed no
|
|
44139
|
+
5 ScheduleType no
|
|
44140
|
+
6 ScheduledTime no
|
|
44141
|
+
|
|
44142
|
+
=head3 Garmin Location Tags
|
|
44143
|
+
|
|
44144
|
+
Tag ID Tag Name Writable
|
|
44145
|
+
------ -------- --------
|
|
44146
|
+
0 LocationName no
|
|
44147
|
+
1 GPSLatitude no
|
|
44148
|
+
2 GPSLongitude no
|
|
44149
|
+
3 LocationSymbol no
|
|
44150
|
+
4 GPSAltitude no
|
|
44151
|
+
5 EnhancedAltitude no
|
|
44152
|
+
6 LocationDescription no
|
|
44153
|
+
|
|
44154
|
+
=head3 Garmin WeightScale Tags
|
|
44155
|
+
|
|
44156
|
+
Tag ID Tag Name Writable
|
|
44157
|
+
------ -------- --------
|
|
44158
|
+
0 Weight no
|
|
44159
|
+
1 PercentFat no
|
|
44160
|
+
2 PercentHydration no
|
|
44161
|
+
3 VisceralFatMass no
|
|
44162
|
+
4 BoneMass no
|
|
44163
|
+
5 MuscleMass no
|
|
44164
|
+
7 BasalMet no
|
|
44165
|
+
8 PhysiqueRating no
|
|
44166
|
+
9 ActiveMet no
|
|
44167
|
+
10 MetabolicAge no
|
|
44168
|
+
11 VisceralFatRating no
|
|
44169
|
+
12 UserProfileIndex no
|
|
44170
|
+
13 Bmi no
|
|
44171
|
+
|
|
44172
|
+
=head3 Garmin Course Tags
|
|
44173
|
+
|
|
44174
|
+
Tag ID Tag Name Writable
|
|
44175
|
+
------ -------- --------
|
|
44176
|
+
4 Sport no
|
|
44177
|
+
5 CourseName no
|
|
44178
|
+
6 Capabilities no
|
|
44179
|
+
7 SubSport no
|
|
44180
|
+
|
|
44181
|
+
=head3 Garmin CoursePoint Tags
|
|
44182
|
+
|
|
44183
|
+
Tag ID Tag Name Writable
|
|
44184
|
+
------ -------- --------
|
|
44185
|
+
1 GPSDateTime no
|
|
44186
|
+
2 GPSLatitude no
|
|
44187
|
+
3 GPSLongitude no
|
|
44188
|
+
4 Distance no
|
|
44189
|
+
5 CoursePointType no
|
|
44190
|
+
6 CoursePointName no
|
|
44191
|
+
8 Favorite no
|
|
44192
|
+
|
|
44193
|
+
=head3 Garmin Totals Tags
|
|
44194
|
+
|
|
44195
|
+
Tag ID Tag Name Writable
|
|
44196
|
+
------ -------- --------
|
|
44197
|
+
0 TimerTime no
|
|
44198
|
+
1 Distance no
|
|
44199
|
+
2 Calories no
|
|
44200
|
+
3 Sport no
|
|
44201
|
+
4 ElapsedTime no
|
|
44202
|
+
5 Sessions no
|
|
44203
|
+
6 ActiveTime no
|
|
44204
|
+
9 SportIndex no
|
|
44205
|
+
10 ActivityProfile no
|
|
44206
|
+
|
|
44207
|
+
=head3 Garmin Activity Tags
|
|
44208
|
+
|
|
44209
|
+
Tag ID Tag Name Writable
|
|
44210
|
+
------ -------- --------
|
|
44211
|
+
0 TotalTimerTime no
|
|
44212
|
+
1 NumSessions no
|
|
44213
|
+
2 ActivityType no
|
|
44214
|
+
3 Event no
|
|
44215
|
+
4 EventType no
|
|
44216
|
+
5 LocalTimeStamp no
|
|
44217
|
+
6 EventGroup no
|
|
44218
|
+
|
|
44219
|
+
=head3 Garmin Software Tags
|
|
44220
|
+
|
|
44221
|
+
Tag ID Tag Name Writable
|
|
44222
|
+
------ -------- --------
|
|
44223
|
+
3 Version no
|
|
44224
|
+
5 PartNumber no
|
|
44225
|
+
|
|
44226
|
+
=head3 Garmin FileCapabilities Tags
|
|
44227
|
+
|
|
44228
|
+
Tag ID Tag Name Writable
|
|
44229
|
+
------ -------- --------
|
|
44230
|
+
0 FileCapabilitiesType no
|
|
44231
|
+
1 Flags no
|
|
44232
|
+
2 Directory no
|
|
44233
|
+
3 MaxCount no
|
|
44234
|
+
4 MaxSize no
|
|
44235
|
+
|
|
44236
|
+
=head3 Garmin MesgCapabilities Tags
|
|
44237
|
+
|
|
44238
|
+
Tag ID Tag Name Writable
|
|
44239
|
+
------ -------- --------
|
|
44240
|
+
0 File no
|
|
44241
|
+
1 MesgNum no
|
|
44242
|
+
2 CountType no
|
|
44243
|
+
3 Count no
|
|
44244
|
+
|
|
44245
|
+
=head3 Garmin FieldCapabilities Tags
|
|
44246
|
+
|
|
44247
|
+
Tag ID Tag Name Writable
|
|
44248
|
+
------ -------- --------
|
|
44249
|
+
0 File no
|
|
44250
|
+
1 MesgNum no
|
|
44251
|
+
2 FieldNum no
|
|
44252
|
+
3 Count no
|
|
44253
|
+
|
|
44254
|
+
=head3 Garmin FileCreator Tags
|
|
44255
|
+
|
|
44256
|
+
Tag ID Tag Name Writable
|
|
44257
|
+
------ -------- --------
|
|
44258
|
+
0 SoftwareVersion no
|
|
44259
|
+
1 HardwareVersion no
|
|
44260
|
+
|
|
44261
|
+
=head3 Garmin BloodPressure Tags
|
|
44262
|
+
|
|
44263
|
+
Tag ID Tag Name Writable
|
|
44264
|
+
------ -------- --------
|
|
44265
|
+
0 SystolicPressure no
|
|
44266
|
+
1 DiastolicPressure no
|
|
44267
|
+
2 MeanArterialPressure no
|
|
44268
|
+
3 Map_3SampleMean no
|
|
44269
|
+
4 MapMorningValues no
|
|
44270
|
+
5 MapEveningValues no
|
|
44271
|
+
6 HeartRate no
|
|
44272
|
+
7 HeartRateType no
|
|
44273
|
+
8 Status no
|
|
44274
|
+
9 UserProfileIndex no
|
|
44275
|
+
|
|
44276
|
+
=head3 Garmin SpeedZone Tags
|
|
44277
|
+
|
|
44278
|
+
Tag ID Tag Name Writable
|
|
44279
|
+
------ -------- --------
|
|
44280
|
+
0 HighValue no
|
|
44281
|
+
1 SpeedZoneName no
|
|
44282
|
+
|
|
44283
|
+
=head3 Garmin Monitoring Tags
|
|
44284
|
+
|
|
44285
|
+
Tag ID Tag Name Writable
|
|
44286
|
+
------ -------- --------
|
|
44287
|
+
0 DeviceIndex no
|
|
44288
|
+
1 Calories no
|
|
44289
|
+
2 Distance no
|
|
44290
|
+
3 Cycles no
|
|
44291
|
+
4 ActiveTime no
|
|
44292
|
+
5 ActivityType no
|
|
44293
|
+
6 ActivitySubtype no
|
|
44294
|
+
7 ActivityLevel no
|
|
44295
|
+
8 Distance_16 no
|
|
44296
|
+
9 Cycles_16 no
|
|
44297
|
+
10 ActiveTime_16 no
|
|
44298
|
+
11 LocalTimeStamp no
|
|
44299
|
+
12 Temperature no
|
|
44300
|
+
14 TemperatureMin no
|
|
44301
|
+
15 TemperatureMax no
|
|
44302
|
+
16 ActivityTime no
|
|
44303
|
+
19 ActiveCalories no
|
|
44304
|
+
24 CurrentActivityTypeIntensity no
|
|
44305
|
+
25 TimeStampMin_8 no
|
|
44306
|
+
26 TimeStamp_16 no
|
|
44307
|
+
27 HeartRate no
|
|
44308
|
+
28 Intensity no
|
|
44309
|
+
29 DurationMin no
|
|
44310
|
+
30 Duration no
|
|
44311
|
+
31 Ascent no
|
|
44312
|
+
32 Descent no
|
|
44313
|
+
33 ModerateActivityMinutes no
|
|
44314
|
+
34 VigorousActivityMinutes no
|
|
44315
|
+
|
|
44316
|
+
=head3 Garmin MapLayer Tags
|
|
44317
|
+
|
|
44318
|
+
Tag ID Tag Name Writable
|
|
44319
|
+
------ -------- --------
|
|
44320
|
+
2 ReliefShading no
|
|
44321
|
+
11 Orientation no
|
|
44322
|
+
13 UserLocations no
|
|
44323
|
+
14 AutoZoom no
|
|
44324
|
+
15 GuideText no
|
|
44325
|
+
16 TrackLog no
|
|
44326
|
+
20 Courses no
|
|
44327
|
+
23 SpotSoundings no
|
|
44328
|
+
24 LightSectors no
|
|
44329
|
+
27 Segments no
|
|
44330
|
+
28 Contours no
|
|
44331
|
+
29 SomeLabel no
|
|
44332
|
+
31 Popularity no
|
|
44333
|
+
|
|
44334
|
+
=head3 Garmin Routing Tags
|
|
44335
|
+
|
|
44336
|
+
Tag ID Tag Name Writable
|
|
44337
|
+
------ -------- --------
|
|
44338
|
+
0 RoutingMode no
|
|
44339
|
+
1 CalculationMethod no
|
|
44340
|
+
2 LockOnRoad no
|
|
44341
|
+
3 Avoidances no
|
|
44342
|
+
4 RouteRecalculation no
|
|
44343
|
+
5 RoutingType no
|
|
44344
|
+
7 CourseRecalculation no
|
|
44345
|
+
|
|
44346
|
+
=head3 Garmin TrainingFile Tags
|
|
44347
|
+
|
|
44348
|
+
Tag ID Tag Name Writable
|
|
44349
|
+
------ -------- --------
|
|
44350
|
+
0 TrainingFileType no
|
|
44351
|
+
1 Manufacturer no
|
|
44352
|
+
2 Product no
|
|
44353
|
+
3 SerialNumber no
|
|
44354
|
+
4 TimeCreated no
|
|
44355
|
+
|
|
44356
|
+
=head3 Garmin HRV Tags
|
|
44357
|
+
|
|
44358
|
+
Tag ID Tag Name Writable
|
|
44359
|
+
------ -------- --------
|
|
44360
|
+
0 Time no
|
|
44361
|
+
|
|
44362
|
+
=head3 Garmin UserMetrics Tags
|
|
44363
|
+
|
|
44364
|
+
Tag ID Tag Name Writable
|
|
44365
|
+
------ -------- --------
|
|
44366
|
+
0 VO2Max no
|
|
44367
|
+
1 Age no
|
|
44368
|
+
2 Height no
|
|
44369
|
+
3 Weight no
|
|
44370
|
+
4 Gender no
|
|
44371
|
+
6 MaxHR no
|
|
44372
|
+
8 RemainingRecoveryTime no
|
|
44373
|
+
11 Lthr no
|
|
44374
|
+
12 Ltpower no
|
|
44375
|
+
13 Ltspeed no
|
|
44376
|
+
15 BeginningBodyBattery no
|
|
44377
|
+
16 StartOfActivity no
|
|
44378
|
+
19 FirstVO2Max no
|
|
44379
|
+
32 BeginningPotential no
|
|
44380
|
+
35 EndOfPreviousActivity no
|
|
44381
|
+
39 WakeUpTime no
|
|
44382
|
+
|
|
44383
|
+
=head3 Garmin AntRx Tags
|
|
44384
|
+
|
|
44385
|
+
Tag ID Tag Name Writable
|
|
44386
|
+
------ -------- --------
|
|
44387
|
+
0 FractionalTimeStamp no
|
|
44388
|
+
1 MesgID no
|
|
44389
|
+
2 MesgData no
|
|
44390
|
+
3 ChannelNumber no
|
|
44391
|
+
4 Data no
|
|
44392
|
+
|
|
44393
|
+
=head3 Garmin AntTx Tags
|
|
44394
|
+
|
|
44395
|
+
Tag ID Tag Name Writable
|
|
44396
|
+
------ -------- --------
|
|
44397
|
+
0 FractionalTimeStamp no
|
|
44398
|
+
1 MesgID no
|
|
44399
|
+
2 MesgData no
|
|
44400
|
+
3 ChannelNumber no
|
|
44401
|
+
4 Data no
|
|
44402
|
+
|
|
44403
|
+
=head3 Garmin AntChannelID Tags
|
|
44404
|
+
|
|
44405
|
+
Tag ID Tag Name Writable
|
|
44406
|
+
------ -------- --------
|
|
44407
|
+
0 ChannelNumber no
|
|
44408
|
+
1 DeviceType no
|
|
44409
|
+
2 DeviceNumber no
|
|
44410
|
+
3 TransmissionType no
|
|
44411
|
+
4 DeviceIndex no
|
|
44412
|
+
|
|
44413
|
+
=head3 Garmin OpenWaterEvent Tags
|
|
44414
|
+
|
|
44415
|
+
Tag ID Tag Name Writable
|
|
44416
|
+
------ -------- --------
|
|
44417
|
+
0 EventType no
|
|
44418
|
+
5 SwimStroke no
|
|
44419
|
+
|
|
44420
|
+
=head3 Garmin Length Tags
|
|
44421
|
+
|
|
44422
|
+
Tag ID Tag Name Writable
|
|
44423
|
+
------ -------- --------
|
|
44424
|
+
0 Event no
|
|
44425
|
+
1 EventType no
|
|
44426
|
+
2 StartTime no
|
|
44427
|
+
3 TotalElapsedTime no
|
|
44428
|
+
4 TotalTimerTime no
|
|
44429
|
+
5 TotalStrokes no
|
|
44430
|
+
6 AvgSpeed no
|
|
44431
|
+
7 SwimStroke no
|
|
44432
|
+
9 AvgSwimmingCadence no
|
|
44433
|
+
10 EventGroup no
|
|
44434
|
+
11 TotalCalories no
|
|
44435
|
+
12 LengthType no
|
|
44436
|
+
18 PlayerScore no
|
|
44437
|
+
19 OpponentScore no
|
|
44438
|
+
20 StrokeCount no
|
|
44439
|
+
21 ZoneCount no
|
|
44440
|
+
22 EnhancedAvgRespirationRate no
|
|
44441
|
+
23 EnhancedMaxRespirationRate no
|
|
44442
|
+
24 AvgRespirationRate no
|
|
44443
|
+
25 MaxRespirationRate no
|
|
44444
|
+
|
|
44445
|
+
=head3 Garmin MonitoringInfo Tags
|
|
44446
|
+
|
|
44447
|
+
Tag ID Tag Name Writable
|
|
44448
|
+
------ -------- --------
|
|
44449
|
+
0 LocalTimeStamp no
|
|
44450
|
+
1 ActivityType no
|
|
44451
|
+
3 CyclesToDistance no
|
|
44452
|
+
4 CyclesToCalories no
|
|
44453
|
+
5 RestingMetabolicRate no
|
|
44454
|
+
|
|
44455
|
+
=head3 Garmin DeviceStatus Tags
|
|
44456
|
+
|
|
44457
|
+
Tag ID Tag Name Writable
|
|
44458
|
+
------ -------- --------
|
|
44459
|
+
0 BatteryVoltage no
|
|
44460
|
+
2 BatteryLevel no
|
|
44461
|
+
3 Temperature no
|
|
44462
|
+
|
|
44463
|
+
=head3 Garmin SlaveDevice Tags
|
|
44464
|
+
|
|
44465
|
+
Tag ID Tag Name Writable
|
|
44466
|
+
------ -------- --------
|
|
44467
|
+
0 Manufacturer no
|
|
44468
|
+
1 Product no
|
|
44469
|
+
|
|
44470
|
+
=head3 Garmin BestEffort Tags
|
|
44471
|
+
|
|
44472
|
+
Tag ID Tag Name Writable
|
|
44473
|
+
------ -------- --------
|
|
44474
|
+
1 Sport no
|
|
44475
|
+
2 Distance no
|
|
44476
|
+
3 Time no
|
|
44477
|
+
4 StartTime no
|
|
44478
|
+
5 PersonalRecord no
|
|
44479
|
+
|
|
44480
|
+
=head3 Garmin PersonalRecord Tags
|
|
44481
|
+
|
|
44482
|
+
Tag ID Tag Name Writable
|
|
44483
|
+
------ -------- --------
|
|
44484
|
+
0 Metric no
|
|
44485
|
+
1 Sport no
|
|
44486
|
+
2 Distance no
|
|
44487
|
+
5 Record no
|
|
44488
|
+
|
|
44489
|
+
=head3 Garmin Connectivity Tags
|
|
44490
|
+
|
|
44491
|
+
Tag ID Tag Name Writable
|
|
44492
|
+
------ -------- --------
|
|
44493
|
+
0 BluetoothEnabled no
|
|
44494
|
+
1 BluetoothLeEnabled no
|
|
44495
|
+
2 AntEnabled no
|
|
44496
|
+
3 ConnectivityName no
|
|
44497
|
+
4 LiveTrackingEnabled no
|
|
44498
|
+
5 WeatherConditionsEnabled no
|
|
44499
|
+
6 WeatherAlertsEnabled no
|
|
44500
|
+
7 AutoActivityUploadEnabled no
|
|
44501
|
+
8 CourseDownloadEnabled no
|
|
44502
|
+
9 WorkoutDownloadEnabled no
|
|
44503
|
+
10 GPSEphemerisDownloadEnabled no
|
|
44504
|
+
11 IncidentDetectionEnabled no
|
|
44505
|
+
12 GrouptrackEnabled no
|
|
44506
|
+
|
|
44507
|
+
=head3 Garmin WeatherConditions Tags
|
|
44508
|
+
|
|
44509
|
+
Tag ID Tag Name Writable
|
|
44510
|
+
------ -------- --------
|
|
44511
|
+
0 WeatherReport no
|
|
44512
|
+
1 Temperature no
|
|
44513
|
+
2 Condition no
|
|
44514
|
+
3 WindDirection no
|
|
44515
|
+
4 WindSpeed no
|
|
44516
|
+
5 PrecipitationProbability no
|
|
44517
|
+
6 TemperatureFeelsLike no
|
|
44518
|
+
7 RelativeHumidity no
|
|
44519
|
+
8 Location no
|
|
44520
|
+
9 GPSDateTime no
|
|
44521
|
+
10 GPSLatitude no
|
|
44522
|
+
11 GPSLongitude no
|
|
44523
|
+
12 DayOfWeek no
|
|
44524
|
+
13 HighTemperature no
|
|
44525
|
+
14 LowTemperature no
|
|
44526
|
+
|
|
44527
|
+
=head3 Garmin WeatherAlert Tags
|
|
44528
|
+
|
|
44529
|
+
Tag ID Tag Name Writable
|
|
44530
|
+
------ -------- --------
|
|
44531
|
+
0 ReportID no
|
|
44532
|
+
1 IssueTime no
|
|
44533
|
+
2 ExpireTime no
|
|
44534
|
+
3 Severity no
|
|
44535
|
+
4 WeatherAlertType no
|
|
44536
|
+
|
|
44537
|
+
=head3 Garmin CadenceZone Tags
|
|
44538
|
+
|
|
44539
|
+
Tag ID Tag Name Writable
|
|
44540
|
+
------ -------- --------
|
|
44541
|
+
0 HighValue no
|
|
44542
|
+
1 CadenceZoneName no
|
|
44543
|
+
|
|
44544
|
+
=head3 Garmin HR Tags
|
|
44545
|
+
|
|
44546
|
+
Tag ID Tag Name Writable
|
|
44547
|
+
------ -------- --------
|
|
44548
|
+
0 FractionalTimeStamp no
|
|
44549
|
+
1 Time256 no
|
|
44550
|
+
6 FilteredBpm no
|
|
44551
|
+
9 EventTimeStamp no
|
|
44552
|
+
10 EventTimeStamp_12 no
|
|
44553
|
+
|
|
44554
|
+
=head3 Garmin ActivityMetrics Tags
|
|
44555
|
+
|
|
44556
|
+
Tag ID Tag Name Writable
|
|
44557
|
+
------ -------- --------
|
|
44558
|
+
1 NewHRMax no
|
|
44559
|
+
4 AerobicTrainingEffect no
|
|
44560
|
+
7 VO2Max no
|
|
44561
|
+
9 RecoveryTime no
|
|
44562
|
+
11 Sport no
|
|
44563
|
+
14 Lthr no
|
|
44564
|
+
15 Ltpower no
|
|
44565
|
+
16 Ltspeed no
|
|
44566
|
+
17 EndingPerformanceCondition no
|
|
44567
|
+
20 AnaerobicTrainingEffect no
|
|
44568
|
+
25 EndingBodyBattery no
|
|
44569
|
+
29 FirstVO2Max no
|
|
44570
|
+
41 PrimaryBenefit no
|
|
44571
|
+
48 LocalTimeStamp no
|
|
44572
|
+
50 EndingPotential no
|
|
44573
|
+
60 TotalAscent no
|
|
44574
|
+
61 TotalDescent no
|
|
44575
|
+
62 AveragePower no
|
|
44576
|
+
63 AverageHeartRate no
|
|
44577
|
+
|
|
44578
|
+
=head3 Garmin EPOStatus Tags
|
|
44579
|
+
|
|
44580
|
+
Tag ID Tag Name Writable
|
|
44581
|
+
------ -------- --------
|
|
44582
|
+
0 Status no
|
|
44583
|
+
1 StartTime no
|
|
44584
|
+
2 EndTime no
|
|
44585
|
+
|
|
44586
|
+
=head3 Garmin SegmentLap Tags
|
|
44587
|
+
|
|
44588
|
+
Tag ID Tag Name Writable
|
|
44589
|
+
------ -------- --------
|
|
44590
|
+
0 Event no
|
|
44591
|
+
1 EventType no
|
|
44592
|
+
2 GPSDateTime no
|
|
44593
|
+
3 GPSLatitude no
|
|
44594
|
+
4 GPSLongitude no
|
|
44595
|
+
5 GPSDestLatitude no
|
|
44596
|
+
6 GPSDestLongitude no
|
|
44597
|
+
7 TotalElapsedTime no
|
|
44598
|
+
8 TotalTimerTime no
|
|
44599
|
+
9 TotalDistance no
|
|
44600
|
+
10 TotalCycles no
|
|
44601
|
+
11 TotalCalories no
|
|
44602
|
+
12 TotalFatCalories no
|
|
44603
|
+
13 AvgSpeed no
|
|
44604
|
+
14 MaxSpeed no
|
|
44605
|
+
15 AvgHeartRate no
|
|
44606
|
+
16 MaxHeartRate no
|
|
44607
|
+
17 AvgCadence no
|
|
44608
|
+
18 MaxCadence no
|
|
44609
|
+
19 AvgPower no
|
|
44610
|
+
20 MaxPower no
|
|
44611
|
+
21 TotalAscent no
|
|
44612
|
+
22 TotalDescent no
|
|
44613
|
+
23 Sport no
|
|
44614
|
+
24 EventGroup no
|
|
44615
|
+
25 NECLatitude no
|
|
44616
|
+
26 NECLongitude no
|
|
44617
|
+
27 SWCLatitude no
|
|
44618
|
+
28 SWCLongitude no
|
|
44619
|
+
29 SegmentLapName no
|
|
44620
|
+
30 NormalizedPower no
|
|
44621
|
+
31 LeftRightBalance no
|
|
44622
|
+
32 SubSport no
|
|
44623
|
+
33 TotalWork no
|
|
44624
|
+
34 AvgAltitude no
|
|
44625
|
+
35 MaxAltitude no
|
|
44626
|
+
36 GPSAccuracy no
|
|
44627
|
+
37 AvgGrade no
|
|
44628
|
+
38 AvgPosGrade no
|
|
44629
|
+
39 AvgNegGrade no
|
|
44630
|
+
40 MaxPosGrade no
|
|
44631
|
+
41 MaxNegGrade no
|
|
44632
|
+
42 AvgTemperature no
|
|
44633
|
+
43 MaxTemperature no
|
|
44634
|
+
44 TotalMovingTime no
|
|
44635
|
+
45 AvgPosVerticalSpeed no
|
|
44636
|
+
46 AvgNegVerticalSpeed no
|
|
44637
|
+
47 MaxPosVerticalSpeed no
|
|
44638
|
+
48 MaxNegVerticalSpeed no
|
|
44639
|
+
49 TimeInHRZone no
|
|
44640
|
+
50 TimeInSpeedZone no
|
|
44641
|
+
51 TimeInCadenceZone no
|
|
44642
|
+
52 TimeInPowerZone no
|
|
44643
|
+
53 RepetitionNum no
|
|
44644
|
+
54 MinAltitude no
|
|
44645
|
+
55 MinHeartRate no
|
|
44646
|
+
56 ActiveTime no
|
|
44647
|
+
57 WktStepIndex no
|
|
44648
|
+
58 SportEvent no
|
|
44649
|
+
59 AvgLeftTorqueEffectiveness no
|
|
44650
|
+
60 AvgRightTorqueEffectiveness no
|
|
44651
|
+
61 AvgLeftPedalSmoothness no
|
|
44652
|
+
62 AvgRightPedalSmoothness no
|
|
44653
|
+
63 AvgCombinedPedalSmoothness no
|
|
44654
|
+
64 Status no
|
|
44655
|
+
65 UUID no
|
|
44656
|
+
66 AvgFractionalCadence no
|
|
44657
|
+
67 MaxFractionalCadence no
|
|
44658
|
+
68 TotalFractionalCycles no
|
|
44659
|
+
69 FrontGearShiftCount no
|
|
44660
|
+
70 RearGearShiftCount no
|
|
44661
|
+
71 TimeStanding no
|
|
44662
|
+
72 StandCount no
|
|
44663
|
+
73 AvgLeftPco no
|
|
44664
|
+
74 AvgRightPco no
|
|
44665
|
+
75 AvgLeftPowerPhase no
|
|
44666
|
+
76 AvgLeftPowerPhasePeak no
|
|
44667
|
+
77 AvgRightPowerPhase no
|
|
44668
|
+
78 AvgRightPowerPhasePeak no
|
|
44669
|
+
79 AvgPowerPosition no
|
|
44670
|
+
80 MaxPowerPosition no
|
|
44671
|
+
81 AvgCadencePosition no
|
|
44672
|
+
82 MaxCadencePosition no
|
|
44673
|
+
83 Manufacturer no
|
|
44674
|
+
84 TotalGrit no
|
|
44675
|
+
85 TotalFlow no
|
|
44676
|
+
86 AvgGrit no
|
|
44677
|
+
87 AvgFlow no
|
|
44678
|
+
89 TotalFractionalAscent no
|
|
44679
|
+
90 TotalFractionalDescent no
|
|
44680
|
+
91 EnhancedAvgAltitude no
|
|
44681
|
+
92 EnhancedMaxAltitude no
|
|
44682
|
+
93 EnhancedMinAltitude no
|
|
44683
|
+
|
|
44684
|
+
=head3 Garmin MultisportSettings Tags
|
|
44685
|
+
|
|
44686
|
+
Tag ID Tag Name Writable
|
|
44687
|
+
------ -------- --------
|
|
44688
|
+
0 MultisportSettingsName no
|
|
44689
|
+
1 Transitions no
|
|
44690
|
+
2 NumberOfActivities no
|
|
44691
|
+
3 AutoPause no
|
|
44692
|
+
4 Alerts no
|
|
44693
|
+
5 AutoLap no
|
|
44694
|
+
6 PowerSaveTimeout no
|
|
44695
|
+
7 AutoScroll no
|
|
44696
|
+
8 Repeat no
|
|
44697
|
+
10 SportChange no
|
|
44698
|
+
|
|
44699
|
+
=head3 Garmin MultisportActivity Tags
|
|
44700
|
+
|
|
44701
|
+
Tag ID Tag Name Writable
|
|
44702
|
+
------ -------- --------
|
|
44703
|
+
0 Sport no
|
|
44704
|
+
1 SubSport no
|
|
44705
|
+
2 LockDevice no
|
|
44706
|
+
3 MultisportActivityName no
|
|
44707
|
+
|
|
44708
|
+
=head3 Garmin MemoGlob Tags
|
|
44709
|
+
|
|
44710
|
+
Tag ID Tag Name Writable
|
|
44711
|
+
------ -------- --------
|
|
44712
|
+
0 Memo no
|
|
44713
|
+
1 MesgNum no
|
|
44714
|
+
2 ParentIndex no
|
|
44715
|
+
3 FieldNum no
|
|
44716
|
+
4 Data no
|
|
44717
|
+
|
|
44718
|
+
=head3 Garmin SensorSettings Tags
|
|
44719
|
+
|
|
44720
|
+
Tag ID Tag Name Writable
|
|
44721
|
+
------ -------- --------
|
|
44722
|
+
0 AntID no
|
|
44723
|
+
2 SensorSettingsName no
|
|
44724
|
+
10 WheelSizeManual no
|
|
44725
|
+
11 CalibrationFactor no
|
|
44726
|
+
21 WheelSizeAuto no
|
|
44727
|
+
32 Product no
|
|
44728
|
+
33 Manufacturer no
|
|
44729
|
+
45 UseForSpeed no
|
|
44730
|
+
46 UseForDistance no
|
|
44731
|
+
51 ConnectionType no
|
|
44732
|
+
52 SensorType no
|
|
44733
|
+
91 ProductName no
|
|
44734
|
+
|
|
44735
|
+
=head3 Garmin SegmentID Tags
|
|
44736
|
+
|
|
44737
|
+
Tag ID Tag Name Writable
|
|
44738
|
+
------ -------- --------
|
|
44739
|
+
0 SegmentIDName no
|
|
44740
|
+
1 UUID no
|
|
44741
|
+
2 Sport no
|
|
44742
|
+
3 Enabled no
|
|
44743
|
+
4 UserProfilePrimaryKey no
|
|
44744
|
+
5 DeviceID no
|
|
44745
|
+
6 DefaultRaceLeader no
|
|
44746
|
+
7 DeleteStatus no
|
|
44747
|
+
8 SelectionType no
|
|
44748
|
+
|
|
44749
|
+
=head3 Garmin SegmentLeaderboardEntry Tags
|
|
44750
|
+
|
|
44751
|
+
Tag ID Tag Name Writable
|
|
44752
|
+
------ -------- --------
|
|
44753
|
+
0 SegmentLeaderboardName no
|
|
44754
|
+
1 SegLeaderboardType no
|
|
44755
|
+
2 GroupPrimaryKey no
|
|
44756
|
+
3 ActivityID no
|
|
44757
|
+
4 SegmentTime no
|
|
44758
|
+
5 ActivityIDString no
|
|
44759
|
+
|
|
44760
|
+
=head3 Garmin SegmentPoint Tags
|
|
44761
|
+
|
|
44762
|
+
Tag ID Tag Name Writable
|
|
44763
|
+
------ -------- --------
|
|
44764
|
+
1 GPSLatitude no
|
|
44765
|
+
2 GPSLongitude no
|
|
44766
|
+
3 Distance no
|
|
44767
|
+
4 GPSAltitude no
|
|
44768
|
+
5 LeaderTime no
|
|
44769
|
+
6 GPSAltitude no
|
|
44770
|
+
|
|
44771
|
+
=head3 Garmin SegmentFile Tags
|
|
44772
|
+
|
|
44773
|
+
Tag ID Tag Name Writable
|
|
44774
|
+
------ -------- --------
|
|
44775
|
+
1 FileUUID no
|
|
44776
|
+
3 Enabled no
|
|
44777
|
+
4 UserProfilePrimaryKey no
|
|
44778
|
+
7 LeaderType no
|
|
44779
|
+
8 LeaderGroupPrimaryKey no
|
|
44780
|
+
9 LeaderActivityID no
|
|
44781
|
+
10 LeaderActivityIDString no
|
|
44782
|
+
11 DefaultRaceLeader no
|
|
44783
|
+
|
|
44784
|
+
=head3 Garmin Metronome Tags
|
|
44785
|
+
|
|
44786
|
+
Tag ID Tag Name Writable
|
|
44787
|
+
------ -------- --------
|
|
44788
|
+
0 Enabled no
|
|
44789
|
+
1 BeatsPerMinute no
|
|
44790
|
+
2 AlertFrequency no
|
|
44791
|
+
3 SoundAndVibe no
|
|
44792
|
+
|
|
44793
|
+
=head3 Garmin WorkoutSession Tags
|
|
44794
|
+
|
|
44795
|
+
Tag ID Tag Name Writable
|
|
44796
|
+
------ -------- --------
|
|
44797
|
+
0 Sport no
|
|
44798
|
+
1 SubSport no
|
|
44799
|
+
2 NumValidSteps no
|
|
44800
|
+
3 FirstStepIndex no
|
|
44801
|
+
4 PoolLength no
|
|
44802
|
+
5 PoolLengthUnit no
|
|
44803
|
+
|
|
44804
|
+
=head3 Garmin WatchfaceSettings Tags
|
|
44805
|
+
|
|
44806
|
+
Tag ID Tag Name Writable
|
|
44807
|
+
------ -------- --------
|
|
44808
|
+
0 Mode no
|
|
44809
|
+
1 Layout no
|
|
44810
|
+
|
|
44811
|
+
=head3 Garmin GPS Tags
|
|
44812
|
+
|
|
44813
|
+
Tag ID Tag Name Writable
|
|
44814
|
+
------ -------- --------
|
|
44815
|
+
0 TimeStamp_ms no
|
|
44816
|
+
1 GPSLatitude no
|
|
44817
|
+
2 GPSLongitude no
|
|
44818
|
+
3 GPSAltitude no
|
|
44819
|
+
4 GPSSpeed no
|
|
44820
|
+
5 GPSTrack no
|
|
44821
|
+
6 GPSDateTime no
|
|
44822
|
+
7 Velocity no
|
|
44823
|
+
|
|
44824
|
+
=head3 Garmin CameraEvent Tags
|
|
44825
|
+
|
|
44826
|
+
Tag ID Tag Name Writable
|
|
44827
|
+
------ -------- --------
|
|
44828
|
+
0 TimeStamp_ms no
|
|
44829
|
+
1 CameraEventType no
|
|
44830
|
+
2 CameraFileUUID no
|
|
44831
|
+
3 CameraOrientation no
|
|
44832
|
+
|
|
44833
|
+
=head3 Garmin TimeStampCorrelation Tags
|
|
44834
|
+
|
|
44835
|
+
Tag ID Tag Name Writable
|
|
44836
|
+
------ -------- --------
|
|
44837
|
+
0 FractionalTimeStamp no
|
|
44838
|
+
1 SystemTimeStamp no
|
|
44839
|
+
2 FractionalSystemTimeStamp no
|
|
44840
|
+
3 LocalTimeStamp no
|
|
44841
|
+
4 TimeStamp_ms no
|
|
44842
|
+
5 SystemTimeStamp_ms no
|
|
44843
|
+
|
|
44844
|
+
=head3 Garmin GyroscopeData Tags
|
|
44845
|
+
|
|
44846
|
+
Tag ID Tag Name Writable
|
|
44847
|
+
------ -------- --------
|
|
44848
|
+
0 TimeStamp_ms no
|
|
44849
|
+
1 SampleTimeOffset no
|
|
44850
|
+
2 GyroX no
|
|
44851
|
+
3 GyroY no
|
|
44852
|
+
4 GyroZ no
|
|
44853
|
+
5 CalibratedGyroX no
|
|
44854
|
+
6 CalibratedGyroY no
|
|
44855
|
+
7 CalibratedGyroZ no
|
|
44856
|
+
|
|
44857
|
+
=head3 Garmin AccelerometerData Tags
|
|
44858
|
+
|
|
44859
|
+
Tag ID Tag Name Writable
|
|
44860
|
+
------ -------- --------
|
|
44861
|
+
0 TimeStamp_ms no
|
|
44862
|
+
1 SampleTimeOffset no
|
|
44863
|
+
2 AccelX no
|
|
44864
|
+
3 AccelY no
|
|
44865
|
+
4 AccelZ no
|
|
44866
|
+
5 CalibratedAccelX no
|
|
44867
|
+
6 CalibratedAccelY no
|
|
44868
|
+
7 CalibratedAccelZ no
|
|
44869
|
+
8 CompressedCalibratedAccelX no
|
|
44870
|
+
9 CompressedCalibratedAccelY no
|
|
44871
|
+
10 CompressedCalibratedAccelZ no
|
|
44872
|
+
|
|
44873
|
+
=head3 Garmin ThreeDSensorCalibration Tags
|
|
44874
|
+
|
|
44875
|
+
Tag ID Tag Name Writable
|
|
44876
|
+
------ -------- --------
|
|
44877
|
+
0 SensorType no
|
|
44878
|
+
1 CalibrationFactor no
|
|
44879
|
+
2 CalibrationDivisor no
|
|
44880
|
+
3 LevelShift no
|
|
44881
|
+
4 OffsetCal no
|
|
44882
|
+
5 OrientationMatrix no
|
|
44883
|
+
|
|
44884
|
+
=head3 Garmin VideoFrame Tags
|
|
44885
|
+
|
|
44886
|
+
Tag ID Tag Name Writable
|
|
44887
|
+
------ -------- --------
|
|
44888
|
+
0 TimeStamp_ms no
|
|
44889
|
+
1 FrameNumber no
|
|
44890
|
+
|
|
44891
|
+
=head3 Garmin ConnectIQField Tags
|
|
44892
|
+
|
|
44893
|
+
Tag ID Tag Name Writable
|
|
44894
|
+
------ -------- --------
|
|
44895
|
+
1 AppID no
|
|
44896
|
+
2 DataField no
|
|
44897
|
+
100 ScreenID no
|
|
44898
|
+
101 FieldBits no
|
|
44899
|
+
|
|
44900
|
+
=head3 Garmin Clubs Tags
|
|
44901
|
+
|
|
44902
|
+
Tag ID Tag Name Writable
|
|
44903
|
+
------ -------- --------
|
|
44904
|
+
6 AverageDistance no
|
|
44905
|
+
19 MaxDistance no
|
|
44906
|
+
|
|
44907
|
+
=head3 Garmin OBDIIData Tags
|
|
44908
|
+
|
|
44909
|
+
Tag ID Tag Name Writable
|
|
44910
|
+
------ -------- --------
|
|
44911
|
+
0 TimeStamp_ms no
|
|
44912
|
+
1 TimeOffset no
|
|
44913
|
+
2 Pid no
|
|
44914
|
+
3 RawData no
|
|
44915
|
+
4 PidDataSize no
|
|
44916
|
+
5 SystemTime no
|
|
44917
|
+
6 StartTimeStamp no
|
|
44918
|
+
7 StartTimeStamp_ms no
|
|
44919
|
+
|
|
44920
|
+
=head3 Garmin NMEASentence Tags
|
|
44921
|
+
|
|
44922
|
+
Tag ID Tag Name Writable
|
|
44923
|
+
------ -------- --------
|
|
44924
|
+
0 TimeStamp_ms no
|
|
44925
|
+
1 Sentence no
|
|
44926
|
+
|
|
44927
|
+
=head3 Garmin AviationAttitude Tags
|
|
44928
|
+
|
|
44929
|
+
Tag ID Tag Name Writable
|
|
44930
|
+
------ -------- --------
|
|
44931
|
+
0 TimeStamp_ms no
|
|
44932
|
+
1 SystemTime no
|
|
44933
|
+
2 Pitch no
|
|
44934
|
+
3 Roll no
|
|
44935
|
+
4 AccelLateral no
|
|
44936
|
+
5 AccelNormal no
|
|
44937
|
+
6 TurnRate no
|
|
44938
|
+
7 Stage no
|
|
44939
|
+
8 AttitudeStageComplete no
|
|
44940
|
+
9 Track no
|
|
44941
|
+
10 Validity no
|
|
44942
|
+
|
|
44943
|
+
=head3 Garmin Video Tags
|
|
44944
|
+
|
|
44945
|
+
Tag ID Tag Name Writable
|
|
44946
|
+
------ -------- --------
|
|
44947
|
+
0 URL no
|
|
44948
|
+
1 HostingProvider no
|
|
44949
|
+
2 Duration no
|
|
44950
|
+
|
|
44951
|
+
=head3 Garmin VideoTitle Tags
|
|
44952
|
+
|
|
44953
|
+
Tag ID Tag Name Writable
|
|
44954
|
+
------ -------- --------
|
|
44955
|
+
0 MessageCount no
|
|
44956
|
+
1 Text no
|
|
44957
|
+
|
|
44958
|
+
=head3 Garmin VideoDescription Tags
|
|
44959
|
+
|
|
44960
|
+
Tag ID Tag Name Writable
|
|
44961
|
+
------ -------- --------
|
|
44962
|
+
0 MessageCount no
|
|
44963
|
+
1 Text no
|
|
44964
|
+
|
|
44965
|
+
=head3 Garmin VideoClip Tags
|
|
44966
|
+
|
|
44967
|
+
Tag ID Tag Name Writable
|
|
44968
|
+
------ -------- --------
|
|
44969
|
+
0 ClipNumber no
|
|
44970
|
+
1 StartTimeStamp no
|
|
44971
|
+
2 StartTimeStamp_ms no
|
|
44972
|
+
3 EndTimeStamp no
|
|
44973
|
+
4 EndTimeStamp_ms no
|
|
44974
|
+
6 ClipStart no
|
|
44975
|
+
7 ClipEnd no
|
|
44976
|
+
|
|
44977
|
+
=head3 Garmin OHRSettings Tags
|
|
44978
|
+
|
|
44979
|
+
Tag ID Tag Name Writable
|
|
44980
|
+
------ -------- --------
|
|
44981
|
+
0 Enabled no
|
|
44982
|
+
|
|
44983
|
+
=head3 Garmin WaypointHandling Tags
|
|
44984
|
+
|
|
44985
|
+
Tag ID Tag Name Writable
|
|
44986
|
+
------ -------- --------
|
|
44987
|
+
0 Action no
|
|
44988
|
+
|
|
44989
|
+
=head3 Garmin GolfCourse Tags
|
|
44990
|
+
|
|
44991
|
+
Tag ID Tag Name Writable
|
|
44992
|
+
------ -------- --------
|
|
44993
|
+
0 CourseID no
|
|
44994
|
+
1 GolfCourseName no
|
|
44995
|
+
2 LocalTime no
|
|
44996
|
+
3 StartTime no
|
|
44997
|
+
4 EndTime no
|
|
44998
|
+
8 Out no
|
|
44999
|
+
9 In no
|
|
45000
|
+
10 Total no
|
|
45001
|
+
11 Tee no
|
|
45002
|
+
12 Slope no
|
|
45003
|
+
21 Rating no
|
|
45004
|
+
|
|
45005
|
+
=head3 Garmin GolfStats Tags
|
|
45006
|
+
|
|
45007
|
+
Tag ID Tag Name Writable
|
|
45008
|
+
------ -------- --------
|
|
45009
|
+
0 GolfStatsName no
|
|
45010
|
+
2 Out no
|
|
45011
|
+
3 In no
|
|
45012
|
+
4 Total no
|
|
45013
|
+
7 FairwayHit no
|
|
45014
|
+
8 Gir no
|
|
45015
|
+
9 Putts no
|
|
45016
|
+
|
|
45017
|
+
=head3 Garmin Score Tags
|
|
45018
|
+
|
|
45019
|
+
Tag ID Tag Name Writable
|
|
45020
|
+
------ -------- --------
|
|
45021
|
+
1 HoleNumber no
|
|
45022
|
+
2 Score no
|
|
45023
|
+
5 Putts no
|
|
45024
|
+
6 Fairway no
|
|
45025
|
+
|
|
45026
|
+
=head3 Garmin Hole Tags
|
|
45027
|
+
|
|
45028
|
+
Tag ID Tag Name Writable
|
|
45029
|
+
------ -------- --------
|
|
45030
|
+
0 HoleNumber no
|
|
45031
|
+
1 Distance no
|
|
45032
|
+
2 Par no
|
|
45033
|
+
3 Handicap no
|
|
45034
|
+
4 PositionLat no
|
|
45035
|
+
5 PositionLong no
|
|
45036
|
+
|
|
45037
|
+
=head3 Garmin Shot Tags
|
|
45038
|
+
|
|
45039
|
+
Tag ID Tag Name Writable
|
|
45040
|
+
------ -------- --------
|
|
45041
|
+
1 HoleNumber no
|
|
45042
|
+
2 StartPositionLat no
|
|
45043
|
+
3 StartPositionLong no
|
|
45044
|
+
4 EndPositionLat no
|
|
45045
|
+
5 EndPositionLong no
|
|
45046
|
+
7 ClubType no
|
|
45047
|
+
|
|
45048
|
+
=head3 Garmin ExdScreenConfiguration Tags
|
|
45049
|
+
|
|
45050
|
+
Tag ID Tag Name Writable
|
|
45051
|
+
------ -------- --------
|
|
45052
|
+
0 ScreenIndex no
|
|
45053
|
+
1 FieldCount no
|
|
45054
|
+
2 Layout no
|
|
45055
|
+
3 ScreenEnabled no
|
|
45056
|
+
|
|
45057
|
+
=head3 Garmin ExdDataFieldConfiguration Tags
|
|
45058
|
+
|
|
45059
|
+
Tag ID Tag Name Writable
|
|
45060
|
+
------ -------- --------
|
|
45061
|
+
0 ScreenIndex no
|
|
45062
|
+
1 ConceptField no
|
|
45063
|
+
2 FieldID no
|
|
45064
|
+
3 ConceptCount no
|
|
45065
|
+
4 DisplayType no
|
|
45066
|
+
5 Title no
|
|
45067
|
+
|
|
45068
|
+
=head3 Garmin ExdDataConceptConfiguration Tags
|
|
45069
|
+
|
|
45070
|
+
Tag ID Tag Name Writable
|
|
45071
|
+
------ -------- --------
|
|
45072
|
+
0 ScreenIndex no
|
|
45073
|
+
1 ConceptField no
|
|
45074
|
+
2 FieldID no
|
|
45075
|
+
3 ConceptIndex no
|
|
45076
|
+
4 DataPage no
|
|
45077
|
+
5 ConceptKey no
|
|
45078
|
+
6 Scaling no
|
|
45079
|
+
8 DataUnits no
|
|
45080
|
+
9 Qualifier no
|
|
45081
|
+
10 Descriptor no
|
|
45082
|
+
11 IsSigned no
|
|
45083
|
+
|
|
45084
|
+
=head3 Garmin FieldDescription Tags
|
|
45085
|
+
|
|
45086
|
+
Tags used to define custom developer fields.
|
|
45087
|
+
|
|
45088
|
+
Tag ID Tag Name Writable
|
|
45089
|
+
------ -------- --------
|
|
45090
|
+
0 DeveloperDataIndex no
|
|
45091
|
+
1 FieldDefinitionNumber no
|
|
45092
|
+
2 FitBaseTypeID no
|
|
45093
|
+
3 FieldName no
|
|
45094
|
+
4 Array no
|
|
45095
|
+
5 Components no
|
|
45096
|
+
6 Scale no
|
|
45097
|
+
7 Offset no
|
|
45098
|
+
8 Units no
|
|
45099
|
+
9 Bits no
|
|
45100
|
+
10 Accumulate no
|
|
45101
|
+
13 FitBaseUnitID no
|
|
45102
|
+
14 NativeMesgNum no
|
|
45103
|
+
15 NativeFieldNum no
|
|
45104
|
+
|
|
45105
|
+
=head3 Garmin DeveloperDataID Tags
|
|
45106
|
+
|
|
45107
|
+
Developer identification tags.
|
|
45108
|
+
|
|
45109
|
+
Tag ID Tag Name Writable
|
|
45110
|
+
------ -------- --------
|
|
45111
|
+
0 DeveloperID no
|
|
45112
|
+
1 ApplicationID no
|
|
45113
|
+
2 ManufacturerID no
|
|
45114
|
+
3 DeveloperDataIndex no
|
|
45115
|
+
4 ApplicationVersion no
|
|
45116
|
+
|
|
45117
|
+
=head3 Garmin MagnetometerData Tags
|
|
45118
|
+
|
|
45119
|
+
Tag ID Tag Name Writable
|
|
45120
|
+
------ -------- --------
|
|
45121
|
+
0 TimeStamp_ms no
|
|
45122
|
+
1 SampleTimeOffset no
|
|
45123
|
+
2 MagX no
|
|
45124
|
+
3 MagY no
|
|
45125
|
+
4 MagZ no
|
|
45126
|
+
5 CalibratedMagX no
|
|
45127
|
+
6 CalibratedMagY no
|
|
45128
|
+
7 CalibratedMagZ no
|
|
45129
|
+
|
|
45130
|
+
=head3 Garmin BarometerData Tags
|
|
45131
|
+
|
|
45132
|
+
Tag ID Tag Name Writable
|
|
45133
|
+
------ -------- --------
|
|
45134
|
+
0 TimeStamp_ms no
|
|
45135
|
+
1 SampleTimeOffset no
|
|
45136
|
+
2 BaroPres no
|
|
45137
|
+
|
|
45138
|
+
=head3 Garmin OneDSensorCalibration Tags
|
|
45139
|
+
|
|
45140
|
+
Tag ID Tag Name Writable
|
|
45141
|
+
------ -------- --------
|
|
45142
|
+
0 SensorType no
|
|
45143
|
+
1 CalibrationFactor no
|
|
45144
|
+
2 CalibrationDivisor no
|
|
45145
|
+
3 LevelShift no
|
|
45146
|
+
4 OffsetCal no
|
|
45147
|
+
|
|
45148
|
+
=head3 Garmin MonitoringHRData Tags
|
|
45149
|
+
|
|
45150
|
+
Tag ID Tag Name Writable
|
|
45151
|
+
------ -------- --------
|
|
45152
|
+
0 RestingHeartRate no
|
|
45153
|
+
1 CurrentDayRestingHeartRate no
|
|
45154
|
+
|
|
45155
|
+
=head3 Garmin TimeInZone Tags
|
|
45156
|
+
|
|
45157
|
+
Tag ID Tag Name Writable
|
|
45158
|
+
------ -------- --------
|
|
45159
|
+
0 ReferenceMesg no
|
|
45160
|
+
1 ReferenceIndex no
|
|
45161
|
+
2 TimeInHRZone no
|
|
45162
|
+
3 TimeInSpeedZone no
|
|
45163
|
+
4 TimeInCadenceZone no
|
|
45164
|
+
5 TimeInPowerZone no
|
|
45165
|
+
6 HRZoneHighBoundary no
|
|
45166
|
+
7 SpeedZoneHighBoundary no
|
|
45167
|
+
8 CadenceZoneHighBondary no
|
|
45168
|
+
9 PowerZoneHighBoundary no
|
|
45169
|
+
10 HRCalcType no
|
|
45170
|
+
11 MaxHeartRate no
|
|
45171
|
+
12 RestingHeartRate no
|
|
45172
|
+
13 ThresholdHeartRate no
|
|
45173
|
+
14 PwrCalcType no
|
|
45174
|
+
15 FunctionalThresholdPower no
|
|
45175
|
+
|
|
45176
|
+
=head3 Garmin AlarmSettings Tags
|
|
45177
|
+
|
|
45178
|
+
Tag ID Tag Name Writable
|
|
45179
|
+
------ -------- --------
|
|
45180
|
+
0 Time no
|
|
45181
|
+
1 Repeat no
|
|
45182
|
+
2 Enabled no
|
|
45183
|
+
3 Sound no
|
|
45184
|
+
4 Backlight no
|
|
45185
|
+
5 TimeCreated no
|
|
45186
|
+
8 Label no
|
|
45187
|
+
11 TimeUpdated no
|
|
45188
|
+
|
|
45189
|
+
=head3 Garmin Set Tags
|
|
45190
|
+
|
|
45191
|
+
Tag ID Tag Name Writable
|
|
45192
|
+
------ -------- --------
|
|
45193
|
+
0 Duration no
|
|
45194
|
+
3 Repetitions no
|
|
45195
|
+
4 Weight no
|
|
45196
|
+
5 SetType no
|
|
45197
|
+
6 StartTime no
|
|
45198
|
+
7 Category no
|
|
45199
|
+
8 CategorySubtype no
|
|
45200
|
+
9 WeightDisplayUnit no
|
|
45201
|
+
10 MessageIndex no
|
|
45202
|
+
11 WktStepIndex no
|
|
45203
|
+
|
|
45204
|
+
=head3 Garmin StressLevel Tags
|
|
45205
|
+
|
|
45206
|
+
Tag ID Tag Name Writable
|
|
45207
|
+
------ -------- --------
|
|
45208
|
+
0 StressLevelValue no
|
|
45209
|
+
1 StressLevelTime no
|
|
45210
|
+
3 BodyBattery no
|
|
45211
|
+
|
|
45212
|
+
=head3 Garmin MaxMetData Tags
|
|
45213
|
+
|
|
45214
|
+
Tag ID Tag Name Writable
|
|
45215
|
+
------ -------- --------
|
|
45216
|
+
0 UpdateTime no
|
|
45217
|
+
2 VO2Max no
|
|
45218
|
+
5 Sport no
|
|
45219
|
+
6 SubSport no
|
|
45220
|
+
8 MaxMetCategory no
|
|
45221
|
+
9 CalibratedData no
|
|
45222
|
+
12 HRSource no
|
|
45223
|
+
13 SpeedSource no
|
|
45224
|
+
|
|
45225
|
+
=head3 Garmin MusicInfo Tags
|
|
45226
|
+
|
|
45227
|
+
Tag ID Tag Name Writable
|
|
45228
|
+
------ -------- --------
|
|
45229
|
+
0 StartTime no
|
|
45230
|
+
2 Title no
|
|
45231
|
+
3 Artist no
|
|
45232
|
+
4 Genre no
|
|
45233
|
+
5 Duration no
|
|
45234
|
+
|
|
45235
|
+
=head3 Garmin DiveSettings Tags
|
|
45236
|
+
|
|
45237
|
+
Tag ID Tag Name Writable
|
|
45238
|
+
------ -------- --------
|
|
45239
|
+
0 DiveSettingsName no
|
|
45240
|
+
1 Model no
|
|
45241
|
+
2 GfLow no
|
|
45242
|
+
3 GfHigh no
|
|
45243
|
+
4 WaterType no
|
|
45244
|
+
5 WaterDensity no
|
|
45245
|
+
6 PO2Warn no
|
|
45246
|
+
7 PO2Critical no
|
|
45247
|
+
8 PO2Deco no
|
|
45248
|
+
9 SafetyStopEnabled no
|
|
45249
|
+
10 BottomDepth no
|
|
45250
|
+
11 BottomTime no
|
|
45251
|
+
12 ApneaCountdownEnabled no
|
|
45252
|
+
13 ApneaCountdownTime no
|
|
45253
|
+
14 BacklightMode no
|
|
45254
|
+
15 BacklightBrightness no
|
|
45255
|
+
16 BacklightTimeout no
|
|
45256
|
+
17 RepeatDiveInterval no
|
|
45257
|
+
18 SafetyStopTime no
|
|
45258
|
+
19 HeartRateSourceType no
|
|
45259
|
+
20 HeartRateSource no
|
|
45260
|
+
21 TravelGas no
|
|
45261
|
+
22 CCRLowSetpointSwitchMode no
|
|
45262
|
+
23 CCRLowSetpoint no
|
|
45263
|
+
24 CCRLowSetpointDepth no
|
|
45264
|
+
25 CCRHighSetpointSwitchMode no
|
|
45265
|
+
26 CCRHighSetpoint no
|
|
45266
|
+
27 CCRHighSetpointDepth no
|
|
45267
|
+
29 GasConsumptionDisplay no
|
|
45268
|
+
30 UpKeyEnabled no
|
|
45269
|
+
35 DiveSounds no
|
|
45270
|
+
36 LastStopMultiple no
|
|
45271
|
+
37 NoFlyTimeMode no
|
|
45272
|
+
|
|
45273
|
+
=head3 Garmin DiveGas Tags
|
|
45274
|
+
|
|
45275
|
+
Tag ID Tag Name Writable
|
|
45276
|
+
------ -------- --------
|
|
45277
|
+
0 HeliumContent no
|
|
45278
|
+
1 OxygenContent no
|
|
45279
|
+
2 Status no
|
|
45280
|
+
3 Mode no
|
|
45281
|
+
|
|
45282
|
+
=head3 Garmin DiveAlarm Tags
|
|
45283
|
+
|
|
45284
|
+
Tag ID Tag Name Writable
|
|
45285
|
+
------ -------- --------
|
|
45286
|
+
0 Depth no
|
|
45287
|
+
1 Time no
|
|
45288
|
+
2 Enabled no
|
|
45289
|
+
3 AlarmType no
|
|
45290
|
+
4 Sound no
|
|
45291
|
+
5 DiveTypes no
|
|
45292
|
+
6 ID no
|
|
45293
|
+
7 PopupEnabled no
|
|
45294
|
+
8 TriggerOnDescent no
|
|
45295
|
+
9 TriggerOnAscent no
|
|
45296
|
+
10 Repeating no
|
|
45297
|
+
11 Speed no
|
|
45298
|
+
|
|
45299
|
+
=head3 Garmin ExerciseTitle Tags
|
|
45300
|
+
|
|
45301
|
+
Tag ID Tag Name Writable
|
|
45302
|
+
------ -------- --------
|
|
45303
|
+
0 ExerciseCategory no
|
|
45304
|
+
1 ExerciseName no
|
|
45305
|
+
2 WktStepName no
|
|
45306
|
+
|
|
45307
|
+
=head3 Garmin DiveSummary Tags
|
|
45308
|
+
|
|
45309
|
+
Tag ID Tag Name Writable
|
|
45310
|
+
------ -------- --------
|
|
45311
|
+
0 ReferenceMesg no
|
|
45312
|
+
1 ReferenceIndex no
|
|
45313
|
+
2 AvgDepth no
|
|
45314
|
+
3 MaxDepth no
|
|
45315
|
+
4 SurfaceInterval no
|
|
45316
|
+
5 StartCns no
|
|
45317
|
+
6 EndCns no
|
|
45318
|
+
7 StartN2 no
|
|
45319
|
+
8 EndN2 no
|
|
45320
|
+
9 O2Toxicity no
|
|
45321
|
+
10 DiveNumber no
|
|
45322
|
+
11 BottomTime no
|
|
45323
|
+
12 AvgPressureSac no
|
|
45324
|
+
13 AvgVolumeSac no
|
|
45325
|
+
14 AvgRmv no
|
|
45326
|
+
15 DescentTime no
|
|
45327
|
+
16 AscentTime no
|
|
45328
|
+
17 AvgAscentRate no
|
|
45329
|
+
22 AvgDescentRate no
|
|
45330
|
+
23 MaxAscentRate no
|
|
45331
|
+
24 MaxDescentRate no
|
|
45332
|
+
25 HangTime no
|
|
45333
|
+
|
|
45334
|
+
=head3 Garmin SPO2Data Tags
|
|
45335
|
+
|
|
45336
|
+
Tag ID Tag Name Writable
|
|
45337
|
+
------ -------- --------
|
|
45338
|
+
0 ReadingSPO2 no
|
|
45339
|
+
1 ReadingConfidence no
|
|
45340
|
+
2 Mode no
|
|
45341
|
+
|
|
45342
|
+
=head3 Garmin SleepDataInfo Tags
|
|
45343
|
+
|
|
45344
|
+
Tag ID Tag Name Writable
|
|
45345
|
+
------ -------- --------
|
|
45346
|
+
1 SampleLength no
|
|
45347
|
+
2 LocalTimeStamp no
|
|
45348
|
+
4 Version no
|
|
45349
|
+
|
|
45350
|
+
=head3 Garmin SleepLevel Tags
|
|
45351
|
+
|
|
45352
|
+
Tag ID Tag Name Writable
|
|
45353
|
+
------ -------- --------
|
|
45354
|
+
0 SleepLevel no
|
|
45355
|
+
|
|
45356
|
+
=head3 Garmin Jump Tags
|
|
45357
|
+
|
|
45358
|
+
Tag ID Tag Name Writable
|
|
45359
|
+
------ -------- --------
|
|
45360
|
+
0 Distance no
|
|
45361
|
+
1 Height no
|
|
45362
|
+
2 Rotations no
|
|
45363
|
+
3 HangTime no
|
|
45364
|
+
4 Score no
|
|
45365
|
+
5 GPSLatitude no
|
|
45366
|
+
6 GPSLongitude no
|
|
45367
|
+
7 GPSSpeed no
|
|
45368
|
+
8 GPSSpeed no
|
|
45369
|
+
|
|
45370
|
+
=head3 Garmin AADAccelFeatures Tags
|
|
45371
|
+
|
|
45372
|
+
Tag ID Tag Name Writable
|
|
45373
|
+
------ -------- --------
|
|
45374
|
+
0 Time no
|
|
45375
|
+
1 EnergyTotal no
|
|
45376
|
+
2 ZeroCrossCnt no
|
|
45377
|
+
3 Instance no
|
|
45378
|
+
4 TimeAboveThreshold no
|
|
45379
|
+
|
|
45380
|
+
=head3 Garmin BeatIntervals Tags
|
|
45381
|
+
|
|
45382
|
+
Tag ID Tag Name Writable
|
|
45383
|
+
------ -------- --------
|
|
45384
|
+
0 TimeStamp_ms no
|
|
45385
|
+
1 Time no
|
|
45386
|
+
|
|
45387
|
+
=head3 Garmin RespirationRate Tags
|
|
45388
|
+
|
|
45389
|
+
Tag ID Tag Name Writable
|
|
45390
|
+
------ -------- --------
|
|
45391
|
+
0 RespirationRate no
|
|
45392
|
+
|
|
45393
|
+
=head3 Garmin HSAAccelerometerData Tags
|
|
45394
|
+
|
|
45395
|
+
Tag ID Tag Name Writable
|
|
45396
|
+
------ -------- --------
|
|
45397
|
+
0 TimeStamp_ms no
|
|
45398
|
+
1 SamplingInterval no
|
|
45399
|
+
2 AccelX no
|
|
45400
|
+
3 AccelY no
|
|
45401
|
+
4 AccelZ no
|
|
45402
|
+
5 TimeStamp_32k no
|
|
45403
|
+
|
|
45404
|
+
=head3 Garmin HSAStepData Tags
|
|
45405
|
+
|
|
45406
|
+
Tag ID Tag Name Writable
|
|
45407
|
+
------ -------- --------
|
|
45408
|
+
0 ProcessingInterval no
|
|
45409
|
+
1 Steps no
|
|
45410
|
+
|
|
45411
|
+
=head3 Garmin HSA_SPO2Data Tags
|
|
45412
|
+
|
|
45413
|
+
Tag ID Tag Name Writable
|
|
45414
|
+
------ -------- --------
|
|
45415
|
+
0 ProcessingInterval no
|
|
45416
|
+
1 ReadingSPO2 no
|
|
45417
|
+
2 Confidence no
|
|
45418
|
+
|
|
45419
|
+
=head3 Garmin HSAStressData Tags
|
|
45420
|
+
|
|
45421
|
+
Tag ID Tag Name Writable
|
|
45422
|
+
------ -------- --------
|
|
45423
|
+
0 ProcessingInterval no
|
|
45424
|
+
1 StressLevel no
|
|
45425
|
+
|
|
45426
|
+
=head3 Garmin HSARespirationData Tags
|
|
45427
|
+
|
|
45428
|
+
Tag ID Tag Name Writable
|
|
45429
|
+
------ -------- --------
|
|
45430
|
+
0 ProcessingInterval no
|
|
45431
|
+
1 RespirationRate no
|
|
45432
|
+
|
|
45433
|
+
=head3 Garmin HSAHeartRateData Tags
|
|
45434
|
+
|
|
45435
|
+
Tag ID Tag Name Writable
|
|
45436
|
+
------ -------- --------
|
|
45437
|
+
0 ProcessingInterval no
|
|
45438
|
+
1 Status no
|
|
45439
|
+
2 HeartRate no
|
|
45440
|
+
|
|
45441
|
+
=head3 Garmin MtbCx Tags
|
|
45442
|
+
|
|
45443
|
+
Tag ID Tag Name Writable
|
|
45444
|
+
------ -------- --------
|
|
45445
|
+
1 GritFlowJumpRecording no
|
|
45446
|
+
2 JumpAlerts no
|
|
45447
|
+
|
|
45448
|
+
=head3 Garmin Race Tags
|
|
45449
|
+
|
|
45450
|
+
Tag ID Tag Name Writable
|
|
45451
|
+
------ -------- --------
|
|
45452
|
+
3 GoalTime no
|
|
45453
|
+
4 GoalSpeed no
|
|
45454
|
+
5 Distance no
|
|
45455
|
+
7 SplitDistance no
|
|
45456
|
+
|
|
45457
|
+
=head3 Garmin SplitTime Tags
|
|
45458
|
+
|
|
45459
|
+
Tag ID Tag Name Writable
|
|
45460
|
+
------ -------- --------
|
|
45461
|
+
0 Time no
|
|
45462
|
+
1 Distance no
|
|
45463
|
+
2 SplitTime no
|
|
45464
|
+
3 SplitDistance no
|
|
45465
|
+
4 SplitSpeeds no
|
|
45466
|
+
9 StartPositionLat no
|
|
45467
|
+
10 StartPositionLong no
|
|
45468
|
+
11 EndPositionLat no
|
|
45469
|
+
12 EndPositionLong no
|
|
45470
|
+
13 StartAltitude no
|
|
45471
|
+
14 EndAltitude no
|
|
45472
|
+
|
|
45473
|
+
=head3 Garmin Split Tags
|
|
45474
|
+
|
|
45475
|
+
Tag ID Tag Name Writable
|
|
45476
|
+
------ -------- --------
|
|
45477
|
+
0 SplitType no
|
|
45478
|
+
1 TotalElapsedTime no
|
|
45479
|
+
2 TotalTimerTime no
|
|
45480
|
+
3 TotalDistance no
|
|
45481
|
+
4 AvgSpeed no
|
|
45482
|
+
7 StartDistance no
|
|
45483
|
+
9 GPSDateTime no
|
|
45484
|
+
11 Sport no
|
|
45485
|
+
12 SubSport no
|
|
45486
|
+
13 TotalAscent no
|
|
45487
|
+
14 TotalDescent no
|
|
45488
|
+
15 AvgHeartRate no
|
|
45489
|
+
16 MaxHeartRate no
|
|
45490
|
+
21 GPSLatitude no
|
|
45491
|
+
22 GPSLongitude no
|
|
45492
|
+
23 GPSDestLatitude no
|
|
45493
|
+
24 GPSDestLongitude no
|
|
45494
|
+
25 MaxSpeed no
|
|
45495
|
+
26 AvgVertSpeed no
|
|
45496
|
+
27 EndTime no
|
|
45497
|
+
28 TotalCalories no
|
|
45498
|
+
32 AvgTemperature no
|
|
45499
|
+
33 MaxTemperature no
|
|
45500
|
+
34 MinTemperature no
|
|
45501
|
+
35 AvgVerticalOscillation no
|
|
45502
|
+
36 AvgVerticalRatio no
|
|
45503
|
+
37 AvgStanceTime no
|
|
45504
|
+
38 AvgStanceTimeBalance no
|
|
45505
|
+
39 AvgStepLength no
|
|
45506
|
+
40 AvgPower no
|
|
45507
|
+
41 MaxPower no
|
|
45508
|
+
42 NormalizedPower no
|
|
45509
|
+
67 LapIndex no
|
|
45510
|
+
74 StartElevation no
|
|
45511
|
+
79 RestingCalories no
|
|
45512
|
+
93 GradeAdjustedSpeed no
|
|
45513
|
+
107 BeginningPotential no
|
|
45514
|
+
108 EndingPotential no
|
|
45515
|
+
109 MinStamina no
|
|
45516
|
+
110 TotalMovingTime no
|
|
45517
|
+
130 StepSpeedLossDistance no
|
|
45518
|
+
131 StepSpeedLossPercentage no
|
|
45519
|
+
|
|
45520
|
+
=head3 Garmin SplitSummary Tags
|
|
45521
|
+
|
|
45522
|
+
Tag ID Tag Name Writable
|
|
45523
|
+
------ -------- --------
|
|
45524
|
+
0 SplitType no
|
|
45525
|
+
3 NumSplits no
|
|
45526
|
+
4 TotalTimerTime no
|
|
45527
|
+
5 TotalDistance no
|
|
45528
|
+
6 AvgSpeed no
|
|
45529
|
+
7 MaxSpeed no
|
|
45530
|
+
8 TotalAscent no
|
|
45531
|
+
9 TotalDescent no
|
|
45532
|
+
10 AvgHeartRate no
|
|
45533
|
+
11 MaxHeartRate no
|
|
45534
|
+
12 AvgVertSpeed no
|
|
45535
|
+
13 TotalCalories no
|
|
45536
|
+
20 AvgVerticalOscillation no
|
|
45537
|
+
21 AvgVerticalRatio no
|
|
45538
|
+
22 AvgStanceTime no
|
|
45539
|
+
24 AvgStepLength no
|
|
45540
|
+
25 AvgPower no
|
|
45541
|
+
26 MaxPower no
|
|
45542
|
+
27 NormalizedPower no
|
|
45543
|
+
60 MaxSplitDistance no
|
|
45544
|
+
64 RestingCalories no
|
|
45545
|
+
77 TotalMovingTime no
|
|
45546
|
+
79 FirstStartTime no
|
|
45547
|
+
83 StepSpeedLossDistance no
|
|
45548
|
+
84 StepSpeedLossPercentage no
|
|
45549
|
+
|
|
45550
|
+
=head3 Garmin HSABodyBatteryData Tags
|
|
45551
|
+
|
|
45552
|
+
Tag ID Tag Name Writable
|
|
45553
|
+
------ -------- --------
|
|
45554
|
+
0 ProcessingInterval no
|
|
45555
|
+
1 Level no
|
|
45556
|
+
2 Charged no
|
|
45557
|
+
3 Uncharged no
|
|
45558
|
+
|
|
45559
|
+
=head3 Garmin HSAEvent Tags
|
|
45560
|
+
|
|
45561
|
+
Tag ID Tag Name Writable
|
|
45562
|
+
------ -------- --------
|
|
45563
|
+
0 EventID no
|
|
45564
|
+
|
|
45565
|
+
=head3 Garmin ClimbPro Tags
|
|
45566
|
+
|
|
45567
|
+
Tag ID Tag Name Writable
|
|
45568
|
+
------ -------- --------
|
|
45569
|
+
0 GPSLatitude no
|
|
45570
|
+
1 GPSLongitude no
|
|
45571
|
+
2 ClimbProEvent no
|
|
45572
|
+
3 ClimbNumber no
|
|
45573
|
+
4 ClimbCategory no
|
|
45574
|
+
5 CurrentDist no
|
|
45575
|
+
|
|
45576
|
+
=head3 Garmin TankUpdate Tags
|
|
45577
|
+
|
|
45578
|
+
Tag ID Tag Name Writable
|
|
45579
|
+
------ -------- --------
|
|
45580
|
+
0 Sensor no
|
|
45581
|
+
1 Pressure no
|
|
45582
|
+
|
|
45583
|
+
=head3 Garmin PowerMode Tags
|
|
45584
|
+
|
|
45585
|
+
Tag ID Tag Name Writable
|
|
45586
|
+
------ -------- --------
|
|
45587
|
+
0 LowBatteryAlert no
|
|
45588
|
+
1 DefaultMode no
|
|
45589
|
+
3 AutoEnableTime no
|
|
45590
|
+
|
|
45591
|
+
=head3 Garmin TankSummary Tags
|
|
45592
|
+
|
|
45593
|
+
Tag ID Tag Name Writable
|
|
45594
|
+
------ -------- --------
|
|
45595
|
+
0 Sensor no
|
|
45596
|
+
1 StartPressure no
|
|
45597
|
+
2 EndPressure no
|
|
45598
|
+
3 VolumeUsed no
|
|
45599
|
+
|
|
45600
|
+
=head3 Garmin GPSEvent Tags
|
|
45601
|
+
|
|
45602
|
+
Tag ID Tag Name Writable
|
|
45603
|
+
------ -------- --------
|
|
45604
|
+
0 EventType no
|
|
45605
|
+
1 Data no
|
|
45606
|
+
100 GPS_1 no
|
|
45607
|
+
101 Glonass no
|
|
45608
|
+
102 Unknown_1 no
|
|
45609
|
+
104 Qzss_1 no
|
|
45610
|
+
105 Unknown_2 no
|
|
45611
|
+
106 Galileo_1 no
|
|
45612
|
+
107 Beidou_1 no
|
|
45613
|
+
108 AutoSelect no
|
|
45614
|
+
109 Unknown_3 no
|
|
45615
|
+
110 GPSgalileobeidou_5 no
|
|
45616
|
+
113 Qzss_5 no
|
|
45617
|
+
|
|
45618
|
+
=head3 Garmin ECGSummary Tags
|
|
45619
|
+
|
|
45620
|
+
Tag ID Tag Name Writable
|
|
45621
|
+
------ -------- --------
|
|
45622
|
+
2 RawSampleRate no
|
|
45623
|
+
3 SmoothSampleRate no
|
|
45624
|
+
4 ECGTimeStamp no
|
|
45625
|
+
5 LocalTimeStamp no
|
|
45626
|
+
7 AverageHeartRate no
|
|
45627
|
+
11 SampleTime no
|
|
45628
|
+
12 SDRRHRV no
|
|
45629
|
+
|
|
45630
|
+
=head3 Garmin ECGRawSample Tags
|
|
45631
|
+
|
|
45632
|
+
Tag ID Tag Name Writable
|
|
45633
|
+
------ -------- --------
|
|
45634
|
+
0 Value no
|
|
45635
|
+
|
|
45636
|
+
=head3 Garmin ECGSmoothSample Tags
|
|
45637
|
+
|
|
45638
|
+
Tag ID Tag Name Writable
|
|
45639
|
+
------ -------- --------
|
|
45640
|
+
0 Value no
|
|
45641
|
+
|
|
45642
|
+
=head3 Garmin SleepAssessment Tags
|
|
45643
|
+
|
|
45644
|
+
Tag ID Tag Name Writable
|
|
45645
|
+
------ -------- --------
|
|
45646
|
+
0 CombinedAwakeScore no
|
|
45647
|
+
1 AwakeTimeScore no
|
|
45648
|
+
2 AwakeningsCountScore no
|
|
45649
|
+
3 DeepSleepScore no
|
|
45650
|
+
4 SleepDurationScore no
|
|
45651
|
+
5 LightSleepScore no
|
|
45652
|
+
6 OverallSleepScore no
|
|
45653
|
+
7 SleepQualityScore no
|
|
45654
|
+
8 SleepRecoveryScore no
|
|
45655
|
+
9 RemSleepScore no
|
|
45656
|
+
10 SleepRestlessnessScore no
|
|
45657
|
+
11 AwakeningsCount no
|
|
45658
|
+
14 InterruptionsScore no
|
|
45659
|
+
15 AverageStressDuringSleep no
|
|
45660
|
+
|
|
45661
|
+
=head3 Garmin FunctionalMetrics Tags
|
|
45662
|
+
|
|
45663
|
+
Tag ID Tag Name Writable
|
|
45664
|
+
------ -------- --------
|
|
45665
|
+
4 FunctionalThresholdPower no
|
|
45666
|
+
7 RunningLactateThresholdPower no
|
|
45667
|
+
8 RunningLactateThresholdHR no
|
|
45668
|
+
9 CyclingLactaceThresholdHR no
|
|
45669
|
+
|
|
45670
|
+
=head3 Garmin RaceEvent Tags
|
|
45671
|
+
|
|
45672
|
+
Tag ID Tag Name Writable
|
|
45673
|
+
------ -------- --------
|
|
45674
|
+
1 EventID no
|
|
45675
|
+
2 StartTime no
|
|
45676
|
+
3 LocalTimeStamp no
|
|
45677
|
+
4 RaceEventName no
|
|
45678
|
+
5 Location no
|
|
45679
|
+
6 StartPointLat no
|
|
45680
|
+
7 StartPointLong no
|
|
45681
|
+
10 Distance no
|
|
45682
|
+
12 TargetTime no
|
|
45683
|
+
24 City no
|
|
45684
|
+
26 Country no
|
|
45685
|
+
|
|
45686
|
+
=head3 Garmin TrainingReadiness Tags
|
|
45687
|
+
|
|
45688
|
+
Tag ID Tag Name Writable
|
|
45689
|
+
------ -------- --------
|
|
45690
|
+
0 TrainingReadiness no
|
|
45691
|
+
1 Level no
|
|
45692
|
+
20 LocalTimeStamp no
|
|
45693
|
+
|
|
45694
|
+
=head3 Garmin HRVStatusSummary Tags
|
|
45695
|
+
|
|
45696
|
+
Tag ID Tag Name Writable
|
|
45697
|
+
------ -------- --------
|
|
45698
|
+
0 WeeklyAverage no
|
|
45699
|
+
1 LastNightAverage no
|
|
45700
|
+
2 LastNight_5MinHigh no
|
|
45701
|
+
3 BaselineLowUpper no
|
|
45702
|
+
4 BaselineBalancedLower no
|
|
45703
|
+
5 BaselineBalancedUpper no
|
|
45704
|
+
6 Status no
|
|
45705
|
+
|
|
45706
|
+
=head3 Garmin HRVValue Tags
|
|
45707
|
+
|
|
45708
|
+
Tag ID Tag Name Writable
|
|
45709
|
+
------ -------- --------
|
|
45710
|
+
0 Value no
|
|
45711
|
+
|
|
45712
|
+
=head3 Garmin RawBBI Tags
|
|
45713
|
+
|
|
45714
|
+
Tag ID Tag Name Writable
|
|
45715
|
+
------ -------- --------
|
|
45716
|
+
0 TimeStamp_ms no
|
|
45717
|
+
1 Data no
|
|
45718
|
+
2 Time no
|
|
45719
|
+
3 Quality no
|
|
45720
|
+
4 Gap no
|
|
45721
|
+
|
|
45722
|
+
=head3 Garmin DeviceAuxBatteryInfo Tags
|
|
45723
|
+
|
|
45724
|
+
Tag ID Tag Name Writable
|
|
45725
|
+
------ -------- --------
|
|
45726
|
+
0 DeviceIndex no
|
|
45727
|
+
1 BatteryVoltage no
|
|
45728
|
+
2 BatteryStatus no
|
|
45729
|
+
3 BatteryIdentifier no
|
|
45730
|
+
|
|
45731
|
+
=head3 Garmin HSAGyroscopeData Tags
|
|
45732
|
+
|
|
45733
|
+
Tag ID Tag Name Writable
|
|
45734
|
+
------ -------- --------
|
|
45735
|
+
0 TimeStamp_ms no
|
|
45736
|
+
1 SamplingInterval no
|
|
45737
|
+
2 GyroX no
|
|
45738
|
+
3 GyroY no
|
|
45739
|
+
4 GyroZ no
|
|
45740
|
+
5 TimeStamp_32k no
|
|
45741
|
+
|
|
45742
|
+
=head3 Garmin TrainingLoad Tags
|
|
45743
|
+
|
|
45744
|
+
Tag ID Tag Name Writable
|
|
45745
|
+
------ -------- --------
|
|
45746
|
+
3 AcuteTrainingLoad no
|
|
45747
|
+
4 ChronicTrainingLoad no
|
|
45748
|
+
|
|
45749
|
+
=head3 Garmin SleepSchedule Tags
|
|
45750
|
+
|
|
45751
|
+
Tag ID Tag Name Writable
|
|
45752
|
+
------ -------- --------
|
|
45753
|
+
0 BedTime no
|
|
45754
|
+
1 WakeTime no
|
|
45755
|
+
|
|
45756
|
+
=head3 Garmin SleepRestlessMoments Tags
|
|
45757
|
+
|
|
45758
|
+
Tag ID Tag Name Writable
|
|
45759
|
+
------ -------- --------
|
|
45760
|
+
1 RestlessMomentsCount no
|
|
45761
|
+
2 Durations no
|
|
45762
|
+
|
|
45763
|
+
=head3 Garmin ChronoShotSession Tags
|
|
45764
|
+
|
|
45765
|
+
Tag ID Tag Name Writable
|
|
45766
|
+
------ -------- --------
|
|
45767
|
+
0 MinSpeed no
|
|
45768
|
+
1 MaxSpeed no
|
|
45769
|
+
2 AvgSpeed no
|
|
45770
|
+
3 ShotCount no
|
|
45771
|
+
4 ProjectileType no
|
|
45772
|
+
5 GrainWeight no
|
|
45773
|
+
6 StandardDeviation no
|
|
45774
|
+
|
|
45775
|
+
=head3 Garmin ChronoShotData Tags
|
|
45776
|
+
|
|
45777
|
+
Tag ID Tag Name Writable
|
|
45778
|
+
------ -------- --------
|
|
45779
|
+
0 ShotSpeed no
|
|
45780
|
+
1 ShotNum no
|
|
45781
|
+
|
|
45782
|
+
=head3 Garmin HSAConfigurationData Tags
|
|
45783
|
+
|
|
45784
|
+
Tag ID Tag Name Writable
|
|
45785
|
+
------ -------- --------
|
|
45786
|
+
0 Data no
|
|
45787
|
+
1 DataSize no
|
|
45788
|
+
|
|
45789
|
+
=head3 Garmin DiveApneaAlarm Tags
|
|
45790
|
+
|
|
45791
|
+
Tag ID Tag Name Writable
|
|
45792
|
+
------ -------- --------
|
|
45793
|
+
0 Depth no
|
|
45794
|
+
1 Time no
|
|
45795
|
+
2 Enabled no
|
|
45796
|
+
3 AlarmType no
|
|
45797
|
+
4 Sound no
|
|
45798
|
+
5 DiveTypes no
|
|
45799
|
+
6 ID no
|
|
45800
|
+
7 PopupEnabled no
|
|
45801
|
+
8 TriggerOnDescent no
|
|
45802
|
+
9 TriggerOnAscent no
|
|
45803
|
+
10 Repeating no
|
|
45804
|
+
11 Speed no
|
|
45805
|
+
|
|
45806
|
+
=head3 Garmin CPEStatus Tags
|
|
45807
|
+
|
|
45808
|
+
Tag ID Tag Name Writable
|
|
45809
|
+
------ -------- --------
|
|
45810
|
+
0 Status no
|
|
45811
|
+
1 StartTime no
|
|
45812
|
+
2 EndTime no
|
|
45813
|
+
|
|
45814
|
+
=head3 Garmin SkinTempOvernight Tags
|
|
45815
|
+
|
|
45816
|
+
Tag ID Tag Name Writable
|
|
45817
|
+
------ -------- --------
|
|
45818
|
+
0 LocalTimeStamp no
|
|
45819
|
+
1 AverageDeviation no
|
|
45820
|
+
2 Average_7DayDeviation no
|
|
45821
|
+
4 NightlyValue no
|
|
45822
|
+
|
|
45823
|
+
=head3 Garmin HillScore Tags
|
|
45824
|
+
|
|
45825
|
+
Tag ID Tag Name Writable
|
|
45826
|
+
------ -------- --------
|
|
45827
|
+
0 HillScore no
|
|
45828
|
+
1 HillStrength no
|
|
45829
|
+
2 HillEndurance no
|
|
45830
|
+
4 Level no
|
|
45831
|
+
|
|
45832
|
+
=head3 Garmin EnduranceScore Tags
|
|
45833
|
+
|
|
45834
|
+
Tag ID Tag Name Writable
|
|
45835
|
+
------ -------- --------
|
|
45836
|
+
0 EnduranceScore no
|
|
45837
|
+
1 Level no
|
|
45838
|
+
3 LowerBoundIntermediate no
|
|
45839
|
+
4 LowerBoundTrained no
|
|
45840
|
+
5 LowerBoundWellTrained no
|
|
45841
|
+
6 LowerBoundExpert no
|
|
45842
|
+
7 LowerBoundSuperior no
|
|
45843
|
+
8 LowerBoundElite no
|
|
45844
|
+
|
|
45845
|
+
=head3 Garmin HSAWristTemperatureData Tags
|
|
45846
|
+
|
|
45847
|
+
Tag ID Tag Name Writable
|
|
45848
|
+
------ -------- --------
|
|
45849
|
+
0 ProcessingInterval no
|
|
45850
|
+
1 Value no
|
|
45851
|
+
|
|
45852
|
+
=head3 Garmin NapEvent Tags
|
|
45853
|
+
|
|
45854
|
+
Tag ID Tag Name Writable
|
|
45855
|
+
------ -------- --------
|
|
45856
|
+
0 StartTime no
|
|
45857
|
+
1 StartTimezoneOffset no
|
|
45858
|
+
2 EndTime no
|
|
45859
|
+
3 EndTimezoneOffset no
|
|
45860
|
+
4 Feedback no
|
|
45861
|
+
5 IsDeleted no
|
|
45862
|
+
6 Source no
|
|
45863
|
+
7 UpdateTimeStamp no
|
|
45864
|
+
|
|
45865
|
+
=head3 Garmin WorkoutSchedule Tags
|
|
45866
|
+
|
|
45867
|
+
Tag ID Tag Name Writable
|
|
45868
|
+
------ -------- --------
|
|
45869
|
+
1 WorkoutIndex no
|
|
45870
|
+
3 EstBenefit no
|
|
45871
|
+
5 EstAerobicTe no
|
|
45872
|
+
6 EstAnaerTe no
|
|
45873
|
+
7 Sport no
|
|
45874
|
+
9 Duration no
|
|
45875
|
+
|
|
45876
|
+
=head3 Garmin SleepDisruptionSeverityPeriod Tags
|
|
45877
|
+
|
|
45878
|
+
Tag ID Tag Name Writable
|
|
45879
|
+
------ -------- --------
|
|
45880
|
+
0 Severity no
|
|
45881
|
+
|
|
45882
|
+
=head3 Garmin SleepDisruptionOvernightSeverity Tags
|
|
45883
|
+
|
|
45884
|
+
Tag ID Tag Name Writable
|
|
45885
|
+
------ -------- --------
|
|
45886
|
+
0 Severity no
|
|
45887
|
+
|
|
43105
45888
|
=head2 FITS Tags
|
|
43106
45889
|
|
|
43107
45890
|
This table lists some standard Flexible Image Transport System (FITS) tags,
|