Learn R Programming

sits (version 1.5.2)

sits_bbox: Get the bounding box of the data

Description

Obtain a vector of limits (either on lat/long for time series or in projection coordinates in the case of cubes)

Usage

sits_bbox(data, crs = "EPSG:4326", as_crs = NULL)

# S3 method for sits sits_bbox(data, crs = "EPSG:4326", as_crs = NULL)

# S3 method for raster_cube sits_bbox(data, crs = "EPSG:4326", as_crs = NULL)

# S3 method for tbl_df sits_bbox(data, crs = "EPSG:4326", as_crs = NULL)

# S3 method for default sits_bbox(data, crs = "EPSG:4326", as_crs = NULL)

Value

A bbox.

Arguments

data

samples (class "sits") or cube.

crs

CRS of the samples points (single char)

as_crs

CRS to project the resulting bbox.

Author

Gilberto Camara, gilberto.camara@inpe.br

Rolf Simoes, rolf.simoes@inpe.br

Examples

Run this code
if (sits_run_examples()) {
    # get the bbox of a set of samples
    sits_bbox(samples_modis_ndvi)
    # get the bbox of a cube in WGS84
    data_dir <- system.file("extdata/raster/mod13q1", package = "sits")
    cube <- sits_cube(
        source = "BDC",
        collection = "MOD13Q1-6.1",
        data_dir = data_dir
    )
    sits_bbox(cube, as_crs = "EPSG:4326")
}

Run the code above in your browser using DataLab