Returns information about a track.

gtrack.info(track = NULL)

Arguments

track

track name

Value

A list that contains track properties

Details

Returns information about the track (type, dimensions, size in bytes, etc.). The fields in the returned value vary depending on the type of the track.

Examples

# \dontshow{
options(gmax.processes = 2)
# }

gdb.init_examples()
gtrack.info("dense_track")
#> $type
#> [1] "dense"
#> 
#> $dimensions
#> [1] 1
#> 
#> $size.in.bytes
#> [1] 80012
#> 
#> $bin.size
#> [1] 50
#> 
gtrack.info("rects_track")
#> $type
#> [1] "rectangles"
#> 
#> $dimensions
#> [1] 2
#> 
#> $size.in.bytes
#> [1] 104844
#>