mtl_gis_oo/scrub_mtl_class.py

36 lines
588 B
Python
Raw Normal View History

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
2024-03-16 16:33:47 -04:00
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