124 lines
4.8 KiB
Python
124 lines
4.8 KiB
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
|
# Copyright 2012 California Institute of Technology. ALL RIGHTS RESERVED.
|
||
|
#
|
||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
# you may not use this file except in compliance with the License.
|
||
|
# You may obtain a copy of the License at
|
||
|
#
|
||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||
|
#
|
||
|
# Unless required by applicable law or agreed to in writing, software
|
||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
# See the License for the specific language governing permissions and
|
||
|
# limitations under the License.
|
||
|
#
|
||
|
# United States Government Sponsorship acknowledged. This software is subject to
|
||
|
# U.S. export control laws and regulations and has been classified as 'EAR99 NLR'
|
||
|
# (No [Export] License Required except when exporting to an embargoed country,
|
||
|
# end user, or in support of a prohibited end use). By downloading this software,
|
||
|
# the user agrees to comply with all applicable U.S. export laws and regulations.
|
||
|
# The user has the responsibility to obtain export licenses, or other export
|
||
|
# authority as may be required before exporting this software to any 'EAR99'
|
||
|
# embargoed foreign country or citizen of those countries.
|
||
|
#
|
||
|
# Author: Giangi Sacco
|
||
|
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
|
|
||
|
|
||
|
|
||
|
from .SRTMManager import SRTMManager
|
||
|
from iscesys.Component.Component import Component
|
||
|
import numpy as np
|
||
|
from isceobj.Image import createImage
|
||
|
|
||
|
EXTRA = Component.Parameter('_extra',
|
||
|
public_name = 'extra',default = '.SRTMSWBD',
|
||
|
type = str,
|
||
|
mandatory = False,
|
||
|
doc = 'String to append to default name such as .SRTMSWBD for water mask')
|
||
|
DATA_EXT = Component.Parameter('_dataExt',
|
||
|
public_name = 'dataExt',default = '.raw',
|
||
|
type = str,
|
||
|
mandatory = False,
|
||
|
doc = 'Extension of the data such as .raw')
|
||
|
URL = Component.Parameter('_url',
|
||
|
public_name = 'URL',default = 'http://e4ftl01.cr.usgs.gov/MEASURES/SRTMSWBD.003/2000.02.11',
|
||
|
type = str,
|
||
|
mandatory = False,
|
||
|
doc = "Url for the high resolution water body mask")
|
||
|
DTYPE = Component.Parameter('_dtype',
|
||
|
public_name = 'dtype',
|
||
|
default = 'BYTE',
|
||
|
type = str,
|
||
|
mandatory = False,
|
||
|
doc = 'Data type')
|
||
|
TILE_SIZE = Component.Parameter('_tileSize',
|
||
|
public_name = 'tileSize',
|
||
|
default = [3601,3601],
|
||
|
container=list,
|
||
|
type=int,
|
||
|
mandatory = True,
|
||
|
doc = 'Two element list with the number of row and columns of the tile.')
|
||
|
FILLING_VALUE = Component.Parameter('_fillingValue',
|
||
|
public_name = 'fillingValue',
|
||
|
default = 0,
|
||
|
type=float,
|
||
|
mandatory = True,
|
||
|
doc = 'Value used for missing tiles.')
|
||
|
##Base class to handle product such as dem or water mask
|
||
|
class SWBDManager(SRTMManager):
|
||
|
family = 'swbdmanager'
|
||
|
parameter_list = (
|
||
|
EXTRA,
|
||
|
DATA_EXT,
|
||
|
URL,
|
||
|
DTYPE,
|
||
|
TILE_SIZE,
|
||
|
FILLING_VALUE
|
||
|
)
|
||
|
#provide default name for output if not provided
|
||
|
def stitch(self,lats,lons):
|
||
|
if not self.outputFile:
|
||
|
self.outputFile = self.defaultName([min(lats[0],lats[1]),max(lats[0],lats[1]),
|
||
|
min(lons[0],lons[1]),max(lons[0],lons[1])])
|
||
|
super(SWBDManager,self).stitch(lats,lons)
|
||
|
|
||
|
def createImage(self,lats,lons,filename):
|
||
|
img = createImage()
|
||
|
lons = np.sort(lons)
|
||
|
img.initImage(filename,'read',self._tileWidth*int(np.diff(lons)[0]))
|
||
|
img._metadataLocation = filename + '.xml'
|
||
|
img.coord1.coordStart = lons[0]
|
||
|
img.coord1.coordDelta = 1./self._tileWidth
|
||
|
img.coord2.coordStart = np.sort(lats)[-1]
|
||
|
img.coord2.coordDelta = -1./self._tileWidth
|
||
|
img.dataType = self._dtype
|
||
|
return img
|
||
|
|
||
|
def defaultName(self,snwe):
|
||
|
latMin = np.floor(snwe[0])
|
||
|
latMax = np.ceil(snwe[1])
|
||
|
lonMin = np.floor(snwe[2])
|
||
|
lonMax = np.ceil(snwe[3])
|
||
|
nsMin,ewMin = self.convertCoordinateToString(latMin, lonMin)
|
||
|
nsMax,ewMax = self.convertCoordinateToString(latMax, lonMax)
|
||
|
demName = (
|
||
|
'swbdLat_' + nsMin + '_' +nsMax +
|
||
|
'_Lon_' + ewMin +
|
||
|
'_' + ewMax + '.wbd'
|
||
|
)
|
||
|
|
||
|
return demName
|
||
|
def __init__(self,family = '', name = ''):
|
||
|
self.parameter_list = self.parameter_list + super(SRTMManager,self).parameter_list
|
||
|
self.updateParameters()
|
||
|
super(SWBDManager, self).__init__(family if family else self.__class__.family, name=name)
|
||
|
self._tileWidth = 3600
|
||
|
def updateParameters(self):
|
||
|
self.extendParameterList(SRTMManager,SWBDManager)
|
||
|
super(SWBDManager,self).updateParameters()
|
||
|
|