Skip to content
This repository has been archived by the owner on Sep 3, 2021. It is now read-only.

Latest commit

 

History

History
17 lines (13 loc) · 1.01 KB

README.md

File metadata and controls

17 lines (13 loc) · 1.01 KB

oil-well-detection

Detections oil wells in the Bakken oil field based on satellite imagery

For this project, I will be training an image recognition algorithm to recognize if a pixel is part of an oil well. I will be analyzing various types of satellite images to conduct this analysis.

I am still working on this project. So far I have:

  • downloaded the relevant satelittle images (the raw images are too big to be in a github repo)
  • utilized Rasterio and Shapely analyze the features of the image and crop an area of interest

Still to come I need to:

  • Create the training data
    • make outline examples of oil wells in polygons using Google Earth
    • convert those polygon outlines into a raster image with positive values (1) inside the polygon and zero values outside of the polygon
  • write the neural network that will be trained on the training data
  • compare the performance of a full-connected neural network with a convolutional neural network in predicting if a given pixel will be part of an oil well.