36 lines
588 B
Python
36 lines
588 B
Python
from scrub_layer_class import *
|
|
|
|
|
|
class ScrubMTL:
|
|
def __init__(self):
|
|
pass
|
|
|
|
def define_input_paths(self):
|
|
"""Can be a part of the constructor"""
|
|
pass
|
|
|
|
def generate_output_paths(self):
|
|
pass
|
|
|
|
def initialize_layer(self):
|
|
pass
|
|
|
|
def process_nrcan(self):
|
|
pass
|
|
|
|
def process_geo_index(self):
|
|
pass
|
|
|
|
def process_property_assesment(self):
|
|
pass
|
|
|
|
def refine_heights(self):
|
|
pass
|
|
|
|
def remove_redundant_fields(self):
|
|
pass
|
|
|
|
def remove_records_by_area(self, area_limitation):
|
|
"""Area limitation can be assigned in the constructor"""
|
|
pass
|