https://github.com/Nowosad/supercells-examples
Extended SLIC superpixels algorithm for applications to non-imagery geospatial rasters
https://github.com/Nowosad/supercells-examples
Last synced: 4 months ago
JSON representation
Extended SLIC superpixels algorithm for applications to non-imagery geospatial rasters
- Host: GitHub
- URL: https://github.com/Nowosad/supercells-examples
- Owner: Nowosad
- Created: 2022-06-16T18:05:46.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-31T07:14:13.000Z (over 2 years ago)
- Last Synced: 2024-11-21T20:51:35.580Z (5 months ago)
- Language: R
- Homepage:
- Size: 8 MB
- Stars: 3
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - Nowosad/supercells-examples - Extended SLIC superpixels algorithm for applications to non-imagery geospatial rasters (R)
README
# Extended SLIC superpixels algorithm for applications to non-imagery geospatial rasters
[](https://doi.org/10.1016/j.jag.2022.102935)
This repository contains the code and data for application examples presented in Nowosad and Stepinski *Extended SLIC superpixels algorithm for applications to non-imagery geospatial rasters*. International Journal of Applied Earth Observation and Geoinformation, https://doi.org/10.1016/j.jag.2022.102935
## Requirements
To reproduce the following case studies, you need to install several R packages.
You can find the packages' installation code in [`R/package-installation.R`](R/package-installation.R).## Data
1. Fractional land cover data - this example is based on the Copernicus Global Land Service: Land Cover 100m data for the year 2019.
The study area is about 4200 km2 located in the eastern Netherlands.
The input data is located in `raw-data/all_ned.tif`.
The original data can be found at https://lcviewer.vito.be/2015.
2. Time-series data - this example is based on the WorldClim 1.4 gridded climate data.
Data of average monthly temperature and average monthly precipitation was cropped to the area of the island of Great Britain and was normalized to be between 0 and 1.
The input data files are located in `raw-data/ta_scaled.tif` and `raw-data/pr_scaled.tif`.
The original data can be found at https://www.worldclim.org/data/v1.4/worldclim14.html.
3. Pattern data - this example is based on the 30m-resolution raster of the Copernicus GLO-30 Digital Elevation Model.
The study area of ∼38×21 km is located in western Algeria and features a field of dunes; the raster size is 690×1260 cells.
DEM was converted into the same resolution categorical raster of landscape elements using the geomorphon method
The input data files are located in `raw-data/dem30m.tif` and `raw-data/geom_s3.tif`.
The original data can be found at https://doi.org/10.5270/ESA-c5d3d65.## Application examples
1. Fractional land cover data - [`R/fractional_land_cover_data/large_regions_jsd.R`](R/fractional_land_cover_data/large_regions_jsd.R), [`R/fractional_land_cover_data/large_regions_euclidean.R`](R/fractional_land_cover_data/large_regions_euclidean.R), [`R/fractional_land_cover_data/small_regions_jsd.R`](R/fractional_land_cover_data/small_regions_jsd.R), [`R/fractional_land_cover_data/small_regions_euclidean.R`](R/fractional_land_cover_data/small_regions_euclidean.R)
2. Time-series data - [`R/time-series_data/climate_euc.R`](R/time-series_data/climate_euc.R) and [`R/time-series_data/climate_dtw.R`](R/time-series_data/climate_dtw.R)
3. Pattern data - [`R/pattern_data/dunes.R`](R/pattern_data/dunes.R)