We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 777f1be commit bf1b34fCopy full SHA for bf1b34f
dm/opendm/gcp.py
@@ -25,9 +25,9 @@ def read(self):
25
self.raw_srs = lines[0] # SRS
26
self.srs = location.parse_srs_header(self.raw_srs)
27
28
- for line in contents[1:]:
+ for line in lines[1:]:
29
if line != "" and line[0] != "#":
30
- parts = line.strip().split()
+ parts = line.split()
31
if len(parts) >= 6:
32
self.entries.append(line)
33
else:
0 commit comments