variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v3
Sensor network script: Node: drought_index | code: clr | fields: level, lon, value, type Sensor: pressure | fields: ts, level, unit, depth Task: Retrieve value from drought_index with value above the MAX(value) of pressure readings sharing the same ts. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("pressure", code="mbl"), match="ts"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070400
train
v2
Sensor network script: Node: visibility | code: ref | fields: level, depth, lon, lat Sensor: sunlight | fields: unit, lon, depth, lat Task: Fetch level from visibility that have at least one corresponding sunlight measurement for the same ts. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="level", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "level", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070401
train
v2
Sensor network script: Node: humidity | code: ref | fields: lon, value, depth, level Sensor: evaporation | fields: level, ts, lat, unit Task: Get value from humidity where a corresponding entry exists in evaporation with the same qc. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="value", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "value", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070402
train
v1
Sensor network script: Node: frost | code: hub | fields: depth, lon, level, unit Sensor: dew_point | fields: qc, level, lat, depth Task: Fetch level from frost where type exists in dew_point sensor data for the same type. Script:
readings = fetch( node=Node("frost", code="hub"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="type", ), output="level", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "level", "filter_col": "type", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070403
train
v2
Sensor network script: Node: frost | code: gst | fields: depth, lat, ts, unit Sensor: pressure | fields: unit, ts, depth, level Task: Retrieve lon from frost that have at least one matching reading in pressure sharing the same type. Script:
readings = fetch( node=Node("frost", code="gst"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="lon", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "lon", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070404
train
v3
Sensor network script: Node: wind_speed | code: thr | fields: ts, depth, value, lat Sensor: humidity | fields: qc, level, reading, type Task: Fetch depth from wind_speed where reading is greater than the count of of reading in humidity for matching unit. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("humidity", code="hgr"), match="unit"), ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070405
train
v3
Sensor network script: Node: humidity | code: stn | fields: qc, unit, reading, lon Sensor: snow_depth | fields: type, lon, unit, reading Task: Fetch lat from humidity where depth is greater than the maximum of value in snow_depth for matching ts. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("snow_depth", code="snw"), match="ts"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070406
train
v2
Sensor network script: Node: evaporation | code: ref | fields: depth, lon, reading, type Sensor: lightning | fields: qc, lat, type, level Task: Get lat from evaporation where a corresponding entry exists in lightning with the same qc. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "lat", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070407
train
v2
Sensor network script: Node: temperature | code: thr | fields: reading, unit, qc, lat Sensor: rainfall | fields: type, lon, unit, value Task: Get value from temperature where a corresponding entry exists in rainfall with the same type. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="value", )
{ "outer_table": "temperature", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "value", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070408
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: reading, level, lat, ts Sensor: visibility | fields: level, reading, value, lon Task: Get depth from snow_depth where unit appears in visibility readings with matching type. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="type", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "depth", "filter_col": "unit", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070409
train
v1
Sensor network script: Node: humidity | code: mst | fields: reading, lat, lon, level Sensor: evaporation | fields: lat, depth, value, lon Task: Fetch level from humidity where unit exists in evaporation sensor data for the same depth. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="depth", ), output="level", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "level", "filter_col": "unit", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070410
train
v1
Sensor network script: Node: lightning | code: stn | fields: qc, lat, lon, level Sensor: humidity | fields: unit, qc, lat, type Task: Fetch depth from lightning where ts exists in humidity sensor data for the same qc. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="qc", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "ts", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070411
train
v1
Sensor network script: Node: uv_index | code: mst | fields: lat, reading, depth, qc Sensor: rainfall | fields: depth, lat, type, ts Task: Fetch lat from uv_index where ts exists in rainfall sensor data for the same unit. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="unit", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070412
train
v2
Sensor network script: Node: temperature | code: clr | fields: level, reading, unit, lat Sensor: uv_index | fields: unit, level, ts, type Task: Get lon from temperature where a corresponding entry exists in uv_index with the same qc. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "lon", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070413
train
v3
Sensor network script: Node: sunlight | code: gst | fields: unit, qc, reading, value Sensor: rainfall | fields: lat, qc, ts, level Task: Fetch depth from sunlight where depth is greater than the count of of value in rainfall for matching type. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("rainfall", code="rnfl"), match="type"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070414
train
v3
Sensor network script: Node: drought_index | code: prt | fields: depth, ts, lon, reading Sensor: rainfall | fields: unit, level, depth, type Task: Retrieve value from drought_index with depth above the AVG(reading) of rainfall readings sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070415
train
v2
Sensor network script: Node: drought_index | code: prt | fields: lon, unit, reading, level Sensor: turbidity | fields: level, lat, qc, ts Task: Retrieve reading from drought_index that have at least one matching reading in turbidity sharing the same qc. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "reading", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070416
train
v2
Sensor network script: Node: drought_index | code: hub | fields: qc, level, reading, ts Sensor: rainfall | fields: unit, type, qc, depth Task: Retrieve reading from drought_index that have at least one matching reading in rainfall sharing the same type. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "reading", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070417
train
v2
Sensor network script: Node: pressure | code: hub | fields: type, reading, level, value Sensor: dew_point | fields: reading, level, lat, type Task: Fetch lon from pressure that have at least one corresponding dew_point measurement for the same ts. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lon", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070418
train
v2
Sensor network script: Node: humidity | code: hub | fields: value, reading, lon, lat Sensor: evaporation | fields: value, lat, qc, ts Task: Retrieve value from humidity that have at least one matching reading in evaporation sharing the same ts. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="value", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "value", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070419
train
v1
Sensor network script: Node: wind_speed | code: gst | fields: ts, lat, lon, qc Sensor: pressure | fields: value, lat, lon, reading Task: Get value from wind_speed where qc appears in pressure readings with matching ts. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="ts", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "value", "filter_col": "qc", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070420
train
v3
Sensor network script: Node: uv_index | code: hub | fields: lat, depth, ts, lon Sensor: humidity | fields: value, ts, lon, depth Task: Fetch depth from uv_index where value is greater than the total of value in humidity for matching type. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("humidity", code="hgr"), match="type"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070421
train
v3
Sensor network script: Node: visibility | code: stn | fields: depth, lat, reading, ts Sensor: wind_speed | fields: type, qc, ts, value Task: Get level from visibility where value exceeds the total reading from wind_speed for the same depth. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("wind_speed", code="gst"), match="depth"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070422
train
v1
Sensor network script: Node: drought_index | code: prt | fields: type, lon, reading, qc Sensor: wind_speed | fields: reading, qc, level, unit Task: Retrieve value from drought_index whose unit is found in wind_speed records where type matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="type", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "value", "filter_col": "unit", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070423
train
v1
Sensor network script: Node: rainfall | code: hub | fields: level, type, ts, reading Sensor: snow_depth | fields: depth, qc, type, ts Task: Retrieve lon from rainfall whose qc is found in snow_depth records where qc matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="qc", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070424
train
v3
Sensor network script: Node: rainfall | code: gst | fields: value, depth, unit, qc Sensor: visibility | fields: lat, type, unit, lon Task: Get value from rainfall where value exceeds the minimum value from visibility for the same depth. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("visibility", code="clr"), match="depth"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070425
train
v2
Sensor network script: Node: dew_point | code: clr | fields: level, type, lon, qc Sensor: rainfall | fields: unit, reading, qc, level Task: Get depth from dew_point where a corresponding entry exists in rainfall with the same depth. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070426
train
v2
Sensor network script: Node: dew_point | code: ref | fields: unit, lat, type, reading Sensor: lightning | fields: depth, lon, type, qc Task: Fetch level from dew_point that have at least one corresponding lightning measurement for the same type. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "level", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070427
train
v2
Sensor network script: Node: evaporation | code: stn | fields: unit, value, lat, level Sensor: visibility | fields: level, type, reading, unit Task: Get lon from evaporation where a corresponding entry exists in visibility with the same ts. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lon", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070428
train
v1
Sensor network script: Node: air_quality | code: stn | fields: level, value, lat, qc Sensor: temperature | fields: type, unit, level, reading Task: Get depth from air_quality where type appears in temperature readings with matching type. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="type", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "depth", "filter_col": "type", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070429
train
v3
Sensor network script: Node: visibility | code: ref | fields: lat, level, depth, qc Sensor: rainfall | fields: lon, level, unit, reading Task: Get value from visibility where value exceeds the minimum value from rainfall for the same ts. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070430
train
v3
Sensor network script: Node: dew_point | code: thr | fields: lon, level, type, lat Sensor: soil_moisture | fields: value, unit, lat, depth Task: Get value from dew_point where reading exceeds the average depth from soil_moisture for the same unit. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070431
train
v3
Sensor network script: Node: air_quality | code: hub | fields: level, lat, depth, type Sensor: visibility | fields: value, lat, qc, lon Task: Retrieve lon from air_quality with reading above the AVG(reading) of visibility readings sharing the same qc. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("visibility", code="clr"), match="qc"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070432
train
v1
Sensor network script: Node: visibility | code: ref | fields: depth, type, reading, lon Sensor: wind_speed | fields: qc, reading, depth, type Task: Retrieve lon from visibility whose type is found in wind_speed records where depth matches the outer node. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="depth", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "lon", "filter_col": "type", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070433
train
v1
Sensor network script: Node: wind_speed | code: stn | fields: depth, level, ts, lon Sensor: cloud_cover | fields: reading, type, lon, depth Task: Fetch value from wind_speed where unit exists in cloud_cover sensor data for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070434
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: qc, level, lon, lat Sensor: sunlight | fields: depth, lat, unit, ts Task: Get reading from soil_moisture where reading exceeds the minimum depth from sunlight for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("sunlight", code="brt"), match="ts"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070435
train
v2
Sensor network script: Node: uv_index | code: gst | fields: qc, lat, ts, depth Sensor: temperature | fields: unit, level, lat, qc Task: Fetch level from uv_index that have at least one corresponding temperature measurement for the same type. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "level", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070436
train
v1
Sensor network script: Node: sunlight | code: ref | fields: unit, qc, value, level Sensor: snow_depth | fields: level, type, unit, ts Task: Retrieve level from sunlight whose ts is found in snow_depth records where type matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="type", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "level", "filter_col": "ts", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070437
train
v3
Sensor network script: Node: visibility | code: mst | fields: level, lon, lat, reading Sensor: evaporation | fields: unit, reading, lon, level Task: Retrieve lon from visibility with value above the MAX(value) of evaporation readings sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("evaporation", code="evp"), match="depth"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070438
train
v2
Sensor network script: Node: evaporation | code: hub | fields: qc, type, unit, level Sensor: air_quality | fields: lat, ts, value, unit Task: Get reading from evaporation where a corresponding entry exists in air_quality with the same ts. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "reading", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070439
train
v3
Sensor network script: Node: sunlight | code: ref | fields: reading, value, level, depth Sensor: drought_index | fields: type, unit, lon, lat Task: Get reading from sunlight where depth exceeds the count of value from drought_index for the same type. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("drought_index", code="drt"), match="type"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070440
train
v2
Sensor network script: Node: visibility | code: prt | fields: value, lon, type, level Sensor: pressure | fields: depth, unit, value, lon Task: Get value from visibility where a corresponding entry exists in pressure with the same unit. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="value", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "value", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070441
train
v1
Sensor network script: Node: rainfall | code: mst | fields: type, ts, lon, level Sensor: frost | fields: type, qc, lon, depth Task: Get depth from rainfall where unit appears in frost readings with matching depth. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="depth", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "depth", "filter_col": "unit", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070442
train
v3
Sensor network script: Node: snow_depth | code: ref | fields: qc, lat, depth, ts Sensor: wind_speed | fields: qc, type, lat, depth Task: Retrieve lon from snow_depth with depth above the MIN(reading) of wind_speed readings sharing the same unit. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("wind_speed", code="gst"), match="unit"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070443
train
v3
Sensor network script: Node: dew_point | code: clr | fields: level, qc, unit, reading Sensor: pressure | fields: depth, lat, value, level Task: Get value from dew_point where value exceeds the average reading from pressure for the same type. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("pressure", code="mbl"), match="type"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070444
train
v1
Sensor network script: Node: dew_point | code: thr | fields: unit, reading, lon, ts Sensor: evaporation | fields: reading, depth, level, ts Task: Fetch depth from dew_point where ts exists in evaporation sensor data for the same unit. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="unit", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070445
train
v3
Sensor network script: Node: air_quality | code: prt | fields: qc, unit, level, reading Sensor: cloud_cover | fields: lat, reading, qc, depth Task: Fetch reading from air_quality where reading is greater than the total of value in cloud_cover for matching type. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070446
train
v3
Sensor network script: Node: wind_speed | code: clr | fields: lat, ts, level, reading Sensor: air_quality | fields: lat, value, reading, qc Task: Retrieve lon from wind_speed with reading above the AVG(reading) of air_quality readings sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("air_quality", code="prt"), match="type"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070447
train
v1
Sensor network script: Node: cloud_cover | code: ref | fields: ts, level, lat, value Sensor: drought_index | fields: depth, value, ts, type Task: Get lon from cloud_cover where unit appears in drought_index readings with matching qc. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="qc", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lon", "filter_col": "unit", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070448
train
v3
Sensor network script: Node: sunlight | code: hub | fields: reading, unit, value, lat Sensor: dew_point | fields: lat, unit, ts, qc Task: Retrieve depth from sunlight with value above the AVG(value) of dew_point readings sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("dew_point", code="cnd"), match="qc"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070449
train
v2
Sensor network script: Node: visibility | code: thr | fields: lon, reading, ts, level Sensor: evaporation | fields: level, lon, qc, lat Task: Fetch level from visibility that have at least one corresponding evaporation measurement for the same qc. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="level", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "level", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070450
train
v3
Sensor network script: Node: uv_index | code: mst | fields: level, type, value, ts Sensor: lightning | fields: unit, level, ts, qc Task: Retrieve lat from uv_index with value above the COUNT(depth) of lightning readings sharing the same type. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("lightning", code="tnd"), match="type"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070451
train
v2
Sensor network script: Node: evaporation | code: hub | fields: qc, lon, lat, value Sensor: temperature | fields: depth, qc, reading, lon Task: Fetch depth from evaporation that have at least one corresponding temperature measurement for the same ts. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070452
train
v3
Sensor network script: Node: humidity | code: stn | fields: unit, depth, ts, qc Sensor: frost | fields: reading, unit, level, lat Task: Get value from humidity where reading exceeds the minimum depth from frost for the same unit. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("frost", code="frs"), match="unit"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070453
train
v1
Sensor network script: Node: humidity | code: thr | fields: value, qc, depth, unit Sensor: visibility | fields: qc, ts, level, value Task: Get level from humidity where qc appears in visibility readings with matching ts. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="ts", ), output="level", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "level", "filter_col": "qc", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070454
train
v1
Sensor network script: Node: snow_depth | code: mst | fields: type, value, qc, depth Sensor: turbidity | fields: value, unit, qc, level Task: Get depth from snow_depth where unit appears in turbidity readings with matching ts. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="ts", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070455
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: ts, unit, lat, reading Sensor: sunlight | fields: depth, type, level, lat Task: Retrieve lat from snow_depth whose unit is found in sunlight records where qc matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="qc", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "lat", "filter_col": "unit", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070456
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: unit, lat, type, qc Sensor: snow_depth | fields: depth, reading, value, lat Task: Get depth from soil_moisture where a corresponding entry exists in snow_depth with the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070457
train
v1
Sensor network script: Node: visibility | code: thr | fields: value, lat, unit, ts Sensor: evaporation | fields: lon, unit, ts, reading Task: Retrieve lon from visibility whose type is found in evaporation records where ts matches the outer node. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="ts", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "lon", "filter_col": "type", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070458
train
v1
Sensor network script: Node: soil_moisture | code: clr | fields: lon, lat, value, level Sensor: uv_index | fields: ts, value, lat, unit Task: Fetch depth from soil_moisture where ts exists in uv_index sensor data for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="qc", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "depth", "filter_col": "ts", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070459
train
v2
Sensor network script: Node: drought_index | code: clr | fields: type, lat, level, depth Sensor: air_quality | fields: reading, value, type, unit Task: Get lon from drought_index where a corresponding entry exists in air_quality with the same qc. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lon", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070460
train
v3
Sensor network script: Node: sunlight | code: gst | fields: reading, lat, unit, lon Sensor: humidity | fields: depth, type, reading, qc Task: Get reading from sunlight where value exceeds the maximum reading from humidity for the same depth. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("humidity", code="hgr"), match="depth"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070461
train
v1
Sensor network script: Node: drought_index | code: stn | fields: level, reading, value, type Sensor: lightning | fields: ts, type, lat, depth Task: Fetch lon from drought_index where qc exists in lightning sensor data for the same ts. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="ts", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "qc", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070462
train
v2
Sensor network script: Node: sunlight | code: ref | fields: reading, lon, ts, unit Sensor: dew_point | fields: type, qc, depth, value Task: Fetch reading from sunlight that have at least one corresponding dew_point measurement for the same ts. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "reading", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070463
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: type, depth, ts, qc Sensor: pressure | fields: reading, depth, type, ts Task: Fetch depth from soil_moisture where value is greater than the minimum of depth in pressure for matching depth. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("pressure", code="mbl"), match="depth"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070464
train
v1
Sensor network script: Node: dew_point | code: clr | fields: lat, depth, unit, type Sensor: evaporation | fields: lat, type, qc, depth Task: Fetch lat from dew_point where qc exists in evaporation sensor data for the same type. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="type", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "lat", "filter_col": "qc", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070465
train
v3
Sensor network script: Node: soil_moisture | code: stn | fields: qc, depth, lon, ts Sensor: snow_depth | fields: qc, lon, lat, depth Task: Fetch lat from soil_moisture where value is greater than the total of value in snow_depth for matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("snow_depth", code="snw"), match="qc"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070466
train
v3
Sensor network script: Node: rainfall | code: prt | fields: unit, depth, value, ts Sensor: lightning | fields: lon, reading, type, level Task: Retrieve value from rainfall with value above the COUNT(depth) of lightning readings sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("lightning", code="tnd"), match="ts"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070467
train
v3
Sensor network script: Node: rainfall | code: stn | fields: lat, level, lon, ts Sensor: humidity | fields: level, lat, unit, qc Task: Retrieve value from rainfall with depth above the AVG(depth) of humidity readings sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("humidity", code="hgr"), match="type"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070468
train
v2
Sensor network script: Node: frost | code: prt | fields: lon, reading, lat, ts Sensor: rainfall | fields: ts, qc, level, reading Task: Retrieve level from frost that have at least one matching reading in rainfall sharing the same unit. Script:
readings = fetch( node=Node("frost", code="prt"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="level", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "level", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070469
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: level, reading, lat, ts Sensor: visibility | fields: level, reading, value, qc Task: Retrieve value from snow_depth that have at least one matching reading in visibility sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "value", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070470
train
v1
Sensor network script: Node: cloud_cover | code: hub | fields: lon, reading, lat, unit Sensor: turbidity | fields: lat, ts, lon, type Task: Fetch level from cloud_cover where ts exists in turbidity sensor data for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="qc", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "level", "filter_col": "ts", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070471
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: reading, lon, type, value Sensor: uv_index | fields: lon, ts, level, depth Task: Fetch reading from soil_moisture where depth exists in uv_index sensor data for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="ts", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "reading", "filter_col": "depth", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070472
train
v3
Sensor network script: Node: air_quality | code: gst | fields: depth, lat, ts, reading Sensor: rainfall | fields: reading, qc, value, unit Task: Fetch lon from air_quality where reading is greater than the total of value in rainfall for matching unit. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070473
train
v1
Sensor network script: Node: rainfall | code: prt | fields: qc, lat, depth, reading Sensor: lightning | fields: depth, lon, lat, level Task: Fetch reading from rainfall where type exists in lightning sensor data for the same unit. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="unit", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070474
train
v2
Sensor network script: Node: air_quality | code: thr | fields: value, lat, depth, qc Sensor: visibility | fields: depth, reading, qc, level Task: Retrieve depth from air_quality that have at least one matching reading in visibility sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070475
train
v2
Sensor network script: Node: pressure | code: prt | fields: unit, value, qc, reading Sensor: evaporation | fields: level, qc, type, reading Task: Retrieve lon from pressure that have at least one matching reading in evaporation sharing the same depth. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lon", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070476
train
v3
Sensor network script: Node: uv_index | code: thr | fields: ts, level, value, depth Sensor: humidity | fields: level, type, lat, depth Task: Get lat from uv_index where depth exceeds the minimum depth from humidity for the same type. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("humidity", code="hgr"), match="type"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070477
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: ts, unit, level, lon Sensor: humidity | fields: qc, level, ts, depth Task: Get reading from soil_moisture where a corresponding entry exists in humidity with the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "reading", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070478
train
v1
Sensor network script: Node: humidity | code: thr | fields: level, reading, value, depth Sensor: dew_point | fields: lat, value, unit, reading Task: Retrieve reading from humidity whose unit is found in dew_point records where unit matches the outer node. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="unit", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070479
train
v1
Sensor network script: Node: dew_point | code: gst | fields: lon, ts, reading, qc Sensor: frost | fields: lat, value, qc, depth Task: Get lon from dew_point where type appears in frost readings with matching depth. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="depth", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "lon", "filter_col": "type", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070480
train
v2
Sensor network script: Node: pressure | code: mst | fields: level, lon, unit, reading Sensor: frost | fields: qc, depth, reading, level Task: Get lat from pressure where a corresponding entry exists in frost with the same ts. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "lat", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070481
train
v2
Sensor network script: Node: evaporation | code: gst | fields: ts, reading, unit, depth Sensor: lightning | fields: value, level, lon, unit Task: Retrieve lat from evaporation that have at least one matching reading in lightning sharing the same depth. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lat", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070482
train
v2
Sensor network script: Node: sunlight | code: hub | fields: reading, lat, value, level Sensor: evaporation | fields: lat, depth, reading, level Task: Fetch value from sunlight that have at least one corresponding evaporation measurement for the same unit. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "value", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070483
train
v3
Sensor network script: Node: wind_speed | code: mst | fields: unit, qc, level, value Sensor: humidity | fields: lat, depth, type, unit Task: Get lat from wind_speed where depth exceeds the maximum value from humidity for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("humidity", code="hgr"), match="depth"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070484
train
v2
Sensor network script: Node: rainfall | code: ref | fields: lon, level, type, qc Sensor: frost | fields: level, lon, value, unit Task: Fetch lon from rainfall that have at least one corresponding frost measurement for the same qc. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lon", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070485
train
v3
Sensor network script: Node: sunlight | code: gst | fields: unit, depth, type, lon Sensor: temperature | fields: unit, type, lat, qc Task: Retrieve depth from sunlight with depth above the MIN(value) of temperature readings sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("temperature", code="thr"), match="depth"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070486
train
v2
Sensor network script: Node: uv_index | code: clr | fields: lat, reading, lon, ts Sensor: evaporation | fields: reading, qc, depth, value Task: Fetch level from uv_index that have at least one corresponding evaporation measurement for the same unit. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "level", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070487
train
v2
Sensor network script: Node: sunlight | code: ref | fields: unit, ts, value, type Sensor: visibility | fields: depth, type, lon, reading Task: Fetch lat from sunlight that have at least one corresponding visibility measurement for the same type. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "lat", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070488
train
v1
Sensor network script: Node: dew_point | code: ref | fields: reading, ts, depth, unit Sensor: frost | fields: reading, lat, value, unit Task: Fetch lon from dew_point where depth exists in frost sensor data for the same qc. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="qc", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lon", "filter_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070489
train
v3
Sensor network script: Node: uv_index | code: hub | fields: ts, reading, lat, qc Sensor: visibility | fields: lon, lat, type, level Task: Get value from uv_index where depth exceeds the minimum reading from visibility for the same ts. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("visibility", code="clr"), match="ts"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070490
train
v3
Sensor network script: Node: lightning | code: ref | fields: level, qc, unit, value Sensor: temperature | fields: value, level, unit, lat Task: Fetch level from lightning where depth is greater than the total of value in temperature for matching ts. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("temperature", code="thr"), match="ts"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070491
train
v3
Sensor network script: Node: rainfall | code: ref | fields: ts, depth, value, unit Sensor: cloud_cover | fields: lon, unit, ts, qc Task: Retrieve level from rainfall with reading above the AVG(reading) of cloud_cover readings sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070492
train
v1
Sensor network script: Node: cloud_cover | code: prt | fields: reading, depth, value, qc Sensor: soil_moisture | fields: ts, reading, depth, lat Task: Retrieve value from cloud_cover whose depth is found in soil_moisture records where qc matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "value", "filter_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070493
train
v2
Sensor network script: Node: sunlight | code: thr | fields: qc, reading, value, ts Sensor: drought_index | fields: level, qc, type, reading Task: Retrieve depth from sunlight that have at least one matching reading in drought_index sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070494
train
v2
Sensor network script: Node: air_quality | code: ref | fields: type, unit, reading, qc Sensor: sunlight | fields: reading, type, level, lat Task: Retrieve value from air_quality that have at least one matching reading in sunlight sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "value", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070495
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: lon, value, unit, reading Sensor: dew_point | fields: unit, type, lon, qc Task: Get lat from soil_moisture where value exceeds the minimum value from dew_point for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("dew_point", code="cnd"), match="qc"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070496
train
v2
Sensor network script: Node: humidity | code: ref | fields: level, unit, depth, lon Sensor: rainfall | fields: qc, lat, value, level Task: Get value from humidity where a corresponding entry exists in rainfall with the same qc. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="value", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "value", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070497
train
v2
Sensor network script: Node: evaporation | code: hub | fields: reading, unit, depth, value Sensor: turbidity | fields: ts, lat, qc, value Task: Fetch reading from evaporation that have at least one corresponding turbidity measurement for the same unit. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "reading", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070498
train
v1
Sensor network script: Node: air_quality | code: hub | fields: depth, qc, lat, lon Sensor: drought_index | fields: lon, lat, depth, unit Task: Retrieve reading from air_quality whose type is found in drought_index records where type matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="type", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070499
train