本文整理汇总了Python中nansat.Nansat.bands方法的典型用法代码示例。如果您正苦于以下问题:Python Nansat.bands方法的具体用法?Python Nansat.bands怎么用?Python Nansat.bands使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类nansat.Nansat
的用法示例。
在下文中一共展示了Nansat.bands方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_bands
# 需要导入模块: from nansat import Nansat [as 别名]
# 或者: from nansat.Nansat import bands [as 别名]
def test_bands(self):
n = Nansat(self.test_file_gcps, logLevel=40)
bands = n.bands()
self.assertEqual(type(bands), dict)
self.assertTrue(1 in bands)
self.assertTrue('name' in bands[1])
self.assertEqual(bands[1]['name'], 'L_645')
示例2: test_get_time
# 需要导入模块: from nansat import Nansat [as 别名]
# 或者: from nansat.Nansat import bands [as 别名]
def test_get_time(self):
n1 = Nansat(self.test_file_gcps, logLevel=40)
t = n1.get_time()
self.assertEqual(len(t), len(n1.bands()))
self.assertEqual(type(t[0]), datetime.datetime)
示例3: Domain
# 需要导入模块: from nansat import Nansat [as 别名]
# 或者: from nansat.Nansat import bands [as 别名]
Nansat inherits from Domain (container of geo-reference information)
'''
# Open an input file
# Create a Nansat object <n> for futher high-level operations
n = Nansat(iFileName)
# Open an input file, specify which Mapper to use, set logging level
n = Nansat(iFileName, mapperName='generic', logLevel=10)
# list bands and georeference of the object
print 'Raw Nansat:', n, '\n'
# get dictionary with metadata from all bands
print 'Bands:', n.bands(), '\n'
# get time of the image aquisition
print 'Time:', n.get_time()[0], '\n'
# set GlobalMetadata
n.set_metadata(key='GlobalKey', value='GlobalVal')
# get Global Metadata
print 'Global Metadata:', n.get_metadata(), '\n'
# set BandMetadata to the 1st band
n.set_metadata(key='BandKey', value='BandVal', bandID=1)
# get 1st Band Metadata
print '1st Band Metadata:', n.get_metadata(bandID=1), '\n'
# add a band from file (copy the 2nd band to the end (4th band)
示例4: main
# 需要导入模块: from nansat import Nansat [as 别名]
# 或者: from nansat.Nansat import bands [as 别名]
def main( argv=None ):
year = '2012'
useMask = False
if argv is None:
argv = sys.argv
if argv is None:
print ( "Please specify the path/year to the asar folder! \n")
return
# Parse arguments
try:
opts, args = getopt.getopt(argv,"hi:o:",["year=","oPath=","iPath=","useMask="])
except getopt.GetoptError:
print 'readASAR.py -year <year> ...'
sys.exit(2)
for opt, arg in opts:
if opt == '-h':
print 'readASAR.py -year <year> ...'
sys.exit()
elif opt in ("-year", "--year"):
year = arg
elif opt in ("-oPath", "--oPath"):
oPath = arg
elif opt in ("-iPath", "--iPath"):
iPath = arg
elif opt in ("-useMask", "--useMask"):
useMask = arg
oPath = '/media/SOLabNFS2/tmp/roughness/' + year + '/'
iPath = '/media/SOLabNFS2/store/satellite/asar/' + year + '/'
if not os.path.exists(oPath):
os.makedirs(oPath)
dirNames=os.listdir(iPath)
for dirName in dirNames:
fileNames=os.listdir(iPath+dirName)
for fileName in fileNames:
figureName = oPath + fileName[0:27] + '/' + fileName + '_proj.png'
kmlName = oPath + fileName[0:27] + '/' + fileName + '.kml'
if not os.path.exists(oPath + fileName[0:27] + '/'):
os.makedirs(oPath + fileName[0:27] + '/')
if os.path.isfile(kmlName):
print "%s already processed" % (fileName)
continue
else:
print "%s" % (fileName)
# try to create Nansat object
try:
n = Nansat(iPath + dirName + '/' + fileName, mapperName='asar', logLevel=27)
except Exception as e:
print "Failed to create Nansat object:"
print str(e)
os.rmdir(oPath + fileName[0:27] + '/' )
continue
#~ Get the bands
raw_counts = n[1]
inc_angle = n[2]
#~ NICE image (roughness)
pol = n.bands()[3]['polarization']
if pol == 'HH':
ph = (2.20495, -14.3561e-2, 11.28e-4)
sigma0_hh_ref = exp( ( ph[0]+inc_angle*ph[1]+inc_angle**2*ph[2])*log(10) )
roughness = n[3]/sigma0_hh_ref
elif pol == 'VV':
pv = (2.29373, -15.393e-2, 15.1762e-4)
sigma0_vv_ref = exp( ( pv[0]+inc_angle*pv[1]+inc_angle**2*pv[2])*log(10) )
roughness = n[3]/sigma0_vv_ref
#~ Create new band
n.add_band(bandID=4, array=roughness, \
parameters={'name':'roughness', \
'wkv': 'surface_backwards_scattering_coefficient_of_radar_wave', \
'dataType': 6})
# Reproject image into Lat/Lon WGS84 (Simple Cylindrical) projection
# 1. Cancel previous reprojection
# 2. Get corners of the image and the pixel resolution
# 3. Create Domain with stereographic projection, corner coordinates 1000m
# 4. Reproject
# 5. Write image
n.reproject() # 1.
lons, lats = n.get_corners() # 2.
# Pixel resolution
#~ pxlRes = distancelib.getPixelResolution(array(lats), array(lons), n.shape())
#~ pxlRes = array(pxlRes)*360/40000 # great circle distance
pxlRes = array(distancelib.getPixelResolution(array(lats), array(lons), n.shape(), 'deg'))
ipdb.set_trace()
#.........这里部分代码省略.........
示例5: Nansat
# 需要导入模块: from nansat import Nansat [as 别名]
# 或者: from nansat.Nansat import bands [as 别名]
iPath = '/home/mag/data/baltic/finngulfWindCases/'
oPath = '/home/mag/'
fileName = 'ASA_WSM_1PNPDE20110523_084634_000000983102_00395_48254_2349.N1'
oFileName = oPath + fileName
# create Nansat object
n = Nansat(iPath + fileName, mapperName='ASAR')
#n = Nansat(iPath + fileName)
# list bands and georeference of the object
print n
# get dictionary with all bands metadata
print n.bands()
# get size of the object (Y and X dimensions, to follow Numpy style)
print n.shape()
# get list with coordinates of the object corners
print n.get_corners()
# get lists with coordinates of the object borders
print n.get_border()
raw_counts = n[1]
inc_angle = n[2]
#~ sigma0 = n[3]