File: read_grid.h

package info (click to toggle)
vis5d 4.3-5
  • links: PTS
  • area: main
  • in suites: slink
  • size: 16,856 kB
  • ctags: 6,127
  • sloc: ansic: 66,158; fortran: 4,470; makefile: 1,683; tcl: 414; sh: 69
file content (30 lines) | stat: -rw-r--r-- 363 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* read_grid.h */


/*
 * Functions for reading with McIDAS GRID files
 */


#ifndef READ_GRID_H
#define READ_GRID_H


#include "grid.h"



/*
 * Get a description of the contents of a McIDAS GRID file.
 */
extern int get_grid_info( char *name, struct grid_db *db );


/*
 * Get actual grid data.
 */
extern float *get_grid_data( struct grid_info *g );



#endif