#!/bin/sh
# Plot first ~9M of 2025 5s room temperature data on one strip chart.

# Extract the data and pass on stdin to gnuplot.
# Unquote the time field...
gzip -d < csv0/1644723-temp-2025-01.csv.gz | \
    sed -e 's/"//g' | \
    gnuplot code/gnuplotTemp9M1644723.txt
