@@ -56,7 +56,7 @@ typedef void ( *CUSTOM_CRS_VALIDATION )( QgsCoordinateReferenceSystem & ) SIP_SK
56
56
*
57
57
* Coordinate reference system object defines a specific map projection, as well as transformations
58
58
* between different coordinate reference systems. There are various ways how a CRS can be defined:
59
- * using well-known text (WKT), PROJ.4 string or combination of authority and code (e.g. EPSG:4326).
59
+ * using well-known text (WKT), PROJ string or combination of authority and code (e.g. EPSG:4326).
60
60
* QGIS comes with its internal database of coordinate reference systems (stored in SQLite) that
61
61
* allows lookups of CRS and seamless conversions between the various definitions.
62
62
*
@@ -69,7 +69,7 @@ typedef void ( *CUSTOM_CRS_VALIDATION )( QgsCoordinateReferenceSystem & ) SIP_SK
69
69
* Transverse Mercator or Albers Equal Area.
70
70
*
71
71
* Internally QGIS uses proj4 library for all the math behind coordinate transformations, so in case
72
- * of any troubles with projections it is best to examine the PROJ.4 representation within the object,
72
+ * of any troubles with projections it is best to examine the PROJ representation within the object,
73
73
* as that is the representation that will be ultimately used.
74
74
*
75
75
* Methods that allow inspection of CRS instances include isValid(), authid(), description(),
@@ -83,7 +83,7 @@ typedef void ( *CUSTOM_CRS_VALIDATION )( QgsCoordinateReferenceSystem & ) SIP_SK
83
83
* crs = QgsCoordinateReferenceSystem("EPSG:27700")
84
84
* if crs.isValid():
85
85
* print("CRS Description: {}".format(crs.description()))
86
- * print("CRS PROJ.4 text: {}".format(crs.toProj4()))
86
+ * print("CRS PROJ text: {}".format(crs.toProj4()))
87
87
* else:
88
88
* print("Invalid CRS!")
89
89
* \endcode
@@ -92,7 +92,7 @@ typedef void ( *CUSTOM_CRS_VALIDATION )( QgsCoordinateReferenceSystem & ) SIP_SK
92
92
*
93
93
* \code
94
94
* CRS Description: OSGB 1936 / British National Grid
95
- * CRS PROJ.4 text: +proj=tmerc +lat_0=49 +lon_0=-2 +k=0.9996012717 +x_0=400000 +y_0=-100000 [output trimmed]
95
+ * CRS PROJ text: +proj=tmerc +lat_0=49 +lon_0=-2 +k=0.9996012717 +x_0=400000 +y_0=-100000 [output trimmed]
96
96
* \endcode
97
97
*
98
98
* CRS Definition Formats
@@ -115,7 +115,7 @@ typedef void ( *CUSTOM_CRS_VALIDATION )( QgsCoordinateReferenceSystem & ) SIP_SK
115
115
*
116
116
* See authid() and createFromOgcWmsCrs() methods.
117
117
*
118
- * 2. **PROJ.4 string.** This is a string consisting of a series of key/value pairs in the following
118
+ * 2. **PROJ string.** This is a string consisting of a series of key/value pairs in the following
119
119
* format: `+param1=value1 +param2=value2 [...]`. This is the format natively used by the
120
120
* underlying proj4 library. For example, the definition of WGS84 looks like this:
121
121
*
@@ -357,7 +357,7 @@ class CORE_EXPORT QgsCoordinateReferenceSystem
357
357
bool createFromSrsId ( const long srsId );
358
358
359
359
/* *
360
- * Sets this CRS by passing it a PROJ.4 style formatted string.
360
+ * Sets this CRS by passing it a PROJ style formatted string.
361
361
*
362
362
* The string will be parsed and the projection and ellipsoid
363
363
* members set and the remainder of the proj4 string will be stored
@@ -401,7 +401,7 @@ class CORE_EXPORT QgsCoordinateReferenceSystem
401
401
* Set up this CRS from various text formats.
402
402
*
403
403
* Valid formats: WKT string, "EPSG:n", "EPSGA:n", "AUTO:proj_id,unit_id,lon0,lat0",
404
- * "urn:ogc:def:crs:EPSG::n", PROJ.4 string, filename (with WKT, XML or PROJ.4 string),
404
+ * "urn:ogc:def:crs:EPSG::n", PROJ string, filename (with WKT, XML or PROJ string),
405
405
* well known name (such as NAD27, NAD83, WGS84 or WGS72),
406
406
* ESRI::[WKT string] (directly or in a file), "IGNF:xxx"
407
407
*
@@ -443,7 +443,7 @@ class CORE_EXPORT QgsCoordinateReferenceSystem
443
443
444
444
/* *
445
445
* Walks the CRS databases (both system and user database) trying to match
446
- * stored PROJ.4 string to a database entry in order to fill in further
446
+ * stored PROJ string to a database entry in order to fill in further
447
447
* pieces of information about CRS.
448
448
* \note The ellipsoid and projection acronyms must be set as well as the proj4string!
449
449
* \returns long the SrsId of the matched CRS, zero if no match was found
0 commit comments