Remove debug loogging

This commit is contained in:
Starbeamrainbowlabs 2022-05-19 19:25:44 +01:00
parent e030e6c2d5
commit ba258fbba0
Signed by: sbrl
GPG key ID: 1BE5172E637709C2
2 changed files with 0 additions and 4 deletions

View file

@ -36,9 +36,7 @@ class TFRecordWriter {
}
const sample_radar = await reader_radar.next();
console.log(`SAMPLE_RADAR`);
const sample_water = await reader_water.next();
console.log(`SAMPLE_WATER`);
if(sample_radar.done || sample_water.done) break;

View file

@ -30,8 +30,6 @@ class Terrain50StreamReader {
for await (const next of stream) {
i++;
console.log(`Terrain50 STEP ${i}`);
// Skip the first few items, because we want to predict the water
// depth after the rainfall radar data
if(i < this.offset)