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


Python CANONLoader.tethys_r_parms方法代码示例

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


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

示例1:

# 需要导入模块: from CANON import CANONLoader [as 别名]
# 或者: from CANON.CANONLoader import tethys_r_parms [as 别名]
cl.tethys_base = 'http://dods.mbari.org/opendap/data/auvctd/tethys/2010/netcdf/'
cl.tethys_files = [ '20101018T143308_Chl_.nc',
                    '20101019T001815_Chl_.nc',
                    '20101019T155117_Chl_.nc',
                    '20101020T113957_Chl_.nc',
                  ]
cl.tethys_parms = ['mass_concentration_of_chlorophyll_in_sea_water']

# Realtime shore.nc files - not a DODS server...
cl.tethys_r_base = 'http://aosn.mbari.org/sbdlogs/tethys/2010/201010/'
cl.tethys_r_files = [ '20101018T143308/shore.nc',
                    '20101019T001815/shore.nc',
                    '20101019T155117/shore.nv',
                    '20101020T113957/shore.nc',
                  ]
cl.tethys_r_parms = ['mass_concentration_of_chlorophyll_in_sea_water']
cl.tethys_aux_coords = {}
for v in cl.tethys_r_parms:
    cl.tethys_aux_coords[v] = {'time': 'Time', 'latitude': 'latitude', 'longitude': 'longitude', 'depth': 'depth'}

cl.martin_base = 'http://odss.mbari.org/thredds/dodsC/jhm_underway'
cl.martin_files = [ '27710_jhmudas_v1.nc',
                    '27810_jhmudas_v1.nc',
                    '27910_jhmudas_v1.nc',
                    '28010_jhmudas_v1.nc',
                    '28110_jhmudas_v1.nc',
                    '28410_jhmudas_v1.nc',
                    '28510_jhmudas_v1.nc',
                    '28610_jhmudas_v1.nc',
                    '28710_jhmudas_v1.nc',
                    '29010_jhmudas_v1.nc',
开发者ID:danellecline,项目名称:stoqs,代码行数:33,代码来源:loadCANON_october2010.py

示例2:

# 需要导入模块: from CANON import CANONLoader [as 别名]
# 或者: from CANON.CANONLoader import tethys_r_parms [as 别名]
    "20120910T190223/shore.nc",
    "20120911T125230/shore.nc",
    "20120912T003318/shore.nc",
    "20120912T015450/shore.nc",
    "20120912T142126/shore.nc",
    "20120915T030845/shore.nc",
    "20120917T025522/shore.nc",
    "20120917T111359/shore.nc",
    "20120917T123308/shore.nc",
    "20120917T150614/shore.nc",
    "20120917T151928/shore.nc",
]
cl.tethys_r_parms = [
    "platform_battery_charge",
    "sea_water_temperature",
    "downwelling_photosynthetic_photon_flux_in_sea_water",
    "mass_concentration_of_oxygen_in_sea_water",
    "mass_concentration_of_chlorophyll_in_sea_water",
    "mole_concentration_of_nitrate_in_sea_water",
]

# Postrecovery full-resolution (_d_) tethys data
cl.tethys_d_base = "http://elvis.shore.mbari.org:8080/thredds/dodsC/lrauv/tethys/2012/"
cl.tethys_d_files = []
cl.tethys_d_parms = [
    "sea_water_temperature",
    "sea_water_salinity",
    "sea_water_density",
    "volume_scattering_470_nm",
    "volume_scattering_650_nm",
    "volume_scattering_650_nm",
    "mass_concentration_of_oxygen_in_sea_water",
开发者ID:livyliv83,项目名称:stoqs,代码行数:34,代码来源:loadCANON_september2012.py


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