<div>Hello list!</div>
<div> </div>
<div>I´m working in a python module to read rasters and get information out of them. I&#39;m using GDAL and some of the osgeo libraries. I already have the ratsers&#39; projection, but I also need its extent (x_min, y_min, x_max, y_max).</div>

<div>I have been searching in google and don&#39;t have any results. My code is:</div>
<div> </div>
<div>from osgeo import gdal<br>from osgeo.gdalconst import *</div>
<div> </div>
<div>gdal.AllRegister()</div>
<div>dataset = gdal.Open(filepath, GA_ReadOnly)</div>
<div>if dataset:</div>
<div> </div>