1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- #!/usr/bin/env python3
- ############################################################################
- #
- # MODULE: i.band.library
- # AUTHOR(S): Martin Landa <landa.martin gmail com>
- #
- # PURPOSE: Prints available semantic label information used for multispectral data.
- #
- # COPYRIGHT: (C) 2019 by mundialis GmbH & Co.KG, and the GRASS Development Team
- #
- # This program is free software under the GNU General
- # Public License (>=v2). Read the file COPYING that
- # comes with GRASS for details.
- #
- #############################################################################
- # %module
- # % description: Prints available semantic label information used for multispectral data.
- # % keyword: general
- # % keyword: imagery
- # % keyword: semantic label
- # % keyword: image collections
- # %end
- # %option
- # % key: pattern
- # % type: string
- # % description: Semantic label search pattern (examples: L, S2, .*_2, S2_1)
- # % required: no
- # % multiple: no
- # %end
- # %option
- # % key: operation
- # % type: string
- # % required: no
- # % multiple: no
- # % options: print
- # % description: Operation to be performed
- # % answer: print
- # %end
- # %flag
- # % key: e
- # % description: Print extended metadata information
- # %end
- import sys
- import grass.script as gs
- def main():
- from grass.semantic_label import SemanticLabelReader, SemanticLabelReaderError
- kwargs = {}
- if "," in options["pattern"]:
- gs.fatal("Multiple values not supported")
- kwargs["semantic_label"] = options["pattern"]
- kwargs["extended"] = flags["e"]
- if options["operation"] == "print":
- try:
- reader = SemanticLabelReader()
- reader.print_info(**kwargs)
- except SemanticLabelReaderError as e:
- gs.fatal(e)
- return 0
- if __name__ == "__main__":
- options, flags = gs.parser()
- sys.exit(main())
|