Changes between Version 12 and Version 13 of Grass7/TemporalGISAlgebra


Ignore:
Timestamp:
Jul 5, 2013, 8:26:25 AM (11 years ago)
Author:
huhabla
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Grass7/TemporalGISAlgebra

    v12 v13  
    118118}}}
    119119
     120All supported operators and functions are documented below.
     121
    120122== Temporal Vector Algebra ==
    121123
     
    160162The temporal vector algebra provides point, line and area buffer functions in addition to the operators.
    161163
    162 
    163 
    164 = Overview of all temporal algebra elements =
     164All supported operators and functions are documented below.
     165
     166== Temporal Raster Algebra ==
     167
     168The temporal raster algebra uses all operators and functions of the temporal
     169algebra and adds a subset of the operators and function of r.mapcalc.
     170
     171The method is the same as for the temporal vector algebra.
     172Hence new spatio-temporal operators are defined that include temporal topology relations,
     173temporal operators and spatial operators.
     174
     175
     176Examples:
     177Create the sum all maps from STRDS A and B that have equal time stamps and store the new maps in STRDS C.
     178{{{
     179C = A + B
     180}}}
     181Same expression with explicit temporal topology and temporal interval processing operators.
     182{{{
     183C = A {equal,=+} B
     184}}}
     185Select all cells from STRDS B with equal relations to STRDS A if the cells of A are in the range of [100.0, 1600] of time intervals that have more then 30 days
     186{{{
     187C = if(equal, (A > 100 && A < 1600) {equal,&&} td(A) > 30, B)
     188}}}
     189
     190All supported operators and functions are documented below.
     191
     192= Overview of all supported spatio-temporal operators and functions =
    165193
    166194== Temporal topology relations ==
     
    573601 ---------------------------------------
    574602}}}
    575 
    576 Examples:
    577 Create the sum all maps from STRDS A and B that have equal time stamps and store the new maps in STRDS C.
    578 {{{
    579 C = A + B
    580 }}}
    581 Same expression with explicit temporal topology and temporal interval processing operators.
    582 {{{
    583 C = A {equal,=+} B
    584 }}}
    585 Select all cells from STRDS B with equal relations to STRDS A if the cells of A are in the range of [100.0, 1600] of time intervals that have more then 30 days
    586 {{{
    587 C = if(equal, (A > 100 && A < 1600) {equal,&&} td(A) > 30, B)
    588 }}}