You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added a screenshot field to the ProfileData structure
To allow screenshots to be saved in ProfileData, I added this field. I also added the respective function create_profile_screenshot! and adapted extract_ProfileData. Tests were also modified.
functionProfileData(; kwargs...) # this constructor allows to define only certain fields and leave the others blank
34
35
K =new(true, nothing, nothing, nothing, nothing, nothing, nothing)
@@ -282,6 +283,31 @@ function create_profile_volume!(Profile::ProfileData, VolData::AbstractGeneralGr
282
283
returnnothing
283
284
end
284
285
286
+
### internal function to process screenshot data - contrary to the volume data, we here have to save lon/lat/depth pairs for every screenshot data set, so we create a NamedTuple of GeoData data sets
Profile.SurfData = tmp # assign to profile data structure
309
+
return
310
+
end
285
311
286
312
### internal function to process surface data - contrary to the volume data, we here have to save lon/lat/depth pairs for every surface data set, so we create a NamedTuple of GeoData data sets
0 commit comments