Skip to content

Commit

Permalink
replace(string(a), '/' => Char(0x2215))
Browse files Browse the repository at this point in the history
  • Loading branch information
montyvesselinov committed Dec 15, 2024
1 parent c413998 commit 6ec7b3a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/NMFkPlotMap.jl
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,8 @@ function mapbox(df::DataFrames.DataFrame; column::Union{Symbol,AbstractString}="
if !(occursin(regex_lon, a) || occursin(regex_lat, a))
println("Ploting $a ...")
if filename != ""
f = fileroot * "_" * string(a) * fileext
aa = replace(string(a), '/' => Char(0x2215))
f = fileroot * "_" * aa * fileext
else
f = ""
end
Expand Down

0 comments on commit 6ec7b3a

Please sign in to comment.