Skip to content

Commit

Permalink
config ref and prepare for license
Browse files Browse the repository at this point in the history
  • Loading branch information
ksharonin committed Jan 11, 2024
1 parent e145bc8 commit 110f803
Show file tree
Hide file tree
Showing 9 changed files with 1,771 additions and 1,629 deletions.
2 changes: 1 addition & 1 deletion .ipynb_checkpoints/Input_Reference-checkpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def __set_polygon_shp_local(self):
sys.exit()

# filter based on predfined conds
if self._title == "nifc_interagency_history_local" or self._title == "Downloaded_InterAgencyFirePerimeterHistory_All_Years_View":
if self._title == "Downloaded_InterAgencyFirePerimeterHistory_All_Years_View" or self._title == "InterAgencyFirePerimeterHistory_All_Years_View":
df = self.filter_nifc_interagency_history_local(df)
elif self._title == "WFIGS_current_interagency_fire_perimeters":
df = self.filter_WFIGS_current_interagency_fire_perimeters(df)
Expand Down
4 changes: 2 additions & 2 deletions .ipynb_checkpoints/README-checkpoint.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,14 +98,14 @@ This section describes inputs for FEDS and reference datasets and acceptable val
- Agency: National Interagency Fire Center (NIFC)
- Source: https://services3.arcgis.com/T4QMspbfLg3qTGWY/arcgis/rest/services/InterAgencyFirePerimeterHistory_All_Years_View/FeatureServer/0/query?outFields=*&where=1%3D1&f=geojson
- Update frequency: every 5 minutes
- Time period covered: 1909 - Present
- Time period covered: 1909 - 2021
- Geospatial coverage: United States
- `"Downloaded_InterAgencyFirePerimeterHistory_All_Years_View`:
- A **static** shp datset containing all fire perimeters up to 2023 documented by the National Interagency Fire Center (NIFC) for the United States. Provided as a backup for users unable to access ArcGIS services at time of running FEDS-PEC.
- Agency: National Interagency Fire Center (NIFC)
- Source: https://data-nifc.opendata.arcgis.com/datasets/nifc::interagencyfireperimeterhistory-all-years-view/explore?location=32.468087%2C-122.087025%2C3.89
- Update frequency: one time/static, downloaded to maap directory once by author
- Time period covered: 1909 - 2023
- Time period covered: 1909 - 2021
- Geospatial coverage: United States
- `"WFIGS_current_interagency_fire_perimeters"`:
- A dynamic shp dataset containing current wildfire perimeters documented by by the National Interagency Fire Center (NIFC) for the United States; program activately queries the ArcGIS online source
Expand Down
9 changes: 6 additions & 3 deletions .ipynb_checkpoints/paper-checkpoint.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,18 +70,21 @@ FEDS-PEC requires user inputs of time interval, region, and dataset settings to

