Re: [GRASS-dev] pyGRASS and mapcalc's pixel modifiers

2015-06-03 Thread Nikos Alexandris
* Nikos Alexandris n...@nikosalexandris.net [2015-05-06 19:26:17 +0300]: .. I am after adding checks in various steps of the algorithm I am implementing. It's just a somewhat complex equation [*]. That's all. Hopefully I'll get it complete and share results soon. Here is the implementation of

[GRASS-dev] pyGRASS and mapcalc's pixel modifiers

2015-05-06 Thread Nikos Alexandris
Hello programmers. Consider a Python class with methods that derive a somewhat complex mapcalc expression which contains the following pixel modifiers: ['A[-1, -1]', 'A[-1, 0]', 'A[-1, 1]', 'A[0, -1]', 'A[0, 0]', 'A[0, 1]', 'A[1, -1]', 'A[1, 0]', 'A[1, 1]'] These modifiers built-up a moving

Re: [GRASS-dev] pyGRASS and mapcalc's pixel modifiers

2015-05-06 Thread Moritz Lennert
On 06/05/15 14:42, Nikos Alexandris wrote: * Moritz Lennert mlenn...@club.worldonline.be [2015-05-06 12:59:16 +0200]: On 06/05/15 12:25, Nikos Alexandris wrote: Hello programmers. Consider a Python class with methods that derive a somewhat complex mapcalc expression which contains the

Re: [GRASS-dev] pyGRASS and mapcalc's pixel modifiers

2015-05-06 Thread Nikos Alexandris
Nikos Alexandris wrote: Consider a Python class with methods that derive a somewhat complex mapcalc expression which contains the following pixel modifiers: ['A[-1, -1]', 'A[-1, 0]', 'A[-1, 1]', 'A[0, -1]', 'A[0, 0]', 'A[0, 1]', 'A[1, -1]', 'A[1, 0]', 'A[1, 1]'] These modifiers