File: region.py

package info (click to toggle)
grass 7.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 135,976 kB
  • ctags: 44,148
  • sloc: ansic: 410,300; python: 166,939; cpp: 34,819; sh: 9,358; makefile: 6,618; xml: 3,551; sql: 769; lex: 519; yacc: 450; asm: 387; perl: 282; sed: 17; objc: 7
file content (645 lines) | stat: -rw-r--r-- 18,506 bytes parent folder | download | duplicates (2)
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
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
# -*- coding: utf-8 -*-
"""
Created on Fri May 25 12:57:10 2012

@author: Pietro Zambelli
"""
from __future__ import (nested_scopes, generators, division, absolute_import,
                        with_statement, print_function, unicode_literals)
import ctypes
import grass.lib.gis as libgis
import grass.lib.raster as libraster
import grass.script as grass

from grass.pygrass.errors import GrassError
from grass.pygrass.shell.conversion import dict2html
from grass.pygrass.utils import get_mapset_vector, get_mapset_raster

test_vector_name="Region_test_vector"
test_raster_name="Region_test_raster"

class Region(object):
    """This class is design to easily access and modify GRASS computational
    region. ::

        >>> r = Region()
        >>> r.north
        40.0
        >>> r.south
        0.0
        >>> r.east
        40.0
        >>> r.west
        0.0
        >>> r.cols
        20
        >>> r.rows
        20
        >>> r.nsres
        2.0
        >>> r.ewres
        2.0

        >>> r.north = 100
        >>> r.east = 100
        >>> r.adjust(rows=True, cols=True)
        >>> r.nsres
        5.0
        >>> r.ewres
        5.0
        >>> r.cols
        20
        >>> r.rows
        20

        >>> r.read()
        >>> r.north = 100
        >>> r.east = 100
        >>> r.adjust(rows=False, cols=True)
        >>> r.nsres
        2.0
        >>> r.ewres
        5.0
        >>> r.cols
        20
        >>> r.rows
        50

        >>> r.read()
        >>> r.north = 100
        >>> r.east = 100
        >>> r.adjust(rows=True, cols=False)
        >>> r.nsres
        5.0
        >>> r.ewres
        2.0
        >>> r.cols
        50
        >>> r.rows
        20

        >>> r.read()
        >>> r.north = 100
        >>> r.east = 100
        >>> r.adjust(rows=False, cols=False)
        >>> r.nsres
        2.0
        >>> r.ewres
        2.0
        >>> r.cols
        50
        >>> r.rows
        50

        >>> r.read()
        >>> r.cols = 1000
        >>> r.ewres
        0.04
        >>> r.rows = 1000
        >>> r.nsres
        0.04

    ..
    """
    def __init__(self, default=False):
        self.c_region = libgis.Cell_head()
        if default:
            self.read_default()
        else:
            self.read()

    def byref(self):
        """Return the internal region representation as pointer"""
        return ctypes.pointer(self.c_region)

    def _set_param(self, key, value):
        grass.run_command('g.region', **{key: value})

    #----------LIMITS----------
    def _get_n(self):
        """Private function to obtain north value"""
        return self.c_region.north

    def _set_n(self, value):
        """Private function to set north value"""
        self.c_region.north = value

    north = property(fget=_get_n, fset=_set_n,
                     doc="Set and obtain north coordinate")

    def _get_s(self):
        """Private function to obtain south value"""
        return self.c_region.south

    def _set_s(self, value):
        """Private function to set south value"""
        self.c_region.south = value

    south = property(fget=_get_s, fset=_set_s,
                     doc="Set and obtain south coordinate")

    def _get_e(self):
        """Private function to obtain east value"""
        return self.c_region.east

    def _set_e(self, value):
        """Private function to set east value"""
        self.c_region.east = value

    east = property(fget=_get_e, fset=_set_e,
                    doc="Set and obtain east coordinate")

    def _get_w(self):
        """Private function to obtain west value"""
        return self.c_region.west

    def _set_w(self, value):
        """Private function to set west value"""
        self.c_region.west = value

    west = property(fget=_get_w, fset=_set_w,
                    doc="Set and obtain west coordinate")

    def _get_t(self):
        """Private function to obtain top value"""
        return self.c_region.top

    def _set_t(self, value):
        """Private function to set top value"""
        self.c_region.top = value

    top = property(fget=_get_t, fset=_set_t,
                   doc="Set and obtain top value")

    def _get_b(self):
        """Private function to obtain bottom value"""
        return self.c_region.bottom

    def _set_b(self, value):
        """Private function to set bottom value"""
        self.c_region.bottom = value

    bottom = property(fget=_get_b, fset=_set_b,
                      doc="Set and obtain bottom value")

    #----------RESOLUTION----------
    def _get_rows(self):
        """Private function to obtain rows value"""
        return self.c_region.rows

    def _set_rows(self, value):
        """Private function to set rows value"""
        self.c_region.rows = value
        self.adjust(rows=True)

    rows = property(fget=_get_rows, fset=_set_rows,
                    doc="Set and obtain number of rows")

    def _get_cols(self):
        """Private function to obtain columns value"""
        return self.c_region.cols

    def _set_cols(self, value):
        """Private function to set columns value"""
        self.c_region.cols = value
        self.adjust(cols=True)

    cols = property(fget=_get_cols, fset=_set_cols,
                    doc="Set and obtain number of columns")

    def _get_depths(self):
        """Private function to obtain depths value"""
        return self.c_region.depths

    def _set_depths(self, value):
        """Private function to set depths value"""
        self.c_region.depths = value

    depths = property(fget=_get_depths, fset=_set_depths,
                      doc="Set and obtain number of depths")

    def _get_nsres(self):
        """Private function to obtain north-south value"""
        return self.c_region.ns_res

    def _set_nsres(self, value):
        """Private function to obtain north-south value"""
        self.c_region.ns_res = value
        self.adjust()

    nsres = property(fget=_get_nsres, fset=_set_nsres,
                     doc="Set and obtain north-south resolution value")

    def _get_ewres(self):
        """Private function to obtain east-west value"""
        return self.c_region.ew_res

    def _set_ewres(self, value):
        """Private function to set east-west value"""
        self.c_region.ew_res = value
        self.adjust()

    ewres = property(fget=_get_ewres, fset=_set_ewres,
                     doc="Set and obtain east-west resolution value")

    def _get_tbres(self):
        """Private function to obtain top-botton 3D value"""
        return self.c_region.tb_res

    def _set_tbres(self, value):
        """Private function to set top-bottom 3D value"""
        self.c_region.tb_res = value
        self.adjust()

    tbres = property(fget=_get_tbres, fset=_set_tbres,
                     doc="Set and obtain top-bottom 3D value")

    @property
    def zone(self):
        """Return the zone of projection
        """
        return self.c_region.zone

    @property
    def proj(self):
        """Return a code for projection
        """
        return self.c_region.proj

    @property
    def cells(self):
        """Return the number of cells"""
        return self.rows * self.cols

    #----------MAGIC METHODS----------
    def __repr__(self):
        rg = "Region(north=%g, south=%g, east=%g, west=%g, "\
                    "nsres=%g, ewres=%g, rows=%i, cols=%i, "\
                    "cells=%i, zone=%i, proj=%i)"
        return rg % (self.north, self.south, self.east, self.west,
                     self.nsres, self.ewres, self.rows, self.cols,
                     self.cells, self.zone, self.proj)

    def _repr_html_(self):
        return dict2html(dict(self.items()), keys=self.keys(),
                         border='1', kdec='b')

    def __unicode__(self):
        return self.__repr__()

    def __str__(self):
        return self.__unicode__()

    def __eq__(self, reg):
        """Compare two region. ::

        >>> r0 = Region()
        >>> r1 = Region()
        >>> r2 = Region()
        >>> r2.nsres = 5
        >>> r0 == r1
        True
        >>> r1 == r2
        False

        ..
        """
        attrs = ['north', 'south', 'west', 'east', 'top', 'bottom',
                 'nsres', 'ewres', 'tbres', 'rows', 'cols', 'cells',
                 'zone', 'proj']
        for attr in attrs:
            if getattr(self, attr) != getattr(reg, attr):
                return False
        return True

    def __ne__(self, other):
        return not self == other

    # Restore Python 2 hashing beaviour on Python 3
    __hash__ = object.__hash__

    def keys(self):
        """Return a list of valid keys. ::

            >>> reg = Region()
            >>> reg.keys()                               # doctest: +ELLIPSIS
            [u'proj', u'zone', ..., u'cols', u'cells']

        ..
        """
        return ['proj', 'zone', 'north', 'south', 'west', 'east',
                'top', 'bottom', 'nsres', 'ewres', 'tbres', 'rows',
                'cols', 'cells']

    def items(self):
        """Return a list of tuple with key and value.
        """
        return [(k, self.__getattribute__(k)) for k in self.keys()]

    #----------METHODS----------
    def zoom(self, raster_name):
        """Shrink region until it meets non-NULL data from this raster map

        Warning: This will change the user GRASS region settings

        :param raster_name: the name of raster
        :type raster_name: str
        """
        self._set_param('zoom', str(raster_name))
        self.read()

    def align(self, raster_name):
        """Adjust region cells to cleanly align with this raster map

        Warning: This will change the user GRASS region settings

        :param raster_name: the name of raster
        :type raster_name: str
        """
        self._set_param('align', str(raster_name))
        self.read()

    def adjust(self, rows=False, cols=False):
        """Adjust rows and cols number according with the nsres and ewres
        resolutions. If rows or cols parameters are True, the adjust method
        update nsres and ewres according with the rows and cols numbers.
        """
        libgis.G_adjust_Cell_head(self.byref(), bool(rows), bool(cols))

    def from_vect(self, vector_name):
        """Adjust bounding box of region using a vector

            :param vector_name: the name of vector
            :type vector_name: str

            Example ::

            >>> reg = Region()
            >>> reg.from_vect(test_vector_name)
            >>> reg.get_bbox()
            Bbox(6.0, 0.0, 14.0, 0.0)
            >>> reg.read()
            >>> reg.get_bbox()
            Bbox(40.0, 0.0, 40.0, 0.0)

            ..
        """
        from grass.pygrass.vector import VectorTopo
        with VectorTopo(vector_name, mode='r') as vect:
            bbox = vect.bbox()
            self.set_bbox(bbox)

    def from_rast(self, raster_name):
        """Set the region from the computational region
            of a raster map layer.

            :param raster_name: the name of raster
            :type raster_name: str

            :param mapset: the mapset of raster
            :type mapset: str

            call C function `Rast_get_cellhd`

            Example ::

            >>> reg = Region()
            >>> reg.from_rast(test_raster_name)
            >>> reg.get_bbox()
            Bbox(50.0, 0.0, 60.0, 0.0)
            >>> reg.read()
            >>> reg.get_bbox()
            Bbox(40.0, 0.0, 40.0, 0.0)

            ..
           """
        if not raster_name:
            raise ValueError("Raster name or mapset are invalid")


        mapset = get_mapset_raster(raster_name)

        if mapset:
            libraster.Rast_get_cellhd(raster_name, mapset,
                                      self.byref())

    def set_raster_region(self):
        """Set the computational region (window) for all raster maps in the current process.
           
           Attention: All raster objects must be closed or the
                      process will be terminated.
                      
           The Raster library C function Rast_set_window() is called.
        
        """
        libraster.Rast_set_window(self.byref())

    def get_current(self):
        """Get the current working region of this process
           and store it into this Region object

           Previous calls to set_current() affects values returned by this function.
           Previous calls to read() affects values returned by this function
           only if the current working region is not initialized.

            Example:

            >>> r = Region()
            >>> r.north
            40.0

            >>> r.north = 30
            >>> r.north
            30.0
            >>> r.get_current()
            >>> r.north
            40.0

        """
        libgis.G_get_set_window(self.byref())

    def set_current(self):
        """Set the current working region from this region object

           This function adjusts the values before setting the region
           so you don't have to call G_adjust_Cell_head().

           Attention: Only the current process is affected.
                      The GRASS computational region is not affected.

            Example::

            >>> r = Region()
            >>> r.north
            40.0
            >>> r.south
            0.0

            >>> r.north = 30
            >>> r.south = 20
            >>> r.set_current()
            >>> r.north
            30.0
            >>> r.south
            20.0
            >>> r.get_current()
            >>> r.north
            30.0
            >>> r.south
            20.0

            >>> r.read(force_read=False)
            >>> r.north
            40.0
            >>> r.south
            0.0

            >>> r.read(force_read=True)
            >>> r.north
            40.0
            >>> r.south
            0.0

        """
        libgis.G_set_window(self.byref())

    def read(self, force_read=True):
        """
          Read the region into this region object

          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 force_read: If True the WIND file of the current mapset
                             is re-readed, otherwise the initial region
                             set at process start will be loaded from the internal
                             static variables.
          :type force_read: boolean

        """
        # Force the reading of the WIND file
        if force_read:
            libgis.G_unset_window()
        libgis.G_get_window(self.byref())

    def write(self):
        """Writes the region from this region object

           This function writes this region to the Region file (WIND)
           in the users current mapset. This function should be
           carefully used, since the user will ot notice if his region
           was changed and would expect that only g.region will do this.

            Example ::

            >>> from copy import deepcopy
            >>> r = Region()
            >>> rn = deepcopy(r)
            >>> r.north = 20
            >>> r.south = 10

            >>> r.write()
            >>> r.read()
            >>> r.north
            20.0
            >>> r.south
            10.0

            >>> rn.write()
            >>> r.read()
            >>> r.north
            40.0
            >>> r.south
            0.0

            >>> r.read_default()
            >>> r.write()

            ..
        """
        self.adjust()
        if libgis.G_put_window(self.byref()) < 0:
            raise GrassError("Cannot change region (DEFAUL_WIND file).")


    def read_default(self):
        """
          Get the default region

          Reads the default region for the location in this Region object.
          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.
        """
        libgis.G_get_default_window(self.byref())

    def get_bbox(self):
        """Return a Bbox object with the extension of the region. ::

            >>> reg = Region()
            >>> reg.get_bbox()
            Bbox(40.0, 0.0, 40.0, 0.0)

        ..
        """
        from grass.pygrass.vector.basic import Bbox
        return Bbox(north=self.north, south=self.south,
                    east=self.east, west=self.west,
                    top=self.top, bottom=self.bottom)

    def set_bbox(self, bbox):
        """Set region extent from Bbox

        :param bbox: a Bbox object to set the extent
        :type bbox: Bbox object

        ::

            >>> from grass.pygrass.vector.basic import Bbox
            >>> b = Bbox(230963.640878, 212125.562878, 645837.437393, 628769.374393)
            >>> reg = Region()
            >>> reg.set_bbox(b)
            >>> reg.get_bbox()
            Bbox(230963.640878, 212125.562878, 645837.437393, 628769.374393)
            >>> reg.get_current()

        ..
        """
        self.north = bbox.north
        self.south = bbox.south
        self.east = bbox.east
        self.west = bbox.west

if __name__ == "__main__":

    import doctest
    from grass.pygrass import utils
    from grass.script.core import run_command

    utils.create_test_vector_map(test_vector_name)
    run_command("g.region", n=50, s=0, e=60, w=0, res=1)
    run_command("r.mapcalc", expression="%s = 1"%(test_raster_name),
                             overwrite=True)
    run_command("g.region", n=40, s=0, e=40, w=0, res=2)

    doctest.testmod()

    """Remove the generated vector map, if exist"""
    mset = utils.get_mapset_vector(test_vector_name, mapset='')
    if mset:
        run_command("g.remove", flags='f', type='vector', name=test_vector_name)
    mset = utils.get_mapset_raster(test_raster_name, mapset='')
    if mset:
        run_command("g.remove", flags='f', type='raster', name=test_raster_name)