I have a .read call like:
@some_data_sets = @client.read start, stop, :attributes => some_attributes, :tags => some_tags, :tz => '-07:00'
, but may data points are coming back in UTC. I've also tried:
@some_data_sets = @client.read start, stop, :attributes => some_attributes, :tags => some_tags, :tz => 'America/Denver'
...with the same result. Am I misunderstanding how this parameter is to be used?