aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/iso19111/coordinateoperation.cpp11
-rw-r--r--src/iso19111/factory.cpp19
2 files changed, 29 insertions, 1 deletions
diff --git a/src/iso19111/coordinateoperation.cpp b/src/iso19111/coordinateoperation.cpp
index d5bcfa84..0eef9954 100644
--- a/src/iso19111/coordinateoperation.cpp
+++ b/src/iso19111/coordinateoperation.cpp
@@ -552,7 +552,16 @@ struct CoordinateOperation::Private {
// ---------------------------------------------------------------------------
-GridDescription::GridDescription() = default;
+GridDescription::GridDescription():
+ shortName{},
+ fullName{},
+ packageName{},
+ url{},
+ directDownload(false),
+ openLicense(false),
+ available(false)
+{}
+
GridDescription::~GridDescription() = default;
diff --git a/src/iso19111/factory.cpp b/src/iso19111/factory.cpp
index b00a2c1a..d1fd4d0b 100644
--- a/src/iso19111/factory.cpp
+++ b/src/iso19111/factory.cpp
@@ -1359,6 +1359,25 @@ const DatabaseContextNNPtr &AuthorityFactory::databaseContext() const {
// ---------------------------------------------------------------------------
+//! @cond Doxygen_Suppress
+AuthorityFactory::CRSInfo::CRSInfo():
+ authName{},
+ code{},
+ name{},
+ type{ObjectType::CRS},
+ deprecated{},
+ bbox_valid{},
+ west_lon_degree{},
+ south_lat_degree{},
+ east_lon_degree{},
+ north_lat_degree{},
+ areaName{},
+ projectionMethodName{}
+{}
+//! @endcond
+
+// ---------------------------------------------------------------------------
+
/** \brief Returns an arbitrary object from a code.
*
* The returned object will typically be an instance of Datum,