Note: This document is for an older version of GRASS GIS that will be discontinued soon. You should upgrade, and read the current manual page.
Optionally, also the raster, 3D raster and vector maps of the space time datasets can be removed from the current mapset using the -d (delete) flag. All removals only work if -f (force) flag is used.
#Create new and empty STRDS t.create output=precip_months_sum semantictype=mean \ title="Monthly sum of precipitation" \ description="Monthly sum of precipitation for the \ North Carolina sample data location" #Register maps from sample dataset (selecting a subset with g.list) t.register -i type=raster input=precip_months_sum \ maps=$(g.list type=raster pattern="201*_precip" separator=comma) \ start="2010-01-01" increment="1 months" #Create some new data by aggregating with 1 years granularity t.rast.aggregate input=precip_months_sum \ output=precip_years_sum basename=precip_years_sum granularity="1 \ years" method=sum #Remove all newly produced data: # a) the aggregated STRDS with 1 years granularity along with its raster maps t.remove -df type=strds input=precip_years_sum # b) the STRDS with 1 months granularity, but not the original sample data t.remove -f type=strds input=precip_months_sum
Available at: t.remove source code (history)
Latest change: Thursday Feb 03 11:10:06 2022 in commit: 547ff44e6aecfb4c9cbf6a4717fc14e521bec0be
Note: This document is for an older version of GRASS GIS that will be discontinued soon. You should upgrade, and read the current manual page.
Main index | Temporal index | Topics index | Keywords index | Graphical index | Full index
© 2003-2023 GRASS Development Team, GRASS GIS 8.2.2dev Reference Manual