File: grid_structs.h

package info (click to toggle)
grass 6.0.0-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 38,764 kB
  • ctags: 31,167
  • sloc: ansic: 320,650; tcl: 25,669; cpp: 10,098; sh: 9,695; makefile: 4,714; fortran: 1,846; yacc: 493; lex: 462; perl: 133; sed: 1
file content (13 lines) | stat: -rw-r--r-- 367 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
struct grid_description
{
    int    num_rows ;
    int    num_cols ;
    int    num_vect_rows ;
    int    num_vect_cols ;
    double length ;           /*  distance to shift to the east  */
    double width ;           /*  distance to shift to the north  */
    double origin_x ;        /*  lower left point of grid  */
    double origin_y ;
    double angle ;
};