Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/position/positiontransformer.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class PositionTransformer : QObject
/**
* Transform the elevation if the user sets custom vertical CRS. The elevation gets recalculated to ellipsoid elevation
* and then back to orthometric based on specified CRS.
* \note This method should be used only with Bluetooth PositionProvider to mitigate unnecessary transformations
* \note This method should be used only with BluetoothPositionProvider to mitigate unnecessary transformations
* \return Copy of passed geoPosition with processed elevation and elevation separation.
*/
GeoPosition processBluetoothPosition( GeoPosition geoPosition );
Expand Down
2 changes: 1 addition & 1 deletion app/position/providers/bluetoothpositionprovider.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,6 @@ void BluetoothPositionProvider::positionUpdateReceived()
GeoPosition positionData = GeoPosition::fromQgsGpsInformation( data );
GeoPosition transformedPosition = mPositionTransformer->processBluetoothPosition( positionData );

emit positionChanged( positionData );
emit positionChanged( transformedPosition );
}
}
Loading