#3917: r.info|v.info|r3.info|t.info: output map size used on disk
---------------------------------------------+-------------------------
Reporter: neteler | Owner: grass-dev@…
Type: enhancement | Status: new
Priority: normal | Milestone: 7.8.1
Component: Default | Version: svn-trunk
Keywords: r.info, v.info, r3.info, t.info | CPU: All
Platform: All |
---------------------------------------------+-------------------------
At time it is difficult to estimate the disk usage of map in GRASS GIS.
Especially, because one map consists of several files.
An additional entry in r.info|v.info|r3.info|t.info output would be very
useful (think about storage consumption estimation and billing in a cloud
environment).
#3917: r.info|v.info|r3.info|t.info: display map size used on disk
--------------------------+---------------------------------------------
Reporter: neteler | Owner: grass-dev@…
Type: enhancement | Status: new
Priority: normal | Milestone: 7.8.1
Component: Default | Version: svn-trunk
Resolution: | Keywords: r.info, v.info, r3.info, t.info
CPU: All | Platform: All
--------------------------+---------------------------------------------
Description changed by neteler:
Old description:
At time it is difficult to estimate the disk usage of map in GRASS GIS.
Especially, because one map consists of several files.
An additional entry in r.info|v.info|r3.info|t.info output would be very
useful (think about storage consumption estimation and billing in a cloud
environment).
New description:
At time it is difficult to estimate the disk usage of map in GRASS GIS.
Especially, because one map consists of several files.
An additional entry in the output of r.info|v.info|r3.info|t.info would be
very useful (use case: think about estimation of storage consumption and
billing in a cloud environment).
# page size
sqlite> SELECT SUM("pgsize") FROM "dbstat" WHERE name='zipcodes_wake';
5120
sqlite> SELECT SUM("pgsize") FROM "dbstat" WHERE name='roadsmajor';
12288
}}}
#3917: r.info|v.info|r3.info|t.info: display map size used on disk
--------------------------+---------------------------------------------
Reporter: neteler | Owner: grass-dev@…
Type: enhancement | Status: new
Priority: normal | Milestone: 7.8.1
Component: Default | Version: svn-trunk
Resolution: | Keywords: r.info, v.info, r3.info, t.info
CPU: All | Platform: All
--------------------------+---------------------------------------------
Comment (by mmetz):
Regarding raster maps, a better place to report disk usage would be
r.compress, because with r.compress you could test which compression
method is most appropriate for your use case (trade-off between disk usage
and IO speed).
#3917: r.info|v.info|r3.info|t.info: display map size used on disk
--------------------------+---------------------------------------------
Reporter: neteler | Owner: grass-dev@…
Type: enhancement | Status: new
Priority: normal | Milestone: 7.8.1
Component: Default | Version: svn-trunk
Resolution: | Keywords: r.info, v.info, r3.info, t.info
CPU: All | Platform: All
--------------------------+---------------------------------------------
Comment (by mmetz):
Thinking about it, r.info seems more appropriate.
In any case you should really use r.compress with different compression
methods to decide on the compression method appropriate for your needs.
r.compress also reports changes in disk usage when re-compressing.
Another easy way to estimate disk usage is the file size of the output of
`[r|v].pack -c`.