We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d7659b commit 3200338Copy full SHA for 3200338
inciweb_wildfires/__init__.py
@@ -28,8 +28,8 @@ def get_incidents() -> FeatureCollection:
28
# Loop through all the placemarks
29
feature_list = []
30
for d in data:
31
- # Do not include "Prescribed Fire" types
32
- if (d['type'] != 'Prescribed Fire'):
+ # Only include "Wildfire" types
+ if (d['type'] == 'Wildfire'):
33
# Reformat as GeoJSON
34
x = convert_coords(d["long_deg"], d["long_min"], d["long_sec"])
35
y = convert_coords(d["lat_deg"], d["lat_min"], d["lat_sec"])
0 commit comments