Goal:
The goal of this lab is to utilize geoprocessing tools and spatial operations for vector analysis to develop a map of suitable bear habitat in Marquette County Michigan.
Background:
Utilizing bear sighting points that have been recorded in the study area of Marquette Michigan, we were to determine where suitable bear habitat within the county are. In order to be a suitable location for bear habitat, the locations were required to fall in either Mixed Forest Lands, Forested Wetlands or Evergreen Forest Lands. We also had to determine how close some bears are in proximity to a stream. We also eliminated habitat that is in close distance to urban areas. Then a data flow model was created to show the steps taken in developing the analysis.Methods:
Objective 1:
In objective 1 we created an XY coordinate for the bear sightings around Marquette county. We did this by using the XY tool and joining an outside excel files that shows the XY coordinates of bear sightings. then we geo referenced it by applying the NAD 1983 HARN Michigan GeoRef (Meters). then we exported this into the Database that is being used.
Objective 2:
For objective 2 we determined the 3 bear habitats that most sightings were found in. The three locations were: Mixed Forest Lands, Forest Wetlands, and Evergreen Forest Lands. These are the three land cover types that are used as most suitable for bear habitat. Then I created a layer of these three land types and called it suitable bear habitat.
Objective 3:
then we determined the proximity of bears located near streams. This was done by buffering the streams by 500 meters and selecting the bear sightings that fall within the buffer. After selecting the Bear locations within the stream buffer, a new layer was created called bear cover. 72% of bears fell within the stream buffer. This means that these are important habitat areas for bears.
Objective 4:
Next we needed to determine habitat that fell within the stream buffer and is also one of the three land cover types that is most inhabited by bears. To do this you need to query the land cover types and create a new layer then you intersect this layer with the stream buffer and then this layer needs to be dissolved this layer shows land that meets the criteria of being within 500 meters of a stream and within a suitable land type.
Objective 5:
Next we need to make recommendations to the Michigan DNR for a bear management plan. This required using the DNR management layer, and clipping it to the size of the study area. this gave us the DNR managed areas within the study area. This layer needed to be dissolved to make the polygons consistent. This new layer that was created shows land that is in a suitable area and in DNR managed lands.
Objective 6:
Next we needed to determine the Urban areas within the study area and buffer them 5 kilometers. After buffering the urban areas a new feature class was created called urban and built up land. Then the erase tool is used to get rid of suitable habitat areas within the urban buffer. This gives a layer of habitat away from urban areas.
Objective 7:
Objective 7 was to create a cartographically pleasing map that shows location of bears, streams, and the suitable habitat. a small locator map was created showing where Marquette county falls within the upper peninsula of Michigan.
Objective 8:
The goal of this objective was to use and learn how to python code tools within ArcGIS. The first code created a 1 Kilometer buffer around the streams feature class.
>>> import arcpy
>>> arcpy.Buffer_analysis("streams", "streams_buf", "1 kilometer", "Full", "ROUND", "ALL")
<Result 'H:\\Documents\\ArcGIS\\Default.gdb\\streams_buf'>
>>> arcpy.Buffer_analysis("streams", "streams_buf", "1 kilometer", "Full", "ROUND", "ALL")
<Result 'H:\\Documents\\ArcGIS\\Default.gdb\\streams_buf'>
The second line intersected the stream buffer and suitable bear habitat.
>>> arcpy.Intersect_analysis(["streams_buf","suitable_habitat"], "land_stream")
<Result 'H:\\Documents\\ArcGIS\\Default.gdb\\land_stream'>
<Result 'H:\\Documents\\ArcGIS\\Default.gdb\\land_stream'>
The last code ran was to erase urban and built up land from suitable land layer created in the previous code.
>>> arcpy.Erase_analysis("suitable_habitat","Urban_area_buff","suitable_hab_outside_URBAN")
<Result 'H:\\Documents\\ArcGIS\\Default.gdb\\suitable_hab_outside_URBAN'>
Results:
Objective 1: The results gave the locations of bear habitat.
Objective 2: I found the top 3 land cover types which were Mixed forest land, forested wetlands, and evergreen forest land.
Objective 3: The results found that 72% of bears are sighted within 500 meters of a stream.
Objective 4: the results gave us bear habitats within 500 meters of a stream, and also in the top three land cover types.
Objective 5: The results produced DNR managed areas in the suitable habitat.
Objective 6: The results produced habitats that are 5 kilometers away from Urban areas.
Objective 8: Created a buffer, intersect, and an erase tool using python code.
Sources:
http://gis-michigan.opendata.arcgis.com/
http://www.mcgi.state.mi.us/mgdl/nlcd/metadata/nlcdshp.html
http://www.dnr.state.mi.us/spatialdatalibrary/metadata/wildlife_mgmt_units.htm
http://www.mcgi.state.mi.us/mgdl/framework/metadata/Marquette.html


No comments:
Post a Comment