Former-commit-id:133dc97f67
[formerlya02aeb236c
] [formerly9f19e3f712
] [formerly133dc97f67
[formerlya02aeb236c
] [formerly9f19e3f712
] [formerly06a8b51d6d
[formerly9f19e3f712
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]]]] Former-commit-id:06a8b51d6d
Former-commit-id:9bb8decbcf
[formerly8e80217e59
] [formerly377dcd10b9
[formerly3360eb6c5f
]] Former-commit-id:377dcd10b9
Former-commit-id:e2ecdcfe33
47 lines
1.3 KiB
C
47 lines
1.3 KiB
C
/*=========================================================================*/
|
|
/* FILE PATH/NAME: st3_includes/overlay.h */
|
|
/* */
|
|
/* HEADER FILE */
|
|
/* */
|
|
/*=========================================================================*/
|
|
#ifndef OVERLAY_H
|
|
#define OVERLAY_H
|
|
|
|
#include "stage3.h"
|
|
|
|
typedef struct {
|
|
char id[9];
|
|
char name[21];
|
|
int order,npts;
|
|
HRAP *hrap;
|
|
} overlay_struct;
|
|
|
|
overlay_struct **fgbasin;
|
|
overlay_struct **mapbasin;
|
|
overlay_struct **river;
|
|
overlay_struct **bound;
|
|
overlay_struct **state;
|
|
overlay_struct **county;
|
|
|
|
struct {
|
|
short state;
|
|
short county;
|
|
short river;
|
|
short mapbasin;
|
|
short fgbasin;
|
|
short gridtocounty;
|
|
short gridtobasin;
|
|
short site_boundary;
|
|
} overlay_avail;
|
|
|
|
char ***loc_basin;
|
|
char ***loc_cty;
|
|
char ***loc_area;
|
|
int nummap;
|
|
int numfg;
|
|
int numrivers;
|
|
int numrfc;
|
|
int numstates;
|
|
int numcounty;
|
|
|
|
#endif /* #ifndef OVERLAY_H */
|