diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2024-06-11 02:15:28 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2024-06-11 02:45:25 +0200 |
commit | 74dd14bccf9b24f06ba80d1cedb1fd7482663257 (patch) | |
tree | 4bf68d2977c937822b8f81bd983cb341ac801023 /webmap-import | |
parent | 074d71701d3cc423f7f3ba653fea3eb92dba269b (diff) |
Wording
Diffstat (limited to 'webmap-import')
-rwxr-xr-x | webmap-import | 4 |
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__': |