GY461 Applied GIS: Environmental GIS Programming Project

2y ago
117 Views
2 Downloads
841.45 KB
13 Pages
Last View : 10m ago
Last Download : 2m ago
Upload by : Aarya Seiber
Transcription

GY461 Applied GIS: EnvironmentalGIS Programming ProjectI. IntroductionProgramming principles give the GIS analyst powerful tools to automate repetitive tasks. Oneexample would be initialize a raster grid that is based on a mathematical equation. The examplethat we will use in this example will be a 3rd-order trend surface. The equation would have asindependent variables a location in x,y coordinates with solution of the equation yielding a zelevation value that represents a best-fit trend surface through the actual x,y,z data. In thisexample the surface being modeled is the top of an Ordovician petroleum producing formationbased on drilling data. The analysis that we are particularly interested in will be to subtract thetrend surface from the z elevation of the data points to plot “residuals” - i.e. the wells that havethe top of the Ordovician above the main trend. These would indicate “dome” structures thatserve as petroleum traps (the overlying Silurian formation is an impermeable shale). The reasonthat we can’t simply look at the absolute elevation of the top of the Ordovician is that it dipsalong a regional trend. The trend surface in effect removes the regional dip so that we only haveto deal with residuals above and below the regional trend. After determining the extend of thepositive residuals you will be given some statistics on oil production from this unit so that youcan estimate production from the field.II. Step 1: Generate a Visual Basic Program in Excel to build the 3rd OrderTrend SurfaceDownload the starting files from:After extracting the files into a “TopOfOrdovician” folder under “C:\ArcGIS Data\{YourInitials}\”, load the “TopOfOrdovician.xls” spreadsheet. In the sheet named “TopOfOrdo” youwill find the raw data in x,y,z columns. Also in this sheet are the coefficients of a 3rd order trendsurface polynomial in the form:z(x,y) c0 x * c1 y * c2 x 2 * c3 x * y * c4 y 2 * c5 x 3 * c6 x 2 * y * c7 x * y 2 * c8 y 3 * c9where x,y are the location coordinates, c1 through c9 are the coefficients given in thespreadsheet, and z(x,y) is the trend surface elevation as a function of x,y location coordinates.Your instructor will go over programming principles related to building a Visual Basic programto calculate an ESRI ASCII raster file in the format:ncolsnrowsxllcorner{number of columns}{number of rows}{x coordinate of the lower left corner of the grid}Page -1-

GY461 Applied GIS: EnvironmentalGIS Programming Projectyllcorner{y coordinate of the lower left corner of the grid}cellsize{spacing of grid nodes}nodatavalue {value that represents missing data}cell node (1,1){z value at col 1, row 1}cell node (2,1){z value at col 2, row 1}.cell node (ncols,nrows){zvalue at col ncols, row nrows}Use the ctrl {key} assignment used when the macro was created to run the program. The 2ndsheet named “ASCII Grid” will contain the ESRI grid calculated by your program. Check the Zvalues to make sure they are reasonable. Save this file as an ASCII .TXT file to your folder.III. Setup the ArcMap Project FileStart a new ArcMap project file and do the following:1. Save the x,y,z data in the “TopOfOrdo” sheet to a DBF file. Use the “XY Data” plotting toolto add the well data to the project. Label each point with the Z elevation value of the top of theOrdovician.2. Use the “ASCII to Raster” tool to add the calculated 3rd Order trend surface to the project. Youshould have a project similar in appearance to Figure 1.3. Use the spatial analyst interpolate to raster “kriging” option to generate a best-fit surface rasterthrough the raw data points. The setup will appear like Figure 2. The result should appear as inFigure 3.4. Use the raster math “minus” option to subtract the trend surface grid from the kriging grid toproduce a residuals grid. Pay attention to which grid is being subtracted - you should besubtracting the trend surface from the kriging grid to produce the residuals (see Figure 4). Theresult will appear similar to Figure 5.5. Use the “re-classify” tool to re-classify the residuals into these classes:Class123Value range -600-600 - -400-400 - -200Page -2-

GY461 Applied GIS: EnvironmentalGIS Programming Project45678910-200 - 00 - 200200 - 400400 - 600600 - 800800 - 10001000 - 1200See Figure 6 for the reclassify tool window settings. Use the “Classify” button to manuallydefine the class intervals as in Figure 7.6. Use the conversion tool “Raster to Polygon” to convert the classified residuals into vectorpolygons. See the window setup for this tool in Figure 8. Use a symbology for the classpolygons similar to Figure 9, then generate a map with the following:a. North Arrowb. Legend that includes the wells and class polygons. In the legend list the residual valuerange for each class (i.e. class 1 : -600; class 2 : -600 - -400, etc.)c. Scale bar in miles. Note that the map units for x and y are inches measured from a1:24,000 scale base map.d. Title “Top of Ordovician Oil Production Project”e. Place your name in the lower right corner in the layout7. Create a geodatabase and add the class polygon shape topology to the geodatabase as apolygon feature. You are doing this so that you can access the area of each polygon. Answer thefollowing questionsa. Create a new field in the polygon feature class named “acreage”. Using a calculationquery fill this in with the acres represented by each polygon. Remember that the X,Ycoordinates for the projects are simply inch units measured from a 1:24,000 scaletopographic map. Note the following:1 inch 2000 feet 0.3788 miles (1:24,000 scale)1 square mile 640 acresSum the acreage of each polygon to calculate the total acreage of residual polygons thatwere positive (i.e. class 5 through 10). You will need to define a “definition query” forthe feature to filter in just those polygons.Total acreage of positive polygons Page -3-

