Class: Eco::API::UseCases::Default::Locations::CsvToTree

Inherits:
Common::Loaders::UseCase show all
Includes:
Data::Locations::DSL
Defined in:
lib/eco/api/usecases/default/locations/csv_to_tree_case.rb,
lib/eco/api/usecases/default/locations/cli/csv_to_tree_cli.rb

Defined Under Namespace

Classes: Cli

Constant Summary collapse

TIME_FORMAT =
'%Y%m%dT%H%M%S'.freeze

Instance Method Summary collapse

Methods inherited from Common::Loaders::UseCase

#cli_apply!, #initialize

Methods included from Common::Loaders::UseCase::CliIdentify

#cli, #cli!

Methods included from Common::Loaders::UseCase::TargetModel

#target_model

Methods included from Common::Loaders::UseCase::Type

#type

Methods inherited from Common::Loaders::CaseBase

#name, name_only_once!, original_name

Constructor Details

This class inherits a constructor from Eco::API::Common::Loaders::UseCase

Instance Method Details

#main(*_args) ⇒ Object



11
12
13
14
15
16
17
18
19
# File 'lib/eco/api/usecases/default/locations/csv_to_tree_case.rb', line 11

def main(*_args)
  options[:end_get] = false
  tree_struct = org_tree(input_csv)

  File.open(output_file, "w") do |fd|
    fd << tree_struct.as_json.to_json
  end
  log(:info) { "Saved structure in '#{output_file}'" }
end