-
Notifications
You must be signed in to change notification settings - Fork 23
/
InitInterpolationWeights.c
executable file
·87 lines (75 loc) · 2.72 KB
/
InitInterpolationWeights.c
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/*
* SUMMARY: InitInterpolationWeights.c - Initialize interpolation
* USAGE: Part of DHSVM
*
* AUTHOR: Bart Nijssen
* ORG: University of Washington, Department of Civil Engineering
* E-MAIL: [email protected]
* ORIG-DATE: Apr-96
* DESCRIPTION: Initialize the interpolation weights
* DESCRIP-END.
* FUNCTIONS: InitInterpolationWeights()
* COMMENTS:
* $Id: InitInterpolationWeights.c,v 1.5 2003/10/28 20:02:43 colleen Exp $
*/
#include <stdio.h>
#include <stdlib.h>
#include "settings.h"
#include "data.h"
#include "DHSVMerror.h"
#include "functions.h"
#include "constants.h"
/*****************************************************************************
InitInterpolationWeights()
*****************************************************************************/
void InitInterpolationWeights(MAPSIZE * Map, OPTIONSTRUCT * Options,
TOPOPIX ** TopoMap, uchar **** MetWeights,
METLOCATION * Stats, int NStats)
{
const char *Routine = "InitInterpolationWeights";
uchar **BasinMask;
int x; /* counter */
int y; /* counter */
int i;
if (Options->MM5 == TRUE && Options->QPF == FALSE) {
if (!((*MetWeights) = (uchar ***) calloc(Map->NY, sizeof(uchar **))))
ReportError("CalcWeights()", 1);
for (y = 0; y < Map->NY; y++)
if (!((*MetWeights)[y] = (uchar **) calloc(Map->NX, sizeof(uchar *))))
ReportError("CalcWeights()", 1);
for (y = 0; y < Map->NY; y++)
for (x = 0; x < Map->NX; x++)
(*MetWeights)[y][x] = NULL;
}
else {
if (!(BasinMask = (uchar **) calloc(Map->NY, sizeof(uchar *))))
ReportError((char *) Routine, 1);
for (y = 0; y < Map->NY; y++) {
if (!(BasinMask[y] = (uchar *) calloc(Map->NX, sizeof(uchar))))
ReportError((char *) Routine, 1);
}
for (y = 0; y < Map->NY; y++)
for (x = 0; x < Map->NX; x++)
BasinMask[y][x] = TopoMap[y][x].Mask;
CalcWeights(Stats, NStats, Map->NX, Map->NY, BasinMask, MetWeights,
Options);
printf("\nSummary info on met stations used for current model run \n");
printf(" Name\t\tY\tX\tIn Mask\tDefined Elev\tActual Elev\n");
for (i = 0; i < NStats; i++) {
if ((Stats[i].Loc.N > Map->NY || Stats[i].Loc.N < 0 ||
Stats[i].Loc.E > Map->NX || Stats[i].Loc.E < 0))
printf("%20s\t%d\t%d\t%5s\t%5.1f\t\t%5s\n",
Stats[i].Name, Stats[i].Loc.N, Stats[i].Loc.E,
"NA", Stats[i].Elev, "NA");
else
printf("%20s\t%d\t%d\t%d\t%5.1f\t\t%5.1f\n",
Stats[i].Name, Stats[i].Loc.N, Stats[i].Loc.E,
BasinMask[Stats[i].Loc.N][Stats[i].Loc.E], Stats[i].Elev,
TopoMap[Stats[i].Loc.N][Stats[i].Loc.E].Dem);
}
printf("\n");
for (y = 0; y < Map->NY; y++)
free(BasinMask[y]);
free(BasinMask);
}
}