forked from jhamman/DHSVM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
InitSnowMap.c
executable file
·54 lines (44 loc) · 1.5 KB
/
InitSnowMap.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
/*
* SUMMARY: InitSnowMap.c - Initialize snow coverage
* 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 snow coverage
* DESCRIP-END.
* FUNCTIONS: InitSnowMap()
* COMMENTS:
* $Id: InitSnowMap.c,v 1.4 2003/07/01 21:26:17 olivier Exp $
*/
#include <stdio.h>
#include <stdlib.h>
#include "settings.h"
#include "data.h"
#include "DHSVMerror.h"
#include "functions.h"
#include "constants.h"
/*****************************************************************************
Function name: InitSnowMap()
Purpose : Initialize the snow information for each pixel in the basin
Required :
MAPSIZE Map - Size and location of the model area
SNOWPIX ***SnowMap - Address of array with snow information
Returns : void
Modifies :
Values stored at the locations pointed to by SnowMap
Comments :
*****************************************************************************/
void InitSnowMap(MAPSIZE * Map, SNOWPIX *** SnowMap)
{
const char *Routine = "InitSnowMap";
int y; /* counter */
printf("Initializing snow map\n");
if (!(*SnowMap = (SNOWPIX **) calloc(Map->NY, sizeof(SNOWPIX *))))
ReportError((char *) Routine, 1);
for (y = 0; y < Map->NY; y++) {
if (!((*SnowMap)[y] = (SNOWPIX *) calloc(Map->NX, sizeof(SNOWPIX))))
ReportError((char *) Routine, 1);
}
}