-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfiguration.py
35 lines (25 loc) · 1.09 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 ConfigurationPlotclip(Configuration):
"""Configuration for Plot Clip transformer"""
# Silence this error until we have public methods
# pylint: disable=too-few-public-methods
# The version number of the transformer
transformer_version = '2.0'
# The transformer description
transformer_description = 'TERRA-REF plot clipper'
# Short name of the transformer
transformer_name = 'terra.plotclipper'
# The sensor associated with the transformer
transformer_sensor = 'scanner3DTop'
# The transformer type (eg: 'rgbmask', 'plotclipper')
transformer_type = 'plotclipper'
# The name of the author of the extractor
author_name = 'Chris Schnaufer'
# The email of the author of the extractor
author_email = 'schnaufer@email.arizona.edu'
# Contributors to this transformer
contributors = ["Max Burnette"]
# Repository URI of where the source code lives
repository = 'https://github.com/AgPipeline/transformer-plotclip.git'