User:Jonkerz/AntWeb

From Wikimedia Commons, the free media repository
Jump to navigation Jump to search

Roadmap

[edit]
  • Phase I: cleanup current photos
  • Phase II: upload new photos
    • Coming soon

Todo

[edit]

Random stuff

[edit]

To consider

[edit]
  • Rename all files to conform to the "AntWeb/Commons format"?
    • Only relevant for a couple of specimens
    • Example "File:Adelomyrmex robustus lacm ent 144606 dorsal 1.jpg":
      • Taxon = "Adelomyrmex robustus", "Adelomyrmex robustus lacm", or "Adelomyrmex robustus lacm ent"?
      • Alternative solution: add "lacm ent <number>" et al. to a list of exceptions

Filename regex

[edit]

"Valid" is defined as passing the below regex. In English: "File:Genus species subspecies (optional) specimen_id shot number.jpg", where the specimen id may contain alphanumeric characters, parentheses and hyphens. "shot" must be one of the following: "head", "dorsal", "profile" or "label".

%r{
        ^File:
        (?<genus>[A-Z][a-z]+)
        \s
        (?<species>[a-z]+)
        \s
        (?<subspecies>[a-z]+\s)?
        (?<specimen_id>[()\w-]+ )
        \s
        (?<shot>head|dorsal|profile|label)
        \s
        (?<number>[0-9])
        .jpg$
}x

List

[edit]

"Valid" only means that the filename match the rule -- many of these are not valid in the taxonomic sense; some have been reclassified and some were uploaded to AntWeb more than once under different names (example of the latter include File:Monomorium aureorugosum casent0172919 head 1.jpg/File:Strumigenys glycon blf0976(41)-19 head 1.jpg which were both uploaded in 2009).

All "valid and subspecies" are already included among the valid, but repeated to make sure specimen ids congaing spaces are not parsed as subspecies names.

Cause of invalid bot-uploaded files:

[edit]