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


Python xarray.open_dataarray方法代码示例

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


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

示例1: test_surface_with_outfile_param

# 需要导入模块: import xarray [as 别名]
# 或者: from xarray import open_dataarray [as 别名]
def test_surface_with_outfile_param():
    """
    Run surface with the -Goutputfile.nc parameter
    """
    ship_data = load_sample_bathymetry()
    data = ship_data.values  # convert pandas.DataFrame to numpy.ndarray
    try:
        output = surface(
            data=data, spacing="5m", region=[245, 255, 20, 30], outfile=TEMP_GRID
        )
        assert output is None  # check that output is None since outfile is set
        assert os.path.exists(path=TEMP_GRID)  # check that outfile exists at path
        with xr.open_dataarray(TEMP_GRID) as grid:
            assert isinstance(grid, xr.DataArray)  # ensure netcdf grid loads ok
    finally:
        os.remove(path=TEMP_GRID)
    return output 
开发者ID:GenericMappingTools,项目名称:pygmt,代码行数:19,代码来源:test_surface.py

示例2: test_surface_short_aliases

# 需要导入模块: import xarray [as 别名]
# 或者: from xarray import open_dataarray [as 别名]
def test_surface_short_aliases():
    """
    Run surface using short aliases -I for spacing, -R for region, -G for
    outfile
    """
    ship_data = load_sample_bathymetry()
    data = ship_data.values  # convert pandas.DataFrame to numpy.ndarray
    try:
        output = surface(data=data, I="5m", R=[245, 255, 20, 30], G=TEMP_GRID)
        assert output is None  # check that output is None since outfile is set
        assert os.path.exists(path=TEMP_GRID)  # check that outfile exists at path
        with xr.open_dataarray(TEMP_GRID) as grid:
            assert isinstance(grid, xr.DataArray)  # ensure netcdf grid loads ok
    finally:
        os.remove(path=TEMP_GRID)
    return output 
开发者ID:GenericMappingTools,项目名称:pygmt,代码行数:18,代码来源:test_surface.py

示例3: open_netcdf

# 需要导入模块: import xarray [as 别名]
# 或者: from xarray import open_dataarray [as 别名]
def open_netcdf(cls, filename: str) -> "IntensityTable":
        """
        Load an IntensityTable from Netcdf.

        Parameters
        ----------
        filename : str
            File to load.

        Returns
        -------
        IntensityTable

        """
        loaded = xr.open_dataarray(filename)
        intensity_table = cls(
            loaded.data,
            loaded.coords,
            loaded.dims,
            attrs=loaded.attrs,
        )
        return intensity_table 
开发者ID:spacetx,项目名称:starfish,代码行数:24,代码来源:intensity_table.py

示例4: load

# 需要导入模块: import xarray [as 别名]
# 或者: from xarray import open_dataarray [as 别名]
def load(cls, filename: str) -> "ExpressionMatrix":  # type: ignore
        """load an ExpressionMatrix from Netcdf

        Parameters
        ----------
        filename : str
            File to load

        Returns
        -------
        ExpressionMatrix

        """
        loaded = xr.open_dataarray(filename)
        expression_matrix = cls(
            loaded.data,
            loaded.coords,
            loaded.dims
        )
        return expression_matrix 
开发者ID:spacetx,项目名称:starfish,代码行数:22,代码来源:expression_matrix.py

示例5: open_dataarray

# 需要导入模块: import xarray [as 别名]
# 或者: from xarray import open_dataarray [as 别名]
def open_dataarray(self):
        """
        Use xarray.open_dataarray to read a netcdf file.
        """
        file_name = os.path.join(self.data_dir, "data_array.nc")
        xarray.open_dataarray(file_name) 
开发者ID:recipy,项目名称:recipy,代码行数:8,代码来源:run_xarray.py

示例6: open_netcdf

# 需要导入模块: import xarray [as 别名]
# 或者: from xarray import open_dataarray [as 别名]
def open_netcdf(cls, path: Union[str, Path]) -> "LabelImage":
        """Load a label image saved as a netcdf file from disk.

        Parameters
        ----------
        path : Union[str, Path]
            Path of the label image to instantiate from.

        Returns
        -------
        label_image : LabelImage
            Label image from the path.
        """
        label_image = xr.open_dataarray(path)
        if (
                AttrKeys.DOCTYPE not in label_image.attrs
                or label_image.attrs[AttrKeys.DOCTYPE] != DOCTYPE_STRING
                or AttrKeys.VERSION not in label_image.attrs
        ):
            raise ValueError(f"{path} does not appear to be a starfish label image")
        if not (
                MIN_SUPPORTED_VERSION
                <= Version(label_image.attrs[AttrKeys.VERSION])
                <= MAX_SUPPORTED_VERSION):
            raise ValueError(
                f"{path} contains a label image, but the version "
                f"{label_image.attrs[AttrKeys.VERSION]} is not supported")

        return cls(label_image) 
