From ccda4efd90b106c50f251025b757f99a8ac20724 Mon Sep 17 00:00:00 2001 From: Jadon Clugston <34165782+jClugstor@users.noreply.github.com> Date: Thu, 7 Dec 2023 10:00:05 -0500 Subject: [PATCH] changes to tstep and timestamp shouldn't be implemented yet (#151) --- src/SimulationService.jl | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/SimulationService.jl b/src/SimulationService.jl index 4341fa3..7175c9e 100644 --- a/src/SimulationService.jl +++ b/src/SimulationService.jl @@ -417,11 +417,6 @@ function get_dataset(obj::JSON3.Object) s3_url = get_json(tds_url).url df = CSV.read(download(s3_url), DataFrame) - # there should always be a mapping from the dataset timestamp column name to 'timestamp' - if !any(v -> v == "timestamp", values(obj.mappings)) - @warn "Expected mapping from to 'timestamp' not provided" - end - for (k,v) in get(obj, :mappings, Dict()) @info "`get_dataset` (dataset id=$(repr(obj.id))) rename! $k => $v" if k != "tstep"