variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v1
Sensor network script: Node: soil_moisture | code: gst | fields: reading, value, lon, unit Sensor: rainfall | fields: depth, lat, value, type Task: Retrieve lat from soil_moisture whose qc is found in rainfall records where unit matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="unit", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "qc", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025800
train
v3
Sensor network script: Node: dew_point | code: ref | fields: lat, reading, lon, qc Sensor: pressure | fields: lon, type, level, value Task: Retrieve level from dew_point with depth above the COUNT(reading) of pressure readings sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("pressure", code="mbl"), match="qc"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025801
train
v3
Sensor network script: Node: rainfall | code: prt | fields: unit, lat, qc, depth Sensor: drought_index | fields: reading, lon, level, unit Task: Retrieve lat from rainfall with reading above the AVG(reading) of drought_index readings sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("drought_index", code="drt"), match="ts"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025802
train
v2
Sensor network script: Node: temperature | code: prt | fields: ts, unit, depth, level Sensor: pressure | fields: qc, value, level, lat Task: Retrieve reading from temperature that have at least one matching reading in pressure sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025803
train
v3
Sensor network script: Node: rainfall | code: thr | fields: lon, type, value, ts Sensor: sunlight | fields: depth, level, value, qc Task: Fetch value from rainfall where reading is greater than the minimum of reading in sunlight for matching depth. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("sunlight", code="brt"), match="depth"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025804
train
v1
Sensor network script: Node: air_quality | code: clr | fields: ts, value, level, type Sensor: sunlight | fields: reading, level, value, qc Task: Get value from air_quality where ts appears in sunlight readings with matching type. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="type", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "value", "filter_col": "ts", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025805
train
v2
Sensor network script: Node: temperature | code: hub | fields: unit, reading, qc, depth Sensor: visibility | fields: depth, unit, level, value Task: Get depth from temperature where a corresponding entry exists in visibility with the same depth. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025806
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: qc, depth, value, type Sensor: sunlight | fields: reading, lon, type, unit Task: Retrieve lon from snow_depth whose qc is found in sunlight records where type matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="type", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "lon", "filter_col": "qc", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025807
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: depth, reading, qc, ts Sensor: soil_moisture | fields: value, qc, lat, lon Task: Retrieve lat from wind_speed that have at least one matching reading in soil_moisture sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025808
train
v3
Sensor network script: Node: evaporation | code: ref | fields: reading, lat, lon, value Sensor: rainfall | fields: depth, ts, lon, qc Task: Get lon from evaporation where reading exceeds the average reading from rainfall for the same unit. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025809
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: unit, value, lon, depth Sensor: uv_index | fields: lat, level, unit, qc Task: Retrieve depth from snow_depth with depth above the MAX(value) of uv_index readings sharing the same type. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("uv_index", code="flx"), match="type"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025810
train
v1
Sensor network script: Node: frost | code: gst | fields: reading, value, ts, lat Sensor: humidity | fields: unit, depth, reading, value Task: Get reading from frost where qc appears in humidity readings with matching ts. Script:
readings = fetch( node=Node("frost", code="gst"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="ts", ), output="reading", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "qc", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025811
train
v3
Sensor network script: Node: evaporation | code: stn | fields: level, ts, lon, reading Sensor: soil_moisture | fields: value, reading, lat, depth Task: Retrieve reading from evaporation with depth above the MAX(value) of soil_moisture readings sharing the same ts. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "reading", "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_025812
train
v2
Sensor network script: Node: visibility | code: gst | fields: type, depth, ts, reading Sensor: dew_point | fields: lon, qc, value, ts Task: Retrieve level from visibility that have at least one matching reading in dew_point sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="level", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "level", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025813
train
v1
Sensor network script: Node: turbidity | code: gst | fields: reading, qc, lat, unit Sensor: lightning | fields: value, lon, depth, reading Task: Fetch value from turbidity where ts exists in lightning sensor data for the same qc. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="qc", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "value", "filter_col": "ts", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025814
train
v1
Sensor network script: Node: pressure | code: prt | fields: level, ts, value, unit Sensor: visibility | fields: qc, unit, depth, level Task: Retrieve reading from pressure whose ts is found in visibility records where depth matches the outer node. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="depth", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "reading", "filter_col": "ts", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025815
train
v3
Sensor network script: Node: lightning | code: clr | fields: reading, lat, lon, qc Sensor: uv_index | fields: ts, level, lon, qc Task: Retrieve depth from lightning with value above the MAX(value) of uv_index readings sharing the same type. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("uv_index", code="flx"), match="type"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025816
train
v3
Sensor network script: Node: humidity | code: ref | fields: lat, type, depth, level Sensor: rainfall | fields: depth, level, lat, ts Task: Retrieve depth from humidity with value above the MIN(reading) of rainfall readings sharing the same ts. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025817
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: ts, reading, unit, level Sensor: uv_index | fields: value, level, qc, lat Task: Retrieve lat from cloud_cover with reading above the MIN(reading) of uv_index readings sharing the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("uv_index", code="flx"), match="depth"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025818
train
v1
Sensor network script: Node: visibility | code: prt | fields: unit, lon, ts, type Sensor: rainfall | fields: unit, lon, type, value Task: Retrieve lat from visibility whose depth is found in rainfall records where depth matches the outer node. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="depth", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025819
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: lon, ts, unit, value Sensor: drought_index | fields: type, reading, unit, value Task: Fetch reading from wind_speed that have at least one corresponding drought_index measurement for the same type. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "reading", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025820
train
v1
Sensor network script: Node: drought_index | code: gst | fields: lat, type, depth, reading Sensor: evaporation | fields: qc, lon, reading, value Task: Retrieve lat from drought_index whose type is found in evaporation records where unit matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="unit", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "lat", "filter_col": "type", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025821
train
v1
Sensor network script: Node: visibility | code: mst | fields: value, type, ts, lon Sensor: rainfall | fields: depth, lat, unit, lon Task: Retrieve depth from visibility whose depth is found in rainfall records where unit matches the outer node. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="unit", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025822
train
v1
Sensor network script: Node: turbidity | code: ref | fields: qc, lon, type, level Sensor: air_quality | fields: lon, unit, value, level Task: Get level from turbidity where depth appears in air_quality readings with matching qc. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=set_member( field="depth", source=Probe("air_quality", code="prt"), match="qc", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "level", "filter_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025823
train
v2
Sensor network script: Node: rainfall | code: hub | fields: reading, level, value, qc Sensor: soil_moisture | fields: reading, lat, qc, unit Task: Get reading from rainfall where a corresponding entry exists in soil_moisture with the same ts. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "reading", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025824
train
v1
Sensor network script: Node: wind_speed | code: thr | fields: level, ts, lat, type Sensor: turbidity | fields: lat, level, type, value Task: Retrieve reading from wind_speed whose type is found in turbidity records where ts matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="ts", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "type", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025825
train
v3
Sensor network script: Node: temperature | code: prt | fields: unit, lon, ts, value Sensor: dew_point | fields: level, lon, qc, unit Task: Fetch level from temperature where reading is greater than the minimum of depth in dew_point for matching unit. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("dew_point", code="cnd"), match="unit"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025826
train
v1
Sensor network script: Node: turbidity | code: prt | fields: lat, qc, unit, lon Sensor: wind_speed | fields: lat, ts, unit, value Task: Get level from turbidity where type appears in wind_speed readings with matching unit. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="unit", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "level", "filter_col": "type", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025827
train
v2
Sensor network script: Node: drought_index | code: hub | fields: ts, lat, type, reading Sensor: snow_depth | fields: unit, level, lat, qc Task: Get depth from drought_index where a corresponding entry exists in snow_depth with the same type. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "depth", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025828
train
v3
Sensor network script: Node: rainfall | code: stn | fields: level, qc, ts, depth Sensor: pressure | fields: ts, depth, type, lon Task: Retrieve lon from rainfall with depth above the AVG(value) of pressure readings sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("pressure", code="mbl"), match="type"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025829
train
v2
Sensor network script: Node: evaporation | code: prt | fields: unit, lat, ts, reading Sensor: humidity | fields: type, ts, level, qc Task: Fetch reading from evaporation that have at least one corresponding humidity measurement for the same unit. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "reading", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025830
train
v1
Sensor network script: Node: drought_index | code: ref | fields: value, ts, depth, unit Sensor: soil_moisture | fields: lon, level, unit, lat Task: Retrieve lat from drought_index whose unit is found in soil_moisture records where type matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="type", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "unit", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025831
train
v2
Sensor network script: Node: snow_depth | code: hub | fields: lon, level, ts, lat Sensor: cloud_cover | fields: unit, depth, type, lat Task: Get level from snow_depth where a corresponding entry exists in cloud_cover with the same unit. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "level", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025832
train
v3
Sensor network script: Node: pressure | code: clr | fields: depth, level, lat, unit Sensor: uv_index | fields: type, depth, lat, value Task: Get lon from pressure where depth exceeds the minimum reading from uv_index for the same depth. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("uv_index", code="flx"), match="depth"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025833
train
v2
Sensor network script: Node: air_quality | code: thr | fields: depth, type, lat, value Sensor: snow_depth | fields: qc, value, depth, reading Task: Fetch level from air_quality that have at least one corresponding snow_depth measurement for the same qc. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "level", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025834
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: type, value, lat, depth Sensor: humidity | fields: ts, lon, depth, type Task: Retrieve level from soil_moisture with depth above the SUM(reading) of humidity readings sharing the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("humidity", code="hgr"), match="qc"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025835
train
v2
Sensor network script: Node: uv_index | code: mst | fields: unit, reading, value, qc Sensor: sunlight | fields: type, qc, ts, value Task: Retrieve level from uv_index that have at least one matching reading in sunlight sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "level", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025836
train
v1
Sensor network script: Node: dew_point | code: ref | fields: qc, unit, level, depth Sensor: snow_depth | fields: lon, depth, reading, qc Task: Retrieve depth from dew_point whose depth is found in snow_depth records where qc matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="qc", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "depth", "filter_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025837
train
v3
Sensor network script: Node: snow_depth | code: thr | fields: level, depth, qc, lon Sensor: air_quality | fields: qc, reading, level, unit Task: Get level from snow_depth where depth exceeds the count of value from air_quality for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("air_quality", code="prt"), match="ts"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025838
train
v2
Sensor network script: Node: dew_point | code: clr | fields: unit, ts, level, qc Sensor: snow_depth | fields: type, ts, unit, depth Task: Fetch value from dew_point that have at least one corresponding snow_depth measurement for the same qc. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "value", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025839
train
v1
Sensor network script: Node: turbidity | code: thr | fields: depth, level, reading, value Sensor: humidity | fields: depth, lat, qc, lon Task: Retrieve value from turbidity whose unit is found in humidity records where depth matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="depth", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "value", "filter_col": "unit", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025840
train
v3
Sensor network script: Node: evaporation | code: prt | fields: qc, value, reading, lat Sensor: frost | fields: value, level, type, lon Task: Retrieve lat from evaporation with depth above the AVG(depth) of frost readings sharing the same depth. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("frost", code="frs"), match="depth"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025841
train
v1
Sensor network script: Node: snow_depth | code: clr | fields: lat, lon, unit, type Sensor: frost | fields: level, type, value, qc Task: Retrieve lon from snow_depth whose qc is found in frost records where depth matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="depth", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "lon", "filter_col": "qc", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025842
train
v2
Sensor network script: Node: drought_index | code: thr | fields: qc, value, type, lat Sensor: pressure | fields: unit, value, type, qc Task: Fetch value from drought_index that have at least one corresponding pressure measurement for the same unit. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "value", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025843
train
v3
Sensor network script: Node: evaporation | code: clr | fields: type, depth, ts, unit Sensor: uv_index | fields: qc, depth, type, value Task: Fetch lon from evaporation where reading is greater than the minimum of reading in uv_index for matching type. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("uv_index", code="flx"), match="type"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025844
train
v2
Sensor network script: Node: temperature | code: hub | fields: ts, lat, depth, unit Sensor: snow_depth | fields: ts, level, lat, reading Task: Retrieve value from temperature that have at least one matching reading in snow_depth sharing the same type. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="value", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "value", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025845
train
v2
Sensor network script: Node: pressure | code: ref | fields: unit, reading, level, depth Sensor: snow_depth | fields: lat, ts, reading, level Task: Fetch lon from pressure that have at least one corresponding snow_depth measurement for the same ts. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "lon", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025846
train
v3
Sensor network script: Node: uv_index | code: thr | fields: lon, qc, value, lat Sensor: frost | fields: qc, level, ts, type Task: Retrieve lat from uv_index with depth above the MIN(reading) of frost readings sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("frost", code="frs"), match="depth"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025847
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: qc, depth, value, lat Sensor: wind_speed | fields: reading, lat, type, value Task: Retrieve level from cloud_cover with reading above the AVG(depth) of wind_speed readings sharing the same type. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("wind_speed", code="gst"), match="type"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025848
train
v3
Sensor network script: Node: temperature | code: mst | fields: lon, reading, qc, type Sensor: air_quality | fields: qc, lat, value, depth Task: Fetch value from temperature where depth is greater than the minimum of reading in air_quality for matching ts. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("air_quality", code="prt"), match="ts"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025849
train
v2
Sensor network script: Node: uv_index | code: prt | fields: value, level, unit, lon Sensor: humidity | fields: qc, lat, type, value Task: Fetch depth from uv_index that have at least one corresponding humidity measurement for the same qc. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025850
train
v1
Sensor network script: Node: evaporation | code: stn | fields: depth, qc, value, type Sensor: rainfall | fields: depth, qc, level, ts Task: Get lat from evaporation where unit appears in rainfall readings with matching depth. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="depth", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "unit", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025851
train
v1
Sensor network script: Node: evaporation | code: hub | fields: reading, type, ts, unit Sensor: uv_index | fields: qc, lat, depth, unit Task: Retrieve depth from evaporation whose unit is found in uv_index records where ts matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="ts", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025852
train
v3
Sensor network script: Node: frost | code: stn | fields: lat, reading, depth, qc Sensor: humidity | fields: unit, type, depth, reading Task: Retrieve level from frost with reading above the MIN(depth) of humidity readings sharing the same unit. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("humidity", code="hgr"), match="unit"), ), output="level", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "level", "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_025853
train
v2
Sensor network script: Node: wind_speed | code: hub | fields: depth, qc, reading, value Sensor: evaporation | fields: type, qc, depth, unit Task: Fetch level from wind_speed that have at least one corresponding evaporation measurement for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "level", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025854
train
v1
Sensor network script: Node: wind_speed | code: hub | fields: lat, type, lon, reading Sensor: frost | fields: lon, unit, level, ts Task: Get value from wind_speed where ts appears in frost readings with matching unit. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="unit", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "value", "filter_col": "ts", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025855
train
v1
Sensor network script: Node: sunlight | code: prt | fields: unit, depth, lon, type Sensor: wind_speed | fields: lon, level, depth, type Task: Get level from sunlight where ts appears in wind_speed readings with matching type. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="type", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "level", "filter_col": "ts", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025856
train
v1
Sensor network script: Node: humidity | code: ref | fields: unit, qc, reading, lon Sensor: sunlight | fields: lat, reading, qc, lon Task: Get level from humidity where type appears in sunlight readings with matching qc. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="qc", ), output="level", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "level", "filter_col": "type", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025857
train
v2
Sensor network script: Node: uv_index | code: ref | fields: qc, lon, lat, level Sensor: drought_index | fields: depth, type, unit, lat Task: Retrieve lat from uv_index that have at least one matching reading in drought_index sharing the same ts. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lat", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025858
train
v3
Sensor network script: Node: humidity | code: gst | fields: qc, value, lon, depth Sensor: snow_depth | fields: level, lon, unit, ts Task: Get reading from humidity where value exceeds the average depth from snow_depth for the same ts. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("snow_depth", code="snw"), match="ts"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025859
train
v3
Sensor network script: Node: frost | code: thr | fields: depth, lat, reading, qc Sensor: humidity | fields: depth, ts, lon, type Task: Fetch reading from frost where value is greater than the minimum of reading in humidity for matching ts. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("humidity", code="hgr"), match="ts"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025860
train
v2
Sensor network script: Node: lightning | code: thr | fields: qc, level, depth, lat Sensor: frost | fields: lat, reading, depth, lon Task: Fetch depth from lightning that have at least one corresponding frost measurement for the same unit. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025861
train
v1
Sensor network script: Node: evaporation | code: hub | fields: qc, ts, unit, type Sensor: uv_index | fields: qc, lon, type, unit Task: Retrieve value from evaporation whose unit is found in uv_index records where ts matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="ts", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "value", "filter_col": "unit", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025862
train
v3
Sensor network script: Node: cloud_cover | code: clr | fields: level, qc, value, reading Sensor: uv_index | fields: unit, qc, ts, reading Task: Get depth from cloud_cover where reading exceeds the average reading from uv_index for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("uv_index", code="flx"), match="ts"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025863
train
v1
Sensor network script: Node: cloud_cover | code: ref | fields: reading, unit, lon, ts Sensor: snow_depth | fields: type, lat, unit, depth Task: Get reading from cloud_cover where unit appears in snow_depth readings with matching qc. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="qc", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025864
train
v1
Sensor network script: Node: evaporation | code: gst | fields: qc, depth, lon, lat Sensor: visibility | fields: value, level, depth, type Task: Fetch reading from evaporation where depth exists in visibility sensor data for the same unit. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="unit", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "reading", "filter_col": "depth", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025865
train
v3
Sensor network script: Node: frost | code: gst | fields: lon, ts, type, level Sensor: lightning | fields: reading, ts, level, lat Task: Fetch reading from frost where depth is greater than the average of reading in lightning for matching depth. Script:
readings = fetch( node=Node("frost", code="gst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("lightning", code="tnd"), match="depth"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025866
train
v1
Sensor network script: Node: visibility | code: hub | fields: ts, level, depth, qc Sensor: snow_depth | fields: type, ts, qc, unit Task: Get depth from visibility where unit appears in snow_depth readings with matching unit. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="unit", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "depth", "filter_col": "unit", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025867
train
v1
Sensor network script: Node: air_quality | code: prt | fields: lat, value, type, depth Sensor: humidity | fields: reading, ts, lon, qc Task: Retrieve reading from air_quality whose qc is found in humidity records where qc matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="qc", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025868
train
v3
Sensor network script: Node: air_quality | code: ref | fields: level, lon, depth, lat Sensor: visibility | fields: type, level, value, qc Task: Fetch reading from air_quality where reading is greater than the total of value in visibility for matching type. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("visibility", code="clr"), match="type"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025869
train
v3
Sensor network script: Node: rainfall | code: ref | fields: value, lat, depth, lon Sensor: humidity | fields: unit, ts, lon, qc Task: Fetch depth from rainfall where value is greater than the minimum of depth in humidity for matching ts. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("humidity", code="hgr"), match="ts"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025870
train
v2
Sensor network script: Node: wind_speed | code: mst | fields: unit, ts, lon, value Sensor: temperature | fields: value, type, level, ts Task: Get lat from wind_speed where a corresponding entry exists in temperature with the same type. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lat", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025871
train
v1
Sensor network script: Node: sunlight | code: clr | fields: unit, lat, type, reading Sensor: air_quality | fields: unit, reading, qc, value Task: Fetch depth from sunlight where ts exists in air_quality sensor data for the same unit. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="unit", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025872
train
v3
Sensor network script: Node: lightning | code: thr | fields: type, level, depth, qc Sensor: drought_index | fields: reading, depth, lon, ts Task: Retrieve level from lightning with depth above the COUNT(reading) of drought_index readings sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("drought_index", code="drt"), match="unit"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025873
train
v2
Sensor network script: Node: frost | code: prt | fields: qc, lon, unit, level Sensor: snow_depth | fields: level, reading, qc, lat Task: Get level from frost where a corresponding entry exists in snow_depth with the same type. Script:
readings = fetch( node=Node("frost", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="level", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "level", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025874
train
v3
Sensor network script: Node: drought_index | code: ref | fields: value, type, lat, unit Sensor: soil_moisture | fields: level, unit, qc, type Task: Retrieve value from drought_index with depth above the COUNT(depth) of soil_moisture readings sharing the same type. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025875
train
v3
Sensor network script: Node: turbidity | code: gst | fields: lat, unit, depth, reading Sensor: air_quality | fields: depth, value, reading, lat Task: Get level from turbidity where reading exceeds the average value from air_quality for the same qc. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("air_quality", code="prt"), match="qc"), ), output="level", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025876
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: depth, unit, type, lat Sensor: sunlight | fields: qc, reading, level, type Task: Fetch depth from snow_depth where type exists in sunlight sensor data for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="depth", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "depth", "filter_col": "type", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025877
train
v2
Sensor network script: Node: soil_moisture | code: thr | fields: lat, level, depth, reading Sensor: visibility | fields: level, reading, unit, value Task: Get lon from soil_moisture where a corresponding entry exists in visibility with the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lon", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025878
train
v3
Sensor network script: Node: turbidity | code: thr | fields: unit, lon, value, level Sensor: rainfall | fields: reading, ts, type, value Task: Fetch reading from turbidity where value is greater than the count of of depth in rainfall for matching unit. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025879
train
v3
Sensor network script: Node: drought_index | code: hub | fields: value, ts, unit, type Sensor: sunlight | fields: level, type, qc, unit Task: Fetch lon from drought_index where depth is greater than the maximum of depth in sunlight for matching type. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("sunlight", code="brt"), match="type"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025880
train
v3
Sensor network script: Node: rainfall | code: prt | fields: type, ts, reading, level Sensor: wind_speed | fields: qc, depth, ts, lat Task: Get lon from rainfall where reading exceeds the count of depth from wind_speed for the same qc. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("wind_speed", code="gst"), match="qc"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025881
train
v2
Sensor network script: Node: visibility | code: ref | fields: depth, lon, level, unit Sensor: cloud_cover | fields: lon, reading, qc, lat Task: Fetch depth from visibility that have at least one corresponding cloud_cover measurement for the same qc. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025882
train
v3
Sensor network script: Node: sunlight | code: ref | fields: lat, ts, reading, level Sensor: snow_depth | fields: qc, unit, depth, ts Task: Fetch depth from sunlight where reading is greater than the average of reading in snow_depth for matching depth. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("snow_depth", code="snw"), match="depth"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025883
train
v3
Sensor network script: Node: evaporation | code: thr | fields: level, value, depth, reading Sensor: dew_point | fields: value, type, qc, level Task: Fetch value from evaporation where reading is greater than the average of value in dew_point for matching unit. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("dew_point", code="cnd"), match="unit"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025884
train
v2
Sensor network script: Node: sunlight | code: hub | fields: unit, lon, lat, ts Sensor: drought_index | fields: level, lon, ts, value Task: Get reading from sunlight where a corresponding entry exists in drought_index with the same type. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "reading", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025885
train
v2
Sensor network script: Node: visibility | code: gst | fields: level, type, reading, unit Sensor: lightning | fields: type, ts, lon, depth Task: Retrieve level from visibility that have at least one matching reading in lightning sharing the same ts. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="level", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "level", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025886
train
v2
Sensor network script: Node: pressure | code: clr | fields: lat, ts, type, unit Sensor: cloud_cover | fields: depth, level, qc, ts Task: Get reading from pressure where a corresponding entry exists in cloud_cover with the same depth. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "reading", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025887
train
v1
Sensor network script: Node: pressure | code: thr | fields: lon, value, unit, reading Sensor: sunlight | fields: lon, lat, ts, depth Task: Retrieve reading from pressure whose depth is found in sunlight records where unit matches the outer node. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="unit", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025888
train
v1
Sensor network script: Node: soil_moisture | code: hub | fields: level, unit, qc, value Sensor: air_quality | fields: value, type, lon, depth Task: Fetch lon from soil_moisture where qc exists in air_quality sensor data for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="ts", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "lon", "filter_col": "qc", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025889
train
v2
Sensor network script: Node: temperature | code: clr | fields: lat, qc, depth, level Sensor: snow_depth | fields: value, type, qc, ts Task: Fetch level from temperature that have at least one corresponding snow_depth measurement for the same qc. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="level", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "level", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025890
train
v1
Sensor network script: Node: turbidity | code: prt | fields: reading, lat, lon, qc Sensor: wind_speed | fields: unit, qc, ts, lon Task: Retrieve level from turbidity whose type is found in wind_speed records where unit matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="unit", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "level", "filter_col": "type", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025891
train
v1
Sensor network script: Node: sunlight | code: hub | fields: value, unit, lon, qc Sensor: humidity | fields: unit, type, ts, value Task: Retrieve lon from sunlight whose type is found in humidity records where unit matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="unit", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "type", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025892
train
v2
Sensor network script: Node: lightning | code: prt | fields: level, value, depth, lon Sensor: wind_speed | fields: depth, level, lon, reading Task: Retrieve lat from lightning that have at least one matching reading in wind_speed sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lat", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025893
train
v3
Sensor network script: Node: pressure | code: prt | fields: level, type, ts, unit Sensor: sunlight | fields: level, ts, unit, reading Task: Fetch value from pressure where reading is greater than the count of of depth in sunlight for matching type. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("sunlight", code="brt"), match="type"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025894
train
v2
Sensor network script: Node: air_quality | code: hub | fields: lon, reading, value, ts Sensor: wind_speed | fields: level, value, lon, ts Task: Retrieve value from air_quality that have at least one matching reading in wind_speed sharing the same depth. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "value", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025895
train
v1
Sensor network script: Node: temperature | code: hub | fields: lon, ts, value, lat Sensor: uv_index | fields: type, level, unit, reading Task: Retrieve depth from temperature whose type is found in uv_index records where unit matches the outer node. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="unit", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "depth", "filter_col": "type", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025896
train
v3
Sensor network script: Node: soil_moisture | code: prt | fields: unit, lat, reading, type Sensor: dew_point | fields: depth, qc, lon, unit Task: Fetch value from soil_moisture where value is greater than the maximum of depth in dew_point for matching unit. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("dew_point", code="cnd"), match="unit"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025897
train
v1
Sensor network script: Node: sunlight | code: gst | fields: reading, level, qc, lon Sensor: drought_index | fields: lat, level, ts, depth Task: Get lon from sunlight where unit appears in drought_index readings with matching qc. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="qc", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "lon", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025898
train
v1
Sensor network script: Node: air_quality | code: prt | fields: lon, lat, unit, level Sensor: turbidity | fields: depth, type, qc, value Task: Fetch level from air_quality where type exists in turbidity sensor data for the same unit. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="unit", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "level", "filter_col": "type", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025899
train