- Data Central
- Wildfire History
Wildfire History
Detail
Wildfire
Prescribed Fire
Burned Area Response
Other
Source: National Interagency Fire Center
Incident Name | STANDI |
Incident Type | Wildfire |
Discovery Acres | 0.01 |
Fire Discovery Date & Time | June 12, 2024, 10:06 p.m. |
Fire Out Date & Time | June 15, 2024, 1 p.m. |
Containment Date & Time | June 13, 2024, 3 a.m. |
Control Date & Time | June 13, 2024, 7 p.m. |
ADS Permission State | DEFAULT |
Fire Cause | Human |
Fire Code | R0HC |
Geographic Area Coordination Centers (GACC) | GBCC |
Initial Latitude & Longitude | 43.378455, -116.235775 |
County | Ada |
Dispatch Center ID | IDBDC |
FIPS | 16001 |
Landowner Category | DOD |
Landowner Kind | Federal |
Protecting Agency | BLM |
Protecting Unit | IDBOD |
State | ID |
WFDSS Decision Status | No Decision |
More
Type | '+feature.properties.type+' |
Fire Discovery | '+feature.properties.fdt+' |
Fire Cause | '+feature.properties.fc+' |
Fire Behavior | '+feature.properties.fbg+' |
Size (Acres) | '+feature.properties.size+' |
City | '+feature.properties.city+' |
County | '+feature.properties.cnty+' |
State | '+feature.properties.st+' |
Land Ownership | '+feature.properties.owner+' |
'+feature.properties.isd+' |
MORE
Source: National Interagency Fire Center
'; return popupContent; } var InciPntJSON = {"type":"FeatureCollection","features":[ {"type": "Feature","properties":{"id":"2024-IDBOD-000391", "name":"STANDI", "slug":"standi", "type":"Wildfire", "summary":"", "st":"ID", "fdt":"June 12, 2024, 10:06 p.m.", "size":"None", "city":"None", "cnty":"Ada", "fbg":"None", "owner":"Federal", "isd":"None", "fc":"Human"}, "geometry": {"type": "Point","coordinates":[-116.232847973668,43.3552499295973]}} ]} mapboxgl.accessToken = 'pk.eyJ1IjoieXB5dW4iLCJhIjoiY2oxcW4ybWhxMDBkMjJxcGVhbDV5cnpzYyJ9.oFQSnOc57xCR7A51OR6-3w';//ct: None - detailvar map = new mapboxgl.Map({container: 'firetrackingmap', style: 'mapbox://styles/ypyun/ck0flqufl2k1x1cpmupm5sl2y', center: [-116.232847973668, 43.3552499295973], zoom: 12, attributionControl: false, });map.addControl(new mapboxgl.AttributionControl({ compact: true, customAttribution:['Map Icons Collection '] })); //var evacJSON = '/media/wildfire/cafire/vcs_evac.json';//var NRECevacJSON = '/media/wildfire/cafire/nrec_evac.json';map.on('load', function () { var layers = map.getStyle().layers; var firstSymbolId; for (var i = 0; i < layers.length; i++) { if (layers[i].type === 'symbol') { firstSymbolId = layers[i].id; break; } } InciPntJSON.features.forEach(function(marker) { // create a HTML element for each feature if (marker.geometry.type == 'Point'){ // bounds.extend(marker.geometry.coordinates); var el = document.createElement('div'); if (marker.properties.type === 'Wildfire'){el.className = 'IconWildfireNWCG';} else if (marker.properties.type === 'Prescribed Fire'){el.className = 'IconPresfireNWCG';} else if (marker.properties.type === 'Prescribed Burn'){el.className = 'IconPresfireNWCG';} else if (marker.properties.type === 'Burned Area Response'){el.className = 'IconBurnNWCG';} else {el.className = 'IconOtherNWCG';} // make a marker for each feature and add to the map // add popups new mapboxgl.Marker(el).setLngLat(marker.geometry.coordinates).setPopup(new mapboxgl.Popup({ offset: 14 }).setHTML(onPntFeature(marker))).addTo(map); } }); map.addLayer({ "id": "inciPoly", "type": "fill", "source": { "type": "geojson", "data":InciPolyJSON }, "paint": {'fill-color': {type:'identity', property:'bgc'}, 'fill-opacity':0.6, 'fill-outline-color': '#CCC', } }, firstSymbolId); map.on('click', 'inciPoly', function (e) {new mapboxgl.Popup({ offset: 12 }).setLngLat(e.lngLat).setHTML(onPntFeature(e.features[0])).addTo(map);}); map.on('mouseenter', 'inciPoly', function () {map.getCanvas().style.cursor = 'pointer'; }); map.on('mouseleave', 'inciPoly', function () {map.getCanvas().style.cursor = '';});});map.addControl(new mapboxgl.NavigationControl(), 'top-left');