aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xwebmap-import4
1 files changed, 2 insertions, 2 deletions
diff --git a/webmap-import b/webmap-import
index 39ca651..0d65db3 100755
--- a/webmap-import
+++ b/webmap-import
@@ -868,7 +868,7 @@ def importSource2(lyr_dst, path, args={}, basedir=None, extent=None):
srs = lyr.GetSpatialRef()
srs_dst = lyr_dst.GetSpatialRef()
if srs_dst.IsSame(srs):
- logging.debug('Both source and destination have the same SRS (%s), skipping transformation',
+ logging.debug('Both source and destination have the same SRS (%s), skipping coordinate transformation',
srs_dst.GetName())
ct = None
else:
@@ -973,7 +973,7 @@ def importSource2(lyr_dst, path, args={}, basedir=None, extent=None):
#print(mismatch)
lyr = None
- logging.info('%d features imported from source layer "%s"', n, layername)
+ logging.info('Imported %d features from source layer "%s"', n, layername)
if __name__ == '__main__':