GY461 Applied GIS: EnvironmentalGIS Programming Projectb. Calculate the potential oil production of the field with the given:1. Historically the Ordovician formation has produced 600 barrels of oil per acreof land per day. Currently the market price for crude oil is 85 per barrel.How much money will the field make in a year assuming the abovevalues?Historically fields developed in this Ordovician formation have producedat a constant annual rate for a decade. How many barrels of oil (reserves)are in this formation before production begins:Page -4-

GY461 Applied GIS: EnvironmentalGIS Programming ProjectFigure 1: Results from importing the calculated 3rd order trend surface and the original well datapoints.Page -5-

GY461 Applied GIS: EnvironmentalGIS Programming ProjectFigure 2: Setup of kriging option for well data.Page -6-

GY461 Applied GIS: EnvironmentalGIS Programming ProjectFigure 3: Results of importing kriging raster of well data.Page -7-

GY461 Applied GIS: EnvironmentalGIS Programming ProjectFigure 4: Creation of residuals grid from raster math “minus” function.Page -8-

GY461 Applied GIS: EnvironmentalGIS Programming ProjectFigure 5: Appearance of residuals raster grid.Page -9-

GY461 Applied GIS: EnvironmentalGIS Programming ProjectFigure 6: Reclassify tool window setup.Page -10-

GY461 Applied GIS: EnvironmentalGIS Programming ProjectFigure 7: Defining the class intervals for the reclassify tool.Page -11-

GY461 Applied GIS: EnvironmentalGIS Programming ProjectFigure 8: Window settings for the “raster to polygon” conversion tool.Page -12-

GY461 Applied GIS: EnvironmentalGIS Programming ProjectFigure 9: Map of residuals polygons- values 5 through 10 are positive.Page -13-

III. Setup the ArcMap Project File Start a new ArcMap project file and do the following: 1. Save the x,y,z data in the “TopOfOrdo” sheet to a DBF file. Use the “XY Data” plotting tool to add the well data to the project. Label each point wi

Related Documents:

1 CHAPTER 1 INTRODUCTION 1.1 GIS? 1.1.1 Components of a GIS 1.1.2 A Brief History of GIS 1.1.3 GIS Software Products Box 1.1 A List of GIS Software Producers and Their Main Products 1.2 GIS Applications Box 1.2 Google Maps, Microsoft Virtual Earth, and

Background –Chris Owen . 2004 - MACECOM 911 hires GIS to provide them road and addressing data 2005 / 2006 - new GIS Technicians and Analysts hired 2007 - GIS was moved from Public Works Road Fund and made an "Enterprise Fund" 2008 / 2009 - GIS Manager quits. GIS Manager position is not rehired.

tarikh tarikh . penghargaan . 2.4 kriteria penentuan lokasi rumah kos rendah bab 3.0 aplikasi gis dalam perancangan 3.1 pengenalan 3.2 gis dalam perancangan 3.3 gis untuk perumahan 3.4 peranan sistem maklumat gis 3.5 sejarah pembangunan gis 3.6 definisi gis 3.7 pangkalan data ii ill vi vi vi 1-1 1-1 1.2 1-3 1-4

MIT 11.188/11.520 Web Service Notes 1 Internet GIS and Geospatial Web Services Introduction Section 1 -- What is Internet GIS? Section 2 -- Internet GIS: state of practice Section 3 -- Future development of Internet GIS Section 4 -- Function comparisons of current Internet GIS programs Section 5 -- Internet GIS applications Section 6 – I

Understanding the basic concepts of GIS is a good start of the literature to allow the people who do not have an idea about GIS to know what GIS is. Internet is a very rich source of published papers, journals and technical reports to explore some published works about GIS applications in transportation analysis and planning (GIS-T). Also, the technologies used in this area such as using .

desktop GIS, remote sensing software and 3D visualization tools). Only summarized descriptions for the rest of open source GIS software have been provided due to the white paper page limits. 2.1 Basic desktop GIS Basic desktop GIS software can provide basic GIS functions, such as data input, map display

GIS Substation Design and Execution HV and EHV GIS application and design considerations Jean-Louis Habert Alstom Grid GIS product Line. 2014/04 - Houston - CED – GIS - 2 List of contents Session 1 – April 8th, 2014 zGIS

AKKINENI NAGESWARA RAO COLLEGE, GUDIVADA-521301, AQAR FOR 2015-16 1 The Annual Quality Assurance Report (AQAR) of the IQAC Part – A AQAR for the year 1. Details of the Institution 1.1 Name of the Institution 1.2 Address Line 1 Address Line 2 City/Town State Pin Code Institution e-mail address 08674Contact Nos. Name of the Head of the Institution: Dr. S. Sankar Tel. No. with STD Code: Mobile .