diff options
Diffstat (limited to 'webmap-import')
-rwxr-xr-x | webmap-import | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webmap-import b/webmap-import index ed09fe5..fccdc84 100755 --- a/webmap-import +++ b/webmap-import @@ -1002,7 +1002,7 @@ def importSource2(lyr_dst, path, args={}, basedir=None, extent=None): logging.info('Imported %d features from source layer "%s"', n, layername) if len(mismatch) > 0: - mismatches = [ ogr.GeometryTypeToName(t) + ' (×' + str(n) + ')' + mismatches = [ str(n) + '× ' + ogr.GeometryTypeToName(t) for t,n in sorted(mismatch.items(), key=lambda x: x[1]) ] logging.info('Forced conversion to %s: %s', ogr.GeometryTypeToName(eGType_dst), ', '.join(mismatches)) |