-
Notifications
You must be signed in to change notification settings - Fork 0
/
configuration.py
35 lines (25 loc) · 1.11 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
"""Contains transformer configuration information
"""
from agpypeline.configuration import Configuration
class ConfigurationRgbBase(Configuration):
"""Configuration for RGB Plot base transformer template"""
# Silence this error until we have public methods
# pylint: disable=too-few-public-methods
# The version number of the transformer
transformer_version = '1.0'
# The transformer description
transformer_description = 'Base for plot-level RGB-based algorithm transformers'
# Short name of the transformer
transformer_name = 'rgb-plot-level-base'
# The sensor associated with the transformer
transformer_sensor = 'stereoTop'
# The transformer type (eg: 'rgbmask', 'plotclipper')
transformer_type = 'rgb.algorithm.base'
# 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 = []
# Repository URI of where the source code lives
repository = 'https://github.com/AgPipeline/plot-base-rgb'