本文整理汇总了Python中CANON.CANONLoader.dorado_base方法的典型用法代码示例。如果您正苦于以下问题:Python CANONLoader.dorado_base方法的具体用法?Python CANONLoader.dorado_base怎么用?Python CANONLoader.dorado_base使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CANON.CANONLoader
的用法示例。
在下文中一共展示了CANONLoader.dorado_base方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: produced
# 需要导入模块: from CANON import CANONLoader [as 别名]
# 或者: from CANON.CANONLoader import dorado_base [as 别名]
# Set start and end dates for all loads from sources that contain data
# beyond the temporal bounds of the campaign
#
startdate = datetime.datetime(2017, 1, 1) # Fixed start
enddate = datetime.datetime(2017, 12, 31) # Fixed end. Extend "offseason" to end of year
# default location of thredds and dods data:
cl.tdsBase = 'http://odss.mbari.org/thredds/'
cl.dodsBase = cl.tdsBase + 'dodsC/'
#####################################################################
# DORADO
#####################################################################
# special location for dorado data
cl.dorado_base = 'http://dods.mbari.org/opendap/data/auvctd/surveys/2017/netcdf/'
cl.dorado_files = [
'Dorado389_2017_044_00_044_00_decim.nc',
'Dorado389_2017_068_00_068_00_decim.nc',
]
cl.dorado_parms = [ 'temperature', 'oxygen', 'nitrate', 'bbp420', 'bbp700',
'fl700_uncorr', 'salinity', 'biolume',
'sepCountList', 'mepCountList',
'roll', 'pitch', 'yaw',
]
#####################################################################
# LRAUV
#####################################################################
# Load netCDF files produced (binned, etc.) by Danelle Cline
示例2:
# 需要导入模块: from CANON import CANONLoader [as 别名]
# 或者: from CANON.CANONLoader import dorado_base [as 别名]
'position': '-2523652.5 -4726093.2 3499413.2',
'orientation': '0.96902 -0.20915 -0.13134 1.74597',
'centerOfRotation': '-2505293.6 -4686937.5 3513055.2',
'VerticalExaggeration': '10',
}
},
grdTerrain = os.path.join(parentDir, 'SanPedroBasin50.grd')
)
# Aboard the Carson use zuma
##cl.tdsBase = 'http://zuma.rc.mbari.org/thredds/'
cl.tdsBase = 'http://odss.mbari.org/thredds/' # Use this on shore
cl.dodsBase = cl.tdsBase + 'dodsC/'
# Decimated dorado data
cl.dorado_base = cl.dodsBase + 'CANON/2014_Apr/Platforms/AUVs/Dorado/'
cl.dorado_files = [
'Dorado389_2014_102_00_102_00_decim.nc', 'Dorado389_2014_103_00_103_00_decim.nc',
'Dorado389_2014_103_01_103_01_decim.nc', 'Dorado389_2014_104_01_104_01_decim.nc',
'Dorado389_2014_107_00_107_00_decim.nc', 'Dorado389_2014_108_01_108_01_decim.nc',
'Dorado389_2014_108_02_108_02_decim.nc', 'Dorado389_2014_109_00_109_00_decim.nc',
'Dorado389_2014_109_01_109_01_decim.nc',
]
# Rachel Carson Underway CTD
cl.rcuctd_base = cl.dodsBase + 'CANON/2014_Apr/Platforms/Ships/Rachel_Carson/uctd/'
cl.rcuctd_files = [
'10214plm01.nc', '10314plm01.nc', '10414plm01.nc', '10714plm01.nc', '10814plm01.nc', '10914plm01.nc'
]
cl.rcuctd_parms = [ 'TEMP', 'PSAL', 'xmiss', 'wetstar' ]
# Rachel Carson Profile CTD
示例3: telemetered
# 需要导入模块: from CANON import CANONLoader [as 别名]
# 或者: from CANON.CANONLoader import dorado_base [as 别名]
'position': '-2523652.5 -4726093.2 3499413.2',
'orientation': '0.96902 -0.20915 -0.13134 1.74597',
'centerOfRotation': '-2505293.6 -4686937.5 3513055.2',
'VerticalExaggeration': '10',
}
},
grdTerrain = os.path.join(parentDir, 'SanPedroBasin50.grd')
)
# Aboard the Carson use zuma
##cl.tdsBase = 'http://zuma.rc.mbari.org/thredds/'
cl.tdsBase = 'http://odss.mbari.org/thredds/' # Use this on shore
cl.dodsBase = cl.tdsBase + 'dodsC/'
# 2-second decimated dorado data
cl.dorado_base = cl.dodsBase + 'CANON_march2013/dorado/'
cl.dorado_files = [
'Dorado389_2013_074_02_074_02_decim.nc',
'Dorado389_2013_075_05_075_06_decim.nc',
'Dorado389_2013_076_01_076_02_decim.nc',
'Dorado389_2013_079_04_079_04_decim.nc',
'Dorado389_2013_080_02_080_02_decim.nc',
'Dorado389_2013_081_05_081_05_decim.nc',
'Dorado389_2013_081_06_081_06_decim.nc',
]
# Realtime telemetered (_r_) daphne data - insert '_r_' to not load the files
##cl.daphne_base = 'http://aosn.mbari.org/lrauvtds/dodsC/lrauv/daphne/2012/'
daphne_r_base = cl.dodsBase + 'CANON_march2013/lrauv/daphne/realtime/sbdlogs/2013/201303/'
daphne_r_files = [
'shore_201303132226_201303140449.nc',
示例4: telemetered
# 需要导入模块: from CANON import CANONLoader [as 别名]
# 或者: from CANON.CANONLoader import dorado_base [as 别名]
"orientation": "0.89575 -0.31076 -0.31791 1.63772",
"centerOfRotation": "-2711557.9403829873 -4331414.329506527 3801353.4691465236",
"VerticalExaggeration": "10",
"speed": "1",
}
},
grdTerrain=os.path.join(parentDir, "Monterey25.grd"),
)
# Aboard the Flyer use malibu's VSAT IP address:
cl.tdsBase = "http://odss.mbari.org/thredds/"
cl.dodsBase = cl.tdsBase + "dodsC/"
# 2-second decimated dorado data
# http://192.168.111.177:8080/thredds/dodsC/CANON_september2012/dorado/Dorado389_2012_258_00_258_00_decim.nc
cl.dorado_base = cl.dodsBase + "CANON_september2012/dorado/"
cl.dorado_files = [
"Dorado389_2012_256_00_256_00_decim.nc",
"Dorado389_2012_257_01_257_01_decim.nc",
"Dorado389_2012_258_00_258_00_decim.nc",
]
# Realtime telemetered (_r_) daphne data - insert '_r_' to not load the files
##cl.daphne_base = 'http://aosn.mbari.org/lrauvtds/dodsC/lrauv/daphne/2012/'
cl.daphne_base = cl.dodsBase + "CANON_september2012/lrauv/daphne/realtime/sbdlogs/2012/201209/"
cl.daphne_files = [
# NoValidData '20120910T142840/shore.nc',
# NoValidData '20120910T143107/shore.nc',
"20120910T221418/shore.nc",
# NoValidData '20120911T005835/shore.nc',
"20120911T031754/shore.nc",
示例5:
# 需要导入模块: from CANON import CANONLoader [as 别名]
# 或者: from CANON.CANONLoader import dorado_base [as 别名]
},
# Do not check in .grd files to the repository, keep them in the loaders directory
grdTerrain=os.path.join(parentDir, "Monterey25.grd"),
)
startDatetime = datetime.datetime(2014, 2, 18)
endDatetime = datetime.datetime(2014, 3, 18)
# Aboard the Carson use zuma:
##cl.tdsBase = 'http://zuma.rc.mbari.org/thredds/'
# On shore, use the odss server:
cl.tdsBase = "http://odss.mbari.org/thredds/"
cl.dodsBase = cl.tdsBase + "dodsC/"
# 2-second decimated dorado data
cl.dorado_base = "http://dods.mbari.org/opendap/data/auvctd/surveys/2014/netcdf/" # Dorado archive
cl.dorado_files = [
"Dorado389_2014_050_00_050_00_decim.nc",
"Dorado389_2014_050_01_050_01_decim.nc",
"Dorado389_2014_071_01_071_01_decim.nc",
"Dorado389_2014_071_02_071_02_decim.nc",
"Dorado389_2014_072_00_072_00_decim.nc",
"Dorado389_2014_072_01_072_01_decim.nc",
]
cl.dorado_parms = [
"temperature",
"oxygen",
"nitrate",
"bbp420",
"bbp700",
"fl700_uncorr",