当前位置: 首页>>代码示例>>Python>>正文


Python CANONLoader.l_662_files方法代码示例

本文整理汇总了Python中CANON.CANONLoader.l_662_files方法的典型用法代码示例。如果您正苦于以下问题:Python CANONLoader.l_662_files方法的具体用法?Python CANONLoader.l_662_files怎么用?Python CANONLoader.l_662_files使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在CANON.CANONLoader的用法示例。


在下文中一共展示了CANONLoader.l_662_files方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1:

# 需要导入模块: from CANON import CANONLoader [as 别名]
# 或者: from CANON.CANONLoader import l_662_files [as 别名]
                    'Dorado389_2013_295_01_295_01_decim.nc', 
                    'Dorado389_2013_296_00_296_00_decim.nc', 
                    'Dorado389_2013_296_01_296_01_decim.nc', 
                    'Dorado389_2013_297_01_297_01_decim.nc', 
                    'Dorado389_2013_297_02_297_02_decim.nc', 
                    'Dorado389_2013_298_00_298_00_decim.nc',
                    'Dorado389_2013_298_01_298_01_decim.nc',
                    'Dorado389_2013_301_02_301_02_decim.nc',
                    'Dorado389_2013_301_03_301_03_decim.nc',
                    'Dorado389_2013_301_04_301_04_decim.nc',
                  ]
cl.dorado_parms = [ 'temperature', 'oxygen', 'nitrate', 'bbp420', 'bbp700', 'fl700_uncorr', 'salinity', 'biolume' ]

# 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_20130711_TS.nc']
cl.l_662_parms = ['TEMP', 'PSAL', 'FLU2']
cl.l_662_startDatetime = startDatetime
cl.l_662_endDatetime = endDatetime


# Rachel Carson Underway CTD
cl.rcuctd_base = cl.dodsBase + 'CANON_october2013/Platforms/Ships/Rachel_Carson/uctd/'
cl.rcuctd_files = [ 
                    'simz2013plm06.nc', 'simz2013plm07.nc', 'simz2013plm08.nc', 'simz2013plm09.nc', 'simz2013plm10.nc',
                  ]
cl.rcuctd_parms = [ 'TEMP', 'PSAL', 'xmiss', 'wetstar' ]

# Rachel Carson Profile CTD
cl.pctdDir = 'CANON_october2013/Platforms/Ships/Rachel_Carson/pctd/'
cl.rcpctd_base = cl.dodsBase + cl.pctdDir
开发者ID:Brett-Rankin,项目名称:stoqs,代码行数:33,代码来源:loadSIMZ_oct2013.py

示例2: sorted

# 需要导入模块: from CANON import CANONLoader [as 别名]
# 或者: from CANON.CANONLoader import l_662_files [as 别名]
    for url in sorted(urls):
      file = '/'.join(url.split('/')[-3:])
      files.append(file)
  files.append(',')
  setattr(cl, p + '_files', files) 
  setattr(cl, p  + '_startDatetime', startdate) 
  setattr(cl, p + '_endDatetime', enddate)
