read_bag

Read data from a bathymetric attributed grid (BAG) file
269 Downloads
Updated 7 Apr 2017

View License

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)

Cite As

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

MATLAB Release Compatibility
Created with R2015b
Compatible with any release
Platform Compatibility
Windows macOS Linux
Tags Add Tags

Community Treasure Hunt

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

Start Hunting!
Version Published Release Notes
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