aboutsummaryrefslogtreecommitdiff
path: root/src/transformations/xyzgridshift.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/transformations/xyzgridshift.cpp')
-rw-r--r--src/transformations/xyzgridshift.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/transformations/xyzgridshift.cpp b/src/transformations/xyzgridshift.cpp
index d00d6484..e11a4863 100644
--- a/src/transformations/xyzgridshift.cpp
+++ b/src/transformations/xyzgridshift.cpp
@@ -272,13 +272,13 @@ PJ *TRANSFORMATION(xyzgridshift,0) {
// in RGF93
Q->grid_ref_is_input = false;
} else {
- proj_log_error(P, _("xyzgridshift: unusupported value for grid_ref"));
+ proj_log_error(P, _("unusupported value for grid_ref"));
return destructor(P, PROJ_ERR_INVALID_OP_ILLEGAL_ARG_VALUE);
}
}
if (0==pj_param(P->ctx, P->params, "tgrids").i) {
- proj_log_error(P, _("xyzgridshift: +grids parameter missing."));
+ proj_log_error(P, _("+grids parameter missing."));
return destructor (P, PROJ_ERR_INVALID_OP_MISSING_ARG);
}
@@ -294,7 +294,7 @@ PJ *TRANSFORMATION(xyzgridshift,0) {
Q->grids = pj_generic_grid_init(P, "grids");
/* Was gridlist compiled properly? */
if ( proj_errno(P) ) {
- proj_log_error(P, _("xyzgridshift: could not find required grid(s)."));
+ proj_log_error(P, _("could not find required grid(s)."));
return destructor(P, PROJ_ERR_INVALID_OP_FILE_NOT_FOUND_OR_INVALID);
}
}