Changes between Version 25 and Version 26 of Grass7/TemporalGISAlgebra


Ignore:
Timestamp:
Oct 20, 2014, 12:46:20 PM (10 years ago)
Author:
mastho
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Grass7/TemporalGISAlgebra

    v25 v26  
    167167This is very important, so we do not need to specify a global time reference (a space time dataset) for temporal processing.
    168168
     169==== Single map with temporal extent ====
     170
     171The temporal algebra can also handle single maps with time stamps in the tmap function.
     172  tmap()
     173For example:
     174{{{
     175 C = A {:,during} tmap(event)
     176}}}
     177This statement select all maps from space time data set A that are during the temporal extent of single map 'event'
     178
    169179== Temporal Vector Algebra ==
    170180
     
    218228temporal operators and arithmetic operators.
    219229
     230==== Arithmetic operators ====
     231{{{
     232Symbol  Description
     233
     234  +    Addition
     235  -    Substraction
     236  *    Multiplication
     237  /    Division
     238  %    Modulus
     239}}}
     240
     241==== Arithmetic function ====
     242{{{
     243Symbol
     244
     245  exp
     246  log
     247  sqrt
     248  abs
     249  cos
     250  acos
     251  sin   
     252  asin
     253  tan
     254  double
     255  float 
     256  int
     257  isnull
     258  isntnull
     259  null   
     260  exist 
     261}}}
     262
    220263Examples:
    221264Create the sum of all maps from STRDS A and B that have equal time stamps and store the new maps in STRDS C:
     
    254297}}}
    255298
    256 All supported operators and functions are documented below.
    257 
     299
     300==== Single raster map function ====
     301
     302The temporal raster algebra feature also a function to integrate single raster maps without time stamps into the expressions.
     303  map()
     304For example:
     305{{{
     306 C = A * map(constant_value)
     307}}}
     308This statement multiply all raster maps from space time raster data set A with the raster map 'constant_value'
    258309
    259310= Overview of all supported spatio-temporal operators and functions =