We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c348fc1 commit a51585bCopy full SHA for a51585b
inciweb_wildfires/__init__.py
@@ -72,6 +72,8 @@ def get_prescribed_fires() -> FeatureCollection:
72
73
def convert_coords(deg: str, min: str, sec: str) -> float:
74
"""Handle the flawed coordinates published by InciWeb."""
75
+ # if there's a degree symbol, remove it
76
+ deg = deg.replace('º', '')
77
if not min.strip():
78
min = '0'
79
if not sec.strip():
0 commit comments