Skip to content

Commit

Permalink
#8 - fix prepended 0 in altitude metric
Browse files Browse the repository at this point in the history
  • Loading branch information
obriensystems authored Aug 11, 2024
1 parent aab7827 commit 6611053
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Biometric/BMViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,7 @@ - (void) httpPushToDataCenter {
[url appendString: [NSString stringWithFormat:@"%f", self.dataObject.longitude]];
[url appendString: @"&lt="];
[url appendString: [NSString stringWithFormat:@"%f", self.dataObject.latitude]];
[url appendString: @"&al=0"];
[url appendString: @"&al="];
[url appendString: [NSString stringWithFormat:@"%f", self.dataObject.altitude]];
[url appendString: @"&ac="]; // accuracy (grid on ios)
[url appendString: [NSString stringWithFormat:@"%f", self.dataObject.accuracyHorizontal]];
Expand Down

0 comments on commit 6611053

Please sign in to comment.