forked from OSGeo/grass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_window.c
136 lines (105 loc) · 3.3 KB
/
get_window.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
/*!
\file lib/gis/get_window.c
\brief GIS Library - Get window (i.e. GRASS region)
(C) 2001-2009, 2011 by the GRASS Development Team
This program is free software under the GNU General Public License
(>=v2). Read the file COPYING that comes with GRASS for details.
\author Original author CERL
*/
#include <stdlib.h>
#include <grass/gis.h>
#include <grass/glocale.h>
#include "G.h"
#include "gis_local_proto.h"
static struct state {
int initialized;
struct Cell_head dbwindow;
} state;
static struct state *st = &state;
/*!
\brief Get the current region
Reads the region as stored in the WIND file in the user's current
mapset into region.
3D values are set to defaults if not available in WIND file. An
error message is printed and exit() is called if there is a problem
reading the region.
<b>Note:</b> GRASS applications that read or write raster maps
should not use this routine since its use implies that the active
module region will not be used. Programs that read or write raster
map data (or vector data) can query the active module region using
Rast_window_rows() and Rast_window_cols().
\param[out] window pointer to Cell_head
*/
void G_get_window(struct Cell_head *window)
{
const char *regvar;
if (G_is_initialized(&st->initialized)) {
*window = st->dbwindow;
return;
}
/* Optionally read the region from environment variable */
regvar = getenv("GRASS_REGION");
if (regvar) {
char **tokens = G_tokenize(regvar, ";");
G__read_Cell_head_array(tokens, &st->dbwindow, 0);
G_free_tokens(tokens);
}
else {
char *wind = getenv("WIND_OVERRIDE");
if (wind)
G_get_element_window(&st->dbwindow, "windows", wind, G_mapset());
else
G_get_element_window(&st->dbwindow, "", "WIND", G_mapset());
}
*window = st->dbwindow;
if (!G__.window_set) {
G__.window_set = 1;
G__.window = st->dbwindow;
}
G_initialize_done(&st->initialized);
}
/*!
\brief Get the default region
Reads the default region for the location into <i>region.</i> 3D
values are set to defaults if not available in WIND file.
An error message is printed and exit() is called if there is a
problem reading the default region.
\param[out] window pointer to Cell_head
*/
void G_get_default_window(struct Cell_head *window)
{
G_get_element_window(window, "", "DEFAULT_WIND", "PERMANENT");
}
/*!
\brief Get region for selected element (raster, vector, window, etc.)
G_fatal_error() is called on error
\param[out] window pointer to Cell_head
\param element element type
\param name element name
\param mapset mapset name
*/
void G_get_element_window(struct Cell_head *window,
const char *element, const char *name, const char *mapset)
{
FILE *fp;
G_zero(window, sizeof(struct Cell_head));
/* Read from file */
fp = G_fopen_old(element, name, mapset);
if (!fp)
G_fatal_error(_("Unable to open element file <%s> for <%s@%s>"),
element, name, mapset);
G_fseek(fp, 0, SEEK_END);
if (!G_ftell(fp))
G_fatal_error(_("Region file %s/%s/%s is empty"), mapset, element, name);
G_fseek(fp, 0, SEEK_SET);
G__read_Cell_head(fp, window, 0);
fclose(fp);
}
/*!
\brief Unset current region
*/
void G_unset_window()
{
st->initialized = 0;
G__.window_set = 0;
}