RGA Withdrawl swelling risk of clay soils
The RGA dataset describes the exposure to the phenomenon of clay shrinkage-swelling over clay soils.
Area covered in Earth Engine
Metropolitan area of France (excluding the city of Paris)
Code Sample
// Import the dataset.
var rga = ee.FeatureCollection("projects/ee-france/assets/BRGM/GEOR/RGA");
// Define a location of interest.
var lon = 5.04855;
var lat = 45.73616;
var poi = ee.Geometry.Point(lon, lat);
// Paint the dataset with appropriate palette.
var empty = ee.Image().byte();
var coloredRpg = empty.paint({
featureCollection: rga,
color: 'NIVEAU',
});
var palette = ["yellow", "orange", "red"]
Map.setCenter(lon, lat, 12);
Map.addLayer(coloredRpg, {palette: palette, min:1, max:3}, 'RGA');
Data producer
Licence
Etalab Open License 2.0
Implementation in Earth Engine
Currated in Earth Engine by Guillaume Attard & Julien Bardonnet