123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- ############################################################################
- #
- # MODULE: t.vect.univar
- # AUTHOR(S): Soeren Gebbert
- #
- # PURPOSE: Calculates univariate statistics of attributes for each registered vector map of a space time vector dataset
- # COPYRIGHT: (C) 2011 by the GRASS Development Team
- #
- # This program is free software under the GNU General Public
- # License (version 2). Read the file COPYING that comes with GRASS
- # for details.
- #
- #############################################################################
- #%module
- #% description: Calculates univariate statistics of attributes for each registered vector map of a space time vector dataset
- #% keywords: temporal
- #% keywords: statistics
- #% keywords: vector
- #%end
- #%option G_OPT_STVDS_INPUT
- #%end
- #%option G_OPT_V_FIELD
- #%end
- #%option G_OPT_DB_COLUMN
- #% required: yes
- #%end
- #%option G_OPT_T_WHERE
- #% key: twhere
- #%end
- #%option G_OPT_DB_WHERE
- #%end
- #%option G_OPT_V_TYPE
- #% options: point,line,boundary,centroid,area
- #% multiple: no
- #% answer: point
- #%end
- #%option
- #% key: separator
- #% type: string
- #% description: Separator character between the output columns
- #% required: no
- #% answer: |
- #%end
- #%flag
- #% key: e
- #% description: Calculate extended statistics
- #%end
- #%flag
- #% key: h
- #% description: Print column names
- #%end
- import grass.script as grass
- import grass.temporal as tgis
- ############################################################################
- def main():
- # Get the options
- input = options["input"]
- twhere = options["twhere"]
- layer = options["layer"]
- type = options["type"]
- column = options["column"]
- where = options["where"]
- extended = flags["e"]
- header = flags["h"]
- separator = options["separator"]
- # Make sure the temporal database exists
- tgis.init()
- tgis.print_vector_dataset_univar_statistics(
- input, twhere, layer, type, column, where, extended, header, separator)
- if __name__ == "__main__":
- options, flags = grass.parser()
- main()
|