These are low-level details of the suitability analysis I performed for rehabilitated bird release locations.
Data Sources
First, a quick recap of the data sources I used.
Abundance Data
I downloaded raster datasets representing abundance of Western Grebes by using the ebirdst package for R. The data consists of GeoTIFF rasters representing abundance by week, by season (breeding, post-breeding migration, non-breeding, pre-breeding migration), and a year-round average.
Wildlife Area Boundaries
US Fish & Wildlife Service (USFWS) boundary data was retrieved from USFWS Geospatial Services. This data set includes features showing the boundaries of NWRs.
California Department of Fish and Wildlife (CDFW) owned and operated lands data was retrieved from the CDFW GIS Clearinghouse. This data includes features showing the boundaries of state wildlife areas and ecological reserves, and includes a field that indicates whether the area is open to public access.
Drive-Time Areas
Drive-time area polygon features, also known as isochrones, were generated using openrouteservice. Openrouteservice exports the features as GeoJSON, and I used QGIS to convert them to a shapefile for use in ArcMap.
Suitability Analysis
Suitability was determined by assigning scores to the various data inputs and then adding the score rasters together to get a final score.
- Abundance
-
The eBird abundance rasters use a global sinusoidal projection, so I projected them to the NAD 1983 California (Teale) Albers projection, with extent limited to the search area. The resolution of the source data is approximately 3km x 3km, and this cell size was used for all subsequent raster processing in this analysis.
This is what the abundance data looks like before it is re-projected. California is very distorted in the sinusoidal projection.
-
The projected abundance raster was masked to the search area, which was defined as the area within an 85km radius of the wildlife center. A small area (3km radius around the center) was excluded to represent the fact that we generally avoid releasing in the immediate vicinity of the center itself.
-
All cells below some threshold (0.1) were changed to NoData. If the abundance value in a cell is very low, that species is rarely or never seen in that area so we exclude it from the results.
-
The abundance raster was reclassified using a linear scaling function such that the maximum abundance value within the search area got a score of 10. Linear means that scores are in proportion to abundance; if area A has half the abundance of area B, then it will receive half the score.
Abundance score for the Western Grebe during its breeding season. Darker cells have a higher score.
-
- Wildlife Areas
-
Features from the USFWS lands layer with a type (
RSL_TYPE
) of “NWR” and features from the CDFW lands layer with a type (PROP_TYPE
) of “Wildlife Area” or “Ecological Reserve” and open accessibility (ACCESS LIKE 'Open%'
) were merged into a new feature class representing all protected wildlife areas.Green areas are NWRs, orange areas are CDFW lands.
- The protected wildlife areas were buffered by 1.5km and then converted to a raster with cell size and alignment matching the abundance raster. Buffering by 1.5 km is a simple way of improving the coverage of cells when converting to the 3km resolution raster, so that most of the cells that intersect one of the original features will be included.
- The protected wildlife area raster was reclassified by giving cells that touch a wildlife area a score of 3 and all other cells a score of zero.
-
- Drive-time Area
-
The drive-time areas were buffered by 1.5 km and then converted into a raster with cell size and alignment matching the abundance raster.
-
The drive-time raster was reclassified for suitability score by giving cells in the 30 minute region a score of 5, cells in the 60 minute region but outside the 30 minute region a score of 2, and all other cells a score of zero.
-
The score rasters were added together to create the final suitability raster. I refer to the final score for an area as its release value.
Western Grebe release value, breeding season (May 31 - Jul 20). Yellow values are lowest, dark blue are highest.