-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfiguration.py
36 lines (25 loc) · 1.14 KB
/
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
30
31
32
33
34
35
36
"""Contains transformer configuration information
"""
from agpypeline.configuration import Configuration
class ConfigurationCanopycover(Configuration):
"""Configuration information for Canopy Cover Transformer"""
# Silence this error until we have public methods
# pylint: disable=too-few-public-methods
# 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
CONTRIBUTORS = ["Zongyang Li"]
# Repository URI of where the source code lives
REPOSITORY = 'https://github.com/AgPipeline/transformer-canopycover.git'