I need daily weather data. I am using the API provided by the Dutch weather bureau (KNMI) in the httpcaller. The response contains a few lines of description before I get the data:
# BRON: KONINKLIJK NEDERLANDS METEOROLOGISCH INSTITUUT (KNMI)
# Opmerking: door stationsverplaatsingen en veranderingen in waarneemmethodieken zijn deze tijdreeksen van uurwaarden mogelijk inhomogeen! Dat betekent dat deze reeks van gemeten waarden niet geschikt is voor trendanalyse. Voor studies naar klimaatverandering verwijzen we naar de gehomogeniseerde reeks maandtemperaturen van De Bilt <http://www.knmi.nl/klimatologie/onderzoeksgegevens/homogeen_260/index.html> of de Centraal Nederland Temperatuur <http://www.knmi.nl/klimatologie/onderzoeksgegevens/CNT/>.
#
#
# STN LON(east) LAT(north) ALT(m) NAME
# 278: 6.259 52.435 3.60 HEINO
#
# YYYYMMDD = datum (YYYY=jaar,MM=maand,DD=dag);
# HH = tijd (HH=uur, UT.12 UT=13 MET, 14 MEZT. Uurvak 05 loopt van 04.00 UT tot 5.00 UT;
# RH = Uursom van de neerslag (in 0.1 mm) (-1 voor <0.05 mm);
#
# STN,YYYYMMDD, HH, RH
#
278,20200101, 1, 0
278,20200101, 2, 0
278,20200101, 3, 0
278,20200101, 4, 0
278,20200101, 5, 0
278,20200101, 6, 0
278,20200101, 7, 0
I tried the stringreplacer, but that doesn't work (it doesn't replace the text for some reason). if I save to file and use a csv_reader I can'te get it to put the data in (the right) columns.
How do I get the data into columns?