开发者ID:spacetx,项目名称:starfish,代码行数:31,代码来源:label_image.py

示例7: rinexobs

# 需要导入模块: import xarray [as 别名]
# 或者: from xarray import open_dataarray [as 别名]
def rinexobs(fn, ofn=None):
    """
    Program overviw:
    1) scan the whole file for the header and other information using scan(lines)
    2) each epoch is read and the information is put in a 4-D xarray.DataArray
    3)  rinexobs can also be sped up with if an h5 file is provided,
        also rinexobs can save the rinex file as an h5. The header will
        be returned only if specified.

    rinexobs() returns the data in a 4-D xarray.DataArray, [Parameter,Sat #,time,data/loss of lock/signal strength]
    """
    # open file, get header info, possibly speed up reading data with a premade h5 file
    fn = Path(fn).expanduser()
    with fn.open('r') as f:
        tic = time()
        lines = f.read().splitlines(True)
        header, version, headlines, headlength, obstimes, sats, svset = scan(lines)
        print(fn, 'is a RINEX', version, 'file.', fn.stat().st_size//1000, 'kB.')
        if fn.suffix == '.nc':
            data = xarray.open_dataarray(str(fn), group='OBS')
        elif fn.suffix == '.h5':
            logging.warning('HDF5 is deprecated in this program, please use NetCDF format')
            import pandas
            data = pandas.read_hdf(fn, key='OBS')
        else:
            data = processBlocks(lines, header, obstimes, svset, headlines, headlength, sats)

        print("finished in {:.2f} seconds".format(time()-tic))

    # write an h5 file if specified
    if ofn:
        ofn = Path(ofn).expanduser()
        print('saving OBS data to', ofn)
        if ofn.is_file():
            wmode = 'a'
        else:
            wmode = 'w'
        data.to_netcdf(ofn, group='OBS', mode=wmode)

    return data, header


# this will scan the document for the header info and for the line on
# which each block starts 
开发者ID:geospace-code,项目名称:georinex,代码行数:46,代码来源:rinex_reader.py

示例8: load_earth_relief

# 需要导入模块: import xarray [as 别名]
# 或者: from xarray import open_dataarray [as 别名]
def load_earth_relief(resolution="01d"):
    """
    Load Earth relief grids (topography and bathymetry) in various resolutions.

    The grids are downloaded to a user data directory (usually ``~/.gmt/``) the
    first time you invoke this function. Afterwards, it will load the data from
    the cache. So you'll need an internet connection the first time around.

    These grids can also be accessed by passing in the file name
    ``'@earth_relief_XXm'`` or ``'@earth_relief_XXs'`` to any grid
    plotting/processing function.

    Parameters
    ----------
    resolution : str
        The grid resolution. The suffix ``d``, ``m`` and ``s`` stand for
        arc-degree, arc-minute and arc-second. It can be ``'01d'``, ``'30m'``,
        ``'20m'``, ``'15m'``, ``'10m'``, ``'06m'``, ``'05m'``, ``'04m'``,
        ``'03m'``, ``'02m'``, ``'01m'``, ``'30s'`` or ``'15s'``.

    Returns
    -------
    grid : xarray.DataArray
        The Earth relief grid. Coordinates are latitude and longitude in
        degrees. Relief is in meters.

    """
    _is_valid_resolution(resolution)
    fname = which("@earth_relief_{}".format(resolution), download="u")
    grid = xr.open_dataarray(fname)
    # Add some metadata to the grid
    grid.name = "elevation"
    grid.attrs["long_name"] = "elevation relative to the geoid"
    grid.attrs["units"] = "meters"
    grid.attrs["vertical_datum"] = "EMG96"
    grid.attrs["horizontal_datum"] = "WGS84"
    # Remove the actual range because it gets outdated when indexing the grid,
    # which causes problems when exporting it to netCDF for usage on the
    # command-line.
    grid.attrs.pop("actual_range")
    for coord in grid.coords:
        grid[coord].attrs.pop("actual_range")
    return grid 
开发者ID:GenericMappingTools,项目名称:pygmt,代码行数:45,代码来源:earth_relief.py


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