## Supported APIs for Reference Fire Perimeters
- NIFC Open Data: InterAgencyFirePerimeterHistory All Years View
- Description:
- Description: The layer encompasses the final fire perimeter datasets of the USDA Forest Service, US Department of Interior Bureau of Land Management, Bureau of Indian Affairs, Fish and Wildlife Service, and National Park Service, the Alaska Interagency Fire Center, CalFire, and WFIGS History. Requirements for fire perimeter inclusion, such as minimum acreage requirements, are set by the contributing agencies. Geospatial coverage: United States. Time period covered: 1909 - 2021.
- URL: [https://data-nifc.opendata.arcgis.com/maps/interagencyfireperimeterhistory-all-years-view](https://data-nifc.opendata.arcgis.com/maps/interagencyfireperimeterhistory-all-years-view)
- `` ref_title = “InterAgencyFirePerimeterHistory_All_Years_View” ``
- Note: This dataset has been predownloaded into a MAAP directory. Should users have access to MAAP and interest in a stable static version of the dataset, use `` ref_title = “Downloaded_InterAgencyFirePerimeterHistory_All_Years_View” ``
- Note: Users can download this dataset via the provided link; select “download” and the “ShapeFile” option.
- NIFC Open Data: WFIGS Current Interagency Fire Perimeters
- Description:
- Description: Best available perimeters for recent and ongoing wildland fires in the United States hosted by The Wildland Fire Interagency Geospatial Services (WFIGS) Group which provides authoritative geospatial data products under the interagency Wildland Fire Data Program. Perimeters are not available for every incident. Geospatial coverage: United States. Time period covered depends on fire size: Records are removed from this service under the following conditions:
- If the fire size is less than 10 acres (Size Class A or B) and fire information has not been updated in more than 3 days.
- If the fire size is between 10 and 100 acres (Size Class C) and fire information hasn't been updated in more than 8 days.
- If the fire size is larger than 100 acres (Size Class D-L) but fire information hasn't been updated in more than 14 days.
- URL: [https://data-nifc.opendata.arcgis.com/maps/wfigs-current-interagency-fire-perimeters](https://data-nifc.opendata.arcgis.com/maps/wfigs-current-interagency-fire-perimeters)
- `` ref_title = “WFIGS_current_interagency_fire_perimeters” ``
- Note: Users can download this dataset via the provided link; select “download” and the “ShapeFile” option.
- California Department of Forestry and Fire Protection: California Fire Perimeters (all)
- Description:
- Description: CAL FIRE Wildfire Perimeters and Prescribed Burns. The service includes layers that are data subsets symbolized by size and year. Geospatial coverage: California. Time period covered: 1878 - Present.
- URL: [https://gis.data.ca.gov/datasets/CALFIRE-Forestry::california-fire-perimeters-all-1/explore](https://gis.data.ca.gov/datasets/CALFIRE-Forestry::california-fire-perimeters-all-1/explore)
- `` ref_title = “california_fire_perimeters_all” ``
- Note: Users can download this dataset via the provided link; select “download” and the “ShapeFile” option.
Expand Down
2 changes: 1 addition & 1 deletion Input_Reference.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def __set_polygon_shp_local(self):
sys.exit()

# filter based on predfined conds
if self._title == "nifc_interagency_history_local" or self._title == "Downloaded_InterAgencyFirePerimeterHistory_All_Years_View":
if self._title == "Downloaded_InterAgencyFirePerimeterHistory_All_Years_View" or self._title == "InterAgencyFirePerimeterHistory_All_Years_View":
df = self.filter_nifc_interagency_history_local(df)
elif self._title == "WFIGS_current_interagency_fire_perimeters":
df = self.filter_WFIGS_current_interagency_fire_perimeters(df)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,14 +98,14 @@ This section describes inputs for FEDS and reference datasets and acceptable val
- Agency: National Interagency Fire Center (NIFC)
- Source: https://services3.arcgis.com/T4QMspbfLg3qTGWY/arcgis/rest/services/InterAgencyFirePerimeterHistory_All_Years_View/FeatureServer/0/query?outFields=*&where=1%3D1&f=geojson
- Update frequency: every 5 minutes
- Time period covered: 1909 - Present
- Time period covered: 1909 - 2021
- Geospatial coverage: United States
- `"Downloaded_InterAgencyFirePerimeterHistory_All_Years_View`:
- A **static** shp datset containing all fire perimeters up to 2023 documented by the National Interagency Fire Center (NIFC) for the United States. Provided as a backup for users unable to access ArcGIS services at time of running FEDS-PEC.
- Agency: National Interagency Fire Center (NIFC)
- Source: https://data-nifc.opendata.arcgis.com/datasets/nifc::interagencyfireperimeterhistory-all-years-view/explore?location=32.468087%2C-122.087025%2C3.89
- Update frequency: one time/static, downloaded to maap directory once by author
- Time period covered: 1909 - 2023
- Time period covered: 1909 - 2021
- Geospatial coverage: United States
- `"WFIGS_current_interagency_fire_perimeters"`:
- A dynamic shp dataset containing current wildfire perimeters documented by by the National Interagency Fire Center (NIFC) for the United States; program activately queries the ArcGIS online source
Expand Down
Loading

0 comments on commit 110f803

Please sign in to comment.