Commit 011695c6 authored by Mario Chirinos Colunga's avatar Mario Chirinos Colunga 💬

merge-crop

parent cb3ca00d
......@@ -13,7 +13,7 @@ def L2ASCLtoDict(filename, wkt):
'''
intput = gdal.Open(filename)
rows, cols, geotransform = intput.RasterYSize, intput.RasterXSize, intput.GetGeoTransform()
data = intput.GetRasterBand(0).ReadAsArray(0,0,cols,rows)
data = intput.GetRasterBand(1).ReadAsArray(0,0,cols,rows)
dataDict = dict()
for d in data:
dataClass = str(int(d))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment