Skip to content

Commit

Permalink
Corrections spotted during 2018 course
Browse files Browse the repository at this point in the history
  • Loading branch information
eardkdw committed Nov 23, 2018
1 parent 9b3e345 commit 73da6a2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ \subsubsection{A note on port names}
\begin{itemize}
\item Can process times in a very wide variety of formats
\item Can deal with different timezones (if you ask it to)
\item Other date/time modules are available, but \texttt{datetime} is alwyas avaiable.
\item Other date/time modules are available, but \texttt{datetime} is always avaiable.
\end{itemize}
\end{frame}
\begin{frame}[fragile]
Expand Down Expand Up @@ -579,7 +579,7 @@ \subsection{Trial and error}
temps = []

#open infile and read data into lists
with open(infile, 'rb') as tsvfile:
with open(infile, 'rt') as tsvfile:
tsvreader = reader(tsvfile, delimiter='\t')
for row in tsvreader:
times.append(convert_time(row[0]))
Expand Down Expand Up @@ -615,7 +615,7 @@ \subsection{Trial and error}
Add your time series and temp values to the \texttt{Dataset}
\item
Close and write your \texttt{Dataset}. Test that it parses correctly
eith \texttt{ncdump}
with \texttt{ncdump}
\end{itemize}

\end{frame}
Expand Down Expand Up @@ -774,7 +774,7 @@ \subsection{Trial and error}
\url{http://www.cistools.net/}

\begin{verbatim}
cis plot temp:sensor_data.nc --xaxis time --yaxis temp \
cis plot temp:sensor_data.nc --xaxis time \
--title "Papouch Thermometer Data, 2017-02-22, UoL PRD" --xstep "0.010416" \
--output sensor_data_sample.svg
\end{verbatim}
Expand Down

0 comments on commit 73da6a2

Please sign in to comment.