-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathregion.py
executable file
·574 lines (498 loc) · 24.8 KB
/
region.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
#!/usr/bin/env python
from __future__ import division
from math import ceil, floor
import suds
import re
import os
import urllib2
import urlparse
from progressbar import ProgressBar, Percentage, Bar, ETA, FileTransferSpeed
import yaml
import logging
logging.basicConfig(level=logging.INFO)
from utils import cleanmkdir
from terrain import Terrain
from pymclevel import mclevel
from osgeo import gdal, osr, ogr
from osgeo.gdalconst import GDT_Int16, GA_ReadOnly
from bathy import Bathy
from crust import Crust
import numpy as np
#
from idt import IDT
from elev import Elev
class SmartRedirectHandler(urllib2.HTTPRedirectHandler):
"""Handle temporary redirections by saving status."""
def __init__(self):
pass
def http_error_302(self, req, fp, code, msg, headers):
result = urllib2.HTTPRedirectHandler.http_error_302(self, req, fp, code, msg, headers)
result.status = code
result.headers = headers
return result
class Region:
"""Primary class for regions."""
# coordinate systems
wgs84 = "+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs"
albers = "+proj=aea +datum=NAD83 +lat_1=29.5 +lat_2=45.5 +lat_0=23 +lon_0=-96 +x_0=0 +y_0=0 +units=m"
# raster layer order
rasters = {'landcover': 1, 'elevation': 2, 'bathy': 3, 'crust': 4}
# sadness
gdalwarp_broken_for_landcover = True
# default values
tilesize = 256
scale = 6
vscale = 6
trim = 0
sealevel = 64
maxdepth = 32
# tileheight is height of map in Minecraft units
tileheight = mclevel.MCInfdevOldLevel.Height
# headroom is room between top of terrain and top of map
headroom = 16
# download directory
downloadtop = os.path.abspath('downloads')
regiontop = os.path.abspath('regions')
# properties
@property
def regiondir(self):
return os.path.join(Region.regiontop, self.name)
@property
def regionfile(self):
return os.path.join(self.regiondir, 'Region.yaml')
@property
def mapsdir(self):
return os.path.join(self.regiondir, 'Datasets')
@property
def mapfile(self):
return os.path.join(self.regiondir, 'Map.tif')
# product types in order of preference
productIDs = {'elevation': ['N3F', 'N2F', 'N1F'],
'landcover': sorted(Terrain.translate.keys())}
# file suffix for extraction
# FIXME: check N2F value
exsuf = {'N3F': '13', 'N2F': '12', 'N1F': '1'}
def __init__(self, name, xmax, xmin, ymax, ymin, tilesize=None, scale=None, vscale=None, trim=None, sealevel=None, maxdepth=None, lcIDs=None, elIDs=None, doOre=True, doSchematics=False):
"""Create a region based on lat-longs and other parameters."""
# NB: smart people check names
self.name = name
# tile must be an even multiple of chunk width
# chunkWidth not defined in pymclevel but is hardcoded everywhere
if tilesize is None:
tilesize = Region.tilesize
else:
if tilesize % 16 != 0:
raise AttributeError('bad tilesize %s' % tilesize)
self.tilesize = tilesize
# scale can be any positive integer
if scale is None:
scale = Region.scale
else:
if scale > 0:
self.scale = int(scale)
else:
raise AttributeError('bad scale %s' % scale)
# sealevel and maxdepth are not checked until after files are retrieved
if sealevel is None:
sealevel = Region.sealevel
else:
self.sealevel = sealevel
if maxdepth is None:
maxdepth = Region.maxdepth
else:
self.maxdepth = maxdepth
# trim and vscale are not checked until after files are retrieved
if trim is None:
trim = Region.trim
else:
self.trim = trim
if vscale is None:
vscale = Region.vscale
else:
self.vscale = vscale
# disable overly dense elevation products
self.productIDs = Region.productIDs
# NB: ND9 no longer supported
# if scale > 5:
# self.productIDs['elevation'].remove('ND9')
if scale > 15:
self.productIDs['elevation'].remove('N3F')
# specified IDs must be in region list
if lcIDs is None:
landcoverIDs = self.productIDs['landcover']
else:
landcoverIDs = [ID for ID in lcIDs if ID in self.productIDs['landcover']]
if landcoverIDs == []:
raise AttributeError('invalid landcover ID')
if elIDs is None:
elevationIDs = self.productIDs['elevation']
else:
elevationIDs = [ID for ID in elIDs if ID in self.productIDs['elevation']]
if elevationIDs == []:
raise AttributeError('invalid elevation ID')
# enable or disable ore and schematics
self.doOre = doOre
self.doSchematics = doSchematics
# crazy directory fun
cleanmkdir(self.regiondir)
cleanmkdir(self.mapsdir)
# these are the latlong values
self.llextents = {'xmax': max(xmax, xmin), 'xmin': min(xmax, xmin), 'ymax': max(ymax, ymin), 'ymin': min(ymax, ymin)}
# Convert from WGS84 to Albers.
[mxmax, mxmin, mymax, mymin] = Region.get_corners(Region.wgs84, Region.albers, xmax, xmin, ymax, ymin)
# calculate tile edges
realsize = self.scale * self.tilesize
self.tiles = {'xmax': int(ceil(mxmax / realsize)), 'xmin': int(floor(mxmin / realsize)), 'ymax': int(ceil(mymax / realsize)), 'ymin': int(floor(mymin / realsize))}
self.albersextents = {'landcover': dict(), 'elevation': dict()}
self.wgs84extents = {'landcover': dict(), 'elevation': dict()}
# Landcover needs a maxdepth-sized border for bathy calculations.
self.albersextents['elevation'] = {'xmax': self.tiles['xmax'] * realsize,
'xmin': self.tiles['xmin'] * realsize,
'ymax': self.tiles['ymax'] * realsize,
'ymin': self.tiles['ymin'] * realsize}
borderwidth = self.maxdepth * self.scale
self.albersextents['landcover'] = {'xmax': self.albersextents['elevation']['xmax'] + borderwidth,
'xmin': self.albersextents['elevation']['xmin'] - borderwidth,
'ymax': self.albersextents['elevation']['ymax'] + borderwidth,
'ymin': self.albersextents['elevation']['ymin'] - borderwidth}
# Now convert back from Albers to WGS84.
for maptype in ['landcover', 'elevation']:
[wxmax, wxmin, wymax, wymin] = Region.get_corners(Region.albers, Region.wgs84, self.albersextents[maptype]['xmax'], self.albersextents[maptype]['xmin'], self.albersextents[maptype]['ymax'], self.albersextents[maptype]['ymin'])
self.wgs84extents[maptype] = {'xmax': wxmax, 'xmin': wxmin, 'ymax': wymax, 'ymin': wymin}
# check availability of product IDs and identify specific layer IDs
self.lclayer = self.check_availability(landcoverIDs, 'landcover')
self.ellayer = self.check_availability(elevationIDs, 'elevation')
# write the values to the file
stream = file(os.path.join(self.regionfile), 'w')
yaml.dump(self, stream)
stream.close()
def layertype(self, layerID):
"""Return 'elevation' or 'landcover' depending on layerID."""
return [key for key in self.productIDs.keys() if layerID in self.productIDs[key]][0]
@staticmethod
def get_corners(fromCS, toCS, xmax, xmin, ymax, ymin):
"""Transform the given extents from a source SR to a destination SR."""
fromSR = osr.SpatialReference()
fromSR.ImportFromProj4(fromCS)
toSR = osr.SpatialReference()
toSR.ImportFromProj4(toCS)
corners = [(x, y) for y in [ymin, ymax] for x in [xmin, xmax]]
xfloat = []
yfloat = []
for corner in corners:
point = ogr.CreateGeometryFromWkt('POINT(%s %s)' % (corner[0], corner[1]))
point.AssignSpatialReference(fromSR)
point.TransformTo(toSR)
xfloat.append(point.GetX())
yfloat.append(point.GetY())
return [max(xfloat), min(xfloat), max(yfloat), min(yfloat)]
def check_availability(self, productlist, maptype):
"""Check availability with web service."""
mapextents = self.wgs84extents[maptype]
# access the web service to check availability
wsdlInv = "http://ags.cr.usgs.gov/index_service/Index_Service_SOAP.asmx?WSDL"
clientInv = suds.client.Client(wsdlInv)
# ensure desired attributes are present
desiredAttributes = ['PRODUCTKEY', 'STATUS']
attributes = []
attributeList = clientInv.service.return_Attribute_List()
for attribute in desiredAttributes:
if attribute in attributeList[0]:
attributes.append(attribute)
if len(attributes) != len(desiredAttributes):
raise AttributeError('Not all attributes found')
# return_attributes arguments dictionary
rAdict = {'Attribs': ','.join(attributes), 'XMin': mapextents['xmin'], 'XMax': mapextents['xmax'], 'YMin': mapextents['ymin'], 'YMax': mapextents['ymax'], 'EPSG': '4326'}
rAatts = clientInv.service.return_Attributes(**rAdict)
# store offered products in a list
offered = []
# this returns an array of custom attributes
# which is apparently a ball full of crazy
# NB: clean up this [0][0] crap!
if not hasattr(rAatts, 'ArrayOfCustomAttributes'):
raise ValueError('Invalid coordinates supplied')
for elem in rAatts.ArrayOfCustomAttributes:
if elem[0][0][0] == 'PRODUCTKEY' and elem[0][0][1] in productlist and elem[0][1][0] == 'STATUS' and elem[0][1][1] == 'Tiled':
offered.append(elem[0][0][1])
# this should extract the first
try:
productID = [ID for ID in productlist if ID in offered][0]
except IndexError:
raise AttributeError('No products are available for this location!')
return productID
def request_validation(self, layerIDs):
"""Generates download URLs from layer IDs."""
retval = {}
# request validation
wsdlRequest = "http://extract.cr.usgs.gov/requestValidationService/wsdl/RequestValidationService.wsdl"
clientRequest = suds.client.Client(wsdlRequest)
# we now iterate through layerIDs
for layerID in layerIDs:
layertype = self.layertype(layerID)
mapextents = self.wgs84extents[layertype]
xmlString = "<REQUEST_SERVICE_INPUT><AOI_GEOMETRY><EXTENT><TOP>%f</TOP><BOTTOM>%f</BOTTOM><LEFT>%f</LEFT><RIGHT>%f</RIGHT></EXTENT><SPATIALREFERENCE_WKID/></AOI_GEOMETRY><LAYER_INFORMATION><LAYER_IDS>%s</LAYER_IDS></LAYER_INFORMATION><CHUNK_SIZE>%d</CHUNK_SIZE><JSON></JSON></REQUEST_SERVICE_INPUT>" % (mapextents['ymax'], mapextents['ymin'], mapextents['xmin'], mapextents['xmax'], layerID, 250)
response = clientRequest.service.getTiledDataDirectURLs2(xmlString)
print "Requested URLs for layer ID %s..." % layerID
# I am still a bad man.
downloadURLs = [x.rsplit("</DOWNLOAD_URL>")[0] for x in response.split("<DOWNLOAD_URL>")[1:]]
retval[layerID] = downloadURLs
return retval
@staticmethod
def getfn(downloadURL):
pdURL = urlparse.urlparse(downloadURL)
pQS = urlparse.parse_qs(pdURL[4])
longfile = pQS['FNAME'][0]
justfile = os.path.split(longfile)[1]
return justfile
def retrievefile(self, layerID, downloadURL):
"""Retrieve the datafile associated with the URL. This may require downloading it from the USGS servers or extracting it from a local archive."""
fname = Region.getfn(downloadURL)
layerdir = os.path.join(Region.downloadtop, layerID)
if not os.path.exists(layerdir):
os.makedirs(layerdir)
downloadfile = os.path.join(layerdir, fname)
# Apparently Range checks don't always work across Redirects
# So find the final URL before starting the download
opener = urllib2.build_opener(SmartRedirectHandler())
dURL = downloadURL
while True:
req = urllib2.Request(dURL)
webPage = opener.open(req)
if hasattr(webPage, 'status') and webPage.status == 302:
dURL = webPage.url
else:
break
maxSize = int(webPage.headers['Content-Length'])
webPage.close()
if os.path.exists(downloadfile):
outputFile = open(downloadfile, 'ab')
existSize = os.path.getsize(downloadfile)
req.headers['Range'] = 'bytes=%s-%s' % (existSize, maxSize)
else:
outputFile = open(downloadfile, 'wb')
existSize = 0
webPage = opener.open(req)
if maxSize == existSize:
print "Using cached file for layerID %s" % layerID
else:
print "Downloading file from server for layerID %s" % layerID
pbar = ProgressBar(widgets=[Percentage(), ' ', Bar(), ' ', ETA(), ' ', FileTransferSpeed()], maxval=maxSize).start()
# This chunk size may be small!
max_chunk_size = 8192
# NB: USGS web servers do not handle resuming downloads correctly
# so we have to drop incoming data on the floor
if 'Content-Range' in webPage.headers:
# Resuming downloads are now working
# We can start from where we left off
numBytes = existSize
else:
numBytes = 0
# if numBytes is less than existSize, do not save what we download
while numBytes < existSize:
pbar.update(numBytes)
left = existSize - numBytes
chunk_size = left if left < max_chunk_size else max_chunk_size
data = webPage.read(chunk_size)
numBytes = numBytes + len(data)
# if numBytes is less than maxSize, save what we download
while numBytes < maxSize:
pbar.update(numBytes)
data = webPage.read(max_chunk_size)
if not data:
break
outputFile.write(data)
numBytes = numBytes + len(data)
pbar.finish()
webPage.close()
outputFile.close()
# FIXME: this is grotesque
extracthead = fname.split('.')[0]
layertype = self.layertype(layerID)
if layertype == 'elevation':
extractfiles = [os.path.join(extracthead, '.'.join(['float%s_%s' % (extracthead, Region.exsuf[layerID]), suffix])) for suffix in 'flt', 'hdr', 'prj']
else: # if layertype == 'landcover':
extractfiles = ['.'.join([extracthead, suffix]) for suffix in 'tif', 'tfw']
for extractfile in extractfiles:
if os.path.exists(os.path.join(layerdir, extractfile)):
print "Using existing file %s for layerID %s" % (extractfile, layerID)
else:
os.system('unzip "%s" "%s" -d "%s"' % (downloadfile, extractfile, layerdir))
return os.path.join(layerdir, extractfiles[0])
def getfiles(self):
"""Get files from USGS and extract them if necessary."""
layerIDs = [self.lclayer, self.ellayer]
downloadURLs = self.request_validation(layerIDs)
for layerID in downloadURLs:
extractlist = []
for downloadURL in downloadURLs[layerID]:
extractfile = self.retrievefile(layerID, downloadURL)
extractlist.append(extractfile)
# Build VRTs
vrtfile = os.path.join(self.mapsdir, '%s.vrt' % layerID)
buildvrtcmd = 'gdalbuildvrt "%s" %s' % (vrtfile, ' '.join(['"%s"' % os.path.abspath(extractfile) for extractfile in extractlist]))
os.system('%s' % buildvrtcmd)
# Generate warped GeoTIFFs
tiffile = os.path.join(self.mapsdir, '%s.tif' % layerID)
warpcmd = 'gdalwarp -q -multi -t_srs "%s" "%s" "%s"' % (Region.albers, vrtfile, tiffile)
os.system('%s' % warpcmd)
def build_map(self, wantCL=True, do_pickle=False):
"""Use downloaded files and other parameters to build multi-raster map."""
# set pickle variable
if do_pickle:
pickle_name = self.name
else:
pickle_name = None
# warp elevation data into new format
# NB: can't do this to landcover until mode algorithm is supported
eltif = os.path.join(self.mapsdir, '%s.tif' % self.ellayer)
elfile = os.path.join(self.mapsdir, '%s-new.tif' % self.ellayer)
elextents = self.albersextents['elevation']
warpcmd = 'gdalwarp -q -multi -tr %d %d -te %d %d %d %d -r cubic "%s" "%s" -srcnodata "-340282346638529993179660072199368212480.000" -dstnodata 0' % (self.scale, self.scale, elextents['xmin'], elextents['ymin'], elextents['xmax'], elextents['ymax'], eltif, elfile)
try:
os.remove(elfile)
except OSError:
pass
# NB: make this work on Windows too!
os.system('%s' % warpcmd)
elds = gdal.Open(elfile, GA_ReadOnly)
elgeotrans = elds.GetGeoTransform()
elband = elds.GetRasterBand(1)
elarray = elband.ReadAsArray(0, 0, elds.RasterXSize, elds.RasterYSize)
(elysize, elxsize) = elarray.shape
# update sealevel, trim and vscale
elmin = elband.GetMinimum()
elmax = elband.GetMaximum()
if elmin is None or elmax is None:
(elmin, elmax) = elband.ComputeRasterMinMax(False)
elmin = int(elmin)
elmax = int(elmax)
elband = None
elds = None
# sealevel depends upon elmin
minsealevel = 2
# if minimum elevation is below sea level, add extra space
if elmin < 0:
minsealevel += int(-1.0*elmin/self.scale)
maxsealevel = Region.tileheight - Region.headroom
oldsealevel = self.sealevel
if oldsealevel > maxsealevel or oldsealevel < minsealevel:
print "warning: sealevel value %d outside %d-%d range" % (oldsealevel, minsealevel, maxsealevel)
self.sealevel = int(min(max(oldsealevel, minsealevel), maxsealevel))
# maxdepth depends upon sealevel
minmaxdepth = 1
maxmaxdepth = self.sealevel - 1
oldmaxdepth = self.maxdepth
if oldmaxdepth > maxmaxdepth or oldmaxdepth < minmaxdepth:
print "warning: maxdepth value %d outside %d-%d range" % (oldmaxdepth, minmaxdepth, maxmaxdepth)
self.maxdepth = int(min(max(oldmaxdepth, minmaxdepth), maxmaxdepth))
# trim depends upon elmin (if elmin < 0, trim == 0)
mintrim = Region.trim
maxtrim = max(elmin, mintrim)
oldtrim = self.trim
if oldtrim > maxtrim or oldtrim < mintrim:
print "warning: trim value %d outside %d-%d range" % (oldtrim, mintrim, maxtrim)
self.trim = int(min(max(oldtrim, mintrim), maxtrim))
# vscale depends on sealevel, trim and elmax
# NB: no maximum vscale, the sky's the limit (hah!)
eltrimmed = elmax - self.trim
elroom = Region.tileheight - Region.headroom - self.sealevel
minvscale = ceil(eltrimmed / elroom)
oldvscale = self.vscale
if oldvscale < minvscale:
print "warning: vscale value %d smaller than minimum value %d" % (oldvscale, minvscale)
self.vscale = int(max(oldvscale, minvscale))
# GeoTIFF
# four bands: landcover, elevation, bathy, crust
# data type is GDT_Int16 (elevation can be negative)
driver = gdal.GetDriverByName("GTiff")
mapds = driver.Create(self.mapfile, elxsize, elysize, len(Region.rasters), GDT_Int16)
# overall map transform should match elevation map transform
mapds.SetGeoTransform(elgeotrans)
srs = osr.SpatialReference()
srs.ImportFromProj4(Region.albers)
mapds.SetProjection(srs.ExportToWkt())
# modify elarray and save it as raster band 2
elevObj = Elev(elarray, wantCL=wantCL)
actualel = elevObj(self.trim, self.vscale, self.sealevel, pickle_name=pickle_name)
mapds.GetRasterBand(Region.rasters['elevation']).WriteArray(actualel)
elarray = None
actualel = None
# generate crust and save it as raster band 4
newcrust = Crust(mapds.RasterXSize, mapds.RasterYSize, wantCL=wantCL)
crustarray = newcrust(pickle_name=pickle_name)
mapds.GetRasterBand(Region.rasters['crust']).WriteArray(crustarray)
crustarray = None
newcrust = None
# read landcover array
lctif = os.path.join(self.mapsdir, '%s.tif' % self.lclayer)
lcfile = os.path.join(self.mapsdir, '%s-new.tif' % self.lclayer)
# here are the things that need to happen
lcextents = self.albersextents['landcover']
# if True, use new code, if False, use gdalwarp
if Region.gdalwarp_broken_for_landcover:
# 1. the new file must be read into an array and flattened
tifds = gdal.Open(lctif, GA_ReadOnly)
tifgeotrans = tifds.GetGeoTransform()
tifband = tifds.GetRasterBand(1)
xminarr = int((lcextents['xmin']-tifgeotrans[0])/tifgeotrans[1])
xmaxarr = int((lcextents['xmax']-tifgeotrans[0])/tifgeotrans[1])
yminarr = int((lcextents['ymax']-tifgeotrans[3])/tifgeotrans[5])
ymaxarr = int((lcextents['ymin']-tifgeotrans[3])/tifgeotrans[5])
values = tifband.ReadAsArray(xminarr, yminarr, xmaxarr-xminarr, ymaxarr-yminarr)
# nodata is treated as water, which is 11
tifnodata = tifband.GetNoDataValue()
if tifnodata is None:
tifnodata = 0
values[values == tifnodata] = 11
values = values.flatten()
tifband = None
# 2. a new array of original scale coordinates must be created
tifxrange = [tifgeotrans[0] + tifgeotrans[1] * x for x in xrange(xminarr, xmaxarr)]
tifyrange = [tifgeotrans[3] + tifgeotrans[5] * y for y in xrange(yminarr, ymaxarr)]
tifds = None
coords = np.array([(x, y) for y in tifyrange for x in tifxrange])
# 3. a new array of goal scale coordinates must be made
# landcover extents are used for the bathy depth array
# yes, it's confusing. sorry.
depthxlen = int((lcextents['xmax']-lcextents['xmin'])/self.scale)
depthylen = int((lcextents['ymax']-lcextents['ymin'])/self.scale)
depthxrange = [lcextents['xmin'] + self.scale * x for x in xrange(depthxlen)]
depthyrange = [lcextents['ymax'] - self.scale * y for y in xrange(depthylen)]
depthbase = np.array([(x, y) for y in depthyrange for x in depthxrange], dtype=np.float32)
# 4. an inverse distance tree must be built from that
lcIDT = IDT(coords, values.ravel().astype(np.int32), wantCL=wantCL)
# 5. the desired output comes from that inverse distance tree
depthshape = (depthylen, depthxlen)
deptharray = lcIDT(depthbase, depthshape, pickle_name=pickle_name)
lcIDT = None
else:
warpcmd = 'gdalwarp -q -multi -tr %d %d -te %d %d %d %d -r near "%s" "%s"' % (self.scale, self.scale, lcextents['xmin'], lcextents['ymin'], lcextents['xmax'], lcextents['ymax'], lctif, lcfile)
try:
os.remove(lcfile)
except OSError:
pass
# NB: make this work on Windows too!
os.system('%s' % warpcmd)
lcds = gdal.Open(lcfile, GA_ReadOnly)
lcband = lcds.GetRasterBand(1)
# depth array is entire landcover region, landcover array is subset
deptharray = lcband.ReadAsArray(0, 0, lcds.RasterXSize, lcds.RasterYSize)
lcarray = deptharray[self.maxdepth:-1*self.maxdepth, self.maxdepth:-1*self.maxdepth]
geotrans = [lcextents['xmin'], self.scale, 0, lcextents['ymax'], 0, -1 * self.scale]
projection = srs.ExportToWkt()
bathyObj = Bathy(deptharray, geotrans, projection, wantCL=wantCL)
bathyarray = bathyObj(self.maxdepth, pickle_name=pickle_name)
mapds.GetRasterBand(Region.rasters['bathy']).WriteArray(bathyarray)
# perform terrain translation
# NB: figure out why this doesn't work up above
lcpid = self.lclayer[:3]
if lcpid in Terrain.translate:
trans = Terrain.translate[lcpid]
for key in trans:
lcarray[lcarray == key] = trans[key]
for value in np.unique(lcarray).flat:
if value not in Terrain.terdict:
print "bad value: ", value
mapds.GetRasterBand(Region.rasters['landcover']).WriteArray(lcarray)
# close the dataset
mapds = None