Opened 10 years ago

Closed 9 years ago

#2136 closed defect (fixed)

Create standard options for map or file base name (prefix)

Reported by: wenzeslaus Owned by: grass-dev@…
Priority: blocker Milestone: 7.0.0
Component: Parser Version: svn-releasebranch64
Keywords: base name, prefix, basename Cc:
CPU: All Platform: All

Description

A lot of modules creates several map while the input is only one name and the actual map names are combined from the name provided by user, separator and some additional information. For example:

r.mystats out=elevation_stats

# produces:
elevation_stats_mean
elevation_stats_stddev
elevation_stats_variance

Example modules are r.texture, i.pca, some import tools and probably some others. With the temporal data we can expect more and more modules outputting something like water_level_12, water_level_13, ... (correction: we do not expect, it is already happening).

Name provided by user is usually referred as prefix by older modules or base name (base_name or basename) by newer modules. The other possibilities are just a name such as output and using input name as a base name for output.

I consider the last two possibilities as confusing. I don't like prefix because it is not a prefix. In my point of view we are suffixing the analyses name or state description, not prefixing the name of map to it. I prefer basename because it is what it is. Although it is longer then prefix and there is an issue with different spellings. I prefer basename over base_name because it can be used in both text and as parameter although my spell checker does not like it.

The general way would be to let user choose the separator (e.g. by not putting there any) but it is not practical. We are using now both the dot (usually older modules) and underscore (usually newer modules). My choice is the underscore because it works for both rasters and vectors and moreover, it is more practical for files.

We need to create standard options for this and use it in the modules. It will improve standardization in module interfaces, enable parser in adding overwrite flag and it will provide a general way to GUI to generate the form correctly.

See also GRASS-dev i.pca doesn't have the '--o' flag.

Attachments (1)

basename.diff (4.7 KB ) - added by martinl 10 years ago.

Download all attachments as: .zip

Change History (37)

in reply to:  description comment:1 by mmetz, 10 years ago

Replying to wenzeslaus:

A lot of modules creates several map while the input is only one name and the actual map names are combined from the name provided by user, separator and some additional information.

[...]

We need to create standard options for this and use it in the modules. It will improve standardization in module interfaces, enable parser in adding overwrite flag and it will provide a general way to GUI to generate the form correctly.

It seems that this is already implemented, see r.mapcalc [0] for an example.

[0] https://trac.osgeo.org/grass/browser/grass/trunk/raster/r.mapcalc/main.c#L114

comment:2 by wenzeslaus, 10 years ago

module->overwrite = 1;

GModule overwrite solves only one of the problems. It adds the overwrite flag and even GUI respects it this is great. But it does not standardize the option name (key), label and description.

