Skip to contents

Summarizes the information contained in the input object

Usage

# S4 method for .UD
summary(object)
  # S4 method for .UDStack
summary(object)

Arguments

object

move, moveStack, moveBurst, DBBMM, DBBMMStack, DBBMMBurstStack, dynBGB, dBMvariance, dBMvarianceBurst, dBMvarianceStack,dBGBvariance, .UD, .UDStack or .UDBurstStack object

Details

Returns the projection, extent, and maximum and minimum values of the raster stored within the DBBMM, DBBMMStack, dynBGB, .UD, .UDStack or .UDBurstStack object. For the remaining objects it returns a summary of the data contained in the '@data' slot.

Author

Marco Smolla & Anne Scharf

Examples

data(leroy)
summary(leroy) # summary of a move object
#> Object of class Move
#> Coordinates:
#>                     min       max
#> location.long -73.93067 -73.84366
#> location.lat   42.70898  42.76870
#> Is projected: FALSE 
#> proj4string : [+proj=longlat +datum=WGS84 +no_defs]
#> Number of points: 919
#> Data attributes:
#>    timestamp                      eobs.battery.voltage
#>  Min.   :2009-02-11 12:16:45.00   Min.   :3596        
#>  1st Qu.:2009-02-16 06:07:54.00   1st Qu.:3625        
#>  Median :2009-02-22 04:15:45.00   Median :3632        
#>  Mean   :2009-02-21 13:08:07.61   Mean   :3635        
#>  3rd Qu.:2009-02-27 00:53:06.00   3rd Qu.:3642        
#>  Max.   :2009-03-04 09:17:00.00   Max.   :3666        
#>                                                       
#>  eobs.horizontal.accuracy.estimate eobs.key.bin.checksum
#>  Min.   : 3.07                     Min.   :3.259e+06    
#>  1st Qu.: 7.17                     1st Qu.:1.060e+09    
#>  Median :11.52                     Median :2.122e+09    
#>  Mean   :16.53                     Mean   :2.131e+09    
#>  3rd Qu.:20.74                     3rd Qu.:3.148e+09    
#>  Max.   :97.02                     Max.   :4.292e+09    
#>                                                         
#>  eobs.speed.accuracy.estimate              eobs.start.timestamp eobs.status
#>  Min.   : 0.270               2009-02-11 12:14:59.000:  1       A:919      
#>  1st Qu.: 5.140               2009-02-11 12:30:01.000:  1       D:  0      
#>  Median : 6.960               2009-02-11 12:45:01.000:  1                  
#>  Mean   : 8.356               2009-02-11 13:00:02.000:  1                  
#>  3rd Qu.:10.120               2009-02-11 13:15:01.000:  1                  
#>  Max.   :33.040               2009-02-11 13:30:01.000:  1                  
#>                               (Other)                :913                  
#>  eobs.temperature eobs.type.of.fix eobs.used.time.to.get.fix  ground.speed    
#>  Min.   :13.00    Min.   :3        Min.   :  4.00            Min.   : 0.0100  
#>  1st Qu.:21.00    1st Qu.:3        1st Qu.: 18.00            1st Qu.: 0.2200  
#>  Median :24.00    Median :3        Median : 42.00            Median : 0.4500  
#>  Mean   :23.78    Mean   :3        Mean   : 41.53            Mean   : 0.8494  
#>  3rd Qu.:26.00    3rd Qu.:3        3rd Qu.: 54.00            3rd Qu.: 0.9100  
#>  Max.   :35.00    Max.   :3        Max.   :119.00            Max.   :31.7100  
#>                                                                               
#>     heading       height.above.ellipsoid  utm.easting      utm.northing    
#>  Min.   :  0.00   Min.   :-169.60        Min.   :587508   Min.   :4729143  
#>  1st Qu.: 20.32   1st Qu.:  61.60        1st Qu.:590133   1st Qu.:4731831  
#>  Median :151.39   Median :  74.50        Median :590893   Median :4732940  
#>  Mean   :173.19   Mean   :  73.87        Mean   :591263   Mean   :4732794  
#>  3rd Qu.:335.54   3rd Qu.:  87.10        3rd Qu.:592469   3rd Qu.:4734011  
#>  Max.   :359.79   Max.   : 349.00        Max.   :594679   Max.   :4735720  
#>                                                                            
#>  utm.zone  study.local.timestamp           
#>     :  0   Min.   :2009-02-11 06:16:45.00  
#>  18N:919   1st Qu.:2009-02-16 00:07:54.00  
#>            Median :2009-02-21 22:15:45.00  
#>            Mean   :2009-02-21 07:08:07.61  
#>            3rd Qu.:2009-02-26 18:53:06.00  
#>            Max.   :2009-03-04 03:17:00.00  
#>                                            
data(leroydbbmm)
summary(leroydbbmm) # summary of a DBBMM object
#> $Raster_proj
#> [1] "+proj=aeqd +lat_0=42.73884025 +lon_0=-73.8871629 +x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs"
#> 
#> $Raster_ext
#> class      : Extent 
#> xmin       : -17098.3 
#> xmax       : 17100.24 
#> ymin       : -15958.9 
#> ymax       : 15959.75 
#> 
#> $Raster_max_val
#> [1] 0.06319155
#> 
#> $Raster_min_val
#> [1] 0
#>