We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b23c8a3 commit db3aacdCopy full SHA for db3aacd
1 file changed
geosupport/parsers/func_2.py
@@ -1,6 +1,6 @@
1
def parse_2(wa2):
2
# Work Area 2 (COW) - Function 2
3
- return{
+ return {
4
"Internal Use": wa2[0:21],
5
"Intersection Replication Counter": wa2[21],
6
"DCP-Preferred LGC for Street 1": wa2[22:24],
@@ -60,7 +60,7 @@ def parse_2(wa2):
60
}
61
62
def parse_2W(wa2):
63
- return {
+ wide = {
64
# Work Area 2 (COW) - Function 2W (Wide)
65
# "Same as regular work area 2 for Function 2": wa2[0:199],
66
# "Filler": wa2[200:221],
@@ -81,4 +81,7 @@ def parse_2W(wa2):
81
"Latitude": wa2[3606:3615],
82
"Longitude": wa2[3615:3626],
83
# "Filler": wa2[3626:3999],
84
- }
+ }
85
+ wide = wide.copy()
86
+ wide.update(parse_2(wa2))
87
+ return wide
0 commit comments