read_bag

Read data from a bathymetric attributed grid (BAG) file
ダウンロード: 270
更新 2017/4/7

ライセンスの表示

BAG files are common export format from many hydrographic survey software packages (eg. Caris). The file structure of BAG files is based on HDF5 and recent versions of Matlab (as of 2011a) has built-in tools to read these files. The metadata in BAG files is embedded in an XML structure that READ_BAG parses. Currently, only a small subset of the available metadata is currently read. More information about the BAG file format can be found here:
https://marinemetadata.org/references/bag
And a repository of bathymetric data stored in BAG file format can be found here:
https://maps.ngdc.noaa.gov/viewers/bathymetry/
Example usage:
%1) read the entire contents of the bag file
bag_file = 'foo.bag';
bag = read_bag(bag_file);
% 2) Read a portion of the bag file (between arbitrary xmin, xmax, ymin,ymax)
bag=read_bag(bag_file,'xlim', [xmin xmax],'ylim',[ymin ymax]);
% 3) Sub-sample every 3rd point in the bag file
bag = read_bag(bag_file,'stride',3)

引用

Andrew Stevens (2024). read_bag (https://www.mathworks.com/matlabcentral/fileexchange/52853-read_bag), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R2015b
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
タグ タグを追加

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
バージョン 公開済み リリース ノート
1.12.0.0

fixed a bug reading the metadata xml

1.11.0.0

fixed typos in documentation

1.1.0.0

update description

1.0.0.0