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: rainfall | code: stn | fields: unit, reading, qc, ts Sensor: drought_index | fields: reading, value, lat, qc Task: Retrieve lon from rainfall with reading above the COUNT(value) of drought_index readings sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("drought_index", code="drt"), match="type"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079700
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: reading, value, depth, type Sensor: lightning | fields: value, reading, ts, qc Task: Get lon from snow_depth where unit appears in lightning readings with matching type. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="type", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079701
train
v2
Sensor network script: Node: uv_index | code: ref | fields: qc, level, ts, type Sensor: drought_index | fields: lat, depth, qc, type Task: Retrieve lon from uv_index that have at least one matching reading in drought_index sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lon", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079702
train
v1
Sensor network script: Node: soil_moisture | code: ref | fields: lon, reading, ts, type Sensor: evaporation | fields: level, ts, depth, unit Task: Fetch lon from soil_moisture where qc exists in evaporation sensor data for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="depth", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "lon", "filter_col": "qc", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079703
train
v1
Sensor network script: Node: air_quality | code: hub | fields: qc, value, lon, ts Sensor: soil_moisture | fields: value, qc, type, unit Task: Retrieve lon from air_quality whose depth is found in soil_moisture records where depth matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079704
train
v2
Sensor network script: Node: rainfall | code: gst | fields: type, lon, reading, depth Sensor: frost | fields: depth, value, lat, level Task: Get lat from rainfall where a corresponding entry exists in frost with the same qc. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "lat", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079705
train
v3
Sensor network script: Node: wind_speed | code: prt | fields: lon, unit, depth, qc Sensor: humidity | fields: value, unit, depth, lon Task: Get level from wind_speed where depth exceeds the total depth from humidity for the same type. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("humidity", code="hgr"), match="type"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079706
train
v1
Sensor network script: Node: drought_index | code: prt | fields: depth, type, value, ts Sensor: sunlight | fields: reading, ts, level, unit Task: Get level from drought_index where unit appears in sunlight readings with matching ts. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="ts", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079707
train
v2
Sensor network script: Node: visibility | code: hub | fields: level, type, ts, depth Sensor: temperature | fields: type, ts, depth, lat Task: Fetch value from visibility that have at least one corresponding temperature measurement for the same type. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="value", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "value", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079708
train
v2
Sensor network script: Node: humidity | code: clr | fields: unit, value, lat, qc Sensor: wind_speed | fields: reading, qc, level, lat Task: Get level from humidity where a corresponding entry exists in wind_speed with the same depth. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="level", )
{ "outer_table": "humidity", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "level", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079709
train
v2
Sensor network script: Node: rainfall | code: prt | fields: level, unit, lon, ts Sensor: lightning | fields: type, lat, value, depth Task: Get lon from rainfall where a corresponding entry exists in lightning with the same depth. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "lon", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079710
train
v3
Sensor network script: Node: temperature | code: clr | fields: type, depth, ts, qc Sensor: pressure | fields: value, qc, reading, level Task: Fetch level from temperature where value is greater than the minimum of depth in pressure for matching unit. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("pressure", code="mbl"), match="unit"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079711
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: ts, lat, level, qc Sensor: turbidity | fields: level, value, depth, type Task: Fetch value from wind_speed that have at least one corresponding turbidity measurement for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "value", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079712
train
v3
Sensor network script: Node: frost | code: thr | fields: reading, depth, unit, qc Sensor: evaporation | fields: depth, unit, lat, type Task: Retrieve value from frost with depth above the AVG(value) of evaporation readings sharing the same depth. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("evaporation", code="evp"), match="depth"), ), output="value", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079713
train
v3
Sensor network script: Node: frost | code: prt | fields: lon, depth, level, value Sensor: evaporation | fields: depth, lon, unit, lat Task: Get lat from frost where depth exceeds the count of depth from evaporation for the same depth. Script:
readings = fetch( node=Node("frost", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("evaporation", code="evp"), match="depth"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079714
train
v1
Sensor network script: Node: sunlight | code: hub | fields: reading, value, level, type Sensor: wind_speed | fields: type, unit, depth, level Task: Get reading from sunlight where depth appears in wind_speed readings with matching ts. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="ts", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "reading", "filter_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079715
train
v1
Sensor network script: Node: air_quality | code: stn | fields: unit, lon, depth, level Sensor: pressure | fields: ts, level, lat, value Task: Fetch depth from air_quality where unit exists in pressure sensor data for the same unit. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="unit", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "unit", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079716
train
v1
Sensor network script: Node: frost | code: prt | fields: reading, value, unit, lon Sensor: uv_index | fields: reading, type, level, value Task: Get reading from frost where qc appears in uv_index readings with matching unit. Script:
readings = fetch( node=Node("frost", code="prt"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="unit", ), output="reading", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "reading", "filter_col": "qc", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079717
train
v2
Sensor network script: Node: snow_depth | code: clr | fields: value, lat, ts, qc Sensor: soil_moisture | fields: reading, ts, qc, lat Task: Retrieve lon from snow_depth that have at least one matching reading in soil_moisture sharing the same depth. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lon", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079718
train
v3
Sensor network script: Node: wind_speed | code: mst | fields: unit, depth, type, lon Sensor: evaporation | fields: qc, unit, type, depth Task: Retrieve value from wind_speed with depth above the SUM(depth) of evaporation readings sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("evaporation", code="evp"), match="qc"), ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079719
train
v3
Sensor network script: Node: humidity | code: hub | fields: value, ts, reading, level Sensor: lightning | fields: lon, lat, unit, level Task: Fetch reading from humidity where reading is greater than the count of of value in lightning for matching depth. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("lightning", code="tnd"), match="depth"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079720
train
v1
Sensor network script: Node: dew_point | code: clr | fields: type, reading, qc, value Sensor: soil_moisture | fields: lon, ts, type, depth Task: Retrieve lon from dew_point whose unit is found in soil_moisture records where type matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="type", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079721
train
v3
Sensor network script: Node: rainfall | code: ref | fields: lon, value, type, ts Sensor: lightning | fields: value, type, reading, level Task: Get level from rainfall where reading exceeds the minimum reading from lightning for the same unit. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("lightning", code="tnd"), match="unit"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079722
train
v3
Sensor network script: Node: pressure | code: stn | fields: unit, lon, ts, level Sensor: air_quality | fields: type, lon, unit, lat Task: Get depth from pressure where value exceeds the average value from air_quality for the same qc. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("air_quality", code="prt"), match="qc"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079723
train
v3
Sensor network script: Node: visibility | code: ref | fields: lon, depth, type, qc Sensor: frost | fields: level, lon, unit, depth Task: Get depth from visibility where reading exceeds the count of depth from frost for the same unit. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("frost", code="frs"), match="unit"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079724
train
v1
Sensor network script: Node: dew_point | code: ref | fields: value, lon, lat, level Sensor: evaporation | fields: lon, unit, value, lat Task: Retrieve lon from dew_point whose ts is found in evaporation records where unit matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="unit", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079725
train
v3
Sensor network script: Node: lightning | code: gst | fields: level, ts, qc, reading Sensor: temperature | fields: depth, lon, type, ts Task: Fetch lat from lightning where reading is greater than the minimum of depth in temperature for matching unit. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("temperature", code="thr"), match="unit"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079726
train
v1
Sensor network script: Node: wind_speed | code: ref | fields: level, qc, depth, lat Sensor: lightning | fields: type, lat, level, reading Task: Get level from wind_speed where unit appears in lightning readings with matching depth. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="depth", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "level", "filter_col": "unit", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079727
train
v3
Sensor network script: Node: wind_speed | code: prt | fields: lon, lat, unit, level Sensor: humidity | fields: ts, level, lon, type Task: Retrieve level from wind_speed with depth above the MAX(depth) of humidity readings sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("humidity", code="hgr"), match="unit"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079728
train
v3
Sensor network script: Node: soil_moisture | code: clr | fields: level, lon, reading, ts Sensor: turbidity | fields: qc, value, level, reading Task: Fetch depth from soil_moisture where depth is greater than the minimum of reading in turbidity for matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("turbidity", code="ftu"), match="ts"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079729
train
v3
Sensor network script: Node: dew_point | code: thr | fields: type, level, value, lat Sensor: wind_speed | fields: unit, qc, lon, lat Task: Retrieve lon from dew_point with depth above the SUM(reading) of wind_speed readings sharing the same depth. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("wind_speed", code="gst"), match="depth"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079730
train
v1
Sensor network script: Node: visibility | code: hub | fields: type, value, lon, lat Sensor: rainfall | fields: lon, lat, depth, reading Task: Get value from visibility where unit appears in rainfall readings with matching depth. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="depth", ), output="value", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "unit", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079731
train
v1
Sensor network script: Node: turbidity | code: thr | fields: depth, ts, unit, reading Sensor: sunlight | fields: reading, depth, level, ts Task: Fetch lon from turbidity where type exists in sunlight sensor data for the same depth. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="depth", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "lon", "filter_col": "type", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079732
train
v1
Sensor network script: Node: soil_moisture | code: mst | fields: lat, reading, value, level Sensor: pressure | fields: qc, lat, depth, lon Task: Retrieve lat from soil_moisture whose qc is found in pressure records where type matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="type", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "qc", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079733
train
v2
Sensor network script: Node: turbidity | code: hub | fields: reading, lon, lat, unit Sensor: rainfall | fields: depth, lon, reading, value Task: Get lat from turbidity where a corresponding entry exists in rainfall with the same ts. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079734
train
v3
Sensor network script: Node: wind_speed | code: hub | fields: qc, type, ts, level Sensor: turbidity | fields: reading, qc, type, lon Task: Get reading from wind_speed where depth exceeds the minimum value from turbidity for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("turbidity", code="ftu"), match="ts"), ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079735
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: level, type, value, qc Sensor: humidity | fields: lat, type, value, ts Task: Get value from wind_speed where a corresponding entry exists in humidity with the same ts. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "value", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079736
train
v2
Sensor network script: Node: air_quality | code: hub | fields: lon, unit, depth, type Sensor: wind_speed | fields: qc, lat, level, type Task: Retrieve level from air_quality that have at least one matching reading in wind_speed sharing the same qc. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "level", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079737
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: value, reading, lon, level Sensor: wind_speed | fields: type, value, qc, unit Task: Retrieve lat from cloud_cover that have at least one matching reading in wind_speed sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lat", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079738
train
v1
Sensor network script: Node: frost | code: prt | fields: depth, ts, level, value Sensor: rainfall | fields: unit, depth, value, reading Task: Fetch reading from frost where qc exists in rainfall sensor data for the same qc. Script:
readings = fetch( node=Node("frost", code="prt"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="qc", ), output="reading", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079739
train
v3
Sensor network script: Node: snow_depth | code: stn | fields: value, reading, lat, lon Sensor: evaporation | fields: type, level, ts, value Task: Get reading from snow_depth where depth exceeds the count of value from evaporation for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("evaporation", code="evp"), match="qc"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079740
train
v3
Sensor network script: Node: humidity | code: clr | fields: level, unit, qc, lon Sensor: temperature | fields: lat, level, lon, reading Task: Retrieve lat from humidity with value above the COUNT(value) of temperature readings sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("temperature", code="thr"), match="depth"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079741
train
v3
Sensor network script: Node: temperature | code: gst | fields: type, lon, qc, value Sensor: air_quality | fields: reading, qc, unit, type Task: Fetch lon from temperature where depth is greater than the minimum of reading in air_quality for matching unit. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("air_quality", code="prt"), match="unit"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079742
train
v2
Sensor network script: Node: pressure | code: thr | fields: unit, depth, qc, value Sensor: uv_index | fields: type, qc, depth, reading Task: Get reading from pressure where a corresponding entry exists in uv_index with the same ts. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "reading", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079743
train
v2
Sensor network script: Node: frost | code: hub | fields: ts, lon, depth, unit Sensor: temperature | fields: depth, reading, type, ts Task: Get reading from frost where a corresponding entry exists in temperature with the same type. Script:
readings = fetch( node=Node("frost", code="hub"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="reading", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "reading", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079744
train
v3
Sensor network script: Node: evaporation | code: ref | fields: type, ts, lat, depth Sensor: dew_point | fields: lat, reading, type, ts Task: Retrieve lat from evaporation with depth above the MAX(value) of dew_point readings sharing the same type. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("dew_point", code="cnd"), match="type"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079745
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: lat, ts, depth, type Sensor: pressure | fields: value, depth, unit, qc Task: Fetch lon from snow_depth where unit exists in pressure sensor data for the same type. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="type", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079746
train
v3
Sensor network script: Node: soil_moisture | code: stn | fields: depth, lat, qc, value Sensor: uv_index | fields: ts, reading, unit, level Task: Retrieve depth from soil_moisture with value above the MIN(reading) of uv_index readings sharing the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("uv_index", code="flx"), match="qc"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079747
train
v3
Sensor network script: Node: air_quality | code: gst | fields: value, depth, unit, qc Sensor: dew_point | fields: lon, reading, type, qc Task: Fetch reading from air_quality where depth is greater than the total of value in dew_point for matching depth. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("dew_point", code="cnd"), match="depth"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079748
train
v3
Sensor network script: Node: uv_index | code: mst | fields: lon, value, type, qc Sensor: lightning | fields: depth, ts, unit, lon Task: Retrieve reading from uv_index with depth above the SUM(reading) of lightning readings sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("lightning", code="tnd"), match="unit"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079749
train
v1
Sensor network script: Node: snow_depth | code: ref | fields: ts, qc, type, value Sensor: drought_index | fields: depth, level, lon, value Task: Fetch reading from snow_depth where type exists in drought_index sensor data for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="ts", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "reading", "filter_col": "type", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079750
train
v2
Sensor network script: Node: air_quality | code: clr | fields: reading, depth, type, qc Sensor: snow_depth | fields: value, qc, lat, unit Task: Retrieve lat from air_quality that have at least one matching reading in snow_depth sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "lat", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079751
train
v3
Sensor network script: Node: drought_index | code: hub | fields: lat, level, type, depth Sensor: lightning | fields: type, ts, reading, qc Task: Retrieve value from drought_index with reading above the AVG(depth) of lightning readings sharing the same qc. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("lightning", code="tnd"), match="qc"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079752
train
v3
Sensor network script: Node: soil_moisture | code: ref | fields: qc, ts, lat, value Sensor: cloud_cover | fields: unit, depth, value, ts Task: Fetch depth from soil_moisture where depth is greater than the count of of reading in cloud_cover for matching unit. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079753
train
v1
Sensor network script: Node: wind_speed | code: prt | fields: reading, type, ts, depth Sensor: visibility | fields: lat, depth, unit, value Task: Retrieve level from wind_speed whose depth is found in visibility records where depth matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="depth", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "level", "filter_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079754
train
v1
Sensor network script: Node: frost | code: prt | fields: lat, unit, reading, lon Sensor: cloud_cover | fields: value, reading, lat, type Task: Get level from frost where type appears in cloud_cover readings with matching type. Script:
readings = fetch( node=Node("frost", code="prt"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="type", ), output="level", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "level", "filter_col": "type", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079755
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: type, lon, value, reading Sensor: lightning | fields: unit, lat, value, reading Task: Retrieve lat from wind_speed whose unit is found in lightning records where qc matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="qc", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "unit", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079756
train
v2
Sensor network script: Node: frost | code: gst | fields: level, value, reading, lon Sensor: turbidity | fields: ts, qc, unit, lat Task: Get lat from frost where a corresponding entry exists in turbidity with the same ts. Script:
readings = fetch( node=Node("frost", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="lat", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lat", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079757
train
v3
Sensor network script: Node: drought_index | code: ref | fields: unit, level, qc, lon Sensor: rainfall | fields: type, value, qc, depth Task: Get depth from drought_index where depth exceeds the count of reading from rainfall for the same type. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("rainfall", code="rnfl"), match="type"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079758
train
v3
Sensor network script: Node: uv_index | code: ref | fields: level, qc, lon, reading Sensor: visibility | fields: lon, qc, reading, type Task: Retrieve reading from uv_index with value above the SUM(value) of visibility readings sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("visibility", code="clr"), match="unit"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079759
train
v3
Sensor network script: Node: soil_moisture | code: ref | fields: qc, reading, unit, depth Sensor: cloud_cover | fields: depth, reading, unit, qc Task: Fetch reading from soil_moisture where value is greater than the maximum of depth in cloud_cover for matching type. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079760
train
v1
Sensor network script: Node: dew_point | code: prt | fields: value, qc, type, unit Sensor: pressure | fields: qc, lat, level, depth Task: Retrieve value from dew_point whose ts is found in pressure records where unit matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="unit", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "value", "filter_col": "ts", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079761
train
v3
Sensor network script: Node: sunlight | code: hub | fields: lon, qc, reading, level Sensor: humidity | fields: qc, type, reading, unit Task: Fetch depth from sunlight where reading is greater than the minimum of depth in humidity for matching unit. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("humidity", code="hgr"), match="unit"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079762
train
v2
Sensor network script: Node: sunlight | code: prt | fields: depth, reading, lon, unit Sensor: humidity | fields: depth, ts, reading, type Task: Get value from sunlight where a corresponding entry exists in humidity with the same ts. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "value", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079763
train
v1
Sensor network script: Node: humidity | code: ref | fields: lon, type, depth, unit Sensor: soil_moisture | fields: value, lon, lat, ts Task: Get level from humidity where ts appears in soil_moisture readings with matching depth. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="level", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079764
train
v2
Sensor network script: Node: drought_index | code: mst | fields: depth, value, reading, ts Sensor: lightning | fields: depth, lat, reading, qc Task: Retrieve value from drought_index that have at least one matching reading in lightning sharing the same depth. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "value", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079765
train
v3
Sensor network script: Node: air_quality | code: prt | fields: qc, unit, type, lat Sensor: pressure | fields: ts, type, depth, value Task: Fetch depth from air_quality where depth is greater than the average of reading in pressure for matching ts. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("pressure", code="mbl"), match="ts"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079766
train
v2
Sensor network script: Node: rainfall | code: hub | fields: qc, unit, ts, reading Sensor: lightning | fields: lat, unit, qc, lon Task: Fetch level from rainfall that have at least one corresponding lightning measurement for the same qc. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "level", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079767
train
v2
Sensor network script: Node: visibility | code: prt | fields: type, qc, value, level Sensor: pressure | fields: qc, unit, level, lon Task: Get depth from visibility where a corresponding entry exists in pressure with the same qc. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079768
train
v2
Sensor network script: Node: lightning | code: clr | fields: unit, qc, reading, ts Sensor: uv_index | fields: level, value, qc, ts Task: Fetch reading from lightning that have at least one corresponding uv_index measurement for the same qc. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "reading", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079769
train
v3
Sensor network script: Node: rainfall | code: gst | fields: qc, lat, type, value Sensor: drought_index | fields: qc, lon, unit, reading Task: Get depth from rainfall where value exceeds the minimum depth from drought_index for the same ts. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("drought_index", code="drt"), match="ts"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079770
train
v2
Sensor network script: Node: evaporation | code: mst | fields: lat, ts, depth, qc Sensor: dew_point | fields: qc, depth, lat, ts Task: Get lat from evaporation where a corresponding entry exists in dew_point with the same ts. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lat", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079771
train
v3
Sensor network script: Node: wind_speed | code: ref | fields: ts, value, lat, reading Sensor: visibility | fields: ts, value, lat, lon Task: Retrieve lon from wind_speed with depth above the MAX(depth) of visibility readings sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("visibility", code="clr"), match="ts"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079772
train
v3
Sensor network script: Node: air_quality | code: gst | fields: unit, reading, depth, level Sensor: visibility | fields: ts, reading, type, depth Task: Fetch value from air_quality where reading is greater than the total of reading in visibility for matching ts. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("visibility", code="clr"), match="ts"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079773
train
v3
Sensor network script: Node: temperature | code: hub | fields: depth, ts, reading, type Sensor: frost | fields: reading, lon, level, lat Task: Fetch level from temperature where reading is greater than the count of of depth in frost for matching ts. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("frost", code="frs"), match="ts"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079774
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: qc, reading, level, depth Sensor: pressure | fields: lon, value, lat, depth Task: Retrieve value from wind_speed whose ts is found in pressure records where ts matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="ts", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "value", "filter_col": "ts", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079775
train
v2
Sensor network script: Node: frost | code: gst | fields: depth, reading, ts, lat Sensor: cloud_cover | fields: depth, qc, ts, type Task: Get value from frost where a corresponding entry exists in cloud_cover with the same type. Script:
readings = fetch( node=Node("frost", code="gst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="value", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "value", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079776
train
v1
Sensor network script: Node: rainfall | code: ref | fields: lat, lon, depth, unit Sensor: dew_point | fields: lon, ts, lat, unit Task: Fetch lat from rainfall where unit exists in dew_point sensor data for the same qc. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="qc", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "unit", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079777
train
v2
Sensor network script: Node: turbidity | code: ref | fields: lon, type, reading, value Sensor: sunlight | fields: type, ts, lon, reading Task: Fetch depth from turbidity that have at least one corresponding sunlight measurement for the same unit. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079778
train
v3
Sensor network script: Node: drought_index | code: ref | fields: ts, lon, reading, value Sensor: soil_moisture | fields: unit, reading, value, lat Task: Get level from drought_index where value exceeds the count of depth from soil_moisture for the same depth. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079779
train
v3
Sensor network script: Node: wind_speed | code: clr | fields: lon, type, lat, unit Sensor: dew_point | fields: lon, unit, qc, type Task: Fetch depth from wind_speed where reading is greater than the total of reading in dew_point for matching type. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("dew_point", code="cnd"), match="type"), ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079780
train
v3
Sensor network script: Node: uv_index | code: mst | fields: qc, lat, unit, value Sensor: evaporation | fields: unit, lat, level, reading Task: Get lon from uv_index where value exceeds the total value from evaporation for the same depth. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("evaporation", code="evp"), match="depth"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079781
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: type, ts, level, value Sensor: uv_index | fields: lon, lat, type, unit Task: Fetch reading from snow_depth where ts exists in uv_index sensor data for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="unit", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079782
train
v1
Sensor network script: Node: wind_speed | code: hub | fields: type, unit, reading, value Sensor: cloud_cover | fields: qc, depth, type, reading Task: Get reading from wind_speed where ts appears in cloud_cover readings with matching type. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="type", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "ts", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079783
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: value, level, type, ts Sensor: drought_index | fields: depth, ts, value, lon Task: Get lon from soil_moisture where value exceeds the total value from drought_index for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("drought_index", code="drt"), match="type"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lon", "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_079784
train
v3
Sensor network script: Node: dew_point | code: prt | fields: level, ts, value, lon Sensor: drought_index | fields: qc, lat, ts, reading Task: Retrieve level from dew_point with value above the MIN(value) of drought_index readings sharing the same type. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("drought_index", code="drt"), match="type"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079785
train
v3
Sensor network script: Node: sunlight | code: hub | fields: depth, value, level, lat Sensor: evaporation | fields: lon, lat, unit, depth Task: Fetch lon from sunlight where value is greater than the minimum of depth in evaporation for matching unit. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("evaporation", code="evp"), match="unit"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079786
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: qc, lon, value, type Sensor: air_quality | fields: qc, lon, ts, level Task: Get lat from cloud_cover where value exceeds the maximum reading from air_quality for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("air_quality", code="prt"), match="unit"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079787
train
v2
Sensor network script: Node: dew_point | code: thr | fields: lat, depth, value, level Sensor: visibility | fields: reading, type, unit, lon Task: Retrieve lon from dew_point that have at least one matching reading in visibility sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lon", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079788
train
v3
Sensor network script: Node: drought_index | code: hub | fields: unit, depth, lat, type Sensor: rainfall | fields: unit, type, lon, qc Task: Fetch value from drought_index where value is greater than the total of value in rainfall for matching type. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("rainfall", code="rnfl"), match="type"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "value", "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_079789
train
v1
Sensor network script: Node: frost | code: thr | fields: qc, type, level, reading Sensor: drought_index | fields: lat, unit, ts, level Task: Retrieve reading from frost whose type is found in drought_index records where unit matches the outer node. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="unit", ), output="reading", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079790
train
v3
Sensor network script: Node: lightning | code: clr | fields: ts, type, lat, lon Sensor: rainfall | fields: ts, lat, value, qc Task: Get lon from lightning where reading exceeds the minimum value from rainfall for the same depth. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079791
train
v1
Sensor network script: Node: pressure | code: mst | fields: depth, unit, value, reading Sensor: turbidity | fields: ts, depth, reading, value Task: Fetch lon from pressure where unit exists in turbidity sensor data for the same unit. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="unit", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "unit", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079792
train
v2
Sensor network script: Node: pressure | code: prt | fields: lon, depth, ts, qc Sensor: turbidity | fields: type, value, reading, ts Task: Fetch level from pressure that have at least one corresponding turbidity measurement for the same ts. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="level", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "level", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079793
train
v2
Sensor network script: Node: dew_point | code: gst | fields: level, qc, depth, reading Sensor: drought_index | fields: qc, ts, lon, type Task: Fetch level from dew_point that have at least one corresponding drought_index measurement for the same ts. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "level", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079794
train
v1
Sensor network script: Node: cloud_cover | code: gst | fields: ts, lon, reading, type Sensor: frost | fields: value, lon, lat, unit Task: Fetch value from cloud_cover where qc exists in frost sensor data for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="qc", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "value", "filter_col": "qc", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079795
train
v2
Sensor network script: Node: air_quality | code: mst | fields: type, value, level, lon Sensor: turbidity | fields: depth, type, reading, level Task: Get depth from air_quality where a corresponding entry exists in turbidity with the same unit. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079796
train
v2
Sensor network script: Node: visibility | code: thr | fields: ts, lat, depth, reading Sensor: wind_speed | fields: lon, qc, value, reading Task: Retrieve lon from visibility that have at least one matching reading in wind_speed sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lon", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079797
train
v3
Sensor network script: Node: frost | code: clr | fields: reading, lon, unit, ts Sensor: uv_index | fields: lat, level, type, value Task: Retrieve lat from frost with value above the MIN(depth) of uv_index readings sharing the same depth. Script:
readings = fetch( node=Node("frost", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("uv_index", code="flx"), match="depth"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_079798
train
v1
Sensor network script: Node: lightning | code: mst | fields: qc, lat, reading, value Sensor: temperature | fields: reading, level, lat, qc Task: Get level from lightning where ts appears in temperature readings with matching qc. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="qc", ), output="level", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "level", "filter_col": "ts", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_079799
train