USML
ascii_arc_bathy.h
1 
5 #ifndef USML_OCEAN_ASCII_ARC_BATHY_H
6 #define USML_OCEAN_ASCII_ARC_BATHY_H
7 
8 #include <usml/ublas/ublas.h>
9 #include <usml/types/types.h>
10 
11 namespace usml {
12 namespace ocean {
13 
14 using namespace usml::ublas ;
15 using namespace usml::types ;
16 
19 
52 class USML_DECLSPEC ascii_arc_bathy : public data_grid<double,2> {
53 
54  public:
55 
63  ascii_arc_bathy( const char* filename ) ;
64 
65 } ;
66 
68 } // end of namespace ocean
69 } // end of namespace usml
70 
71 #endif
Extracts bathymetry data from ASCII files with an ARC header.
Definition: ascii_arc_bathy.h:52
N-dimensional data set and its associated axes.
Definition: data_grid.h:64