-
-
Notifications
You must be signed in to change notification settings - Fork 351
/
Copy pathr.import.py
476 lines (424 loc) · 14.3 KB
/
r.import.py
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
#!/usr/bin/env python3
############################################################################
#
# MODULE: r.import
#
# AUTHOR(S): Markus Metz
#
# PURPOSE: Import and reproject on the fly
#
# COPYRIGHT: (C) 2015-2021 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.
#
#############################################################################
# %module
# % description: Imports raster data into a GRASS raster map using GDAL library and reprojects on the fly.
# % keyword: raster
# % keyword: import
# % keyword: projection
# %end
# %option G_OPT_F_BIN_INPUT
# % description: Name of GDAL dataset to be imported
# % guisection: Input
# %end
# %option
# % key: band
# % type: integer
# % required: no
# % multiple: yes
# % description: Input band(s) to select (default is all bands)
# % guisection: Input
# %end
# %option G_OPT_MEMORYMB
# %end
# %option G_OPT_R_OUTPUT
# % description: Name for output raster map
# % required: no
# % guisection: Output
# %end
# %option
# % key: resample
# % type: string
# % required: no
# % multiple: no
# % options: nearest,bilinear,bicubic,lanczos,bilinear_f,bicubic_f,lanczos_f
# % description: Resampling method to use for reprojection
# % descriptions: nearest;nearest neighbor;bilinear;bilinear interpolation;bicubic;bicubic interpolation;lanczos;lanczos filter;bilinear_f;bilinear interpolation with fallback;bicubic_f;bicubic interpolation with fallback;lanczos_f;lanczos filter with fallback
# % answer: nearest
# % guisection: Output
# %end
# %option
# % key: extent
# % type: string
# % required: no
# % multiple: no
# % options: input,region
# % answer: input
# % description: Output raster map extent
# % descriptions: region;extent of current region;input;extent of input map
# % guisection: Output
# %end
# %option
# % key: resolution
# % type: string
# % required: no
# % multiple: no
# % answer: estimated
# % options: estimated,value,region
# % description: Resolution of output raster map (default: estimated)
# % descriptions: estimated;estimated resolution;value;user-specified resolution;region;current region resolution
# % guisection: Output
# %end
# %option
# % key: resolution_value
# % type: double
# % required: no
# % multiple: no
# % description: Resolution of output raster map (use with option resolution=value)
# % guisection: Output
# %end
# %option
# % key: title
# % key_desc: phrase
# % type: string
# % required: no
# % description: Title for resultant raster map
# % guisection: Metadata
# %end
# %flag
# % key: e
# % description: Estimate resolution only
# % guisection: Optional
# %end
# %flag
# % key: n
# % description: Do not perform region cropping optimization
# % guisection: Optional
# %end
# %flag
# % key: l
# % description: Force Lat/Lon maps to fit into geographic coordinates (90N,S; 180E,W)
# %end
# %flag
# % key: o
# % label: Override projection check (use current project's CRS)
# % description: Assume that the dataset has the same coordinate reference system (CRS) as the current project
# %end
# %rules
# % required: output,-e
# %end
import sys
import os
import atexit
import math
import grass.script as gs
from grass.exceptions import CalledModuleError
# initialize global vars
TMPLOC = None
SRCGISRC = None
GISDBASE = None
TMP_REG_NAME = None
def cleanup():
# remove temp location
if TMPLOC:
gs.try_rmdir(os.path.join(GISDBASE, TMPLOC))
if SRCGISRC:
gs.try_remove(SRCGISRC)
if (
TMP_REG_NAME
and gs.find_file(
name=TMP_REG_NAME, element="vector", mapset=gs.gisenv()["MAPSET"]
)["fullname"]
):
gs.run_command(
"g.remove", type="vector", name=TMP_REG_NAME, flags="f", quiet=True
)
def is_projection_matching(GDALdatasource):
"""Returns True if current location projection
matches dataset projection, otherwise False"""
try:
gs.run_command("r.in.gdal", input=GDALdatasource, flags="j", quiet=True)
return True
except CalledModuleError:
return False
def main():
global TMPLOC, SRCGISRC, GISDBASE, TMP_REG_NAME
GDALdatasource = options["input"]
output = options["output"]
method = options["resample"]
memory = options["memory"]
bands = options["band"]
tgtres = options["resolution"]
title = options["title"]
if flags["e"] and not output:
output = "rimport_tmp" # will be removed with the entire tmp location
if options["resolution_value"]:
if tgtres != "value":
gs.fatal(
_("To set custom resolution value, select 'value' in resolution option")
)
tgtres_value = float(options["resolution_value"])
if tgtres_value <= 0:
gs.fatal(_("Resolution value can't be smaller than 0"))
elif tgtres == "value":
gs.fatal(
_(
"Please provide the resolution for the imported dataset or change to "
"'estimated' resolution"
)
)
# try r.in.gdal directly first
additional_flags = "l" if flags["l"] else ""
if flags["o"]:
additional_flags += "o"
region_flag = ""
if options["extent"] == "region":
region_flag += "r"
if flags["o"] or is_projection_matching(GDALdatasource):
parameters = {
"input": GDALdatasource,
"output": output,
"memory": memory,
"flags": "ak" + additional_flags + region_flag,
}
if bands:
parameters["band"] = bands
try:
gs.run_command("r.in.gdal", **parameters)
gs.verbose(
_("Input <%s> successfully imported without reprojection")
% GDALdatasource
)
return 0
except CalledModuleError:
gs.fatal(_("Unable to import GDAL dataset <%s>") % GDALdatasource)
grassenv = gs.gisenv()
tgtloc = grassenv["LOCATION_NAME"]
# make sure target is not xy
if gs.parse_command("g.proj", flags="g")["name"] == "xy_location_unprojected":
gs.fatal(
_("Coordinate reference system not available for current project <%s>")
% tgtloc
)
tgtmapset = grassenv["MAPSET"]
GISDBASE = grassenv["GISDBASE"]
TMPLOC = gs.append_node_pid("tmp_r_import_location")
TMP_REG_NAME = gs.append_node_pid("tmp_r_import_region")
SRCGISRC, src_env = gs.create_environment(GISDBASE, TMPLOC, "PERMANENT")
# create temp location from input without import
gs.verbose(_("Creating temporary project for <%s>...") % GDALdatasource)
# creating a new location with r.in.gdal requires a sanitized env
env = os.environ.copy()
env = gs.sanitize_mapset_environment(env)
parameters = {
"input": GDALdatasource,
"output": output,
"memory": memory,
"flags": "c",
"title": title,
"project": TMPLOC,
"quiet": True,
}
if bands:
parameters["band"] = bands
try:
gs.run_command("r.in.gdal", env=env, **parameters)
except CalledModuleError:
gs.fatal(_("Unable to read GDAL dataset <%s>") % GDALdatasource)
# prepare to set region in temp location
if "r" in region_flag:
tgtregion = TMP_REG_NAME
gs.run_command("v.in.region", output=tgtregion, flags="d")
# switch to temp location
# print projection at verbose level
gs.verbose(gs.read_command("g.proj", flags="p", env=src_env).rstrip(os.linesep))
# make sure input is not xy
if (
gs.parse_command("g.proj", flags="g", env=src_env)["name"]
== "xy_location_unprojected"
):
gs.fatal(
_("Coordinate reference system not available for input <%s>")
% GDALdatasource
)
# import into temp location
gs.verbose(_("Importing <%s> to temporary project...") % GDALdatasource)
parameters = {
"input": GDALdatasource,
"output": output,
"memory": memory,
"flags": "ak" + additional_flags,
}
if bands:
parameters["band"] = bands
if "r" in region_flag:
gs.run_command(
"v.proj",
project=tgtloc,
mapset=tgtmapset,
input=tgtregion,
output=tgtregion,
env=src_env,
)
gs.run_command("g.region", vector=tgtregion, env=src_env)
parameters["flags"] += region_flag
try:
gs.run_command("r.in.gdal", env=src_env, **parameters)
except CalledModuleError:
gs.fatal(_("Unable to import GDAL dataset <%s>") % GDALdatasource)
outfiles = gs.list_grouped("raster", env=src_env)["PERMANENT"]
# is output a group?
group = False
path = os.path.join(GISDBASE, TMPLOC, "group", output)
if os.path.exists(path):
group = True
path = os.path.join(GISDBASE, TMPLOC, "group", output, "POINTS")
if os.path.exists(path):
gs.fatal(_("Input contains GCPs, rectification is required"))
if "r" in region_flag:
gs.run_command(
"g.remove", type="vector", flags="f", name=tgtregion, env=src_env
)
# switch to target location
gs.run_command("g.remove", type="vector", flags="f", name=tgtregion)
region = gs.region()
rflags = None
if flags["n"]:
rflags = "n"
vreg = TMP_REG_NAME
for outfile in outfiles:
n = region["n"]
s = region["s"]
e = region["e"]
w = region["w"]
env = os.environ.copy()
if options["extent"] == "input":
# r.proj -g
try:
tgtextents = gs.read_command(
"r.proj",
project=TMPLOC,
mapset="PERMANENT",
input=outfile,
flags="g",
memory=memory,
quiet=True,
)
except CalledModuleError:
gs.fatal(_("Unable to get reprojected map extent"))
try:
srcregion = gs.parse_key_val(tgtextents, val_type=float, vsep=" ")
n = srcregion["n"]
s = srcregion["s"]
e = srcregion["e"]
w = srcregion["w"]
except ValueError: # import into latlong, expect 53:39:06.894826N
srcregion = gs.parse_key_val(tgtextents, vsep=" ")
n = gs.float_or_dms(srcregion["n"][:-1]) * (
-1 if srcregion["n"][-1] == "S" else 1
)
s = gs.float_or_dms(srcregion["s"][:-1]) * (
-1 if srcregion["s"][-1] == "S" else 1
)
e = gs.float_or_dms(srcregion["e"][:-1]) * (
-1 if srcregion["e"][-1] == "W" else 1
)
w = gs.float_or_dms(srcregion["w"][:-1]) * (
-1 if srcregion["w"][-1] == "W" else 1
)
env["GRASS_REGION"] = gs.region_env(n=n, s=s, e=e, w=w)
# v.in.region in tgt
gs.run_command("v.in.region", output=vreg, quiet=True, env=env)
# reproject to src
# switch to temp location
try:
gs.run_command(
"v.proj",
input=vreg,
output=vreg,
project=tgtloc,
mapset=tgtmapset,
quiet=True,
env=src_env,
)
# test if v.proj created a valid area
if gs.vector_info_topo(vreg, env=src_env)["areas"] != 1:
gs.fatal(_("Please check the 'extent' parameter"))
except CalledModuleError:
gs.fatal(_("Unable to reproject to source project"))
# set region from region vector
gs.run_command("g.region", raster=outfile, env=src_env)
gs.run_command("g.region", vector=vreg, env=src_env)
# align to first band
gs.run_command("g.region", align=outfile, env=src_env)
# get number of cells
cells = gs.region(env=src_env)["cells"]
estres = math.sqrt((n - s) * (e - w) / cells)
# remove from source location for multi bands import
gs.run_command(
"g.remove", type="vector", name=vreg, flags="f", quiet=True, env=src_env
)
# switch to target location
gs.run_command("g.remove", type="vector", name=vreg, flags="f", quiet=True)
gs.message(
_("Estimated target resolution for input band <{out}>: {res}").format(
out=outfile, res=estres
)
)
if flags["e"]:
continue
env = os.environ.copy()
if options["extent"] == "input":
env["GRASS_REGION"] = gs.region_env(n=n, s=s, e=e, w=w)
res = None
if tgtres == "estimated":
res = estres
elif tgtres == "value":
res = tgtres_value
gs.message(
_("Using given resolution for input band <{out}>: {res}").format(
out=outfile, res=res
)
)
# align to requested resolution
env["GRASS_REGION"] = gs.region_env(res=res, flags="a", env=env)
else:
curr_reg = gs.region()
gs.message(
_(
"Using current region resolution for input band "
"<{out}>: nsres={ns}, ewres={ew}"
).format(out=outfile, ns=curr_reg["nsres"], ew=curr_reg["ewres"])
)
# r.proj
gs.message(_("Reprojecting <%s>...") % outfile)
try:
gs.run_command(
"r.proj",
project=TMPLOC,
mapset="PERMANENT",
input=outfile,
method=method,
resolution=res,
memory=memory,
flags=rflags,
quiet=True,
env=env,
)
except CalledModuleError:
gs.fatal(_("Unable to to reproject raster <%s>") % outfile)
if gs.raster_info(outfile)["min"] is None:
gs.fatal(_("The reprojected raster <%s> is empty") % outfile)
if flags["e"]:
return 0
if group:
gs.run_command("i.group", group=output, input=",".join(outfiles))
# TODO: write metadata with r.support
return 0
if __name__ == "__main__":
options, flags = gs.parser()
atexit.register(cleanup)
sys.exit(main())