forked from AgPipeline/transformer-canopycover
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configuration.py
29 lines (20 loc) · 833 Bytes
/
configuration.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
"""Contains transformer configuration information
"""
# The version number of the transformer
TRANSFORMER_VERSION = '3.0'
# The transformer description
TRANSFORMER_DESCRIPTION = 'Canopy Cover by Plot (Percentage of Green Pixels)'
# Short name of the transformer
TRANSFORMER_NAME = 'terra.stereo-rgb.canopycover'
# The sensor associated with the transformer
TRANSFORMER_SENSOR = 'stereoTop'
# The transformer type (eg: 'rgbmask', 'plotclipper')
TRANSFORMER_TYPE = 'canopyCover'
# The name of the author of the extractor
AUTHOR_NAME = 'Chris Schnaufer'
# The email of the author of the extractor
AUTHOR_EMAIL = '[email protected]'
# Contributors to this transformer
CONTRUBUTORS = ["Zongyang Li"]
# Reposity URI of where the source code lives
REPOSITORY = 'https://github.com/AgPipeline/transformer-canopycover.git'