awips2/ncep/gov.noaa.nws.ncep.ui.nsharp/BigNsharp/dgsubg.h
root 06a8b51d6d Initial revision of AWIPS2 11.9.0-7p5
Former-commit-id: 64fa9254b946eae7e61bbc3f513b7c3696c4f54f
2012-01-06 08:55:05 -06:00

58 lines
1.2 KiB
C

/************************************************************************
* dgsubg.h *
* *
* This header file is used in the grid diagnostics package. *
* *
** *
* Log: *
* D.W.Plummer/NCEP 03/05 From DGCMN.CMN *
* R. Tian/SAIC 01/06 Modified *
* D.W.Plummer/NCEP 10/06 Rm transfer grid from dgsubg structure *
************************************************************************/
#ifndef _DGSUBG_H
#define _DGSUBG_H
#include "gemprm.h"
/*
* This structure contains information needed for the placement of
* data on the subset internal grid.
*/
struct dgsubg {
/*
* reference navigation.
*/
float refnav[LLNNAV];
/*
* globe wrapping grid flg.
*/
int gwrapg;
/*
* flag for DG_SUBG called.
*/
int dgsubg;
/*
* shift position for grid re-arrangement.
*/
int ishift;
/*
* subset grid index bound on re-arranged transfer grid.
*/
int jsgxmn;
int jsgxmx;
int jsgymn;
int jsgymx;
/*
* subset stride throug transfer grid in x & y.
*/
int jsgxsk;
int jsgysk;
};
#endif