Opened 9 years ago
Closed 8 years ago
#2866 closed enhancement (fixed)
Let r.import specify "title"
| Reported by: | pmav99 | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | 7.2.0 |
| Component: | Raster | Version: | 7.0.2 |
| Keywords: | r.import | Cc: | |
| CPU: | Unspecified | Platform: | Unspecified |
Description
I think that it would be nice if r.import was able to specify the raster's "title". This is supported by r.in.gdal and AFAIK it shouldn't be too hard to implement.
#%option #% key: title #% key_desc: phrase #% type: string #% required: no #% description: Title for resultant raster map #% guisection: Metadata #%end
def main():
# [snip]
title = options["title"]
# [snip]
parameters = dict(input=GDALdatasource, output=output,
memory=memory, flags='c', title=title,
location=TMPLOC, quiet=True)
# [snip]
Change History (6)
comment:1 by , 9 years ago
| Component: | Default → Raster |
|---|---|
| Type: | defect → enhancement |
comment:2 by , 9 years ago
comment:3 by , 9 years ago
| Version: | unspecified → 7.0.2 |
|---|
Implemented in r67698. To be backported if working as expected.
comment:4 by , 8 years ago
| Milestone: | 7.0.4 → 7.0.5 |
|---|
comment:5 by , 8 years ago
| Milestone: | 7.0.5 → 7.2.0 |
|---|
Note:
See TracTickets
for help on using tickets.

Good idea. Can you please add the change as "svn diff" attachment for easier processing?