Your First Analysis
This tutorial walks you through a complete end-to-end analysis: loading a DEM, computing slope, and adding the result to the map — all from the browser.
Prerequisites
- FastGIS server running and accessible
- A GRASS location containing a DEM raster (e.g.
elevation) - Your API token
1. Connect and select an environment
- Open the GRASS Runner
- In the Connection panel enter your Base URL and API token
- Click Connect & load environments
- Select the Location and Mapset that contain your DEM
2. Add the DEM to the map
- Click the ⊞ (Add Raster) toolbar button
- Select
elevationfrom the dropdown - Click Add to Map
The DEM appears as a WMS layer on the Cesium globe. Use ⊕ to zoom to it.
3. Run r.slope.aspect
- In the Run Module panel type
r.slope.aspect - Click Load ↓
- Fill in the form:
elevation→ your DEM rasterslope→ output name, e.g.slope_result
- Check the Command preview line
- Click ▶ Run
Watch the Terminal tab for output. The module completes in seconds for a small region.
4. Add the slope layer
- Click ⊞ again
- Select
slope_resultfrom the dropdown - Click Add to Map
Adjust the opacity slider in the Layer Manager to blend slope over the DEM.
5. Save your work
Click the Save toolbar button (or use the Workspace panel to create a named session) so you can return to this state later.
Congratulations — you've run your first GRASS module in the browser! Continue with Terrain Profile to extract an elevation transect.