So, r58311 and L114 in r.mapcalc solves the main problem for now but still leave here the confusion (see GRASS-dev i.pca doesn't have the '--o' flag).

Moreover, documentation to the standard option would define if underscore, dot or nothing is used to separate basename/prefix from the suffix/result name. So, user would know what to expect and programmer what to implement.

Finally, I hope that in future, parser, GUI or both will use the information from (or defined by) standard flag to provide some checking (such as validity of name as map name) or some additional functionality (such a visual warning in GUI if maps with the same basename/prefix already exists).

Anyway, thank you for the fix for i.pca and r.texture.

comment:3 by wenzeslaus, 10 years ago

One more name which is used for this thing: name prefix. Coming form G7:r.ros this time.

in reply to:  2 ; comment:4 by zarch, 10 years ago

Replying to wenzeslaus:

Moreover, documentation to the standard option would define if underscore, dot or nothing is used to separate basename/prefix from the suffix/result name. So, user would know what to expect and programmer what to implement.

What do you think if we use two underscore () to join the basename with the rest?

basename01, basename02, etc.

>>> import re
>>> m = re.match("^(?P<name>[a-zA-Z0-9]+)__(?P<id>\w+)$", "horizon__000")
>>> m.groups()
('horizon', '000')
>>> m.groupdict()
{'id': '000', 'name': 'pippo'}
>>> m = re.match("^(?P<name>[a-zA-Z0-9]+)__(?P<id>\w+)$", "tile__000_001")
>>> m.groups()
('tile', '000_001')
>>> m.groupdict()
{'name': 'tile', 'id': '000_001'}

So maybe in the future the GUI would be able to group maps following the rule "basename*" and visualize them in the wxGUI Animation or something else...

comment:5 by zarch, 10 years ago

The list of the modules using the word "prefix" as name of the parameter or in the parameter description is (module name => parameter name, parameter description):

  • g.extension => prefix: Prefix where to install extension (ignored when flag -s is given)
  • i.cca => output: Output raster map prefix name
  • i.landsat.acca => input_prefix: Example: 'B.' for B.1, B.2, ...
  • i.landsat.toar => input_prefix: Example: 'B.' for B.1, B.2, ...
  • i.landsat.toar => output_prefix: Example: 'B.toar.' generates B.toar.1, B.toar.2, ...
  • i.pansharpen => output_prefix: Prefix for output raster maps
  • i.pca => output_prefix: A numerical suffix will be added for each component map
  • i.tasscap => output_prefix: Prefix for output raster maps
  • i.topo.corr => output: Name (flag -i) or prefix for output raster maps
  • m.nviz.script => name: Prefix of output images (default = NVIZ)
  • r.blend => output_prefix: Prefix for red, green and blue output raster maps containing
  • r.rgb => output_prefix: Prefix for output raster maps (default: input)
  • r.ros => output: Prefix for output raster maps (.base, .max, .maxdir, .spotdist)
  • r.texture => prefix: Prefix for output raster map(s)
  • v.out.postgis => dsn: Starts with 'PG' prefix, eg. 'PG:dbname=grass'
  • v.rast.stats => column_prefix: Column prefix for new attribute columns

Just for the record I attached the code to look for a word in all the GRASS modules:

from __future__ import print_function
import sys
from grass.pygrass.modules.shortcuts import (display, database, general,
                                             imagery, miscellaneous,
                                             postscript, raster, raster3D,
                                             temporal, vector)

mods = [display, database, general, imagery, miscellaneous, postscript,
        raster, raster3D, temporal, vector]

SKIP = ['v.pack', 'v.parallel']


def look(modules, word, skip, file=sys.stdout):
    mlen = len(modules.__dir__())
    for i, module in enumerate(modules.__dir__()):
        try:
            md = "%s.%s" % (modules.prefix, module)
            print("%03d/%03d - %s" % (i + 1, mlen, md))
            if md in skip:
                print("SKIPED: %s" % md)
            else:
                m = getattr(modules, module)
                for p in m.params_list:
                    if ((p.name is not None and word in p.name.lower()) or
                            (p.description is not None and
                             word in p.description.lower())):
                        print("%s => %s, %s" % (m.name, p.name, p.description),
                              file=file)
                del(m)
        except:
            print("Not able to read: %s.%s" % (modules.prefix, module),
                  file=file)
            #import ipdb; ipdb.set_trace()
    del(modules)


with open("prefix.txt", "w") as file:
    for m in mods:
        look(m, "prefix", skip=SKIP, file=file)

In this way I found out that pygrass modules interface crashed with these two modules:

  • v.pack
  • v.parallel

and raise an exception trying to read:

  • g.parser
  • i.eb_h_sebal01
  • t.rast_accdetect
  • t.rast_accumulate
  • t.rast_aggregate
  • t.rast_aggregate_ds
  • t.rast_extract
  • t.rast_gapfill
  • t.rast_import
  • t.rast_mapcalc
  • t.rast_neighbors
  • t.rast3d_mapcalc
  • t.vect_extract
  • v.generalize

So I will look into it during the next days.

in reply to:  4 ; comment:6 by annakrat, 10 years ago

Replying to zarch:

Replying to wenzeslaus:

Moreover, documentation to the standard option would define if underscore, dot or nothing is used to separate basename/prefix from the suffix/result name. So, user would know what to expect and programmer what to implement.

What do you think if we use two underscore (__) to join the basename with the rest?

basename__01, basename__02, etc.

>>> import re
>>> m = re.match("^(?P<name>[a-zA-Z0-9]+)__(?P<id>\w+)$", "horizon__000")
>>> m.groups()
('horizon', '000')
>>> m.groupdict()
{'id': '000', 'name': 'pippo'}
>>> m = re.match("^(?P<name>[a-zA-Z0-9]+)__(?P<id>\w+)$", "tile__000_001")
>>> m.groups()
('tile', '000_001')
>>> m.groupdict()
{'name': 'tile', 'id': '000_001'}

So maybe in the future the GUI would be able to group maps following the rule "basename__*" and visualize them in the wxGUI Animation or something else...

I agree with double underscore.

in reply to:  5 comment:7 by zarch, 10 years ago

Replying to zarch:

In this way I found out that pygrass modules interface crashed with these two modules:

  • v.pack
  • v.parallel

and raise an exception trying to read:

  • g.parser
  • i.eb_h_sebal01
  • t.rast_accdetect
  • t.rast_accumulate
  • t.rast_aggregate
  • t.rast_aggregate_ds
  • t.rast_extract
  • t.rast_gapfill
  • t.rast_import
  • t.rast_mapcalc
  • t.rast_neighbors
  • t.rast3d_mapcalc
  • t.vect_extract
  • v.generalize

So I will look into it during the next days.

Ok, fixed (r60940, r60941) and added a testsuite (r60942) to read the XML interface of all GRASS modules, now all modules are working except for g.parser.

in reply to:  6 ; comment:8 by wenzeslaus, 10 years ago

Replying to annakrat:

Replying to zarch:

Replying to wenzeslaus:

Moreover, documentation to the standard option would define if underscore, dot or nothing is used to separate basename/prefix from the suffix/result name. So, user would know what to expect and programmer what to implement.

What do you think if we use two underscore (__) to join the basename with the rest?

basename__01, basename__02, etc.

>>> import re
>>> m = re.match("^(?P<name>[a-zA-Z0-9]+)__(?P<id>\w+)$", "horizon__000")
>>> m.groups()
('horizon', '000')
>>> m.groupdict()
{'id': '000', 'name': 'pippo'}
>>> m = re.match("^(?P<name>[a-zA-Z0-9]+)__(?P<id>\w+)$", "tile__000_001")
>>> m.groups()
('tile', '000_001')
>>> m.groupdict()
{'name': 'tile', 'id': '000_001'}

So maybe in the future the GUI would be able to group maps following the rule "basename__*" and visualize them in the wxGUI Animation or something else...

I agree with double underscore.

I'm not sure about double underscore. I don't like how it looks like. I'm afraid if it will be understandable for users, for example when visualized in some GUI, you don't know how the font will show it (with mono spaced font, you can see two underscores even if they are connected with each other, with other fonts, you don't know). Moreover, so systems can try to interpret the double underscore too (see what Trac did to commit message in r60944).

On the other hand, I see the advantages too. It is much harder or more fragile to achieve the same with one underscore (or other character).

in reply to:  8 ; comment:9 by zarch, 10 years ago

Replying to wenzeslaus:

Replying to annakrat:

Replying to zarch:

So maybe in the future the GUI would be able to group maps following the rule "basename__*" and visualize them in the wxGUI Animation or something else...

I agree with double underscore.

I'm not sure about double underscore. I don't like how it looks like. I'm afraid if it will be understandable for users, for example when visualized in some GUI, you don't know how the font will show it (with mono spaced font, you can see two underscores even if they are connected with each other, with other fonts, you don't know). Moreover, so systems can try to interpret the double underscore too (see what Trac did to commit message in r60944).

On the other hand, I see the advantages too. It is much harder or more fragile to achieve the same with one underscore (or other character).

I see two options:

  • avoid to use any separator;
  • choose a "standard" separator for map names;

I think that define a standard separator could open new possibilities to GRASS GUI/interaction. So I believe we should choose one.

Concerning which separator we should use, personally I've not strong opinion about double underscore, my idea is that one underscore is quite common in the raster/vector names so I don't think it is a good candidate to be used as separator.

Other options could be:

  • basename:01, basename:02, etc.
  • basename::01, basename::02, etc.
  • basename(01), basename(02), etc.
  • basename[01], basename[02], etc.
  • basename{01}, basename{02}, etc.
  • basename»01, basename»02, etc.

That became with two ids, like the output of r.tile:

  • basename:00:00, basename:00:01, etc.
  • basename::00::00, basename::00::01, etc.
  • basename(00)(00), basename(00)(01), etc.
  • basename[00][00], basename[00][01], etc.
  • basename{00}{00}, basename{00}{01}, etc.
  • basename»00»00, basename»00»01, etc.

Using the parenthesis is maybe a little more difficult to parse than just a separator and parenthesis are often interpreted by other program, see how are rendered here!

Personally I like the use of a peculiar character like: », ■, or other because user should never insert such characters manually and clearly mark which maps are automatically generated my GRASS modules, and as far as I know they have not particular meaning in other system like shell, trac, etc..

in reply to:  9 ; comment:10 by annakrat, 10 years ago

Replying to zarch:

Replying to wenzeslaus:

Replying to annakrat:

Replying to zarch:

So maybe in the future the GUI would be able to group maps following the rule "basename__*" and visualize them in the wxGUI Animation or something else...

I agree with double underscore.

I'm not sure about double underscore. I don't like how it looks like. I'm afraid if it will be understandable for users, for example when visualized in some GUI, you don't know how the font will show it (with mono spaced font, you can see two underscores even if they are connected with each other, with other fonts, you don't know). Moreover, so systems can try to interpret the double underscore too (see what Trac did to commit message in r60944).

On the other hand, I see the advantages too. It is much harder or more fragile to achieve the same with one underscore (or other character).

I see two options:

  • avoid to use any separator;
  • choose a "standard" separator for map names;

I think that define a standard separator could open new possibilities to GRASS GUI/interaction. So I believe we should choose one.

Concerning which separator we should use, personally I've not strong opinion about double underscore, my idea is that one underscore is quite common in the raster/vector names so I don't think it is a good candidate to be used as separator. Personally I like the use of a peculiar character like: », ■, or other because user should never insert such characters manually and clearly mark which maps are automatically generated my GRASS modules, and as far as I know they have not particular meaning in other system like shell, trac, etc..

Map names can't have this weird characters, check G_legal_filename. I still think '__' is the best option.

in reply to:  10 ; comment:11 by zarch, 10 years ago

Replying to annakrat:

Replying to zarch:

Personally I like the use of a peculiar character like: », ■, or other because user should never insert such characters manually and clearly mark which maps are automatically generated my GRASS modules, and as far as I know they have not particular meaning in other system like shell, trac, etc..

Map names can't have this weird characters, check G_legal_filename. I still think '__' is the best option.

Yes, I know... But we can always change what is considered legal and what is not...

in reply to:  11 ; comment:12 by wenzeslaus, 10 years ago

Replying to zarch:

Replying to annakrat:

Replying to zarch:

Personally I like the use of a peculiar character like: », ■, or other because user should never insert such characters manually and clearly mark which maps are automatically generated my GRASS modules, and as far as I know they have not particular meaning in other system like shell, trac, etc..

Map names can't have this weird characters, check G_legal_filename. I still think '__' is the best option.

Yes, I know... But we can always change what is considered legal and what is not...

I would not risk anything what is non-ASCII. Moreover, it might be a good idea to avoid also all characters which has some meaning or must be escaped/quoted in various command lines or SQL. These include (){}[]:.|$!&*.

Perhaps one underscore is enough. For GUI, it would be a big improvement to know that there was a basename.

comment:13 by hcho, 10 years ago

I don't like those special characters (», ■,) because they are not easy to type and we should not include non-ASCII characters in legal names.

Personally, I prefer to append a separator to basenames myself. What about a GRASS variable like BASENAME_SEPARATOR? It can be empty or whatever we want.

in reply to:  12 ; comment:14 by zarch, 10 years ago

Replying to wenzeslaus:

Replying to zarch:

Replying to annakrat:

Map names can't have this weird characters, check G_legal_filename. I still think '__' is the best option.

Yes, I know... But we can always change what is considered legal and what is not...

I would not risk anything what is non-ASCII.

Just for the record this are ASCII characters » (175), ■ (254)...

Moreover, it might be a good idea to avoid also all characters which has some meaning or must be escaped/quoted in various command lines or SQL. These include (){}[]:.|$!&*.

Works fine with SQL, and has not special meaning elsewhere, and so far it is working quite well also in my bash scripts without problems.

$ sqlite3 /tmp/temp»db.sqlite
SQLite version 3.7.11 2012-03-20 11:35:50
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> CREATE TABLE my»table (cat INTEGER PRIMARY KEY, my»col INTEGER);
sqlite> INSERT INTO my»table (cat, my»col) VALUES (1, 1234);
sqlite> SELECT * FROM my»table;
1|1234

Perhaps one underscore is enough.

I don't think so, a single underscore is too common, it is too prone to casual errors.

in reply to:  12 comment:15 by glynn, 10 years ago

Replying to wenzeslaus:

Yes, I know... But we can always change what is considered legal and what is not...

Sort of. We can't change which characters exist in various encodings, nor can we change which characters are legal (at the OS level) in a filename.

I would not risk anything what is non-ASCII. Moreover, it might be a good idea to avoid also all characters which has some meaning or must be escaped/quoted in various command lines or SQL. These include (){}[]:.|$!&*.

Realistically, "characters which has some meaning" is anything except alphanumerics and underscore. Everything else meaning to something or another. Actually, even an underscore isn't 100% safe.

Even a dash (minus, ASCII 45 = 0x2d) creates issues for r.mapcalc: foo-bar is parsed as the subtraction of bar from foo; if you want to use a map named foo-bar (which is valid as per G_legal_filename), the name has to be quoted in the r.mapcalc expression).

in reply to:  14 ; comment:16 by wenzeslaus, 10 years ago

Replying to zarch:

Replying to wenzeslaus:

Replying to zarch:

Replying to annakrat:

Map names can't have this weird characters, check G_legal_filename. I still think '__' is the best option.

Yes, I know... But we can always change what is considered legal and what is not...

I would not risk anything what is non-ASCII.

Just for the record this are ASCII characters » (175), ■ (254)...

I wish this to be true but it is not. They might be part of some extended ASCII; I can see them at asciitable but not at ascii-code. More importantly, they are not part of widely supported (and thus safe) ASCII which has only 128 printable and non-prinatble characters (to fit into 7 bits). ASCII corresponds to first 128 characters of UTF-8.

in reply to:  16 ; comment:17 by zarch, 10 years ago

Replying to wenzeslaus:

Replying to zarch:

Just for the record this are ASCII characters » (175), ■ (254)...

I wish this to be true but it is not. They might be part of some extended ASCII; I can see them at asciitable but not at ascii-code. More importantly, they are not part of widely supported (and thus safe) ASCII which has only 128 printable and non-prinatble characters (to fit into 7 bits). ASCII corresponds to first 128 characters of UTF-8.

yes, you are right, thanks for clarification.

Replying to zarch:

Replying to wenzeslaus:

Perhaps one underscore is enough.

I don't think so, a single underscore is too common, it is too prone to casual errors.

For example, we decide to not write the dot in float number (basename_000.05) as in raster maps generated by r.horizon using a single underscore (basename_000_05), but in this way is not clear which one is the basename which the id.

If in the future we will have to generate raster maps with two floating points (basename_000.05_000.10), if we consider to not use the dot, it is not readable (basename_000_05_000_10). Use two underscore (basename000_05000_10) at least avoid these problems (but it is not working in trac!).

So I don't see too many options...

Maybe we can define a GBASENAME_SEP variable in gis.h containing the default separator, and as suggested by hco, in the future add the possibility to set an environmental variable to customize the character or the sequence of characters that will be consider as basename separator.

in reply to:  17 comment:18 by lucadelu, 10 years ago

Replying to zarch:

Maybe we can define a GBASENAME_SEP variable in gis.h containing the default separator, and as suggested by hco, in the future add the possibility to set an environmental variable to customize the character or the sequence of characters that will be consider as basename separator.

+1 for this solution

in reply to:  17 ; comment:19 by zarch, 10 years ago

Replying to zarch:

Maybe we can define a GBASENAME_SEP variable in gis.h containing the default separator, and as suggested by hco, in the future add the possibility to set an environmental variable to customize the character or the sequence of characters that will be consider as basename separator.

OK, I wrote the following functions that you can be found here:

  • G_get_numb_of_decimals, return the number of decimal in a string;
  • G_double_to_str, return a formatted string substituting . with _ in double number;
  • G_get_basename_sep, return the basename separator using the default or the one find in the GRASS_BASENAME_SEP variable;
  • G_join_basename_strings, takes an array of strings and return a joined string using the basename separator;
  • G_get_format_name, takes a basename string and a double number and return a formatted string;

I'm using malloc and free instead of G_malloc and G_free just to make it easier to test outside GRASS

Do you have any comments?

Should I create a directory in trunk/lib/basename containing basename.c and put the basename.h in trunk/include/defs?

comment:20 by hcho, 10 years ago

I have a couple of comments:

  • G_get_numb_of_decimals => G_get_num_decimals for naming consistency with other get_num functions, but I'm not sure if it deserves G_. Also, it's counting decimal numbers from a string. # decimals has already been determined by a module before converting a double to a string, so why do we need to get it again?
  • G_double_to_str: Its name is misleading because it doesn't simply convert double to string, but also replaces '.' with '_'. Maybe, something like G_double_to_basename_format?
  • G_get_format_name: I think you already renamed it to G_generate_basename, which I think is better because G_get_format_name is not clear if it's related to basename.

BTW, I prefer full names like G_get_basename_separator and GRASS_BASENAME_SEPARATOR, but I know they are long...

in reply to:  20 ; comment:21 by zarch, 10 years ago

Thanks for your reviewing!

Replying to hcho:

I have a couple of comments:

  • G_get_numb_of_decimals => G_get_num_decimals for naming

consistency with other get_num functions, but I'm not sure if it deserves G_.

Ok, I renamed it. I think that should be possible to use this function from the GRASS modules to determine, for example in r.horizon step parameter, how many decimal numbers are desired by the user.


Also, it's counting decimal numbers from a string. # decimals has already been determined by a module before converting a double to a string, so why do we need to get it again?

Sorry I'm not sure that I get your point, I would like to use G_get_num_decimals from r.horizon and r.sun modules to define how many decimal numbers are required by the user.


  • G_double_to_str: Its name is misleading because it

doesn't simply convert double to string, but also replaces '.' with '_'. Maybe, something like G_double_to_basename_format?

yes, you are right, I think G_double_to_basename_format is better. I renamed it.


  • G_get_format_name: I think you already renamed it

to G_generate_basename

yes I forgot to update the trac list, thank you to point it out.


BTW, I prefer full names like G_get_basename_separator and GRASS_BASENAME_SEPARATOR, but I know they are long...

yes I think you are right they are longer but clearer, so I renamed them.

in reply to:  21 comment:22 by hcho, 10 years ago

Replying to zarch:

Thanks for your reviewing!

Replying to hcho:

I have a couple of comments:

  • G_get_numb_of_decimals => G_get_num_decimals for naming

consistency with other get_num functions, but I'm not sure if it deserves G_.

Ok, I renamed it. I think that should be possible to use this function from the GRASS modules to determine, for example in r.horizon step parameter, how many decimal numbers are desired by the user.


Also, it's counting decimal numbers from a string. # decimals has already been determined by a module before converting a double to a string, so why do we need to get it again?

Sorry I'm not sure that I get your point, I would like to use G_get_num_decimals from r.horizon and r.sun modules to define how many decimal numbers are required by the user.

Ah! So you take an input parameter from the user as a string and feed it directly to this function. I thought you already converted double to string by the time you call this function, then you should already know how many decimals you have because you used that info for conversion already. This function now makes sense to me.

in reply to:  21 comment:23 by wenzeslaus, 10 years ago

Replying to zarch:

Replying to hcho:

BTW, I prefer full names like G_get_basename_separator and GRASS_BASENAME_SEPARATOR, but I know they are long...

yes I think you are right they are longer but clearer, so I renamed them.

Do you thing we should put this to wiki:Submitting/C? I do. (I would use C and not general because other naming conventions might differ a lot between languages.)

comment:24 by hcho, 10 years ago

I agree we should put it in the wiki, but I don't think this naming is language-specific. GRASS_BASENAME_SEPARATOR is an environment variable that the user modifies, and language-independent. It's sort of a user interface and that's why a full name is more appropriate and clearer.

Unlike this env variable, G_get_basename_sep is ok because only developers will use it and there are many other functions that don't consist of full words.

in reply to:  19 ; comment:25 by glynn, 10 years ago

Replying to zarch:

Should I create a directory in trunk/lib/basename

If the functions are accepted, they should go into lib/gis.

in reply to:  25 ; comment:26 by martinl, 10 years ago

Replying to glynn:

Replying to zarch:

Should I create a directory in trunk/lib/basename

If the functions are accepted, they should go into lib/gis.

what's the status of this issue? Time to backported to relbr70? I am going to increase the priority to blocker because it's related to options key names.

BTW, both G_OPT_BASENAME_INPUT and G_OPT_BASENAME_OUTPUT has the same key - basename. Wouldn't be better to use basename_input and basename_output? Let's imagine a module which will use both parameters...

comment:27 by martinl, 10 years ago

Priority: normalblocker

in reply to:  26 ; comment:28 by wenzeslaus, 10 years ago

Replying to martinl:

BTW, both G_OPT_BASENAME_INPUT and G_OPT_BASENAME_OUTPUT has the same key - basename. Wouldn't be better to use basename_input and basename_output? Let's imagine a module which will use both parameters...

I think that's OK. I think that basename as input will be a rare case. For t.* you use dataset name (and basename as optional for output maps), generally you use list of maps (no basenames usually involved), and finally, most of the examples we have now has only the output basename (e.g., r.texture). The rare cases can always change it. But if you insist on basename_output, I can see why, it would be more explicit and also consistent with output.

We can have a look to comment:5 and t.* modules how this would work in practice.

in reply to:  28 comment:29 by martinl, 10 years ago

Replying to wenzeslaus:

I think that's OK. I think that basename as input will be a rare case. For t.* you use dataset name (and basename as optional for output maps), generally you use list of maps (no basenames usually involved), and finally, most of the examples we have now has only the output basename (e.g., r.texture). The rare cases can always change it. But if you insist on basename_output, I can see why, it would be more explicit and also consistent with output.

anyone else with opinion?

in reply to:  26 ; comment:30 by martinl, 10 years ago

Replying to martinl:

what's the status of this issue? Time to backported to relbr70? I am going to increase the priority to blocker because it's related to options key names.

I took liberty to backport standardized options in r61871. Should be backported also the rest of changes as it is or it's still in development (from API POV) attachment:basename.diff?

by martinl, 10 years ago

Attachment: basename.diff added

comment:31 by wenzeslaus, 10 years ago

What is the status of separator? I still don't agree that double underscore is a good idea and I would even think that no special separator is a better option. In case of no special separator, if you still would like to work with basename + suffix, I think that it is acceptable to specify the basename (then the name can be parsed). It seems to me that the case of parsing the mapname to work with suffixes will not be really common (at least for maps created inside GRASS since the metadata should tell you more).

Note that for modules which do not register maps to space-time dataset the separator and suffix behavior are part of the API (so the decision is blocker for 7.0). So, all interested, please, state you opinion.

Note also that the modules which produce space-time dataset could have basename parameter as optional. The reasonable and expected default is usage of dataset name as basename. I think that this different case than r.shaded.relief creating by default map named inputname.shade. Do you agree? But this is not a blocker.

in reply to:  30 ; comment:32 by annakrat, 9 years ago

Replying to martinl:

Replying to martinl:

what's the status of this issue? Time to backported to relbr70? I am going to increase the priority to blocker because it's related to options key names.

I took liberty to backport standardized options in r61871. Should be backported also the rest of changes as it is or it's still in development (from API POV) attachment:basename.diff?

If there are no objections, I will backport it so that we can start to use it in modules. We just have to agree on the default separator. We had some discussion about it with Vaclav and Markus some time ago and one underscore seems to be the best option. Double underscore can be confusing with different fonts, it can look like one underscore. With one underscore as a separator it might not be clear which underscore is the separator when there are more of them, but we might not really need such information.

in reply to:  32 comment:33 by zarch, 9 years ago

Replying to annakrat:

If there are no objections, I will backport it so that we can start to use it in modules. We just have to agree on the default separator. We had some discussion about it with Vaclav and Markus some time ago and one underscore seems to be the best option.

+1

No objections from my side and one underscore it looks fine to me.

comment:34 by annakrat, 9 years ago

I changed the default basename in r62364 and backported r61095 in r62366.

in reply to:  34 comment:35 by martinl, 9 years ago

Replying to annakrat:

I changed the default basename in r62364 and backported r61095 in r62366.

thanks, so it means that we can close this ticket?

comment:36 by annakrat, 9 years ago

Resolution: fixed
Status: newclosed
Note: See TracTickets for help on using tickets.