diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2019-01-02 11:29:36 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2019-01-02 11:29:36 +0100 |
| commit | be5778fa90586abd431fc02375870d71d2e3ba78 (patch) | |
| tree | a8b51f31a6161b0ccf6e3075fc32235b466a675e /src | |
| parent | d8d96cecce9c4ee3136e63e32d2ce952fa2ede56 (diff) | |
| download | PROJ-be5778fa90586abd431fc02375870d71d2e3ba78.tar.gz PROJ-be5778fa90586abd431fc02375870d71d2e3ba78.zip | |
Typo fixes
Diffstat (limited to 'src')
| -rw-r--r-- | src/4D_api.cpp | 4 | ||||
| -rw-r--r-- | src/apps/cs2cs.cpp | 4 | ||||
| -rw-r--r-- | src/iso19111/c_api.cpp | 166 | ||||
| -rw-r--r-- | src/iso19111/common.cpp | 18 | ||||
| -rw-r--r-- | src/iso19111/coordinateoperation.cpp | 212 | ||||
| -rw-r--r-- | src/iso19111/coordinatesystem.cpp | 54 | ||||
| -rw-r--r-- | src/iso19111/crs.cpp | 42 | ||||
| -rw-r--r-- | src/iso19111/datum.cpp | 24 | ||||
| -rw-r--r-- | src/iso19111/factory.cpp | 12 | ||||
| -rw-r--r-- | src/iso19111/internal.cpp | 4 | ||||
| -rw-r--r-- | src/iso19111/io.cpp | 18 | ||||
| -rw-r--r-- | src/iso19111/metadata.cpp | 14 | ||||
| -rw-r--r-- | src/iso19111/util.cpp | 8 | ||||
| -rw-r--r-- | src/proj.h | 2 |
14 files changed, 291 insertions, 291 deletions
diff --git a/src/4D_api.cpp b/src/4D_api.cpp index d8288af8..d4ca51fa 100644 --- a/src/4D_api.cpp +++ b/src/4D_api.cpp @@ -765,13 +765,13 @@ PJ *proj_create_crs_to_crs (PJ_CONTEXT *ctx, const char *source_crs, const char auto src = proj_create_from_user_input(ctx, source_crs, optionsImportCRS); if( !src ) { - proj_context_log_debug(ctx, "Cannot instanciate source_crs"); + proj_context_log_debug(ctx, "Cannot instantiate source_crs"); return nullptr; } auto dst = proj_create_from_user_input(ctx, target_crs, optionsImportCRS); if( !dst ) { - proj_context_log_debug(ctx, "Cannot instanciate target_crs"); + proj_context_log_debug(ctx, "Cannot instantiate target_crs"); proj_destroy(src); return nullptr; } diff --git a/src/apps/cs2cs.cpp b/src/apps/cs2cs.cpp index 1e8fb474..af53a051 100644 --- a/src/apps/cs2cs.cpp +++ b/src/apps/cs2cs.cpp @@ -547,7 +547,7 @@ int main(int argc, char **argv) { src = instanciate_crs(fromStr, optionsImportCRS, srcIsGeog, srcToRadians, ignored); if (!src) { - emess(3, "cannot instanciate source coordinate system"); + emess(3, "cannot instantiate source coordinate system"); } } @@ -556,7 +556,7 @@ int main(int argc, char **argv) { dst = instanciate_crs(toStr, optionsImportCRS, destIsGeog, destToRadians, destIsLatLong); if (!dst) { - emess(3, "cannot instanciate target coordinate system"); + emess(3, "cannot instantiate target coordinate system"); } } diff --git a/src/iso19111/c_api.cpp b/src/iso19111/c_api.cpp index 175266d7..c3c2fa39 100644 --- a/src/iso19111/c_api.cpp +++ b/src/iso19111/c_api.cpp @@ -337,7 +337,7 @@ PJ *proj_clone(PJ_CONTEXT *ctx, const PJ *obj) { // --------------------------------------------------------------------------- -/** \brief Instanciate an object from a WKT string, PROJ string or object code +/** \brief Instantiate an object from a WKT string, PROJ string or object code * (like "EPSG:4326", "urn:ogc:def:crs:EPSG::4326", * "urn:ogc:def:coordinateOperation:EPSG::1671"). * @@ -416,7 +416,7 @@ template <class T> static PROJ_STRING_LIST to_string_list(T &&set) { // --------------------------------------------------------------------------- -/** \brief Instanciate an object from a WKT string. +/** \brief Instantiate an object from a WKT string. * * This function calls osgeo::proj::io::WKTParser::createFromWKT() * @@ -522,7 +522,7 @@ PJ *proj_create_from_wkt(PJ_CONTEXT *ctx, const char *wkt, // --------------------------------------------------------------------------- -/** \brief Instanciate an object from a PROJ string. +/** \brief Instantiate an object from a PROJ string. * * This function calls osgeo::proj::io::PROJStringParser::createFromPROJString() * @@ -559,7 +559,7 @@ PJ *proj_create_from_proj_string(PJ_CONTEXT *ctx, const char *proj_string, // --------------------------------------------------------------------------- -/** \brief Instanciate an object from a database lookup. +/** \brief Instantiate an object from a database lookup. * * The returned object must be unreferenced with proj_destroy() after use. * It should be used by at most one thread at a time. @@ -1183,7 +1183,7 @@ const char *proj_get_id_code(const PJ *obj, int index) { * <li>OUTPUT_AXIS=AUTO/YES/NO. In AUTO mode, axis will be output for WKT2 * variants, for WKT1_GDAL for ProjectedCRS with easting/northing ordering * (otherwise stripped), but not for WKT1_ESRI. Setting to YES will output - * them unconditionaly, and to NO will omit them unconditionaly.</li> + * them unconditionally, and to NO will omit them unconditionally.</li> * </ul> * @return a string, or NULL in case of error. */ @@ -1552,7 +1552,7 @@ PJ *proj_crs_create_bound_crs(PJ_CONTEXT *ctx, const PJ *base_crs, * <ul> * <li>ALLOW_INTERMEDIATE_CRS=YES/NO. Defaults to NO. When set to YES, * intermediate CRS may be considered when computing the possible - * tranformations. Slower.</li> + * transformations. Slower.</li> * </ul> * @return Object that must be unreferenced with proj_destroy(), or NULL * in case of error. @@ -2043,7 +2043,7 @@ PJ *proj_crs_get_coordoperation(PJ_CONTEXT *ctx, const PJ *crs) { // --------------------------------------------------------------------------- -/** \brief Return informatin on the operation method of the SingleOperation. +/** \brief Return information on the operation method of the SingleOperation. * * @param ctx PROJ context, or NULL for default context * @param coordoperation Objet of type SingleOperation (typically a Conversion @@ -2709,9 +2709,9 @@ PJ *proj_crs_alter_cs_linear_unit(PJ_CONTEXT *ctx, const PJ *obj, * 0 for Metre if linear_units == NULL. Otherwise should be not NULL * @param unit_auth_name Unit authority name. Or NULL. * @param unit_code Unit code. Or NULL. - * @param convert_to_new_unit TRUE if exisiting values should be converted from + * @param convert_to_new_unit TRUE if existing values should be converted from * their current unit to the new unit. If FALSE, their value will be left - * unchanged and the unit overriden (so the resulting CRS will not be + * unchanged and the unit overridden (so the resulting CRS will not be * equivalent to the original one for reprojection purposes). * * @return Object that must be unreferenced with @@ -2742,7 +2742,7 @@ PJ *proj_crs_alter_parameters_linear_unit(PJ_CONTEXT *ctx, const PJ *obj, // --------------------------------------------------------------------------- -/** \brief Instanciate a EngineeringCRS with just a name +/** \brief Instantiate a EngineeringCRS with just a name * * The returned object must be unreferenced with proj_destroy() after * use. @@ -2842,7 +2842,7 @@ static void setSingleOperationElements( // --------------------------------------------------------------------------- -/** \brief Instanciate a Conversion +/** \brief Instantiate a Conversion * * The returned object must be unreferenced with proj_destroy() after * use. @@ -2889,7 +2889,7 @@ PJ *proj_create_conversion(PJ_CONTEXT *ctx, const char *name, // --------------------------------------------------------------------------- -/** \brief Instanciate a Transformation +/** \brief Instantiate a Transformation * * The returned object must be unreferenced with proj_destroy() after * use. @@ -3089,7 +3089,7 @@ static CoordinateSystemAxisNNPtr createAxis(const PJ_AXIS_DESCRIPTION &axis) { // --------------------------------------------------------------------------- -/** \brief Instanciate a CoordinateSystem. +/** \brief Instantiate a CoordinateSystem. * * The returned object must be unreferenced with proj_destroy() after * use. @@ -3216,7 +3216,7 @@ PJ *proj_create_cs(PJ_CONTEXT *ctx, PJ_COORDINATE_SYSTEM_TYPE type, // --------------------------------------------------------------------------- -/** \brief Instanciate a CartesiansCS 2D +/** \brief Instantiate a CartesiansCS 2D * * The returned object must be unreferenced with proj_destroy() after * use. @@ -3269,7 +3269,7 @@ PJ *proj_create_cartesian_2D_cs(PJ_CONTEXT *ctx, PJ_CARTESIAN_CS_2D_TYPE type, // --------------------------------------------------------------------------- -/** \brief Instanciate a Ellipsoidal 2D +/** \brief Instantiate a Ellipsoidal 2D * * The returned object must be unreferenced with proj_destroy() after * use. @@ -3308,7 +3308,7 @@ PJ *proj_create_ellipsoidal_2D_cs(PJ_CONTEXT *ctx, // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS +/** \brief Instantiate a ProjectedCRS * * The returned object must be unreferenced with proj_destroy() after * use. @@ -3368,7 +3368,7 @@ static PJ *proj_create_conversion(PJ_CONTEXT *ctx, // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a Universal Transverse Mercator +/** \brief Instantiate a ProjectedCRS with a Universal Transverse Mercator * conversion. * * See osgeo::proj::operation::Conversion::createUTM(). @@ -3388,7 +3388,7 @@ PJ *proj_create_conversion_utm(PJ_CONTEXT *ctx, int zone, int north) { } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Transverse +/** \brief Instantiate a ProjectedCRS with a conversion based on the Transverse * Mercator projection method. * * See osgeo::proj::operation::Conversion::createTransverseMercator(). @@ -3421,7 +3421,7 @@ PJ *proj_create_conversion_transverse_mercator( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Gauss +/** \brief Instantiate a ProjectedCRS with a conversion based on the Gauss * Schreiber Transverse Mercator projection method. * * See @@ -3455,7 +3455,7 @@ PJ *proj_create_conversion_gauss_schreiber_transverse_mercator( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Transverse +/** \brief Instantiate a ProjectedCRS with a conversion based on the Transverse * Mercator South Orientated projection method. * * See @@ -3489,7 +3489,7 @@ PJ *proj_create_conversion_transverse_mercator_south_oriented( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Two Point +/** \brief Instantiate a ProjectedCRS with a conversion based on the Two Point * Equidistant projection method. * * See osgeo::proj::operation::Conversion::createTwoPointEquidistant(). @@ -3525,7 +3525,7 @@ PJ *proj_create_conversion_two_point_equidistant( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Tunisia +/** \brief Instantiate a ProjectedCRS with a conversion based on the Tunisia * Mapping Grid projection method. * * See osgeo::proj::operation::Conversion::createTunisiaMappingGrid(). @@ -3557,7 +3557,7 @@ PJ *proj_create_conversion_tunisia_mapping_grid( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Albers +/** \brief Instantiate a ProjectedCRS with a conversion based on the Albers * Conic Equal Area projection method. * * See osgeo::proj::operation::Conversion::createAlbersEqualArea(). @@ -3594,7 +3594,7 @@ PJ *proj_create_conversion_albers_equal_area( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Lambert +/** \brief Instantiate a ProjectedCRS with a conversion based on the Lambert * Conic Conformal 1SP projection method. * * See osgeo::proj::operation::Conversion::createLambertConicConformal_1SP(). @@ -3627,7 +3627,7 @@ PJ *proj_create_conversion_lambert_conic_conformal_1sp( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Lambert +/** \brief Instantiate a ProjectedCRS with a conversion based on the Lambert * Conic Conformal (2SP) projection method. * * See osgeo::proj::operation::Conversion::createLambertConicConformal_2SP(). @@ -3664,7 +3664,7 @@ PJ *proj_create_conversion_lambert_conic_conformal_2sp( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Lambert +/** \brief Instantiate a ProjectedCRS with a conversion based on the Lambert * Conic Conformal (2SP Michigan) projection method. * * See @@ -3703,7 +3703,7 @@ PJ *proj_create_conversion_lambert_conic_conformal_2sp_michigan( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Lambert +/** \brief Instantiate a ProjectedCRS with a conversion based on the Lambert * Conic Conformal (2SP Belgium) projection method. * * See @@ -3741,7 +3741,7 @@ PJ *proj_create_conversion_lambert_conic_conformal_2sp_belgium( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Modified +/** \brief Instantiate a ProjectedCRS with a conversion based on the Modified * Azimuthal Equidistant projection method. * * See osgeo::proj::operation::Conversion::createAzimuthalEquidistant(). @@ -3774,7 +3774,7 @@ PJ *proj_create_conversion_azimuthal_equidistant( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Guam +/** \brief Instantiate a ProjectedCRS with a conversion based on the Guam * Projection projection method. * * See osgeo::proj::operation::Conversion::createGuamProjection(). @@ -3807,7 +3807,7 @@ PJ *proj_create_conversion_guam_projection( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Bonne +/** \brief Instantiate a ProjectedCRS with a conversion based on the Bonne * projection method. * * See osgeo::proj::operation::Conversion::createBonne(). @@ -3842,7 +3842,7 @@ PJ *proj_create_conversion_bonne(PJ_CONTEXT *ctx, double latitude_nat_origin, } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Lambert +/** \brief Instantiate a ProjectedCRS with a conversion based on the Lambert * Cylindrical Equal Area (Spherical) projection method. * * See @@ -3876,7 +3876,7 @@ PJ *proj_create_conversion_lambert_cylindrical_equal_area_spherical( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Lambert +/** \brief Instantiate a ProjectedCRS with a conversion based on the Lambert * Cylindrical Equal Area (ellipsoidal form) projection method. * * See osgeo::proj::operation::Conversion::createLambertCylindricalEqualArea(). @@ -3909,7 +3909,7 @@ PJ *proj_create_conversion_lambert_cylindrical_equal_area( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the +/** \brief Instantiate a ProjectedCRS with a conversion based on the * Cassini-Soldner projection method. * * See osgeo::proj::operation::Conversion::createCassiniSoldner(). @@ -3941,7 +3941,7 @@ PJ *proj_create_conversion_cassini_soldner( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Equidistant +/** \brief Instantiate a ProjectedCRS with a conversion based on the Equidistant * Conic projection method. * * See osgeo::proj::operation::Conversion::createEquidistantConic(). @@ -3977,7 +3977,7 @@ PJ *proj_create_conversion_equidistant_conic( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Eckert I +/** \brief Instantiate a ProjectedCRS with a conversion based on the Eckert I * projection method. * * See osgeo::proj::operation::Conversion::createEckertI(). @@ -4010,7 +4010,7 @@ PJ *proj_create_conversion_eckert_i(PJ_CONTEXT *ctx, double center_long, } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Eckert II +/** \brief Instantiate a ProjectedCRS with a conversion based on the Eckert II * projection method. * * See osgeo::proj::operation::Conversion::createEckertII(). @@ -4044,7 +4044,7 @@ PJ *proj_create_conversion_eckert_ii(PJ_CONTEXT *ctx, double center_long, } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Eckert III +/** \brief Instantiate a ProjectedCRS with a conversion based on the Eckert III * projection method. * * See osgeo::proj::operation::Conversion::createEckertIII(). @@ -4078,7 +4078,7 @@ PJ *proj_create_conversion_eckert_iii(PJ_CONTEXT *ctx, double center_long, } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Eckert IV +/** \brief Instantiate a ProjectedCRS with a conversion based on the Eckert IV * projection method. * * See osgeo::proj::operation::Conversion::createEckertIV(). @@ -4112,7 +4112,7 @@ PJ *proj_create_conversion_eckert_iv(PJ_CONTEXT *ctx, double center_long, } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Eckert V +/** \brief Instantiate a ProjectedCRS with a conversion based on the Eckert V * projection method. * * See osgeo::proj::operation::Conversion::createEckertV(). @@ -4145,7 +4145,7 @@ PJ *proj_create_conversion_eckert_v(PJ_CONTEXT *ctx, double center_long, } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Eckert VI +/** \brief Instantiate a ProjectedCRS with a conversion based on the Eckert VI * projection method. * * See osgeo::proj::operation::Conversion::createEckertVI(). @@ -4179,7 +4179,7 @@ PJ *proj_create_conversion_eckert_vi(PJ_CONTEXT *ctx, double center_long, } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Equidistant +/** \brief Instantiate a ProjectedCRS with a conversion based on the Equidistant * Cylindrical projection method. * * See osgeo::proj::operation::Conversion::createEquidistantCylindrical(). @@ -4212,7 +4212,7 @@ PJ *proj_create_conversion_equidistant_cylindrical( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Equidistant +/** \brief Instantiate a ProjectedCRS with a conversion based on the Equidistant * Cylindrical (Spherical) projection method. * * See @@ -4246,7 +4246,7 @@ PJ *proj_create_conversion_equidistant_cylindrical_spherical( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Gall +/** \brief Instantiate a ProjectedCRS with a conversion based on the Gall * (Stereographic) projection method. * * See osgeo::proj::operation::Conversion::createGall(). @@ -4279,7 +4279,7 @@ PJ *proj_create_conversion_gall(PJ_CONTEXT *ctx, double center_long, } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Goode +/** \brief Instantiate a ProjectedCRS with a conversion based on the Goode * Homolosine projection method. * * See osgeo::proj::operation::Conversion::createGoodeHomolosine(). @@ -4313,7 +4313,7 @@ PJ *proj_create_conversion_goode_homolosine(PJ_CONTEXT *ctx, double center_long, } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Interrupted +/** \brief Instantiate a ProjectedCRS with a conversion based on the Interrupted * Goode Homolosine projection method. * * See osgeo::proj::operation::Conversion::createInterruptedGoodeHomolosine(). @@ -4345,7 +4345,7 @@ PJ *proj_create_conversion_interrupted_goode_homolosine( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the +/** \brief Instantiate a ProjectedCRS with a conversion based on the * Geostationary Satellite View projection method, with the sweep angle axis of * the viewing instrument being x. * @@ -4378,7 +4378,7 @@ PJ *proj_create_conversion_geostationary_satellite_sweep_x( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the +/** \brief Instantiate a ProjectedCRS with a conversion based on the * Geostationary Satellite View projection method, with the sweep angle axis of * the viewing instrument being y. * @@ -4411,7 +4411,7 @@ PJ *proj_create_conversion_geostationary_satellite_sweep_y( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Gnomonic +/** \brief Instantiate a ProjectedCRS with a conversion based on the Gnomonic * projection method. * * See osgeo::proj::operation::Conversion::createGnomonic(). @@ -4445,7 +4445,7 @@ PJ *proj_create_conversion_gnomonic(PJ_CONTEXT *ctx, double center_lat, } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Hotine +/** \brief Instantiate a ProjectedCRS with a conversion based on the Hotine * Oblique Mercator (Variant A) projection method. * * See @@ -4483,7 +4483,7 @@ PJ *proj_create_conversion_hotine_oblique_mercator_variant_a( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Hotine +/** \brief Instantiate a ProjectedCRS with a conversion based on the Hotine * Oblique Mercator (Variant B) projection method. * * See @@ -4521,7 +4521,7 @@ PJ *proj_create_conversion_hotine_oblique_mercator_variant_b( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Hotine +/** \brief Instantiate a ProjectedCRS with a conversion based on the Hotine * Oblique Mercator Two Point Natural Origin projection method. * * See @@ -4561,7 +4561,7 @@ PJ *proj_create_conversion_hotine_oblique_mercator_two_point_natural_origin( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Laborde +/** \brief Instantiate a ProjectedCRS with a conversion based on the Laborde * Oblique Mercator projection method. * * See @@ -4597,7 +4597,7 @@ PJ *proj_create_conversion_laborde_oblique_mercator( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the +/** \brief Instantiate a ProjectedCRS with a conversion based on the * International Map of the World Polyconic projection method. * * See @@ -4633,7 +4633,7 @@ PJ *proj_create_conversion_international_map_world_polyconic( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Krovak +/** \brief Instantiate a ProjectedCRS with a conversion based on the Krovak * (north oriented) projection method. * * See osgeo::proj::operation::Conversion::createKrovakNorthOriented(). @@ -4672,7 +4672,7 @@ PJ *proj_create_conversion_krovak_north_oriented( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Krovak +/** \brief Instantiate a ProjectedCRS with a conversion based on the Krovak * projection method. * * See osgeo::proj::operation::Conversion::createKrovak(). @@ -4711,7 +4711,7 @@ PJ *proj_create_conversion_krovak( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Lambert +/** \brief Instantiate a ProjectedCRS with a conversion based on the Lambert * Azimuthal Equal Area projection method. * * See osgeo::proj::operation::Conversion::createLambertAzimuthalEqualArea(). @@ -4744,7 +4744,7 @@ PJ *proj_create_conversion_lambert_azimuthal_equal_area( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Miller +/** \brief Instantiate a ProjectedCRS with a conversion based on the Miller * Cylindrical projection method. * * See osgeo::proj::operation::Conversion::createMillerCylindrical(). @@ -4776,7 +4776,7 @@ PJ *proj_create_conversion_miller_cylindrical( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Mercator +/** \brief Instantiate a ProjectedCRS with a conversion based on the Mercator * projection method. * * See osgeo::proj::operation::Conversion::createMercatorVariantA(). @@ -4809,7 +4809,7 @@ PJ *proj_create_conversion_mercator_variant_a( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Mercator +/** \brief Instantiate a ProjectedCRS with a conversion based on the Mercator * projection method. * * See osgeo::proj::operation::Conversion::createMercatorVariantB(). @@ -4841,7 +4841,7 @@ PJ *proj_create_conversion_mercator_variant_b( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Popular +/** \brief Instantiate a ProjectedCRS with a conversion based on the Popular * Visualisation Pseudo Mercator projection method. * * See @@ -4874,7 +4874,7 @@ PJ *proj_create_conversion_popular_visualisation_pseudo_mercator( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Mollweide +/** \brief Instantiate a ProjectedCRS with a conversion based on the Mollweide * projection method. * * See osgeo::proj::operation::Conversion::createMollweide(). @@ -4908,7 +4908,7 @@ PJ *proj_create_conversion_mollweide(PJ_CONTEXT *ctx, double center_long, } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the New Zealand +/** \brief Instantiate a ProjectedCRS with a conversion based on the New Zealand * Map Grid projection method. * * See osgeo::proj::operation::Conversion::createNewZealandMappingGrid(). @@ -4940,7 +4940,7 @@ PJ *proj_create_conversion_new_zealand_mapping_grid( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Oblique +/** \brief Instantiate a ProjectedCRS with a conversion based on the Oblique * Stereographic (Alternative) projection method. * * See osgeo::proj::operation::Conversion::createObliqueStereographic(). @@ -4973,7 +4973,7 @@ PJ *proj_create_conversion_oblique_stereographic( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the +/** \brief Instantiate a ProjectedCRS with a conversion based on the * Orthographic projection method. * * See osgeo::proj::operation::Conversion::createOrthographic(). @@ -5005,7 +5005,7 @@ PJ *proj_create_conversion_orthographic( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the American +/** \brief Instantiate a ProjectedCRS with a conversion based on the American * Polyconic projection method. * * See osgeo::proj::operation::Conversion::createAmericanPolyconic(). @@ -5037,7 +5037,7 @@ PJ *proj_create_conversion_american_polyconic( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Polar +/** \brief Instantiate a ProjectedCRS with a conversion based on the Polar * Stereographic (Variant A) projection method. * * See osgeo::proj::operation::Conversion::createPolarStereographicVariantA(). @@ -5070,7 +5070,7 @@ PJ *proj_create_conversion_polar_stereographic_variant_a( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Polar +/** \brief Instantiate a ProjectedCRS with a conversion based on the Polar * Stereographic (Variant B) projection method. * * See osgeo::proj::operation::Conversion::createPolarStereographicVariantB(). @@ -5103,7 +5103,7 @@ PJ *proj_create_conversion_polar_stereographic_variant_b( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Robinson +/** \brief Instantiate a ProjectedCRS with a conversion based on the Robinson * projection method. * * See osgeo::proj::operation::Conversion::createRobinson(). @@ -5136,7 +5136,7 @@ PJ *proj_create_conversion_robinson(PJ_CONTEXT *ctx, double center_long, } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Sinusoidal +/** \brief Instantiate a ProjectedCRS with a conversion based on the Sinusoidal * projection method. * * See osgeo::proj::operation::Conversion::createSinusoidal(). @@ -5170,7 +5170,7 @@ PJ *proj_create_conversion_sinusoidal(PJ_CONTEXT *ctx, double center_long, } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the +/** \brief Instantiate a ProjectedCRS with a conversion based on the * Stereographic projection method. * * See osgeo::proj::operation::Conversion::createStereographic(). @@ -5203,7 +5203,7 @@ PJ *proj_create_conversion_stereographic( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Van der +/** \brief Instantiate a ProjectedCRS with a conversion based on the Van der * Grinten projection method. * * See osgeo::proj::operation::Conversion::createVanDerGrinten(). @@ -5237,7 +5237,7 @@ PJ *proj_create_conversion_van_der_grinten(PJ_CONTEXT *ctx, double center_long, } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Wagner I +/** \brief Instantiate a ProjectedCRS with a conversion based on the Wagner I * projection method. * * See osgeo::proj::operation::Conversion::createWagnerI(). @@ -5270,7 +5270,7 @@ PJ *proj_create_conversion_wagner_i(PJ_CONTEXT *ctx, double center_long, } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Wagner II +/** \brief Instantiate a ProjectedCRS with a conversion based on the Wagner II * projection method. * * See osgeo::proj::operation::Conversion::createWagnerII(). @@ -5304,7 +5304,7 @@ PJ *proj_create_conversion_wagner_ii(PJ_CONTEXT *ctx, double center_long, } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Wagner III +/** \brief Instantiate a ProjectedCRS with a conversion based on the Wagner III * projection method. * * See osgeo::proj::operation::Conversion::createWagnerIII(). @@ -5336,7 +5336,7 @@ PJ *proj_create_conversion_wagner_iii( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Wagner IV +/** \brief Instantiate a ProjectedCRS with a conversion based on the Wagner IV * projection method. * * See osgeo::proj::operation::Conversion::createWagnerIV(). @@ -5370,7 +5370,7 @@ PJ *proj_create_conversion_wagner_iv(PJ_CONTEXT *ctx, double center_long, } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Wagner V +/** \brief Instantiate a ProjectedCRS with a conversion based on the Wagner V * projection method. * * See osgeo::proj::operation::Conversion::createWagnerV(). @@ -5403,7 +5403,7 @@ PJ *proj_create_conversion_wagner_v(PJ_CONTEXT *ctx, double center_long, } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Wagner VI +/** \brief Instantiate a ProjectedCRS with a conversion based on the Wagner VI * projection method. * * See osgeo::proj::operation::Conversion::createWagnerVI(). @@ -5437,7 +5437,7 @@ PJ *proj_create_conversion_wagner_vi(PJ_CONTEXT *ctx, double center_long, } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Wagner VII +/** \brief Instantiate a ProjectedCRS with a conversion based on the Wagner VII * projection method. * * See osgeo::proj::operation::Conversion::createWagnerVII(). @@ -5471,7 +5471,7 @@ PJ *proj_create_conversion_wagner_vii(PJ_CONTEXT *ctx, double center_long, } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the +/** \brief Instantiate a ProjectedCRS with a conversion based on the * Quadrilateralized Spherical Cube projection method. * * See @@ -5504,7 +5504,7 @@ PJ *proj_create_conversion_quadrilateralized_spherical_cube( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Spherical +/** \brief Instantiate a ProjectedCRS with a conversion based on the Spherical * Cross-Track Height projection method. * * See osgeo::proj::operation::Conversion::createSphericalCrossTrackHeight(). @@ -5536,7 +5536,7 @@ PJ *proj_create_conversion_spherical_cross_track_height( } // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS with a conversion based on the Equal Earth +/** \brief Instantiate a ProjectedCRS with a conversion based on the Equal Earth * projection method. * * See osgeo::proj::operation::Conversion::createEqualEarth(). @@ -5572,7 +5572,7 @@ PJ *proj_create_conversion_equal_earth(PJ_CONTEXT *ctx, double center_long, // --------------------------------------------------------------------------- -/** \brief Return whether a coordinate operation can be instanciated as +/** \brief Return whether a coordinate operation can be instantiated as * a PROJ pipeline, checking in particular that referenced grids are * available. * @@ -5966,7 +5966,7 @@ struct PJ_OPERATION_FACTORY_CONTEXT { // --------------------------------------------------------------------------- -/** \brief Instanciate a context for building coordinate operations between +/** \brief Instantiate a context for building coordinate operations between * two CRS. * * The returned object must be unreferenced with diff --git a/src/iso19111/common.cpp b/src/iso19111/common.cpp index bd690924..32eb5a95 100644 --- a/src/iso19111/common.cpp +++ b/src/iso19111/common.cpp @@ -309,7 +309,7 @@ struct Measure::Private { // --------------------------------------------------------------------------- -/** \brief Instanciate a Measure. +/** \brief Instantiate a Measure. */ Measure::Measure(double valueIn, const UnitOfMeasure &unitIn) : d(internal::make_unique<Private>(valueIn, unitIn)) {} @@ -385,7 +385,7 @@ bool Measure::_isEquivalentTo(const Measure &other, // --------------------------------------------------------------------------- -/** \brief Instanciate a Scale. +/** \brief Instantiate a Scale. * * @param valueIn value */ @@ -393,7 +393,7 @@ Scale::Scale(double valueIn) : Measure(valueIn, UnitOfMeasure::SCALE_UNITY) {} // --------------------------------------------------------------------------- -/** \brief Instanciate a Scale. +/** \brief Instantiate a Scale. * * @param valueIn value * @param unitIn unit. Constraint: unit.type() == UnitOfMeasure::Type::SCALE @@ -415,7 +415,7 @@ Scale::~Scale() = default; // --------------------------------------------------------------------------- -/** \brief Instanciate a Angle. +/** \brief Instantiate a Angle. * * @param valueIn value */ @@ -423,7 +423,7 @@ Angle::Angle(double valueIn) : Measure(valueIn, UnitOfMeasure::DEGREE) {} // --------------------------------------------------------------------------- -/** \brief Instanciate a Angle. +/** \brief Instantiate a Angle. * * @param valueIn value * @param unitIn unit. Constraint: unit.type() == UnitOfMeasure::Type::ANGULAR @@ -445,7 +445,7 @@ Angle::~Angle() = default; // --------------------------------------------------------------------------- -/** \brief Instanciate a Length. +/** \brief Instantiate a Length. * * @param valueIn value */ @@ -453,7 +453,7 @@ Length::Length(double valueIn) : Measure(valueIn, UnitOfMeasure::METRE) {} // --------------------------------------------------------------------------- -/** \brief Instanciate a Length. +/** \brief Instantiate a Length. * * @param valueIn value * @param unitIn unit. Constraint: unit.type() == UnitOfMeasure::Type::LINEAR @@ -507,7 +507,7 @@ DateTime::~DateTime() = default; // --------------------------------------------------------------------------- -/** \brief Instanciate a DateTime. */ +/** \brief Instantiate a DateTime. */ DateTime DateTime::create(const std::string &str) { return DateTime(str); } // --------------------------------------------------------------------------- @@ -899,7 +899,7 @@ const ExtentPtr &ObjectDomain::domainOfValidity() PROJ_CONST_DEFN { // --------------------------------------------------------------------------- -/** \brief Instanciate a ObjectDomain. +/** \brief Instantiate a ObjectDomain. */ ObjectDomainNNPtr ObjectDomain::create(const optional<std::string> &scopeIn, const ExtentPtr &extent) { diff --git a/src/iso19111/coordinateoperation.cpp b/src/iso19111/coordinateoperation.cpp index 93314b85..c531a8bc 100644 --- a/src/iso19111/coordinateoperation.cpp +++ b/src/iso19111/coordinateoperation.cpp @@ -234,7 +234,7 @@ const MethodMapping *getMapping(const OperationMethod *method) noexcept { // --------------------------------------------------------------------------- const MethodMapping *getMappingFromWKT1(const std::string &wkt1_name) noexcept { - // Unusual for a WKT1 projection name, but mentionned in OGC 12-063r5 C.4.2 + // Unusual for a WKT1 projection name, but mentioned in OGC 12-063r5 C.4.2 if (ci_starts_with(wkt1_name, "UTM zone")) { return getMapping(EPSG_CODE_METHOD_TRANSVERSE_MERCATOR); } @@ -702,7 +702,7 @@ void CoordinateOperation::setAccuracies( // --------------------------------------------------------------------------- -/** \brief Return whether a coordinate operation can be instanciated as +/** \brief Return whether a coordinate operation can be instantiated as * a PROJ pipeline, checking in particular that referenced grids are * available. */ @@ -1493,7 +1493,7 @@ double SingleOperation::parameterValueNumeric( //! @endcond // --------------------------------------------------------------------------- -/** \brief Instanciate a PROJ-based single operation. +/** \brief Instantiate a PROJ-based single operation. * * \note The operation might internally be a pipeline chaining several * operations. @@ -1815,7 +1815,7 @@ std::set<GridDescription> SingleOperation::gridsNeeded( // --------------------------------------------------------------------------- -/** \brief Validate the parameters used by a coodinate operation. +/** \brief Validate the parameters used by a coordinate operation. * * Return whether the method is known or not, or a list of missing or extra * parameters for the operations recognized by this implementation. @@ -1920,7 +1920,7 @@ std::list<std::string> SingleOperation::validateParameters() const { } const auto paramEPSGCode = parameter->getEPSGCode(); if (paramEPSGCode != 0 && paramEPSGCode != paramMapping->epsg_code) { - std::string msg("Paramater of EPSG code "); + std::string msg("Parameter of EPSG code "); msg += toString(paramEPSGCode); msg += " does not match official code ("; msg += toString(paramMapping->epsg_code); @@ -2002,7 +2002,7 @@ ParameterValue::ParameterValue(bool booleanValueIn) // --------------------------------------------------------------------------- -/** \brief Instanciate a ParameterValue from a Measure (i.e. a value associated +/** \brief Instantiate a ParameterValue from a Measure (i.e. a value associated * with a * unit) * @@ -2014,7 +2014,7 @@ ParameterValueNNPtr ParameterValue::create(const common::Measure &measureIn) { // --------------------------------------------------------------------------- -/** \brief Instanciate a ParameterValue from a string value. +/** \brief Instantiate a ParameterValue from a string value. * * @return a new ParameterValue. */ @@ -2025,7 +2025,7 @@ ParameterValueNNPtr ParameterValue::create(const char *stringValueIn) { // --------------------------------------------------------------------------- -/** \brief Instanciate a ParameterValue from a string value. +/** \brief Instantiate a ParameterValue from a string value. * * @return a new ParameterValue. */ @@ -2036,7 +2036,7 @@ ParameterValueNNPtr ParameterValue::create(const std::string &stringValueIn) { // --------------------------------------------------------------------------- -/** \brief Instanciate a ParameterValue from a filename. +/** \brief Instantiate a ParameterValue from a filename. * * @return a new ParameterValue. */ @@ -2048,7 +2048,7 @@ ParameterValue::createFilename(const std::string &stringValueIn) { // --------------------------------------------------------------------------- -/** \brief Instanciate a ParameterValue from a integer value. +/** \brief Instantiate a ParameterValue from a integer value. * * @return a new ParameterValue. */ @@ -2058,7 +2058,7 @@ ParameterValueNNPtr ParameterValue::create(int integerValueIn) { // --------------------------------------------------------------------------- -/** \brief Instanciate a ParameterValue from a boolean value. +/** \brief Instantiate a ParameterValue from a boolean value. * * @return a new ParameterValue. */ @@ -2304,7 +2304,7 @@ Conversion::alterParametersLinearUnit(const common::UnitOfMeasure &unit, // --------------------------------------------------------------------------- -/** \brief Instanciate a Conversion from a vector of GeneralParameterValue. +/** \brief Instantiate a Conversion from a vector of GeneralParameterValue. * * @param properties See \ref general_properties. At minimum the name should be * defined. @@ -2330,7 +2330,7 @@ ConversionNNPtr Conversion::create(const util::PropertyMap &properties, // --------------------------------------------------------------------------- -/** \brief Instanciate a Conversion and its OperationMethod +/** \brief Instantiate a Conversion and its OperationMethod * * @param propertiesConversion See \ref general_properties of the conversion. * At minimum the name should be defined. @@ -2589,7 +2589,7 @@ createParams(const common::Measure &m1, const common::Measure &m2, // --------------------------------------------------------------------------- -/** \brief Instanciate a [Universal Transverse Mercator] +/** \brief Instantiate a [Universal Transverse Mercator] *(https://proj4.org/operations/projections/utm.html) conversion. * * UTM is a family of conversions, of EPSG codes from 16001 to 16060 for the @@ -2618,7 +2618,7 @@ ConversionNNPtr Conversion::createUTM(const util::PropertyMap &properties, // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Transverse Mercator] +/** \brief Instantiate a conversion based on the [Transverse Mercator] *(https://proj4.org/operations/projections/tmerc.html) projection method. * * This method is defined as [EPSG:9807] @@ -2644,7 +2644,7 @@ ConversionNNPtr Conversion::createTransverseMercator( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Gauss Schreiber Transverse +/** \brief Instantiate a conversion based on the [Gauss Schreiber Transverse *Mercator] *(https://proj4.org/operations/projections/gstmerc.html) projection method. * @@ -2673,7 +2673,7 @@ ConversionNNPtr Conversion::createGaussSchreiberTransverseMercator( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Transverse Mercator South +/** \brief Instantiate a conversion based on the [Transverse Mercator South *Orientated] *(https://proj4.org/operations/projections/tmerc.html) projection method. * @@ -2701,7 +2701,7 @@ ConversionNNPtr Conversion::createTransverseMercatorSouthOriented( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Two Point Equidistant] +/** \brief Instantiate a conversion based on the [Two Point Equidistant] *(https://proj4.org/operations/projections/tpeqd.html) projection method. * * There is no equivalent in EPSG. @@ -2732,7 +2732,7 @@ Conversion::createTwoPointEquidistant(const util::PropertyMap &properties, // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the Tunisia Mapping Grid projection +/** \brief Instantiate a conversion based on the Tunisia Mapping Grid projection * method. * * This method is defined as [EPSG:9816] @@ -2759,7 +2759,7 @@ ConversionNNPtr Conversion::createTunisiaMappingGrid( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Albers Conic Equal Area] +/** \brief Instantiate a conversion based on the [Albers Conic Equal Area] *(https://proj4.org/operations/projections/aea.html) projection method. * * This method is defined as [EPSG:9822] @@ -2794,7 +2794,7 @@ Conversion::createAlbersEqualArea(const util::PropertyMap &properties, // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Lambert Conic Conformal 1SP] +/** \brief Instantiate a conversion based on the [Lambert Conic Conformal 1SP] *(https://proj4.org/operations/projections/lcc.html) projection method. * * This method is defined as [EPSG:9801] @@ -2820,7 +2820,7 @@ ConversionNNPtr Conversion::createLambertConicConformal_1SP( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Lambert Conic Conformal (2SP)] +/** \brief Instantiate a conversion based on the [Lambert Conic Conformal (2SP)] *(https://proj4.org/operations/projections/lcc.html) projection method. * * This method is defined as [EPSG:9802] @@ -2855,7 +2855,7 @@ ConversionNNPtr Conversion::createLambertConicConformal_2SP( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Lambert Conic Conformal (2SP +/** \brief Instantiate a conversion based on the [Lambert Conic Conformal (2SP *Michigan)] *(https://proj4.org/operations/projections/lcc.html) projection method. * @@ -2892,7 +2892,7 @@ ConversionNNPtr Conversion::createLambertConicConformal_2SP_Michigan( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Lambert Conic Conformal (2SP +/** \brief Instantiate a conversion based on the [Lambert Conic Conformal (2SP *Belgium)] *(https://proj4.org/operations/projections/lcc.html) projection method. * @@ -2933,7 +2933,7 @@ ConversionNNPtr Conversion::createLambertConicConformal_2SP_Belgium( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Modified Azimuthal +/** \brief Instantiate a conversion based on the [Modified Azimuthal *Equidistant] *(https://proj4.org/operations/projections/aeqd.html) projection method. * @@ -2959,7 +2959,7 @@ ConversionNNPtr Conversion::createAzimuthalEquidistant( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Guam Projection] +/** \brief Instantiate a conversion based on the [Guam Projection] *(https://proj4.org/operations/projections/aeqd.html) projection method. * * This method is defined as [EPSG:9831] @@ -2985,7 +2985,7 @@ ConversionNNPtr Conversion::createGuamProjection( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Bonne] +/** \brief Instantiate a conversion based on the [Bonne] *(https://proj4.org/operations/projections/bonne.html) projection method. * * This method is defined as [EPSG:9827] @@ -3012,7 +3012,7 @@ ConversionNNPtr Conversion::createBonne(const util::PropertyMap &properties, // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Lambert Cylindrical Equal Area +/** \brief Instantiate a conversion based on the [Lambert Cylindrical Equal Area *(Spherical)] *(https://proj4.org/operations/projections/cea.html) projection method. * @@ -3043,7 +3043,7 @@ ConversionNNPtr Conversion::createLambertCylindricalEqualAreaSpherical( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Lambert Cylindrical Equal Area +/** \brief Instantiate a conversion based on the [Lambert Cylindrical Equal Area *(ellipsoidal form)] *(https://proj4.org/operations/projections/cea.html) projection method. * @@ -3070,7 +3070,7 @@ ConversionNNPtr Conversion::createLambertCylindricalEqualArea( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Cassini-Soldner] +/** \brief Instantiate a conversion based on the [Cassini-Soldner] * (https://proj4.org/operations/projections/cass.html) projection method. * * This method is defined as [EPSG:9806] @@ -3095,7 +3095,7 @@ ConversionNNPtr Conversion::createCassiniSoldner( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Equidistant Conic] +/** \brief Instantiate a conversion based on the [Equidistant Conic] *(https://proj4.org/operations/projections/eqdc.html) projection method. * * There is no equivalent in EPSG. @@ -3127,7 +3127,7 @@ ConversionNNPtr Conversion::createEquidistantConic( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Eckert I] +/** \brief Instantiate a conversion based on the [Eckert I] * (https://proj4.org/operations/projections/eck1.html) projection method. * * There is no equivalent in EPSG. @@ -3149,7 +3149,7 @@ ConversionNNPtr Conversion::createEckertI(const util::PropertyMap &properties, // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Eckert II] +/** \brief Instantiate a conversion based on the [Eckert II] * (https://proj4.org/operations/projections/eck2.html) projection method. * * There is no equivalent in EPSG. @@ -3170,7 +3170,7 @@ ConversionNNPtr Conversion::createEckertII( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Eckert III] +/** \brief Instantiate a conversion based on the [Eckert III] * (https://proj4.org/operations/projections/eck3.html) projection method. * * There is no equivalent in EPSG. @@ -3191,7 +3191,7 @@ ConversionNNPtr Conversion::createEckertIII( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Eckert IV] +/** \brief Instantiate a conversion based on the [Eckert IV] * (https://proj4.org/operations/projections/eck4.html) projection method. * * There is no equivalent in EPSG. @@ -3212,7 +3212,7 @@ ConversionNNPtr Conversion::createEckertIV( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Eckert V] +/** \brief Instantiate a conversion based on the [Eckert V] * (https://proj4.org/operations/projections/eck5.html) projection method. * * There is no equivalent in EPSG. @@ -3234,7 +3234,7 @@ ConversionNNPtr Conversion::createEckertV(const util::PropertyMap &properties, // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Eckert VI] +/** \brief Instantiate a conversion based on the [Eckert VI] * (https://proj4.org/operations/projections/eck6.html) projection method. * * There is no equivalent in EPSG. @@ -3255,7 +3255,7 @@ ConversionNNPtr Conversion::createEckertVI( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Equidistant Cylindrical] +/** \brief Instantiate a conversion based on the [Equidistant Cylindrical] *(https://proj4.org/operations/projections/eqc.html) projection method. * * This is also known as the Equirectangular method, and in the particular case @@ -3288,7 +3288,7 @@ ConversionNNPtr Conversion::createEquidistantCylindrical( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Equidistant Cylindrical +/** \brief Instantiate a conversion based on the [Equidistant Cylindrical *(Spherical)] *(https://proj4.org/operations/projections/eqc.html) projection method. * @@ -3323,7 +3323,7 @@ ConversionNNPtr Conversion::createEquidistantCylindricalSpherical( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Gall (Stereographic)] +/** \brief Instantiate a conversion based on the [Gall (Stereographic)] * (https://proj4.org/operations/projections/gall.html) projection method. * * There is no equivalent in EPSG. @@ -3345,7 +3345,7 @@ ConversionNNPtr Conversion::createGall(const util::PropertyMap &properties, // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Goode Homolosine] +/** \brief Instantiate a conversion based on the [Goode Homolosine] * (https://proj4.org/operations/projections/goode.html) projection method. * * There is no equivalent in EPSG. @@ -3366,7 +3366,7 @@ ConversionNNPtr Conversion::createGoodeHomolosine( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Interrupted Goode Homolosine] +/** \brief Instantiate a conversion based on the [Interrupted Goode Homolosine] * (https://proj4.org/operations/projections/igh.html) projection method. * * There is no equivalent in EPSG. @@ -3392,7 +3392,7 @@ ConversionNNPtr Conversion::createInterruptedGoodeHomolosine( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Geostationary Satellite View] +/** \brief Instantiate a conversion based on the [Geostationary Satellite View] * (https://proj4.org/operations/projections/geos.html) projection method, * with the sweep angle axis of the viewing instrument being x * @@ -3417,7 +3417,7 @@ ConversionNNPtr Conversion::createGeostationarySatelliteSweepX( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Geostationary Satellite View] +/** \brief Instantiate a conversion based on the [Geostationary Satellite View] * (https://proj4.org/operations/projections/geos.html) projection method, * with the sweep angle axis of the viewing instrument being y. * @@ -3442,7 +3442,7 @@ ConversionNNPtr Conversion::createGeostationarySatelliteSweepY( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Gnomonic] +/** \brief Instantiate a conversion based on the [Gnomonic] *(https://proj4.org/operations/projections/gnom.html) projection method. * * There is no equivalent in EPSG. @@ -3466,7 +3466,7 @@ ConversionNNPtr Conversion::createGnomonic( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Hotine Oblique Mercator +/** \brief Instantiate a conversion based on the [Hotine Oblique Mercator *(Variant A)] *(https://proj4.org/operations/projections/omerc.html) projection method * @@ -3514,7 +3514,7 @@ ConversionNNPtr Conversion::createHotineObliqueMercatorVariantA( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Hotine Oblique Mercator +/** \brief Instantiate a conversion based on the [Hotine Oblique Mercator *(Variant B)] *(https://proj4.org/operations/projections/omerc.html) projection method * @@ -3560,7 +3560,7 @@ ConversionNNPtr Conversion::createHotineObliqueMercatorVariantB( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Hotine Oblique Mercator Two +/** \brief Instantiate a conversion based on the [Hotine Oblique Mercator Two *Point Natural Origin] *(https://proj4.org/operations/projections/omerc.html) projection method. * @@ -3602,7 +3602,7 @@ ConversionNNPtr Conversion::createHotineObliqueMercatorTwoPointNaturalOrigin( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Laborde Oblique Mercator] +/** \brief Instantiate a conversion based on the [Laborde Oblique Mercator] *(https://proj4.org/operations/projections/labrd.html) projection method. * * This method is defined as [EPSG:9813] @@ -3632,7 +3632,7 @@ ConversionNNPtr Conversion::createLabordeObliqueMercator( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [International Map of the World +/** \brief Instantiate a conversion based on the [International Map of the World *Polyconic] *(https://proj4.org/operations/projections/imw_p.html) projection method. * @@ -3664,7 +3664,7 @@ ConversionNNPtr Conversion::createInternationalMapWorldPolyconic( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Krovak (north oriented)] +/** \brief Instantiate a conversion based on the [Krovak (north oriented)] *(https://proj4.org/operations/projections/krovak.html) projection method. * * This method is defined as [EPSG:1041] @@ -3714,7 +3714,7 @@ ConversionNNPtr Conversion::createKrovakNorthOriented( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Krovak] +/** \brief Instantiate a conversion based on the [Krovak] *(https://proj4.org/operations/projections/krovak.html) projection method. * * This method is defined as [EPSG:9819] @@ -3766,7 +3766,7 @@ Conversion::createKrovak(const util::PropertyMap &properties, // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Lambert Azimuthal Equal Area] +/** \brief Instantiate a conversion based on the [Lambert Azimuthal Equal Area] *(https://proj4.org/operations/projections/laea.html) projection method. * * This method is defined as [EPSG:9820] @@ -3791,7 +3791,7 @@ ConversionNNPtr Conversion::createLambertAzimuthalEqualArea( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Miller Cylindrical] +/** \brief Instantiate a conversion based on the [Miller Cylindrical] *(https://proj4.org/operations/projections/mill.html) projection method. * * There is no equivalent in EPSG. @@ -3812,7 +3812,7 @@ ConversionNNPtr Conversion::createMillerCylindrical( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Mercator] +/** \brief Instantiate a conversion based on the [Mercator] *(https://proj4.org/operations/projections/merc.html) projection method. * * This is the variant, also known as Mercator (1SP), defined with the scale @@ -3842,7 +3842,7 @@ ConversionNNPtr Conversion::createMercatorVariantA( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Mercator] +/** \brief Instantiate a conversion based on the [Mercator] *(https://proj4.org/operations/projections/merc.html) projection method. * * This is the variant, also known as Mercator (2SP), defined with the latitude @@ -3871,7 +3871,7 @@ ConversionNNPtr Conversion::createMercatorVariantB( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Popular Visualisation Pseudo +/** \brief Instantiate a conversion based on the [Popular Visualisation Pseudo *Mercator] *(https://proj4.org/operations/projections/webmerc.html) projection method. * @@ -3900,7 +3900,7 @@ ConversionNNPtr Conversion::createPopularVisualisationPseudoMercator( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Mollweide] +/** \brief Instantiate a conversion based on the [Mollweide] * (https://proj4.org/operations/projections/moll.html) projection method. * * There is no equivalent in EPSG. @@ -3921,7 +3921,7 @@ ConversionNNPtr Conversion::createMollweide( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [New Zealand Map Grid] +/** \brief Instantiate a conversion based on the [New Zealand Map Grid] * (https://proj4.org/operations/projections/nzmg.html) projection method. * * This method is defined as [EPSG:9811] @@ -3946,7 +3946,7 @@ ConversionNNPtr Conversion::createNewZealandMappingGrid( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Oblique Stereographic +/** \brief Instantiate a conversion based on the [Oblique Stereographic *(Alternative)] *(https://proj4.org/operations/projections/sterea.html) projection method. * @@ -3973,7 +3973,7 @@ ConversionNNPtr Conversion::createObliqueStereographic( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Orthographic] +/** \brief Instantiate a conversion based on the [Orthographic] *(https://proj4.org/operations/projections/ortho.html) projection method. * * This method is defined as [EPSG:9840] @@ -4000,7 +4000,7 @@ ConversionNNPtr Conversion::createOrthographic( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [American Polyconic] +/** \brief Instantiate a conversion based on the [American Polyconic] *(https://proj4.org/operations/projections/poly.html) projection method. * * This method is defined as [EPSG:9818] @@ -4025,7 +4025,7 @@ ConversionNNPtr Conversion::createAmericanPolyconic( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Polar Stereographic (Variant +/** \brief Instantiate a conversion based on the [Polar Stereographic (Variant *A)] *(https://proj4.org/operations/projections/stere.html) projection method. * @@ -4054,7 +4054,7 @@ ConversionNNPtr Conversion::createPolarStereographicVariantA( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Polar Stereographic (Variant +/** \brief Instantiate a conversion based on the [Polar Stereographic (Variant *B)] *(https://proj4.org/operations/projections/stere.html) projection method. * @@ -4084,7 +4084,7 @@ ConversionNNPtr Conversion::createPolarStereographicVariantB( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Robinson] +/** \brief Instantiate a conversion based on the [Robinson] * (https://proj4.org/operations/projections/robin.html) projection method. * * There is no equivalent in EPSG. @@ -4105,7 +4105,7 @@ ConversionNNPtr Conversion::createRobinson( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Sinusoidal] +/** \brief Instantiate a conversion based on the [Sinusoidal] * (https://proj4.org/operations/projections/sinu.html) projection method. * * There is no equivalent in EPSG. @@ -4126,7 +4126,7 @@ ConversionNNPtr Conversion::createSinusoidal( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Stereographic] +/** \brief Instantiate a conversion based on the [Stereographic] *(https://proj4.org/operations/projections/stere.html) projection method. * * There is no equivalent in EPSG. This method implements the original "Oblique @@ -4155,7 +4155,7 @@ ConversionNNPtr Conversion::createStereographic( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Van der Grinten] +/** \brief Instantiate a conversion based on the [Van der Grinten] * (https://proj4.org/operations/projections/vandg.html) projection method. * * There is no equivalent in EPSG. @@ -4176,7 +4176,7 @@ ConversionNNPtr Conversion::createVanDerGrinten( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Wagner I] +/** \brief Instantiate a conversion based on the [Wagner I] * (https://proj4.org/operations/projections/wag1.html) projection method. * * There is no equivalent in EPSG. @@ -4198,7 +4198,7 @@ ConversionNNPtr Conversion::createWagnerI(const util::PropertyMap &properties, // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Wagner II] +/** \brief Instantiate a conversion based on the [Wagner II] * (https://proj4.org/operations/projections/wag2.html) projection method. * * There is no equivalent in EPSG. @@ -4219,7 +4219,7 @@ ConversionNNPtr Conversion::createWagnerII( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Wagner III] +/** \brief Instantiate a conversion based on the [Wagner III] * (https://proj4.org/operations/projections/wag3.html) projection method. * * There is no equivalent in EPSG. @@ -4243,7 +4243,7 @@ ConversionNNPtr Conversion::createWagnerIII( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Wagner IV] +/** \brief Instantiate a conversion based on the [Wagner IV] * (https://proj4.org/operations/projections/wag4.html) projection method. * * There is no equivalent in EPSG. @@ -4264,7 +4264,7 @@ ConversionNNPtr Conversion::createWagnerIV( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Wagner V] +/** \brief Instantiate a conversion based on the [Wagner V] * (https://proj4.org/operations/projections/wag5.html) projection method. * * There is no equivalent in EPSG. @@ -4286,7 +4286,7 @@ ConversionNNPtr Conversion::createWagnerV(const util::PropertyMap &properties, // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Wagner VI] +/** \brief Instantiate a conversion based on the [Wagner VI] * (https://proj4.org/operations/projections/wag6.html) projection method. * * There is no equivalent in EPSG. @@ -4307,7 +4307,7 @@ ConversionNNPtr Conversion::createWagnerVI( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Wagner VII] +/** \brief Instantiate a conversion based on the [Wagner VII] * (https://proj4.org/operations/projections/wag7.html) projection method. * * There is no equivalent in EPSG. @@ -4328,7 +4328,7 @@ ConversionNNPtr Conversion::createWagnerVII( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Quadrilateralized Spherical +/** \brief Instantiate a conversion based on the [Quadrilateralized Spherical *Cube] *(https://proj4.org/operations/projections/qsc.html) projection method. * @@ -4353,7 +4353,7 @@ ConversionNNPtr Conversion::createQuadrilateralizedSphericalCube( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Spherical Cross-Track Height] +/** \brief Instantiate a conversion based on the [Spherical Cross-Track Height] *(https://proj4.org/operations/projections/sch.html) projection method. * * There is no equivalent in EPSG. @@ -4378,7 +4378,7 @@ ConversionNNPtr Conversion::createSphericalCrossTrackHeight( // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the [Equal Earth] +/** \brief Instantiate a conversion based on the [Equal Earth] * (https://proj4.org/operations/projections/eqearth.html) projection method. * * This method is defined as [EPSG:1078] @@ -4411,7 +4411,7 @@ static OperationParameterNNPtr createOpParamNameEPSGCode(int code) { // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the Change of Vertical Unit +/** \brief Instantiate a conversion based on the Change of Vertical Unit * method. * * This method is defined as [EPSG:1069] @@ -4438,7 +4438,7 @@ Conversion::createChangeVerticalUnit(const util::PropertyMap &properties, // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the Axis order reversal method +/** \brief Instantiate a conversion based on the Axis order reversal method * * This swaps the longitude, latitude axis. * @@ -4467,7 +4467,7 @@ ConversionNNPtr Conversion::createAxisOrderReversal(bool is3D) { // --------------------------------------------------------------------------- -/** \brief Instanciate a conversion based on the Geographic/Geocentric method. +/** \brief Instantiate a conversion based on the Geographic/Geocentric method. * * This method is defined as [EPSG:9602] * (https://www.epsg-registry.org/export.htm?gml=urn:ogc:def:method:EPSG::9602), @@ -6106,7 +6106,7 @@ Transformation::getTOWGS84Parameters() const // throw(io::FormattingException) // --------------------------------------------------------------------------- -/** \brief Instanciate a transformation from a vector of GeneralParameterValue. +/** \brief Instantiate a transformation from a vector of GeneralParameterValue. * * @param properties See \ref general_properties. At minimum the name should be * defined. @@ -6139,7 +6139,7 @@ TransformationNNPtr Transformation::create( // --------------------------------------------------------------------------- -/** \brief Instanciate a transformation ands its OperationMethod. +/** \brief Instantiate a transformation ands its OperationMethod. * * @param propertiesTransformation The \ref general_properties of the * Transformation. @@ -6261,7 +6261,7 @@ static void getTransformationType(const crs::CRSNNPtr &sourceCRSIn, // --------------------------------------------------------------------------- -/** \brief Instanciate a transformation with Geocentric Translations method. +/** \brief Instantiate a transformation with Geocentric Translations method. * * @param properties See \ref general_properties of the Transformation. * At minimum the name should be defined. @@ -6304,7 +6304,7 @@ TransformationNNPtr Transformation::createGeocentricTranslations( // --------------------------------------------------------------------------- -/** \brief Instanciate a transformation with Position vector transformation +/** \brief Instantiate a transformation with Position vector transformation * method. * * This is similar to createCoordinateFrameRotation(), except that the sign of @@ -6355,7 +6355,7 @@ TransformationNNPtr Transformation::createPositionVector( // --------------------------------------------------------------------------- -/** \brief Instanciate a transformation with Coordinate Frame Rotation method. +/** \brief Instantiate a transformation with Coordinate Frame Rotation method. * * This is similar to createPositionVector(), except that the sign of * the rotation terms is inverted. @@ -6475,7 +6475,7 @@ static TransformationNNPtr createFifteenParamsTransform( // --------------------------------------------------------------------------- -/** \brief Instanciate a transformation with Time Dependent position vector +/** \brief Instantiate a transformation with Time Dependent position vector * transformation method. * * This is similar to createTimeDependentCoordinateFrameRotation(), except that @@ -6550,7 +6550,7 @@ TransformationNNPtr Transformation::createTimeDependentPositionVector( // --------------------------------------------------------------------------- -/** \brief Instanciate a transformation with Time Dependent Position coordinate +/** \brief Instantiate a transformation with Time Dependent Position coordinate * frame rotation transformation method. * * This is similar to createTimeDependentPositionVector(), except that the sign @@ -6659,7 +6659,7 @@ static TransformationNNPtr _createMolodensky( // --------------------------------------------------------------------------- -/** \brief Instanciate a transformation with Molodensky method. +/** \brief Instantiate a transformation with Molodensky method. * * @see createAbridgedMolodensky() for a related method. * @@ -6695,7 +6695,7 @@ TransformationNNPtr Transformation::createMolodensky( // --------------------------------------------------------------------------- -/** \brief Instanciate a transformation with Abridged Molodensky method. +/** \brief Instantiate a transformation with Abridged Molodensky method. * * @see createdMolodensky() for a related method. * @@ -6732,7 +6732,7 @@ TransformationNNPtr Transformation::createAbridgedMolodensky( // --------------------------------------------------------------------------- -/** \brief Instanciate a transformation from TOWGS84 parameters. +/** \brief Instantiate a transformation from TOWGS84 parameters. * * This is a helper of createPositionVector() with the source CRS being the * GeographicCRS of sourceCRSIn, and the target CRS being EPSG:4326 @@ -6786,7 +6786,7 @@ TransformationNNPtr Transformation::createTOWGS84( } // --------------------------------------------------------------------------- -/** \brief Instanciate a transformation with NTv2 method. +/** \brief Instantiate a transformation with NTv2 method. * * @param properties See \ref general_properties of the Transformation. * At minimum the name should be defined. @@ -6831,7 +6831,7 @@ static TransformationNNPtr _createGravityRelatedHeightToGeographic3D( //! @endcond // --------------------------------------------------------------------------- -/** \brief Instanciate a transformation from GravityRelatedHeight to +/** \brief Instantiate a transformation from GravityRelatedHeight to * Geographic3D * * @param properties See \ref general_properties of the Transformation. @@ -6853,7 +6853,7 @@ TransformationNNPtr Transformation::createGravityRelatedHeightToGeographic3D( // --------------------------------------------------------------------------- -/** \brief Instanciate a transformation with method VERTCON +/** \brief Instantiate a transformation with method VERTCON * * @param properties See \ref general_properties of the Transformation. * At minimum the name should be defined. @@ -6889,7 +6889,7 @@ buildAccuracyZero() { //! @endcond -/** \brief Instanciate a transformation with method Longitude rotation +/** \brief Instantiate a transformation with method Longitude rotation * * This method is defined as [EPSG:9601] * (https://www.epsg-registry.org/export.htm?gml=urn:ogc:def:method:EPSG::9601) @@ -6924,7 +6924,7 @@ bool Transformation::isLongitudeRotation() const { // --------------------------------------------------------------------------- -/** \brief Instanciate a transformation with method Geographic 2D offsets +/** \brief Instantiate a transformation with method Geographic 2D offsets * * This method is defined as [EPSG:9619] * (https://www.epsg-registry.org/export.htm?gml=urn:ogc:def:method:EPSG::9619) @@ -6954,7 +6954,7 @@ TransformationNNPtr Transformation::createGeographic2DOffsets( // --------------------------------------------------------------------------- -/** \brief Instanciate a transformation with method Geographic 3D offsets +/** \brief Instantiate a transformation with method Geographic 3D offsets * * This method is defined as [EPSG:9660] * (https://www.epsg-registry.org/export.htm?gml=urn:ogc:def:method:EPSG::9660) @@ -6986,7 +6986,7 @@ TransformationNNPtr Transformation::createGeographic3DOffsets( // --------------------------------------------------------------------------- -/** \brief Instanciate a transformation with method Geographic 2D with +/** \brief Instantiate a transformation with method Geographic 2D with * height * offsets * @@ -7021,7 +7021,7 @@ TransformationNNPtr Transformation::createGeographic2DWithHeightOffsets( // --------------------------------------------------------------------------- -/** \brief Instanciate a transformation with method Vertical Offset. +/** \brief Instantiate a transformation with method Vertical Offset. * * This method is defined as [EPSG:9616] * (https://www.epsg-registry.org/export.htm?gml=urn:ogc:def:method:EPSG::9616) @@ -8000,7 +8000,7 @@ TransformationNNPtr Transformation::substitutePROJAlternativeGridNames( //! @cond Doxygen_Suppress -static void ThrowExpectionNotGeodeticGeographic(const char *trfrm_name) { +static void ThrowExceptionNotGeodeticGeographic(const char *trfrm_name) { throw io::FormattingException(concat("Can apply ", std::string(trfrm_name), " only to GeodeticCRS / " "GeographicCRS")); @@ -8022,7 +8022,7 @@ static void setupPROJGeodeticSourceCRS(io::PROJStringFormatter *formatter, } else { auto sourceCRSGeod = dynamic_cast<const crs::GeodeticCRS *>(crs.get()); if (!sourceCRSGeod) { - ThrowExpectionNotGeodeticGeographic(trfrm_name); + ThrowExceptionNotGeodeticGeographic(trfrm_name); } formatter->startInversion(); sourceCRSGeod->addGeocentricUnitConversionIntoPROJString(formatter); @@ -8044,7 +8044,7 @@ static void setupPROJGeodeticTargetCRS(io::PROJStringFormatter *formatter, } else { auto targetCRSGeod = dynamic_cast<const crs::GeodeticCRS *>(crs.get()); if (!targetCRSGeod) { - ThrowExpectionNotGeodeticGeographic(trfrm_name); + ThrowExceptionNotGeodeticGeographic(trfrm_name); } targetCRSGeod->addGeocentricUnitConversionIntoPROJString(formatter); } @@ -8794,7 +8794,7 @@ ConcatenatedOperation::operations() const { // --------------------------------------------------------------------------- -/** \brief Instanciate a ConcatenatedOperation +/** \brief Instantiate a ConcatenatedOperation * * @param properties See \ref general_properties. At minimum the name should * be @@ -8872,7 +8872,7 @@ static std::string computeConcatenatedName( // --------------------------------------------------------------------------- -/** \brief Instanciate a ConcatenatedOperation, or return a single +/** \brief Instantiate a ConcatenatedOperation, or return a single * coordinate * operation. * @@ -11143,7 +11143,7 @@ CoordinateOperationFactory::Private::createOperations( return res; } - // Tranformation between two geodetic systems of unknown type + // Transformation between two geodetic systems of unknown type // This should normally not be triggered with "standard" CRS res.emplace_back(createGeodToGeodPROJBased(sourceCRS, targetCRS)); return res; @@ -11596,7 +11596,7 @@ CoordinateOperationFactory::createOperations( // --------------------------------------------------------------------------- -/** \brief Instanciate a CoordinateOperationFactory. +/** \brief Instantiate a CoordinateOperationFactory. */ CoordinateOperationFactoryNNPtr CoordinateOperationFactory::create() { return NN_NO_CHECK( diff --git a/src/iso19111/coordinatesystem.cpp b/src/iso19111/coordinatesystem.cpp index a3ad04e0..2281c78f 100644 --- a/src/iso19111/coordinatesystem.cpp +++ b/src/iso19111/coordinatesystem.cpp @@ -110,7 +110,7 @@ const common::Angle &Meridian::longitude() PROJ_CONST_DEFN { // --------------------------------------------------------------------------- -/** \brief Instanciate a Meridian. +/** \brief Instantiate a Meridian. * * @param longitudeIn longitude of the meridian that the axis follows from the * pole. @@ -255,7 +255,7 @@ const MeridianPtr &CoordinateSystemAxis::meridian() PROJ_CONST_DEFN { // --------------------------------------------------------------------------- -/** \brief Instanciate a CoordinateSystemAxis. +/** \brief Instantiate a CoordinateSystemAxis. * * @param properties See \ref general_properties. The name should generally be * defined. @@ -313,7 +313,7 @@ void CoordinateSystemAxis::_exportToWKT(io::WKTFormatter *formatter, int order, formatter->startNode(io::WKTConstants::AXIS, !identifiers().empty()); std::string axisName = *(name()->description()); std::string abbrev = abbreviation(); - std::string parenthesedAbbrev = "(" + abbrev + ")"; + std::string parenthesizedAbbrev = "(" + abbrev + ")"; std::string dir = direction().toString(); std::string axisDesignation; @@ -342,7 +342,7 @@ void CoordinateSystemAxis::_exportToWKT(io::WKTFormatter *formatter, int order, axisDesignation += " "; } if (!abbrev.empty()) { - axisDesignation += parenthesedAbbrev; + axisDesignation += parenthesizedAbbrev; } } if (!isWKT2) { @@ -358,14 +358,14 @@ void CoordinateSystemAxis::_exportToWKT(io::WKTFormatter *formatter, int order, if (direction() == AxisDirection::GEOCENTRIC_X || direction() == AxisDirection::GEOCENTRIC_Y || direction() == AxisDirection::GEOCENTRIC_Z) { - axisDesignation = parenthesedAbbrev; + axisDesignation = parenthesizedAbbrev; } // For cartesian CS with Easting/Northing, export only the abbreviation else if ((order == 1 && axisName == AxisName::Easting && abbrev == AxisAbbreviation::E) || (order == 2 && axisName == AxisName::Northing && abbrev == AxisAbbreviation::N)) { - axisDesignation = parenthesedAbbrev; + axisDesignation = parenthesizedAbbrev; } } formatter->addQuotedString(axisDesignation); @@ -579,7 +579,7 @@ SphericalCS::SphericalCS(const SphericalCS &) = default; // --------------------------------------------------------------------------- -/** \brief Instanciate a SphericalCS. +/** \brief Instantiate a SphericalCS. * * @param properties See \ref general_properties. * @param axis1 The first axis. @@ -617,7 +617,7 @@ EllipsoidalCS::EllipsoidalCS(const EllipsoidalCS &) = default; // --------------------------------------------------------------------------- -/** \brief Instanciate a EllipsoidalCS. +/** \brief Instantiate a EllipsoidalCS. * * @param properties See \ref general_properties. * @param axis1 The first axis. @@ -636,7 +636,7 @@ EllipsoidalCS::create(const util::PropertyMap &properties, // --------------------------------------------------------------------------- -/** \brief Instanciate a EllipsoidalCS. +/** \brief Instantiate a EllipsoidalCS. * * @param properties See \ref general_properties. * @param axis1 The first axis. @@ -675,7 +675,7 @@ CoordinateSystemAxis::createLONG_EAST(const common::UnitOfMeasure &unit) { // --------------------------------------------------------------------------- -/** \brief Instanciate a EllipsoidalCS with a Latitude (first) and Longitude +/** \brief Instantiate a EllipsoidalCS with a Latitude (first) and Longitude * (second) axis. * * @param unit Angular unit of the axes. @@ -690,7 +690,7 @@ EllipsoidalCS::createLatitudeLongitude(const common::UnitOfMeasure &unit) { // --------------------------------------------------------------------------- -/** \brief Instanciate a EllipsoidalCS with a Latitude (first), Longitude +/** \brief Instantiate a EllipsoidalCS with a Latitude (first), Longitude * (second) axis and ellipsoidal height (third) axis. * * @param angularUnit Angular unit of the latitude and longitude axes. @@ -711,7 +711,7 @@ EllipsoidalCSNNPtr EllipsoidalCS::createLatitudeLongitudeEllipsoidalHeight( // --------------------------------------------------------------------------- -/** \brief Instanciate a EllipsoidalCS with a Longitude (first) and Latitude +/** \brief Instantiate a EllipsoidalCS with a Longitude (first) and Latitude * (second) axis. * * @param unit Angular unit of the axes. @@ -809,7 +809,7 @@ VerticalCS::VerticalCS(const VerticalCS &) = default; // --------------------------------------------------------------------------- -/** \brief Instanciate a VerticalCS. +/** \brief Instantiate a VerticalCS. * * @param properties See \ref general_properties. * @param axis The axis. @@ -824,7 +824,7 @@ VerticalCSNNPtr VerticalCS::create(const util::PropertyMap &properties, // --------------------------------------------------------------------------- -/** \brief Instanciate a VerticalCS with a Gravity-related height axis +/** \brief Instantiate a VerticalCS with a Gravity-related height axis * * @param unit linear unit. * @return a new VerticalCS. @@ -867,7 +867,7 @@ CartesianCS::CartesianCS(const CartesianCS &) = default; // --------------------------------------------------------------------------- -/** \brief Instanciate a CartesianCS. +/** \brief Instantiate a CartesianCS. * * @param properties See \ref general_properties. * @param axis1 The first axis. @@ -885,7 +885,7 @@ CartesianCSNNPtr CartesianCS::create(const util::PropertyMap &properties, // --------------------------------------------------------------------------- -/** \brief Instanciate a CartesianCS. +/** \brief Instantiate a CartesianCS. * * @param properties See \ref general_properties. * @param axis1 The first axis. @@ -905,7 +905,7 @@ CartesianCSNNPtr CartesianCS::create(const util::PropertyMap &properties, // --------------------------------------------------------------------------- -/** \brief Instanciate a CartesianCS with a Easting (first) and Northing +/** \brief Instantiate a CartesianCS with a Easting (first) and Northing * (second) axis. * * @param unit Linear unit of the axes. @@ -926,7 +926,7 @@ CartesianCS::createEastingNorthing(const common::UnitOfMeasure &unit) { // --------------------------------------------------------------------------- -/** \brief Instanciate a CartesianCS with a Northing (first) and Easting +/** \brief Instantiate a CartesianCS with a Northing (first) and Easting * (second) axis. * * @param unit Linear unit of the axes. @@ -947,7 +947,7 @@ CartesianCS::createNorthingEasting(const common::UnitOfMeasure &unit) { // --------------------------------------------------------------------------- -/** \brief Instanciate a CartesianCS with a Westing (first) and Southing +/** \brief Instantiate a CartesianCS with a Westing (first) and Southing * (second) axis. * * @param unit Linear unit of the axes. @@ -968,7 +968,7 @@ CartesianCS::createWestingSouthing(const common::UnitOfMeasure &unit) { // --------------------------------------------------------------------------- -/** \brief Instanciate a CartesianCS, north-pole centered, +/** \brief Instantiate a CartesianCS, north-pole centered, * with a Easting (first) South-Oriented and * Northing (second) South-Oriented axis. * @@ -992,7 +992,7 @@ CartesianCSNNPtr CartesianCS::createNorthPoleEastingSouthNorthingSouth( // --------------------------------------------------------------------------- -/** \brief Instanciate a CartesianCS, south-pole centered, +/** \brief Instantiate a CartesianCS, south-pole centered, * with a Easting (first) North-Oriented and * Northing (second) North-Oriented axis. * @@ -1016,7 +1016,7 @@ CartesianCSNNPtr CartesianCS::createSouthPoleEastingNorthNorthingNorth( // --------------------------------------------------------------------------- -/** \brief Instanciate a CartesianCS with the three geocentric axes. +/** \brief Instantiate a CartesianCS with the three geocentric axes. * * @param unit Liinear unit of the axes. * @return a new CartesianCS. @@ -1076,7 +1076,7 @@ OrdinalCS::OrdinalCS(const OrdinalCS &) = default; // --------------------------------------------------------------------------- -/** \brief Instanciate a OrdinalCS. +/** \brief Instantiate a OrdinalCS. * * @param properties See \ref general_properties. * @param axisIn List of axis. @@ -1109,7 +1109,7 @@ ParametricCS::ParametricCS(const ParametricCS &) = default; // --------------------------------------------------------------------------- -/** \brief Instanciate a ParametricCS. +/** \brief Instantiate a ParametricCS. * * @param properties See \ref general_properties. * @param axisIn Axis. @@ -1189,7 +1189,7 @@ DateTimeTemporalCS::DateTimeTemporalCS(const CoordinateSystemAxisNNPtr &axisIn) // --------------------------------------------------------------------------- -/** \brief Instanciate a DateTimeTemporalCS. +/** \brief Instantiate a DateTimeTemporalCS. * * @param properties See \ref general_properties. * @param axisIn The axis. @@ -1222,7 +1222,7 @@ TemporalCountCS::TemporalCountCS(const CoordinateSystemAxisNNPtr &axisIn) // --------------------------------------------------------------------------- -/** \brief Instanciate a TemporalCountCS. +/** \brief Instantiate a TemporalCountCS. * * @param properties See \ref general_properties. * @param axisIn The axis. @@ -1255,7 +1255,7 @@ TemporalMeasureCS::TemporalMeasureCS(const CoordinateSystemAxisNNPtr &axisIn) // --------------------------------------------------------------------------- -/** \brief Instanciate a TemporalMeasureCS. +/** \brief Instantiate a TemporalMeasureCS. * * @param properties See \ref general_properties. * @param axisIn The axis. diff --git a/src/iso19111/crs.cpp b/src/iso19111/crs.cpp index a05470ff..eec36fee 100644 --- a/src/iso19111/crs.cpp +++ b/src/iso19111/crs.cpp @@ -950,7 +950,7 @@ bool GeodeticCRS::isGeocentric() PROJ_CONST_DEFN { // --------------------------------------------------------------------------- -/** \brief Instanciate a GeodeticCRS from a datum::GeodeticReferenceFrame and a +/** \brief Instantiate a GeodeticCRS from a datum::GeodeticReferenceFrame and a * cs::SphericalCS. * * @param properties See \ref general_properties. @@ -968,7 +968,7 @@ GeodeticCRS::create(const util::PropertyMap &properties, // --------------------------------------------------------------------------- -/** \brief Instanciate a GeodeticCRS from a datum::GeodeticReferenceFrame or +/** \brief Instantiate a GeodeticCRS from a datum::GeodeticReferenceFrame or * datum::DatumEnsemble and a cs::SphericalCS. * * One and only one of datum or datumEnsemble should be set to a non-null value. @@ -997,7 +997,7 @@ GeodeticCRS::create(const util::PropertyMap &properties, // --------------------------------------------------------------------------- -/** \brief Instanciate a GeodeticCRS from a datum::GeodeticReferenceFrame and a +/** \brief Instantiate a GeodeticCRS from a datum::GeodeticReferenceFrame and a * cs::CartesianCS. * * @param properties See \ref general_properties. @@ -1015,7 +1015,7 @@ GeodeticCRS::create(const util::PropertyMap &properties, // --------------------------------------------------------------------------- -/** \brief Instanciate a GeodeticCRS from a datum::GeodeticReferenceFrame or +/** \brief Instantiate a GeodeticCRS from a datum::GeodeticReferenceFrame or * datum::DatumEnsemble and a cs::CartesianCS. * * One and only one of datum or datumEnsemble should be set to a non-null value. @@ -1658,7 +1658,7 @@ GeographicCRS::coordinateSystem() PROJ_CONST_DEFN { // --------------------------------------------------------------------------- -/** \brief Instanciate a GeographicCRS from a datum::GeodeticReferenceFrameNNPtr +/** \brief Instantiate a GeographicCRS from a datum::GeodeticReferenceFrameNNPtr * and a * cs::EllipsoidalCS. * @@ -1677,7 +1677,7 @@ GeographicCRS::create(const util::PropertyMap &properties, // --------------------------------------------------------------------------- -/** \brief Instanciate a GeographicCRS from a datum::GeodeticReferenceFramePtr +/** \brief Instantiate a GeographicCRS from a datum::GeodeticReferenceFramePtr * or * datum::DatumEnsemble and a * cs::EllipsoidalCS. @@ -2120,7 +2120,7 @@ void VerticalCRS::addLinearUnitConvert( // --------------------------------------------------------------------------- -/** \brief Instanciate a VerticalCRS from a datum::VerticalReferenceFrame and a +/** \brief Instantiate a VerticalCRS from a datum::VerticalReferenceFrame and a * cs::VerticalCS. * * @param properties See \ref general_properties. @@ -2138,7 +2138,7 @@ VerticalCRS::create(const util::PropertyMap &properties, // --------------------------------------------------------------------------- -/** \brief Instanciate a VerticalCRS from a datum::VerticalReferenceFrame or +/** \brief Instantiate a VerticalCRS from a datum::VerticalReferenceFrame or * datum::DatumEnsemble and a cs::VerticalCS. * * One and only one of datum or datumEnsemble should be set to a non-null value. @@ -2748,7 +2748,7 @@ void ProjectedCRS::_exportToPROJString( // --------------------------------------------------------------------------- -/** \brief Instanciate a ProjectedCRS from a base CRS, a deriving +/** \brief Instantiate a ProjectedCRS from a base CRS, a deriving * operation::Conversion * and a coordinate system. * @@ -3241,7 +3241,7 @@ CompoundCRS::componentReferenceSystems() PROJ_CONST_DEFN { // --------------------------------------------------------------------------- -/** \brief Instanciate a CompoundCRS from a vector of CRS. +/** \brief Instantiate a CompoundCRS from a vector of CRS. * * @param properties See \ref general_properties. * At minimum the name should be defined. @@ -3630,7 +3630,7 @@ BoundCRS::transformation() PROJ_CONST_DEFN { // --------------------------------------------------------------------------- -/** \brief Instanciate a BoundCRS from a base CRS, a hub CRS and a +/** \brief Instantiate a BoundCRS from a base CRS, a hub CRS and a * transformation. * * @param baseCRSIn base CRS. @@ -3654,7 +3654,7 @@ BoundCRS::create(const CRSNNPtr &baseCRSIn, const CRSNNPtr &hubCRSIn, // --------------------------------------------------------------------------- -/** \brief Instanciate a BoundCRS from a base CRS and TOWGS84 parameters +/** \brief Instantiate a BoundCRS from a base CRS and TOWGS84 parameters * * @param baseCRSIn base CRS. * @param TOWGS84Parameters a vector of 3 or 7 double values representing WKT1 @@ -3680,7 +3680,7 @@ BoundCRS::createFromTOWGS84(const CRSNNPtr &baseCRSIn, // --------------------------------------------------------------------------- -/** \brief Instanciate a BoundCRS from a base CRS and nadgrids parameters +/** \brief Instantiate a BoundCRS from a base CRS and nadgrids parameters * * @param baseCRSIn base CRS. * @param filename Horizontal grid filename @@ -3986,7 +3986,7 @@ const GeodeticCRSNNPtr DerivedGeodeticCRS::baseCRS() const { // --------------------------------------------------------------------------- -/** \brief Instanciate a DerivedGeodeticCRS from a base CRS, a deriving +/** \brief Instantiate a DerivedGeodeticCRS from a base CRS, a deriving * conversion and a cs::CartesianCS. * * @param properties See \ref general_properties. @@ -4011,7 +4011,7 @@ DerivedGeodeticCRSNNPtr DerivedGeodeticCRS::create( // --------------------------------------------------------------------------- -/** \brief Instanciate a DerivedGeodeticCRS from a base CRS, a deriving +/** \brief Instantiate a DerivedGeodeticCRS from a base CRS, a deriving * conversion and a cs::SphericalCS. * * @param properties See \ref general_properties. @@ -4152,7 +4152,7 @@ const GeodeticCRSNNPtr DerivedGeographicCRS::baseCRS() const { // --------------------------------------------------------------------------- -/** \brief Instanciate a DerivedGeographicCRS from a base CRS, a deriving +/** \brief Instantiate a DerivedGeographicCRS from a base CRS, a deriving * conversion and a cs::EllipsoidalCS. * * @param properties See \ref general_properties. @@ -4288,7 +4288,7 @@ const ProjectedCRSNNPtr DerivedProjectedCRS::baseCRS() const { // --------------------------------------------------------------------------- -/** \brief Instanciate a DerivedProjectedCRS from a base CRS, a deriving +/** \brief Instantiate a DerivedProjectedCRS from a base CRS, a deriving * conversion and a cs::CS. * * @param properties See \ref general_properties. @@ -4439,7 +4439,7 @@ const cs::TemporalCSNNPtr TemporalCRS::coordinateSystem() const { // --------------------------------------------------------------------------- -/** \brief Instanciate a TemporalCRS from a datum and a coordinate system. +/** \brief Instantiate a TemporalCRS from a datum and a coordinate system. * * @param properties See \ref general_properties. * At minimum the name should be defined. @@ -4531,7 +4531,7 @@ const datum::EngineeringDatumNNPtr EngineeringCRS::datum() const { // --------------------------------------------------------------------------- -/** \brief Instanciate a EngineeringCRS from a datum and a coordinate system. +/** \brief Instantiate a EngineeringCRS from a datum and a coordinate system. * * @param properties See \ref general_properties. * At minimum the name should be defined. @@ -4647,7 +4647,7 @@ const cs::ParametricCSNNPtr ParametricCRS::coordinateSystem() const { // --------------------------------------------------------------------------- -/** \brief Instanciate a ParametricCRS from a datum and a coordinate system. +/** \brief Instantiate a ParametricCRS from a datum and a coordinate system. * * @param properties See \ref general_properties. * At minimum the name should be defined. @@ -4743,7 +4743,7 @@ const VerticalCRSNNPtr DerivedVerticalCRS::baseCRS() const { // --------------------------------------------------------------------------- -/** \brief Instanciate a DerivedVerticalCRS from a base CRS, a deriving +/** \brief Instantiate a DerivedVerticalCRS from a base CRS, a deriving * conversion and a cs::VerticalCS. * * @param properties See \ref general_properties. diff --git a/src/iso19111/datum.cpp b/src/iso19111/datum.cpp index 320be14b..cbd15195 100644 --- a/src/iso19111/datum.cpp +++ b/src/iso19111/datum.cpp @@ -273,7 +273,7 @@ const common::Angle &PrimeMeridian::longitude() PROJ_CONST_DEFN { // --------------------------------------------------------------------------- -/** \brief Instanciate a PrimeMeridian. +/** \brief Instantiate a PrimeMeridian. * * @param properties See \ref general_properties. * At minimum the name should be defined. @@ -622,7 +622,7 @@ const std::string &Ellipsoid::celestialBody() PROJ_CONST_DEFN { // --------------------------------------------------------------------------- -/** \brief Instanciate a Ellipsoid as a sphere. +/** \brief Instantiate a Ellipsoid as a sphere. * * @param properties See \ref general_properties. * At minimum the name should be defined. @@ -641,7 +641,7 @@ EllipsoidNNPtr Ellipsoid::createSphere(const util::PropertyMap &properties, // --------------------------------------------------------------------------- -/** \brief Instanciate a Ellipsoid from its inverse/reverse flattening. +/** \brief Instantiate a Ellipsoid from its inverse/reverse flattening. * * @param properties See \ref general_properties. * At minimum the name should be defined. @@ -662,7 +662,7 @@ EllipsoidNNPtr Ellipsoid::createFlattenedSphere( // --------------------------------------------------------------------------- -/** \brief Instanciate a Ellipsoid from the value of its two semi axis. +/** \brief Instantiate a Ellipsoid from the value of its two semi axis. * * @param properties See \ref general_properties. * At minimum the name should be defined. @@ -1019,7 +1019,7 @@ const EllipsoidNNPtr &GeodeticReferenceFrame::ellipsoid() PROJ_CONST_DEFN { } // --------------------------------------------------------------------------- -/** \brief Instanciate a GeodeticReferenceFrame +/** \brief Instantiate a GeodeticReferenceFrame * * @param properties See \ref general_properties. * At minimum the name should be defined. @@ -1275,7 +1275,7 @@ void DynamicGeodeticReferenceFrame::_exportToWKT( // --------------------------------------------------------------------------- -/** \brief Instanciate a DyanmicGeodeticReferenceFrame +/** \brief Instantiate a DyanmicGeodeticReferenceFrame * * @param properties See \ref general_properties. * At minimum the name should be defined. @@ -1415,7 +1415,7 @@ void DatumEnsemble::_exportToWKT( // --------------------------------------------------------------------------- -/** \brief Instanciate a DatumEnsemble. +/** \brief Instantiate a DatumEnsemble. * * @param properties See \ref general_properties. * At minimum the name should be defined. @@ -1522,7 +1522,7 @@ VerticalReferenceFrame::realizationMethod() const { // --------------------------------------------------------------------------- -/** \brief Instanciate a VerticalReferenceFrame +/** \brief Instantiate a VerticalReferenceFrame * * @param properties See \ref general_properties. * At minimum the name should be defined. @@ -1711,7 +1711,7 @@ void DynamicVerticalReferenceFrame::_exportToWKT( // --------------------------------------------------------------------------- -/** \brief Instanciate a DyanmicVerticalReferenceFrame +/** \brief Instantiate a DyanmicVerticalReferenceFrame * * @param properties See \ref general_properties. * At minimum the name should be defined. @@ -1785,7 +1785,7 @@ const std::string &TemporalDatum::calendar() const { return d->calendar_; } // --------------------------------------------------------------------------- -/** \brief Instanciate a TemporalDatum +/** \brief Instantiate a TemporalDatum * * @param properties See \ref general_properties. * At minimum the name should be defined. @@ -1873,7 +1873,7 @@ EngineeringDatum::~EngineeringDatum() = default; // --------------------------------------------------------------------------- -/** \brief Instanciate a EngineeringDatum +/** \brief Instantiate a EngineeringDatum * * @param properties See \ref general_properties. * At minimum the name should be defined. @@ -1944,7 +1944,7 @@ ParametricDatum::~ParametricDatum() = default; // --------------------------------------------------------------------------- -/** \brief Instanciate a ParametricDatum +/** \brief Instantiate a ParametricDatum * * @param properties See \ref general_properties. * At minimum the name should be defined. diff --git a/src/iso19111/factory.cpp b/src/iso19111/factory.cpp index 8dac7be7..aaf8d109 100644 --- a/src/iso19111/factory.cpp +++ b/src/iso19111/factory.cpp @@ -854,7 +854,7 @@ DatabaseContext::DatabaseContext() : d(internal::make_unique<Private>()) {} // --------------------------------------------------------------------------- -/** \brief Instanciate a database context, using the default proj.db file +/** \brief Instantiate a database context, using the default proj.db file * * It will be searched in the directory pointed by the PROJ_LIB environment * variable. If not found, on Unix builds, it will be then searched first in @@ -869,7 +869,7 @@ DatabaseContextNNPtr DatabaseContext::create() { // --------------------------------------------------------------------------- -/** \brief Instanciate a database context from a full filename. +/** \brief Instantiate a database context from a full filename. * * This database context should be used only by one thread at a time. * @param databasePath Path and filename of the database. Might be empty @@ -882,7 +882,7 @@ DatabaseContextNNPtr DatabaseContext::create(const std::string &databasePath) { // --------------------------------------------------------------------------- -/** \brief Instanciate a database context from a full filename, and attach +/** \brief Instantiate a database context from a full filename, and attach * auxiliary databases to it. * * This database context should be used only by one thread at a time. @@ -1353,7 +1353,7 @@ AuthorityFactory::AuthorityFactory(const DatabaseContextNNPtr &context, // --------------------------------------------------------------------------- // clang-format off -/** \brief Instanciate a AuthorityFactory. +/** \brief Instantiate a AuthorityFactory. * * The authority name might be set to the empty string in the particular case * where createFromCoordinateReferenceSystemCodes(const std::string&,const std::string&,const std::string&,const std::string&) const @@ -3288,7 +3288,7 @@ operation::CoordinateOperationNNPtr AuthorityFactory::createCoordinateOperation( /** \brief Returns a list operation::CoordinateOperation between two CRS. * * The list is ordered with preferred operations first. No attempt is made - * at infering operations that are not explicitly in the database. + * at inferring operations that are not explicitly in the database. * * Deprecated operations are rejected. * @@ -3312,7 +3312,7 @@ AuthorityFactory::createFromCoordinateReferenceSystemCodes( /** \brief Returns a list operation::CoordinateOperation between two CRS. * * The list is ordered with preferred operations first. No attempt is made - * at infering operations that are not explicitly in the database (see + * at inferring operations that are not explicitly in the database (see * createFromCRSCodesWithIntermediates() for that), and only * source -> target operations are searched (ie if target -> source is present, * you need to call this method with the arguments reversed, and apply the diff --git a/src/iso19111/internal.cpp b/src/iso19111/internal.cpp index c43605d1..0c330d30 100644 --- a/src/iso19111/internal.cpp +++ b/src/iso19111/internal.cpp @@ -330,7 +330,7 @@ std::string toString(double val, int precision) { #else std::string toString(int val) { - // use sqlite3 API that is slighly faster than std::ostringstream + // use sqlite3 API that is slightly faster than std::ostringstream // with forcing the C locale. sqlite3_snprintf() emulates a C locale. constexpr int BUF_SIZE = 16; char szBuffer[BUF_SIZE]; @@ -339,7 +339,7 @@ std::string toString(int val) { } std::string toString(double val, int precision) { - // use sqlite3 API that is slighly faster than std::ostringstream + // use sqlite3 API that is slightly faster than std::ostringstream // with forcing the C locale. sqlite3_snprintf() emulates a C locale. constexpr int BUF_SIZE = 32; char szBuffer[BUF_SIZE]; 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(); diff --git a/src/iso19111/metadata.cpp b/src/iso19111/metadata.cpp index 2be9dac3..ddda2987 100644 --- a/src/iso19111/metadata.cpp +++ b/src/iso19111/metadata.cpp @@ -211,7 +211,7 @@ double GeographicBoundingBox::northBoundLatitude() PROJ_CONST_DEFN { // --------------------------------------------------------------------------- -/** \brief Instanciate a GeographicBoundingBox. +/** \brief Instantiate a GeographicBoundingBox. * * If east < west, then the bounding box crosses the anti-meridian. * @@ -484,7 +484,7 @@ common::UnitOfMeasureNNPtr &VerticalExtent::unit() PROJ_CONST_DEFN { // --------------------------------------------------------------------------- -/** \brief Instanciate a VerticalExtent. +/** \brief Instantiate a VerticalExtent. * * @param minimumIn minimum. * @param maximumIn maximum. @@ -572,7 +572,7 @@ const std::string &TemporalExtent::stop() PROJ_CONST_DEFN { return d->stop_; } // --------------------------------------------------------------------------- -/** \brief Instanciate a TemporalExtent. +/** \brief Instantiate a TemporalExtent. * * @param start start. * @param stop stop. @@ -682,7 +682,7 @@ Extent::temporalElements() PROJ_CONST_DEFN { // --------------------------------------------------------------------------- -/** \brief Instanciate a Extent. +/** \brief Instantiate a Extent. * * @param descriptionIn Textual description, or empty. * @param geographicElementsIn Geographic element(s), or empty. @@ -706,7 +706,7 @@ Extent::create(const optional<std::string> &descriptionIn, // --------------------------------------------------------------------------- -/** \brief Instanciate a Extent from a bounding box +/** \brief Instantiate a Extent from a bounding box * * @param west Western-most coordinate of the limit of the dataset extent (in * degrees). @@ -950,7 +950,7 @@ Identifier::~Identifier() = default; // --------------------------------------------------------------------------- -/** \brief Instanciate a Identifier. +/** \brief Instantiate a Identifier. * * @param codeIn Alphanumeric value identifying an instance in the codespace * @param properties See \ref general_properties. @@ -1272,7 +1272,7 @@ const std::string &PositionalAccuracy::value() PROJ_CONST_DEFN { // --------------------------------------------------------------------------- -/** \brief Instanciate a PositionalAccuracy. +/** \brief Instantiate a PositionalAccuracy. * * @param valueIn positional accuracy value. * @return a new PositionalAccuracy. diff --git a/src/iso19111/util.cpp b/src/iso19111/util.cpp index b8c6c439..d6cfa9f4 100644 --- a/src/iso19111/util.cpp +++ b/src/iso19111/util.cpp @@ -227,7 +227,7 @@ bool ArrayOfBaseObject::empty() const { return d->values_.empty(); } // --------------------------------------------------------------------------- -/** \brief Instanciate a ArrayOfBaseObject. +/** \brief Instantiate a ArrayOfBaseObject. * * @return a new ArrayOfBaseObject. */ @@ -543,7 +543,7 @@ std::string LocalName::toString() const { return d->name; } // --------------------------------------------------------------------------- -/** \brief Instanciate a NameSpace. +/** \brief Instantiate a NameSpace. * * @param name name of the namespace. * @param properties Properties. Allowed keys are "separator" and @@ -561,7 +561,7 @@ NameSpaceNNPtr NameFactory::createNameSpace(const GenericNameNNPtr &name, // --------------------------------------------------------------------------- -/** \brief Instanciate a LocalName. +/** \brief Instantiate a LocalName. * * @param scope scope. * @param name string of the local name. @@ -574,7 +574,7 @@ LocalNameNNPtr NameFactory::createLocalName(const NameSpacePtr &scope, // --------------------------------------------------------------------------- -/** \brief Instanciate a GenericName. +/** \brief Instantiate a GenericName. * * @param scope scope. * @param parsedNames the components of the name. @@ -605,7 +605,7 @@ typedef enum PJ_PROJ_4 } PJ_PROJ_STRING_TYPE; -/** Spatial criterion to restrict candiate operations. */ +/** Spatial criterion to restrict candidate operations. */ typedef enum { /** The area of validity of transforms should strictly contain the * are of interest. */ |
