read_bag

Read data from a bathymetric attributed grid (BAG) file
270 download
Aggiornato 7 apr 2017

Visualizza la licenza

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)

Cita come

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

Compatibilità della release di MATLAB
Creato con R2015b
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux

Community Treasure Hunt

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

Start Hunting!
Versione Pubblicato Note della release
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