Hi,
I am using Time zone and Calander granularity function (Release timezone and calendar features in DatapointsAPI (beta) by haakonvt · Pull Request #1779 · cognitedata/cognite-sdk-python · GitHub)
I am facing an issue wherein I am passing following data
dps_lst = client.time_series.data.retrieve_dataframe_in_tz(
external_id=list,
start=datetime(2023, 6, 24, tzinfo=ZoneInfo("America/New_York")),
end=datetime(2024, 6, 27, tzinfo=ZoneInfo("America/New_York")),
aggregates="average",
granularity="1month")
For the End date time is given as 27th June 2024; while I am expecting to get a calculation from 1st June- 27th June; I am receiving an output from 1st June- 30th June. the functionality is not considering “end” date while calculating.