Class: Eco::API::UseCases::Default::Locations::CsvToTree
- Inherits:
-
Common::Loaders::UseCase
- Object
- Common::Loaders::Base
- Common::Loaders::CaseBase
- Common::Loaders::UseCase
- Eco::API::UseCases::Default::Locations::CsvToTree
- Includes:
- Data::Locations::DSL
- Defined in:
- lib/eco/api/usecases/default/locations/csv_to_tree_case.rb
Constant Summary collapse
- TIME_FORMAT =
'%Y%m%dT%H%M%S'.freeze
Instance Attribute Summary
Attributes included from Language::AuxiliarLogger
Instance Method Summary collapse
Methods inherited from Common::Loaders::UseCase
cli, cli!, #cli_apply!, #initialize, type, #type
Methods inherited from Common::Loaders::CaseBase
Methods inherited from Common::Loaders::Base
<=>, created_at, #initialize, set_created_at!
Methods included from Common::ClassHelpers
#class_resolver, #descendants, #descendants?, #inheritable_attrs, #inheritable_class_vars, #inherited, #instance_variable_name, #new_class, #resolve_class, #to_constant
Methods included from Language::AuxiliarLogger
Constructor Details
This class inherits a constructor from Eco::API::Common::Loaders::UseCase
Instance Method Details
#main(_session, options, _usecase) ⇒ Object
9 10 11 12 13 14 15 16 17 |
# File 'lib/eco/api/usecases/default/locations/csv_to_tree_case.rb', line 9 def main(_session, , _usecase) [: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 |