Fix typos

This commit is contained in:
Juernjakob Dugge 2018-12-31 12:12:02 +01:00 committed by Nyall Dawson
parent 3e05c99c11
commit bf5a077e33
3 changed files with 5 additions and 5 deletions

View File

@ -194,7 +194,7 @@ Measures the perimeter of a polygon geometry.
Measures the length of a line with multiple segments.
:param points: list of points in line
:param forceCartesian: calculate distances in cartesian coordinates
:param forceCartesian: calculate distances in Cartesian coordinates
:return: length of line. The units for the returned length can be retrieved by calling lengthUnits().
@ -207,7 +207,7 @@ Measures the distance between two points.
:param p1: start of line
:param p2: end of line
:param forceCartesian: calculate distances in cartesian coordinates
:param forceCartesian: calculate distances in Cartesian coordinates
:return: distance between points. The units for the returned distance can be retrieved by calling lengthUnits().

View File

@ -102,7 +102,7 @@ class APP_EXPORT QgsMeasureDialog : public QDialog, private Ui::QgsMeasureBase
bool useMapUnits = false;
/**
* Indicates whether we need to measure distances in cartesian instead of
* Indicates whether we need to measure distances in Cartesian instead of
* spherical coordinates, such as when measuring in degrees in a geographic CRS
*/
bool forceCartesian = true;

View File

@ -165,7 +165,7 @@ class CORE_EXPORT QgsDistanceArea
/**
* Measures the length of a line with multiple segments.
* \param points list of points in line
* \param forceCartesian calculate distances in cartesian coordinates
* \param forceCartesian calculate distances in Cartesian coordinates
* \returns length of line. The units for the returned length can be retrieved by calling lengthUnits().
* \see lengthUnits()
*/
@ -175,7 +175,7 @@ class CORE_EXPORT QgsDistanceArea
* Measures the distance between two points.
* \param p1 start of line
* \param p2 end of line
* \param forceCartesian calculate distances in cartesian coordinates
* \param forceCartesian calculate distances in Cartesian coordinates
* \returns distance between points. The units for the returned distance can be retrieved by calling lengthUnits().
* \see lengthUnits()
*/