mirror of
https://github.com/sbrl/research-rainfallradar
synced 2024-11-04 17:13:02 +00:00
Remove debug loogging
This commit is contained in:
parent
e030e6c2d5
commit
ba258fbba0
2 changed files with 0 additions and 4 deletions
|
@ -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;
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue