本文整理汇总了Python中CANON.CANONLoader.l_662_base方法的典型用法代码示例。如果您正苦于以下问题:Python CANONLoader.l_662_base方法的具体用法?Python CANONLoader.l_662_base怎么用?Python CANONLoader.l_662_base使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CANON.CANONLoader
的用法示例。
在下文中一共展示了CANONLoader.l_662_base方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1:
# 需要导入模块: from CANON import CANONLoader [as 别名]
# 或者: from CANON.CANONLoader import l_662_base [as 别名]
# Webb gliders
cl.hehape_base = cl.dodsBase + 'CANON_march2013/usc_glider/HeHaPe/processed/'
cl.hehape_files = [
'OS_Glider_HeHaPe_20130305_TS.nc',
'OS_Glider_HeHaPe_20130310_TS.nc',
]
cl.hehape_parms = [ 'TEMP', 'PSAL', 'BB532', 'CDOM', 'CHLA', 'DENS' ]
cl.rusalka_base = cl.dodsBase + 'CANON/2014_Apr/Platforms/Gliders/USC/'
cl.rusalka_files = [
'GliderRusalka.nc',
]
cl.rusalka_parms = ['temperature', 'chlorophyll', 'bb532']
# Spray glider - for just the duration of the campaign
cl.l_662_base = 'http://www.cencoos.org/thredds/dodsC/glider/'
cl.l_662_files = ['OS_Glider_L_662_20120816_TS.nc']
cl.l_662_parms = ['TEMP', 'PSAL', 'FLU2']
cl.l_662_startDatetime = datetime.datetime(2012, 9, 10)
cl.l_662_endDatetime = datetime.datetime(2012, 9, 20)
# MBARI ESPs Mack and Bruce
cl.espmack_base = cl.dodsBase + 'CANON_march2013/esp/instances/Mack/data/processed/'
cl.espmack_files = [
'ctd.nc',
]
cl.espmack_parms = [ 'TEMP', 'PSAL', 'chl', 'chlini', 'no3' ]
# Spray glider - for just the duration of the campaign
##cl.l_662_base = 'http://www.cencoos.org/thredds/dodsC/glider/'
##cl.l_662_files = ['OS_Glider_L_662_20120816_TS.nc']
示例2: produced
# 需要导入模块: from CANON import CANONLoader [as 别名]
# 或者: from CANON.CANONLoader import l_662_base [as 别名]
#####################################################################
# Load netCDF files produced (binned, etc.) by Danelle Cline
# These binned files are created with the makeLRAUVNetCDFs.sh script in the
# toNetCDF directory. You must first edit and run that script once to produce
# the binned files before this will work
# Use the default parameters provided by loadLRAUV() calls below
######################################################################
# GLIDERS
######################################################################
# Glider data files from CeNCOOS thredds server
# L_662
cl.l_662_base = 'http://legacy.cencoos.org/thredds/dodsC/gliders/Line66/'
cl.l_662_files = [
'OS_Glider_L_662_20161214_TS.nc',
'OS_Glider_L_662_20170328_TS.nc' ]
# Begining with OS_Glider_L_662_20170328_TS variable names became: 'temperature', 'salinity', 'fluorescence'
cl.l_662_parms = ['TEMP', 'PSAL', 'FLU2', 'temperature', 'salinity', 'fluorescence']
cl.l_662_startDatetime = startdate
cl.l_662_endDatetime = enddate
######################################################################
# Wavegliders
######################################################################
# WG Tex - All instruments combined into one file - one time coordinate
##cl.wg_tex_base = cl.dodsBase + 'CANON_september2013/Platforms/Gliders/WG_Tex/final/'
##cl.wg_tex_files = [ 'WG_Tex_all_final.nc' ]
##cl.wg_tex_parms = [ 'wind_dir', 'wind_spd', 'atm_press', 'air_temp', 'water_temp', 'sal', 'density', 'bb_470', 'bb_650', 'chl' ]
示例3:
# 需要导入模块: from CANON import CANONLoader [as 别名]
# 或者: from CANON.CANONLoader import l_662_base [as 别名]
cl.tethys_b_base = cl.dodsBase + "CANON_september2012/lrauv/tethys/"
cl.tethys_b_files = ["Tethys_CANONFall2012_NoSalinityCorrection.nc"]
cl.tethys_b_parms = ["temperature", "salinity", "chlorophyll", "bb470", "bb650", "PAR"]
# Assign version of the data to load
cl.tethys_base = cl.tethys_b_base
cl.tethys_files = cl.tethys_b_files
cl.tethys_parms = cl.tethys_b_parms
cl.fulmar_base = []
cl.fulmar_files = []
cl.fulmar_parms = []
# Spray glider - for just the duration of the campaign
cl.l_662_base = "http://www.cencoos.org/thredds/dodsC/gliders/Line66/"
cl.l_662_files = ["OS_Glider_L_662_20120816_TS.nc"]
cl.l_662_parms = ["TEMP", "PSAL", "FLU2"]
cl.l_662_startDatetime = datetime.datetime(2012, 9, 10)
cl.l_662_endDatetime = datetime.datetime(2012, 9, 20)
# Liquid Robotics Waveglider
cl.waveglider_base = cl.dodsBase + "CANON_september2012/waveglider/"
cl.waveglider_files = ["waveglider_gpctd_WG.nc"]
cl.waveglider_parms = ["TEMP", "PSAL", "oxygen"]
cl.waveglider_startDatetime = datetime.datetime(2012, 8, 31, 18, 47, 0)
cl.waveglider_endDatetime = datetime.datetime(2012, 9, 25, 16, 0, 0)
# MBARI ESPdrift
cl.espdrift_base = cl.dodsBase + "CANON_september2012/misc/ESPdrift/"
cl.espdrift_files = ["ESP_ctd.nc", "ESP_isus.nc"]