"""
######################################################################
#  GLIDERS
######################################################################
# Glider data files from CeNCOOS thredds server
# L_662
# cl.l_662_base = 'http://www.cencoos.org/thredds/dodsC/gliders/Line66/'
cl.l_662_base = "http://legacy.cencoos.org/thredds/dodsC/gliders/Line66/"
cl.l_662_files = ["OS_Glider_L_662_20150813_TS.nc"]
# OS_Glider_L_662_20150813_TS.nc most recent deployment
cl.l_662_parms = ["TEMP", "PSAL", "FLU2"]
cl.l_662_startDatetime = startdate
cl.l_662_endDatetime = enddate

# NPS_29
# cl.nps29_base = 'http://www.cencoos.org/thredds/dodsC/gliders/Line66/'
# cl.nps29_files = [ 'OS_Glider_NPS_G29_20140930_TS.nc' ]
cl.nps29_parms = ["TEMP", "PSAL"]
cl.nps29_startDatetime = startdate
cl.nps29_endDatetime = enddate

# UCSC_294
# cl.ucsc294_base = 'http://data.ioos.us/gliders/thredds/dodsC/deployments/mbari/UCSC294-20150430T2218/'
# cl.ucsc294_files = [ 'UCSC294-20150430T2218.nc3.nc' ]
开发者ID:josephmfaulkner,项目名称:stoqs,代码行数:33,代码来源:loadCANON_os2015.py

示例3: setattr

# 需要导入模块: from CANON import CANONLoader [as 别名]
# 或者: from CANON.CANONLoader import l_662_files [as 别名]
        setattr(cl, p  + '_startDatetime', startdate)
        setattr(cl, p + '_endDatetime', enddate)

    except FileNotFound:
        continue

######################################################################
#  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_20151124_TS.nc' ]  ## this file was current Jan 1 2016 to about March 3 2016.
# cl.l_662_files = [ 'OS_Glider_L_662_20160310_TS.nc' ]  ## changed to this file about March 3, 2016
cl.l_662_files = [ 'OS_Glider_L_662_20160628_TS.nc' ]  ## changed to this file about June 28, 2016
cl.l_662_parms = ['TEMP', 'PSAL', 'FLU2']
cl.l_662_startDatetime = startdate
cl.l_662_endDatetime = enddate

# NPS_29 ## not in this campaign
cl.nps29_base = 'http://legacy.cencoos.org/thredds/dodsC/gliders/Line66/'
cl.nps29_files = [ 'OS_Glider_NPS_Glider_29_20120524_TS.nc' ]
cl.nps29_parms = ['TEMP', 'PSAL']
cl.nps29_startDatetime = startdate
cl.nps29_endDatetime = enddate

# SG_621 ## KISS glider from Caltech/JPL
cl.sg621_base = cl.dodsBase + 'CANON/2016_Sep/Platforms/Gliders/Seaglider/'
cl.sg621_files = ['p621{:04d}.nc'.format(i) for i in range(48,113)] 
cl.sg621_parms = ['temperature', 'salinity']
开发者ID:brutzman,项目名称:stoqs,代码行数:32,代码来源:loadCANON_september2016.py

示例4:

# 需要导入模块: from CANON import CANONLoader [as 别名]
# 或者: from CANON.CANONLoader import l_662_files [as 别名]
                    'mass_concentration_of_chlorophyll_in_sea_water']
cl.tethys_startDatetime = startdate
cl.tethys_endDatetime = enddate

cl.fulmar_base = []
cl.fulmar_files = []
cl.fulmar_parms = []

# NPS glider 
cl.nps_g29_base = 'http://legacy.cencoos.org/thredds/dodsC/gliders/Line66/'
cl.nps_g29_files = ['OS_Glider_NPS_G29_20120524_TS.nc']
cl.nps_g29_parms = ['TEMP', 'PSAL', 'OPBS']

# Spray glider - for just the duration of the campaign
cl.l_662_base = 'http://legacy.cencoos.org/thredds/dodsC/gliders/Line66/'
cl.l_662_files = ['OS_Glider_L_662_20120424_TS.nc']
cl.l_662_parms = ['TEMP', 'PSAL', 'FLU2']
cl.l_662_startDatetime = startdate
cl.l_662_endDatetime = enddate

# Liquid Robotics Waveglider
cl.waveglider_base = 'http://odss.mbari.org/thredds/dodsC/CANON/2012_May/waveglider/netcdf/'
cl.waveglider_files = [ 
                        'waveglider_gpctd_WG.nc',
##                        'waveglider_pco2_WG.nc',
                      ]
cl.waveglider_parms = [ 
                        'TEMP', 'PSAL', 'oxygen', 
##                        'ZeroPumpOn_pco2', 'ZeroPumpOn_Temp', 'ZeroPumpOn_Pressure', 'ZeroPumpOff_pco2', 'ZeroPumpOff_Temp',
##                        'ZeroPumpOff_Pressure', 'StandardFlowOn_Pressure', 'StandardFlowOff_pco2_Humidity', 'StandardFlowOff_pco2',
##                        'StandardFlowOff_Temp', 'StandardFlowOff_Pressure', 'Longitude', 'Latitude', 'EquilPumpOn_pco2', 'EquilPumpOn_Temp',
开发者ID:StevenLudwig,项目名称:stoqs,代码行数:33,代码来源:loadCANON_may2012.py

示例5:

# 需要导入模块: from CANON import CANONLoader [as 别名]
# 或者: from CANON.CANONLoader import l_662_files [as 别名]
                   'Dorado389_2014_282_03_282_03_decim.nc',
				   ]
cl.dorado_parms = [ 'temperature', 'oxygen', 'nitrate', 'bbp420', 'bbp700',
                    'fl700_uncorr', 'salinity', 'biolume', 'rhodamine',
                    'sepCountList', 'mepCountList',
                    'roll', 'pitch', 'yaw',
                  ]


######################################################################
#  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_20140923_TS.nc' ]
cl.l_662_parms = ['TEMP', 'PSAL', 'FLU2']
cl.l_662_startDatetime = startdate
cl.l_662_endDatetime = enddate

# NPS_29
cl.nps29_base = 'http://legacy.cencoos.org/thredds/dodsC/gliders/Line66/'
cl.nps29_files = [ 'OS_Glider_NPS_G29_20140930_TS.nc' ]
cl.nps29_parms = ['TEMP', 'PSAL', 'RHOD']
cl.nps29_startDatetime = startdate
cl.nps29_endDatetime = enddate


######################################################################
# Wavegliders
######################################################################
开发者ID:danellecline,项目名称:stoqs,代码行数:33,代码来源:loadCANON_september2014.py

示例6: len

# 需要导入模块: from CANON import CANONLoader [as 别名]
# 或者: from CANON.CANONLoader import l_662_files [as 别名]
    if len(urls) > 0 :
        for url in sorted(urls):
            file = '/'.join(url.split('/')[-3:])
            files.append(file)
    setattr(cl, p + '_files', files)
    setattr(cl, p  + '_startDatetime', startdate)
    setattr(cl, p + '_endDatetime', enddate)

######################################################################
#  GLIDERS
######################################################################
# Glider data files from CeNCOOS thredds server
# L_662
# cl.l_662_base = 'http://www.cencoos.org/thredds/dodsC/gliders/Line66/'
cl.l_662_base = 'http://legacy.cencoos.org/thredds/dodsC/gliders/Line66/'
cl.l_662_files = [ 'OS_Glider_L_662_20150813_TS.nc' ]
# OS_Glider_L_662_20150813_TS.nc most recent deployment
cl.l_662_parms = ['TEMP', 'PSAL', 'FLU2']
cl.l_662_startDatetime = startdate
cl.l_662_endDatetime = enddate

# NPS_29
#cl.nps29_base = 'http://www.cencoos.org/thredds/dodsC/gliders/Line66/'
#cl.nps29_files = [ 'OS_Glider_NPS_G29_20140930_TS.nc' ]
cl.nps29_parms = ['TEMP', 'PSAL']
cl.nps29_startDatetime = startdate
cl.nps29_endDatetime = enddate

# UCSC_294
#cl.ucsc294_base = 'http://data.ioos.us/gliders/thredds/dodsC/deployments/mbari/UCSC294-20150430T2218/'
#cl.ucsc294_files = [ 'UCSC294-20150430T2218.nc3.nc' ]
开发者ID:carueda,项目名称:stoqs,代码行数:33,代码来源:loadCANON_os2015.py

示例7:

# 需要导入模块: from CANON import CANONLoader [as 别名]
# 或者: from CANON.CANONLoader import l_662_files [as 别名]
                     'Dorado389_2011_263_00_263_00_decim.nc',
                     'Dorado389_2011_264_00_264_00_decim.nc',
                     'Dorado389_2011_285_01_285_01_decim.nc',
                     'Dorado389_2011_286_00_286_00_decim.nc',
                  ]
cl.dorado_parms = [ 'temperature', 'oxygen', 'nitrate', 'bbp420', 'bbp700',
                    'fl700_uncorr', 'salinity', 'biolume',
                    'sepCountList', 'mepCountList',
                    'roll', 'pitch', 'yaw',
                  ]


# special location for spray glider data
# Spray glider - for just the duration of the campaign
cl.l_662_base = 'http://legacy.cencoos.org/thredds/dodsC/gliders/Line66/'
cl.l_662_files = ['OS_Glider_L_662_20110915_TS.nc',
                 ]

cl.l_662_parms = ['TEMP', 'PSAL', 'FLU2']
cl.l_662_startDatetime = startdate
cl.l_662_endDatetime = enddate


######################################################################
#  WESTERN FLYER
######################################################################

cl.wfuctd_base = cl.dodsBase + 'CANON_september2011/wf/uctd/'
cl.wfuctd_files = [
                    '27211WF01.nc', '27411WF01.nc', '27511WF01.nc', '27711WF01.nc', 
                    '27811WF01.nc', '27911wf01.nc', '28011wf01.nc', '28111wf01.nc', '28211wf01.nc',
                  ]
开发者ID:danellecline,项目名称:stoqs,代码行数:34,代码来源:loadCANON_september2011.py

示例8:

# 需要导入模块: from CANON import CANONLoader [as 别名]
# 或者: from CANON.CANONLoader import l_662_files [as 别名]
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', 'salinity', 'biolume',
                    'roll', 'pitch', 'yaw',
                    'sepCountList', 'mepCountList' ]

# Spray glider - for just the duration of the campaign
cl.l_662_base = 'http://legacy.cencoos.org/thredds/dodsC/gliders/Line66/'
cl.l_662_files = ['OS_Glider_L_662_20131125_TS.nc','OS_Glider_L_662_20140311_TS.nc']
cl.l_662_parms = ['TEMP', 'PSAL', 'FLU2']
cl.l_662_startDatetime = startDatetime
cl.l_662_endDatetime = endDatetime

# Rachel Carson Underway CTD
cl.rcuctd_base = cl.dodsBase + 'SIMZ/2014_spring/Platforms/Ships/Rachel_Carson/uctd/'
cl.rcuctd_files = [ 
                    '2014simzplm01.nc', '2014simzplm02.nc', 
                  ]
cl.rcuctd_parms = [ 'TEMP', 'PSAL', 'xmiss', 'wetstar' ]

# Rachel Carson Profile CTD
cl.pctdDir = 'SIMZ/2014_spring/Platforms/Ships/Rachel_Carson/pctd/'
cl.rcpctd_base = cl.dodsBase + cl.pctdDir
cl.rcpctd_files = [ 
开发者ID:danellecline,项目名称:stoqs,代码行数:33,代码来源:loadSIMZ_spring2014.py

示例9:

# 需要导入模块: from CANON import CANONLoader [as 别名]
# 或者: from CANON.CANONLoader import l_662_files [as 别名]
# insert a comment to test mercurial update
# insert another comment to test mercuial update again
# another comment for [email protected] as owner

# special location for dorado data
#cl.dorado_base = 'http://dods.mbari.org/opendap/data/auvctd/surveys/2011/netcdf/'
#cl.dorado_files = [# 'Dorado389_2011_249_00_249_00_decim.nc',
                   # 'Dorado389_2011_250_01_250_01_decim.nc'
#                     'Dorado389_2011_255_00_255_00_decim.nc' ]
# already loaded dorado file 249

# special location for spray glider data
# 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_20110915_TS.nc',
                  #'OS_Glider_L_662_20120816_TS.nc',
                  'OS_Glider_L_662_20130711_TS.nc']

cl.l_662_parms = ['TEMP', 'PSAL', 'FLU2']
#cl.l_662_startDatetime = datetime.datetime(2011, 9, 15)
#cl.l_662_endDatetime = datetime.datetime(2012, 1, 04)

cl.l_662_startDatetime = datetime.datetime(2013, 7, 16) #already loaded 7-11 to 7-15
cl.l_662_endDatetime = datetime.datetime(2013, 8, 16)

cl.wfuctd_base = cl.dodsBase + 'CANON_september2011/wf/uctd/'
cl.wfuctd_files = [ 
'24211WF01.nc',
'27211WF01.nc',
'27411WF01.nc',
'27511WF01.nc',
开发者ID:Brett-Rankin,项目名称:stoqs,代码行数:33,代码来源:loadCANON_september2011_testing_duane.py

示例10:

# 需要导入模块: from CANON import CANONLoader [as 别名]
# 或者: from CANON.CANONLoader import l_662_files [as 别名]
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"]
cl.espdrift_parms = ["TEMP", "PSAL", "chl", "chl_ini", "no3"]
开发者ID:livyliv83,项目名称:stoqs,代码行数:33,代码来源:loadCANON_september2012.py

示例11: len

# 需要导入模块: from CANON import CANONLoader [as 别名]
# 或者: from CANON.CANONLoader import l_662_files [as 别名]
    if len(urls) > 0:
        for url in sorted(urls):
            file = "/".join(url.split("/")[-3:])
            files.append(file)
    setattr(cl, p + "_files", files)
    setattr(cl, p + "_startDatetime", startdate)
    setattr(cl, p + "_endDatetime", enddate)

######################################################################
#  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_20151124_TS.nc' ]  ## this file was current Jan 1 2016 to about March 3 2016.
cl.l_662_files = ["OS_Glider_L_662_20160310_TS.nc"]  ## changed to this file about March 3, 2016
cl.l_662_parms = ["TEMP", "PSAL", "FLU2"]
cl.l_662_startDatetime = startdate
cl.l_662_endDatetime = enddate

# NPS_29
# cl.nps29_base = 'http://www.cencoos.org/thredds/dodsC/gliders/Line66/'
# cl.nps29_files = [ 'OS_Glider_NPS_G29_20140930_TS.nc' ]
cl.nps29_parms = ["TEMP", "PSAL"]
cl.nps29_startDatetime = startdate
cl.nps29_endDatetime = enddate

# UCSC_294
# cl.ucsc294_base = 'http://data.ioos.us/gliders/thredds/dodsC/deployments/mbari/UCSC294-20150430T2218/'
# cl.ucsc294_files = [ 'UCSC294-20150430T2218.nc3.nc' ]
# cl.ucsc294_parms = ['TEMP', 'PSAL']
开发者ID:vitoupen,项目名称:stoqs,代码行数:33,代码来源:loadCANON_os2016.py

示例12: produced

# 需要导入模块: from CANON import CANONLoader [as 别名]
# 或者: from CANON.CANONLoader import l_662_files [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 defaults in 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_20151124_TS.nc',
                   'OS_Glider_L_662_20160310_TS.nc',
                   'OS_Glider_L_662_20160628_TS.nc' ]
cl.l_662_parms = ['TEMP', 'PSAL', 'FLU2']
cl.l_662_startDatetime = startdate
cl.l_662_endDatetime = enddate

# NPS_29
#cl.nps29_base = 'http://legacy.cencoos.org/thredds/dodsC/gliders/Line66/'
#cl.nps29_files = [ 'OS_Glider_NPS_G29_20140930_TS.nc' ]
cl.nps29_parms = ['TEMP', 'PSAL']
cl.nps29_startDatetime = startdate
cl.nps29_endDatetime = enddate

# NPS_34
cl.nps34_base = 'http://legacy.cencoos.org/thredds/dodsC/gliders/Line66/'
cl.nps34_files = [ 'OS_Glider_NPS_G34_20160720_TS.nc' ] ## deployed July 19 2016
开发者ID:danellecline,项目名称:stoqs,代码行数:33,代码来源:loadCANON_os2016.py

示例13: len

# 需要导入模块: from CANON import CANONLoader [as 别名]
# 或者: from CANON.CANONLoader import l_662_files [as 别名]
  if len(urls) > 0 :
    for url in sorted(urls):
      file = '/'.join(url.split('/')[-3:])
      files.append(file)
  files.append(',')
  setattr(cl, p + '_files', files)
'''

######################################################################
#  GLIDERS
######################################################################
# Glider data files from CeNCOOS thredds server
# L_662
# cl.l_662_base = 'http://www.cencoos.org/thredds/dodsC/gliders/Line66/'
cl.l_662_base = 'http://legacy.cencoos.org/thredds/dodsC/gliders/Line66/'
cl.l_662_files = [ 'OS_Glider_L_662_20150427_TS.nc' ]
cl.l_662_parms = ['TEMP', 'PSAL', 'FLU2']
cl.l_662_startDatetime = startdate
cl.l_662_endDatetime = enddate

# NPS_29
#cl.nps29_base = 'http://www.cencoos.org/thredds/dodsC/gliders/Line66/'
#cl.nps29_files = [ 'OS_Glider_NPS_G29_20140930_TS.nc' ]
#cl.nps29_parms = ['TEMP', 'PSAL']
#cl.nps29_startDatetime = startdate
#cl.nps29_endDatetime = enddate

# slocum_294  also known as UCSC294
cl.slocum_294_base = 'http://data.ioos.us/gliders/thredds/dodsC/deployments/mbari/UCSC294-20150430T2218/'
cl.slocum_294_files = [ 'UCSC294-20150430T2218.nc3.nc' ]
cl.slocum_294_parms = ['temperature', 'salinity']
开发者ID:StevenLudwig,项目名称:stoqs,代码行数:33,代码来源:loadCANON_may2015.py

示例14: setattr

# 需要导入模块: from CANON import CANONLoader [as 别名]
# 或者: from CANON.CANONLoader import l_662_files [as 别名]
        setattr(cl, p  + '_startDatetime', startdate)
        setattr(cl, p + '_endDatetime', enddate)

    except FileNotFound:
        continue

######################################################################
#  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_20151124_TS.nc' ]  ## this file was current Jan 1 2016 to about March 3 2016.
# cl.l_662_files = [ 'OS_Glider_L_662_20160310_TS.nc' ]  ## changed to this file about March 3, 2016
cl.l_662_files = [ 'OS_Glider_L_662_20160628_TS.nc',   ## changed to this file about June 28, 2016. End Aug 10 2016.
                   'OS_Glider_L_662_20160817_TS.nc',   ## deployed after servicing Aug 17 2016
                   'OS_Glider_L_662_20160913_TS.nc' ]  ## deployed new glider Sept 13 2016
cl.l_662_parms = ['TEMP', 'PSAL', 'FLU2']
cl.l_662_startDatetime = startdate
cl.l_662_endDatetime = enddate

# NPS_29 ## not in this campaign
cl.nps29_base = 'http://legacy.cencoos.org/thredds/dodsC/gliders/Line66/'
cl.nps29_files = [ 'OS_Glider_NPS_Glider_29_20120524_TS.nc' ]
cl.nps29_parms = ['TEMP', 'PSAL']
cl.nps29_startDatetime = startdate
cl.nps29_endDatetime = enddate

# SG_621 ## KISS glider from Caltech/JPL
cl.sg621_base = cl.dodsBase + 'CANON/2016_Sep/Platforms/Gliders/Seaglider/'
cl.sg621_files = ['p621{:04d}.nc'.format(i) for i in range(48,421)] ## index needs to be 1 higher than terminal file name
开发者ID:carueda,项目名称:stoqs,代码行数:33,代码来源:loadCANON_september2016.py

示例15:

# 需要导入模块: from CANON import CANONLoader [as 别名]
# 或者: from CANON.CANONLoader import l_662_files [as 别名]
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']
##cl.l_662_parms = ['TEMP', 'PSAL', 'FLU2']
开发者ID:Brett-Rankin,项目名称:stoqs,代码行数:33,代码来源:loadCANON_april2014.py


注:本文中的CANON.CANONLoader.l_662_files方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。