Bläddra i källkod

Read EPSG codes with PROJ v.5 fails, see https://trac.osgeo.org/grass/ticket/3514

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@72392 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 7 år sedan
förälder
incheckning
d97751aa23
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      gui/wxpython/core/utils.py

+ 1 - 1
gui/wxpython/core/utils.py

@@ -537,7 +537,7 @@ def ReadEpsgCodes(path):
         code = None
         for line in f.readlines():
             line = line.strip()
-            if len(line) < 1:
+            if len(line) < 1 or line.startswith('<metadata>'):
                 continue
 
             if line[0] == '#':