Skip to contents

A simple features data frame with the features and the land cover classification for Santarem In order to obtain this classification, we used the mean-shift algorithm to segment an orthorectified image from the Wide Scan Multispectral and Panchromatic Camera (WPM) of the China-Brazil Earth Resources Satellite (CBERS-4A), dated 11/09/2020 (path: 219, row: 116). The WMP-CBERS image has 2 m spatial resolution for the panchromatic camera and 8 m for the multispectral camera. After segmentation, we extracted each segment's spectral, Grey-Level Co-occurrence Matrix texture measurements (GLCM), biophysical index, and geometry attributes. Then, after random and stratified sampling, we classified the segments with the Random Forest machine learning algorithm. The final classification has an accuracy of 98% to the testing samples (30% of the sample base). The classified area overlaps the urban limit of Santarem and is about 143 km². The data is in WGS84 Coordinate Systems, EPSG 4326. The polygons were classified into:"Shrub Vegetation" (SV), "Herbaceous Vegetation" (HV), "Water" (Wa), "Exposed Ground" (EG), "High Gloss Cover" (HG), "Ceramic Cover" (Ce), "Fiber Cement Cover" (FC), "Asphalt Road" (As), "Terrain Road" (Te), "Cloud" (Cl) and "Shadow" (Sh).

Usage

data(santarem_class)

Format

A simple features data frame with 65,822 rows and 33 variables:

ID

Unique identifier for each polygon in the data frame.

ASM_mean

Average value of the Angular Second Moment (ASM, also called Uniformity). This is a measure of local homogeneity. Calculated over a moving window of 3x3 pixels, isotropically.

B0_amplitu

Amplitude value of the blue band for all pixels inside the object. The amplitude means the maximum pixel value minus the minimum pixel value.

B0_var

Variance value of the blue band for all pixels inside the object.

B3_mean

Average value of the near-infrared band for all pixels inside the object.

B3_min

Minimun value of the near-infrared band for all pixels inside the object.

BAI_var

Variance of the Bare soil area index (red version): the normalized division of the blue band by the red band.

COR_sum

Sum value of the Correlation. This measure analyses the linear dependency of grey levels of neighboring pixels. Typically high, when the scale of local texture is larger than the distance. Calculated over a moving window of 3x3 pixels, isotropically.

COT_max

Maximum value of the Constrast. This measure analyses the image contrast (locally gray-level variations) as the linear dependency of grey levels of neighboring pixels (similarity). Calculated over a moving window of 3x3 pixels, isotropically.

COT_mean

Average value of the Constrast. This measure analyses the image contrast (locally gray-level variations) as the linear dependency of grey levels of neighboring pixels (similarity). Calculated over a moving window of 3x3 pixels, isotropically.

COT_var

Variance value of the Constrast. This measure analyses the image contrast (locally gray-level variations) as the linear dependency of grey levels of neighboring pixels (similarity). Calculated over a moving window of 3x3 pixels, isotropically.

DE_mean

Average value of the Difference Entropy. Calculated over a moving window of 3x3 pixels, isotropically.

IDM_mean

Average value of the Inverse Difference Moment. Calculated over a moving window of 3x3 pixels, isotropically.

IDM_min

Minimum value of the Inverse Difference Moment. Calculated over a moving window of 3x3 pixels, isotropically.

IFAG_mean

Average value of mean value of the water fraction image, derived from a Linear Spectral Mixture Model.

IFAG_var

Variance value of mean value of the water fraction image, derived from a Linear Spectral Mixture Model.

IFSE_mean

Average value of mean value of the exposed soil fraction image, derived from a Linear Spectral Mixture Model.

IFSE_min

Minimim value of mean value of the exposed soil fraction image, derived from a Linear Spectral Mixture Model.

IFVE_mean

Average value of mean value of the vegetation fraction image, derived from a Linear Spectral Mixture Model.

MC1_mean

Average value of the Information Measures of Correlation. Calculated over a moving window of 3x3 pixels, isotropically.

MC1_min

Minimum value of the Information Measures of Correlation. Calculated over a moving window of 3x3 pixels, isotropically.

NDRI_sum

Average value of the Normalized difference roof index: the normalized division of the red band by the blue band.

NDRI_var

Variance value of the Normalized difference roof index: the normalized division of the red band by the blue band.

NDVI_var

Variance value of the Normalized difference vegetation index: the normalized division of the near-infrared band by the red band.

Road_perc

Ratio of the length of roads in each polygon to the area of the polygon. The roads were obtained from open street maps.

Road_pres

Presence of roads inside the polygon. The roads were obtained from open street maps.

SA_min

Minimum value of the Sum Avarage. Calculated over a moving window of 3x3 pixels, isotropically.

SA_var

Variance value of the Sum Avarage. Calculated over a moving window of 3x3 pixels, isotropically.

SE_mean

Average value of the Sum Entropy. Calculated over a moving window of 3x3 pixels, isotropically.

SV_mean

Average value of the Sum Variance. Calculated over a moving window of 3x3 pixels, isotropically.

TARGET

Variable related to the sampling process. Null value means that the feature was not selected during sampling.

CLASS

The land cover class in which the polygon belongs.

geometry

geometry of the simple features.

Source

Vrabel, J.C., Stensaas, G.L., Anderson, C., Christopherson, J., Kim, M., Park, S., and Cantrell, S., 2021, System characterization report on the China-Brazil Earth Resources Satellite-4A (CBERS–4A), chap. J of Ramaseri Chandra, S.N., comp., System characterization of Earth observation sensors: U.S. Geological Survey Open-File Report 2021–1030, 35 p., https://doi.org/10.3133/ofr20211030J.

dos Santos BD, de Pinho CMD, Oliveira GET, Korting TS, Escada MIS, Amaral S. Identifying Precarious Settlements and Urban Fabric Typologies Based on GEOBIA and Data Mining in Brazilian Amazon Cities. Remote Sensing. 2022; 14(3):704. https://doi.org/10.3390/rs14030704

Haralick, R.M., K. Shanmugam, and I. Dinstein (1973). Textural features for image classification. IEEE Transactions on Systems, Man, and Cybernetics, SMC-3(6):610-621.

Examples

 data(santarem_class)
#> Warning: file ‘santarem_class.rda’ has magic number 'versi'
#>   Use of save versions prior to 2 is deprecated
#> Error in load(file, envir = tmp_env): bad restore file magic number (file may be corrupted) -- no data loaded
 class <- santarem_class$CLASS
#> Error: object 'santarem_class' not found