Skip to content

Commit edfeccf

Browse files
feat(importexport): integrate xlsx, Tables, and DataFrames dependencies and include xlsx module
1 parent f2f085a commit edfeccf

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

src/importexport/ImportExport.jl

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,9 @@ export read_data
3030
export save
3131
export load!
3232

33-
3433
# Module-specific dependencies
3534
using ..Commons
36-
using ..Utils: display_path, to_nominal, resolve_T, coerce_to_T
35+
using ..Utils: display_path, to_nominal, resolve_T, coerce_to_T, isdiag_approx
3736
using ..Materials: Material, MaterialsLibrary
3837
using ..EarthProps: EarthModel
3938
using ..DataModel: CablesLibrary, CableDesign, CableComponent, ConductorGroup,
@@ -47,7 +46,9 @@ using Printf # For ATP export
4746
using JSON3
4847
using Serialization # For .jls format
4948
using LinearAlgebra
50-
49+
using XLSX
50+
using Tables
51+
using DataFrames
5152

5253
"""
5354
$(TYPEDSIGNATURES)
@@ -68,6 +69,7 @@ include("cableslibrary.jl")
6869
include("materialslibrary.jl")
6970
include("pscad.jl")
7071
include("atp.jl")
72+
include("xlsx.jl")
7173
include("tralin.jl")
7274

7375
end # module ImportExport

0 commit comments

Comments
 (0)