aboutsummaryrefslogtreecommitdiff
path: root/src/iso19111/io.cpp
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2019-01-02 11:29:36 +0100
committerEven Rouault <even.rouault@spatialys.com>2019-01-02 11:29:36 +0100
commitbe5778fa90586abd431fc02375870d71d2e3ba78 (patch)
treea8b51f31a6161b0ccf6e3075fc32235b466a675e /src/iso19111/io.cpp
parentd8d96cecce9c4ee3136e63e32d2ce952fa2ede56 (diff)
downloadPROJ-be5778fa90586abd431fc02375870d71d2e3ba78.tar.gz
PROJ-be5778fa90586abd431fc02375870d71d2e3ba78.zip
Typo fixes
Diffstat (limited to 'src/iso19111/io.cpp')
-rw-r--r--src/iso19111/io.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/iso19111/io.cpp b/src/iso19111/io.cpp
index 15a069c6..4ca5a7f0 100644
--- a/src/iso19111/io.cpp
+++ b/src/iso19111/io.cpp
@@ -886,7 +886,7 @@ const WKTNodeNNPtr &WKTNode::Private::lookForChild(
// ---------------------------------------------------------------------------
-/** \brief Instanciate a WKTNode.
+/** \brief Instantiate a WKTNode.
*
* @param valueIn the name of the node.
*/
@@ -1076,7 +1076,7 @@ WKTNodeNNPtr WKTNode::createFrom(const std::string &wkt, size_t indexStart,
}
// ---------------------------------------------------------------------------
-/** \brief Instanciate a WKTNode hierarchy from a WKT string.
+/** \brief Instantiate a WKTNode hierarchy from a WKT string.
*
* @param wkt the WKT string to parse.
* @param indexStart the start index in the wkt string.
@@ -4222,7 +4222,7 @@ BaseObjectNNPtr WKTParser::Private::build(const WKTNodeNNPtr &node) {
// ---------------------------------------------------------------------------
-/** \brief Instanciate a sub-class of BaseObject from a user specified text.
+/** \brief Instantiate a sub-class of BaseObject from a user specified text.
*
* The text can be a:
* <ul>
@@ -4236,7 +4236,7 @@ BaseObjectNNPtr WKTParser::Private::build(const WKTNodeNNPtr &node) {
* determine the appropriate best match.</li>
* </ul>
*
- * @param text One of the above mentionned text format
+ * @param text One of the above mentioned text format
* @param dbContext Database context, or nullptr (in which case database
* lookups will not work)
* @param usePROJ4InitRules When set to true,
@@ -4389,7 +4389,7 @@ BaseObjectNNPtr createFromUserInput(const std::string &text,
// ---------------------------------------------------------------------------
-/** \brief Instanciate a sub-class of BaseObject from a WKT string.
+/** \brief Instantiate a sub-class of BaseObject from a WKT string.
*
* By default, validation is strict (to the extent of the checks that are
* actually implemented. Currently only WKT1 strict grammar is checked), and
@@ -4673,7 +4673,7 @@ PROJStringFormatter::create(Convention conventionIn,
// ---------------------------------------------------------------------------
-/** \brief Set whether Extented Transverse Mercator (etmerc) should be used
+/** \brief Set whether Extended Transverse Mercator (etmerc) should be used
* instead of tmerc */
void PROJStringFormatter::setUseETMercForTMerc(bool flag) {
d->useETMercForTMerc_ = flag;
@@ -5914,7 +5914,7 @@ PROJStringParser::Private::buildDatum(const Step &step,
PropertyMap grfMap;
// It is arguable that we allow the prime meridian of a datum defined by
- // its name to be overriden, but this is found at least in a regression test
+ // its name to be overridden, but this is found at least in a regression test
// of GDAL. So let's keep the ellipsoid part of the datum in that case and
// use the specified prime meridian.
const auto overridePmIfNeeded =
@@ -7174,7 +7174,7 @@ static const metadata::ExtentPtr &getExtent(const crs::CRS *crs) {
// ---------------------------------------------------------------------------
-/** \brief Instanciate a sub-class of BaseObject from a PROJ string.
+/** \brief Instantiate a sub-class of BaseObject from a PROJ string.
* @throw ParsingException
*/
BaseObjectNNPtr
@@ -7506,7 +7506,7 @@ PROJStringParser::createFromPROJString(const std::string &projString) {
}
};
- // If the structure is not recognized, then try to instanciate the
+ // If the structure is not recognized, then try to instantiate the
// pipeline, and if successful, wrap it in a PROJBasedOperation
Logger logger;
auto pj_context = proj_context_create();