Changes between Initial Version and Version 1 of Ticket #3783


Ignore:
Timestamp:
Mar 6, 2019, 11:42:28 PM (5 years ago)
Author:
pmav99
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3783 – Description

    initial v1  
    3535-                                                         f=first,
    3636-                                                         s=second))
    37 +        expression = '"{d}" = "{f}" - "{s}"'.format(
    38 +            d=diff,
    39 +            f=first,
    40 +            s=second
     37+        expression = '"{diff}" = "{first}" - "{second}"'.format(
     38+            diff=diff,
     39+            first=first,
     40+            second=second
    4141+        )
    4242+        call_module('r.mapcalc', stdin=expression.encode("utf-8"))