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: sunlight | code: ref | fields: unit, level, ts, lon Sensor: cloud_cover | fields: lat, qc, value, lon Task: Get lat from sunlight where qc appears in cloud_cover readings with matching type. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="type", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "qc", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008700
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: lon, depth, lat, type Sensor: pressure | fields: value, qc, level, unit Task: Fetch value from soil_moisture that have at least one corresponding pressure measurement for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "value", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008701
train
v3
Sensor network script: Node: uv_index | code: gst | fields: unit, reading, lat, type Sensor: lightning | fields: lon, qc, level, reading Task: Get lat from uv_index where value exceeds the count of reading from lightning for the same qc. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("lightning", code="tnd"), match="qc"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008702
train
v2
Sensor network script: Node: cloud_cover | code: ref | fields: type, ts, level, value Sensor: drought_index | fields: qc, type, value, unit Task: Retrieve depth from cloud_cover that have at least one matching reading in drought_index sharing the same type. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008703
train
v1
Sensor network script: Node: sunlight | code: mst | fields: level, depth, type, lat Sensor: dew_point | fields: unit, depth, reading, lon Task: Get lat from sunlight where qc appears in dew_point readings with matching unit. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="unit", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "qc", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008704
train
v3
Sensor network script: Node: sunlight | code: thr | fields: lon, value, lat, ts Sensor: humidity | fields: unit, reading, lon, depth Task: Retrieve reading from sunlight with value above the COUNT(depth) of humidity readings sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("humidity", code="hgr"), match="depth"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008705
train
v3
Sensor network script: Node: rainfall | code: ref | fields: depth, value, ts, reading Sensor: cloud_cover | fields: qc, depth, level, unit Task: Retrieve level from rainfall with value above the COUNT(value) of cloud_cover readings sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008706
train
v2
Sensor network script: Node: air_quality | code: clr | fields: ts, type, qc, lat Sensor: wind_speed | fields: depth, ts, level, type Task: Retrieve level from air_quality that have at least one matching reading in wind_speed sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "level", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008707
train
v2
Sensor network script: Node: visibility | code: prt | fields: reading, qc, type, value Sensor: snow_depth | fields: ts, level, lon, qc Task: Get depth from visibility where a corresponding entry exists in snow_depth with the same ts. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "depth", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008708
train
v2
Sensor network script: Node: humidity | code: mst | fields: qc, type, depth, value Sensor: uv_index | fields: lat, qc, level, ts Task: Retrieve reading from humidity that have at least one matching reading in uv_index sharing the same type. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "reading", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008709
train
v2
Sensor network script: Node: pressure | code: stn | fields: qc, level, type, lon Sensor: air_quality | fields: lon, unit, lat, ts Task: Retrieve depth from pressure that have at least one matching reading in air_quality sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008710
train
v1
Sensor network script: Node: uv_index | code: hub | fields: qc, depth, level, lon Sensor: humidity | fields: reading, lat, qc, unit Task: Fetch lon from uv_index where qc exists in humidity sensor data for the same qc. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="qc", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008711
train
v1
Sensor network script: Node: pressure | code: hub | fields: depth, unit, value, reading Sensor: lightning | fields: qc, lon, reading, type Task: Fetch reading from pressure where depth exists in lightning sensor data for the same depth. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="depth", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008712
train
v2
Sensor network script: Node: visibility | code: ref | fields: lon, value, ts, type Sensor: frost | fields: reading, level, value, qc Task: Fetch level from visibility that have at least one corresponding frost measurement for the same type. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="level", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "level", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008713
train
v3
Sensor network script: Node: pressure | code: clr | fields: level, qc, lat, value Sensor: turbidity | fields: qc, reading, depth, unit Task: Fetch reading from pressure where reading is greater than the total of reading in turbidity for matching depth. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("turbidity", code="ftu"), match="depth"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008714
train
v2
Sensor network script: Node: lightning | code: mst | fields: reading, lon, type, depth Sensor: air_quality | fields: lon, level, lat, unit Task: Fetch depth from lightning that have at least one corresponding air_quality measurement for the same depth. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008715
train
v2
Sensor network script: Node: pressure | code: ref | fields: type, lon, qc, value Sensor: drought_index | fields: reading, depth, value, unit Task: Fetch lon from pressure that have at least one corresponding drought_index measurement for the same ts. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lon", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008716
train
v3
Sensor network script: Node: sunlight | code: ref | fields: ts, lat, type, qc Sensor: temperature | fields: lat, qc, reading, type Task: Fetch level from sunlight where depth is greater than the count of of reading in temperature for matching qc. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("temperature", code="thr"), match="qc"), ), output="level", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008717
train
v1
Sensor network script: Node: sunlight | code: clr | fields: unit, qc, lat, ts Sensor: soil_moisture | fields: lon, qc, ts, level Task: Get reading from sunlight where type appears in soil_moisture readings with matching type. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="type", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008718
train
v3
Sensor network script: Node: lightning | code: clr | fields: depth, level, lon, type Sensor: dew_point | fields: unit, lat, level, value Task: Retrieve lat from lightning with value above the SUM(reading) of dew_point readings sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("dew_point", code="cnd"), match="unit"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008719
train
v1
Sensor network script: Node: rainfall | code: thr | fields: value, depth, level, lon Sensor: air_quality | fields: type, lat, value, level Task: Get lat from rainfall where type appears in air_quality readings with matching unit. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="unit", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "lat", "filter_col": "type", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008720
train
v2
Sensor network script: Node: humidity | code: stn | fields: value, reading, ts, type Sensor: dew_point | fields: lat, value, depth, reading Task: Retrieve value from humidity that have at least one matching reading in dew_point sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="value", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "value", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008721
train
v3
Sensor network script: Node: frost | code: stn | fields: depth, type, ts, lat Sensor: uv_index | fields: type, value, ts, reading Task: Retrieve level from frost with reading above the AVG(reading) of uv_index readings sharing the same type. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("uv_index", code="flx"), match="type"), ), output="level", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008722
train
v3
Sensor network script: Node: lightning | code: hub | fields: unit, lon, ts, lat Sensor: temperature | fields: level, reading, value, lat Task: Retrieve level from lightning with depth above the COUNT(value) of temperature readings sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("temperature", code="thr"), match="unit"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008723
train
v3
Sensor network script: Node: humidity | code: clr | fields: ts, lat, depth, qc Sensor: air_quality | fields: value, type, depth, lat Task: Retrieve depth from humidity with reading above the SUM(value) of air_quality readings sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("air_quality", code="prt"), match="qc"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008724
train
v2
Sensor network script: Node: air_quality | code: ref | fields: value, ts, reading, lat Sensor: rainfall | fields: reading, lat, value, type Task: Retrieve value from air_quality that have at least one matching reading in rainfall sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "value", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008725
train
v3
Sensor network script: Node: evaporation | code: clr | fields: ts, lat, qc, lon Sensor: dew_point | fields: ts, depth, value, type Task: Fetch value from evaporation where depth is greater than the maximum of reading in dew_point for matching qc. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("dew_point", code="cnd"), match="qc"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008726
train
v1
Sensor network script: Node: snow_depth | code: ref | fields: qc, level, reading, lat Sensor: uv_index | fields: depth, type, qc, level Task: Get lon from snow_depth where unit appears in uv_index readings with matching ts. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="ts", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lon", "filter_col": "unit", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008727
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: reading, lat, level, lon Sensor: sunlight | fields: unit, value, lon, type Task: Retrieve lat from wind_speed that have at least one matching reading in sunlight sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "lat", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008728
train
v1
Sensor network script: Node: sunlight | code: prt | fields: ts, value, lon, unit Sensor: rainfall | fields: type, qc, lon, unit Task: Fetch value from sunlight where unit exists in rainfall sensor data for the same depth. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="depth", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "unit", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008729
train
v3
Sensor network script: Node: cloud_cover | code: ref | fields: unit, level, ts, lon Sensor: visibility | fields: type, unit, lon, ts Task: Fetch level from cloud_cover where reading is greater than the total of value in visibility for matching unit. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("visibility", code="clr"), match="unit"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008730
train
v1
Sensor network script: Node: temperature | code: hub | fields: value, unit, type, ts Sensor: dew_point | fields: unit, lat, reading, qc Task: Fetch value from temperature where ts exists in dew_point sensor data for the same depth. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="depth", ), output="value", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "value", "filter_col": "ts", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008731
train
v2
Sensor network script: Node: temperature | code: stn | fields: ts, depth, unit, reading Sensor: soil_moisture | fields: type, lat, reading, level Task: Fetch reading from temperature that have at least one corresponding soil_moisture measurement for the same unit. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008732
train
v3
Sensor network script: Node: sunlight | code: thr | fields: lon, qc, value, lat Sensor: lightning | fields: value, level, depth, lat Task: Fetch level from sunlight where depth is greater than the minimum of reading in lightning for matching depth. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("lightning", code="tnd"), match="depth"), ), output="level", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "level", "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_008733
train
v2
Sensor network script: Node: temperature | code: clr | fields: value, qc, ts, type Sensor: drought_index | fields: level, qc, lat, unit Task: Get level from temperature where a corresponding entry exists in drought_index with the same ts. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="level", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "level", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008734
train
v3
Sensor network script: Node: uv_index | code: hub | fields: ts, depth, value, reading Sensor: dew_point | fields: unit, lon, lat, qc Task: Retrieve value from uv_index with depth above the SUM(value) of dew_point readings sharing the same type. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("dew_point", code="cnd"), match="type"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008735
train
v3
Sensor network script: Node: air_quality | code: gst | fields: unit, qc, ts, depth Sensor: turbidity | fields: lon, reading, depth, level Task: Fetch lon from air_quality where depth is greater than the total of value in turbidity for matching ts. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("turbidity", code="ftu"), match="ts"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008736
train
v2
Sensor network script: Node: humidity | code: gst | fields: ts, type, level, depth Sensor: visibility | fields: lat, reading, value, type Task: Retrieve lon from humidity that have at least one matching reading in visibility sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "lon", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008737
train
v2
Sensor network script: Node: pressure | code: mst | fields: unit, depth, reading, qc Sensor: soil_moisture | fields: unit, lat, value, level Task: Get level from pressure where a corresponding entry exists in soil_moisture with the same ts. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="level", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "level", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008738
train
v3
Sensor network script: Node: frost | code: prt | fields: qc, reading, lon, ts Sensor: pressure | fields: qc, lon, lat, type Task: Retrieve level from frost with reading above the MIN(depth) of pressure readings sharing the same ts. Script:
readings = fetch( node=Node("frost", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("pressure", code="mbl"), match="ts"), ), output="level", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008739
train
v2
Sensor network script: Node: soil_moisture | code: prt | fields: level, lon, lat, type Sensor: visibility | fields: ts, lon, type, qc Task: Get level from soil_moisture where a corresponding entry exists in visibility with the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "level", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008740
train
v1
Sensor network script: Node: wind_speed | code: hub | fields: unit, type, ts, value Sensor: pressure | fields: level, ts, lon, type Task: Retrieve lat from wind_speed whose depth is found in pressure records where ts matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="ts", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008741
train
v2
Sensor network script: Node: temperature | code: ref | fields: value, type, lon, reading Sensor: cloud_cover | fields: type, reading, ts, depth Task: Retrieve lon from temperature that have at least one matching reading in cloud_cover sharing the same qc. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lon", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008742
train
v3
Sensor network script: Node: soil_moisture | code: clr | fields: unit, reading, lat, ts Sensor: cloud_cover | fields: lat, ts, depth, lon Task: Get value from soil_moisture where depth exceeds the minimum depth from cloud_cover for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008743
train
v1
Sensor network script: Node: temperature | code: prt | fields: type, lon, level, qc Sensor: drought_index | fields: type, depth, lon, level Task: Fetch level from temperature where unit exists in drought_index sensor data for the same qc. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="qc", ), output="level", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008744
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: reading, type, depth, lon Sensor: evaporation | fields: unit, level, reading, ts Task: Retrieve value from wind_speed that have at least one matching reading in evaporation sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "value", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008745
train
v3
Sensor network script: Node: drought_index | code: hub | fields: depth, type, level, reading Sensor: lightning | fields: ts, qc, level, depth Task: Fetch value from drought_index where depth is greater than the count of of value in lightning for matching qc. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", 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": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008746
train
v2
Sensor network script: Node: rainfall | code: stn | fields: level, depth, reading, lat Sensor: dew_point | fields: value, unit, lat, lon Task: Get value from rainfall where a corresponding entry exists in dew_point with the same ts. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "value", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008747
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: type, lon, lat, qc Sensor: evaporation | fields: ts, reading, lon, depth Task: Retrieve lat from cloud_cover with reading above the COUNT(reading) of evaporation readings sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("evaporation", code="evp"), match="qc"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008748
train
v3
Sensor network script: Node: wind_speed | code: gst | fields: type, ts, unit, level Sensor: humidity | fields: ts, qc, depth, value Task: Get lon from wind_speed where reading exceeds the average value from humidity for the same type. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("humidity", code="hgr"), match="type"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008749
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: ts, depth, type, level Sensor: pressure | fields: qc, depth, ts, reading Task: Get lon from snow_depth where a corresponding entry exists in pressure with the same unit. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "lon", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008750
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: unit, lat, level, depth Sensor: turbidity | fields: depth, value, lat, level Task: Retrieve depth from snow_depth whose depth is found in turbidity records where ts matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="ts", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008751
train
v3
Sensor network script: Node: sunlight | code: mst | fields: type, lat, level, value Sensor: drought_index | fields: ts, lon, type, lat Task: Retrieve lon from sunlight with reading above the AVG(value) of drought_index readings sharing the same unit. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("drought_index", code="drt"), match="unit"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008752
train
v3
Sensor network script: Node: soil_moisture | code: stn | fields: reading, level, unit, qc Sensor: humidity | fields: level, ts, reading, type Task: Retrieve depth from soil_moisture with depth above the MAX(value) of humidity readings sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("humidity", code="hgr"), match="ts"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "depth", "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_008753
train
v3
Sensor network script: Node: cloud_cover | code: gst | fields: unit, depth, ts, type Sensor: lightning | fields: unit, depth, lat, value Task: Get lon from cloud_cover where value exceeds the count of reading from lightning for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("lightning", code="tnd"), match="ts"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008754
train
v2
Sensor network script: Node: uv_index | code: stn | fields: reading, value, depth, lon Sensor: soil_moisture | fields: ts, qc, unit, depth Task: Retrieve level from uv_index that have at least one matching reading in soil_moisture sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "level", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008755
train
v1
Sensor network script: Node: humidity | code: stn | fields: lat, lon, level, unit Sensor: pressure | fields: ts, qc, depth, value Task: Get depth from humidity where unit appears in pressure readings with matching qc. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="qc", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "unit", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008756
train
v1
Sensor network script: Node: drought_index | code: ref | fields: depth, reading, unit, level Sensor: temperature | fields: reading, value, level, lat Task: Retrieve value from drought_index whose unit is found in temperature records where depth matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="depth", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "value", "filter_col": "unit", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008757
train
v1
Sensor network script: Node: lightning | code: ref | fields: reading, qc, lon, unit Sensor: sunlight | fields: depth, type, unit, ts Task: Get value from lightning where ts appears in sunlight readings with matching depth. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="depth", ), output="value", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "value", "filter_col": "ts", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008758
train
v3
Sensor network script: Node: drought_index | code: clr | fields: lat, reading, qc, type Sensor: temperature | fields: ts, lat, lon, value Task: Fetch reading from drought_index where value is greater than the total of reading in temperature for matching ts. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("temperature", code="thr"), match="ts"), ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008759
train
v3
Sensor network script: Node: pressure | code: thr | fields: value, qc, ts, level Sensor: cloud_cover | fields: qc, value, reading, depth Task: Retrieve value from pressure with reading above the MAX(depth) of cloud_cover readings sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008760
train
v2
Sensor network script: Node: cloud_cover | code: hub | fields: value, ts, level, lat Sensor: visibility | fields: unit, type, ts, lon Task: Get value from cloud_cover where a corresponding entry exists in visibility with the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "value", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008761
train
v3
Sensor network script: Node: visibility | code: mst | fields: depth, value, qc, type Sensor: humidity | fields: qc, lon, type, level Task: Fetch lon from visibility where reading is greater than the minimum of value in humidity for matching type. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("humidity", code="hgr"), match="type"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008762
train
v1
Sensor network script: Node: turbidity | code: ref | fields: depth, unit, reading, lon Sensor: sunlight | fields: unit, reading, lon, ts Task: Get lat from turbidity where qc appears in sunlight readings with matching unit. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="unit", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "lat", "filter_col": "qc", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008763
train
v2
Sensor network script: Node: soil_moisture | code: thr | fields: reading, qc, unit, depth Sensor: sunlight | fields: lon, reading, depth, qc Task: Get value from soil_moisture where a corresponding entry exists in sunlight with the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "value", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008764
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: ts, qc, level, lon Sensor: wind_speed | fields: lat, qc, value, ts Task: Fetch lat from snow_depth where type exists in wind_speed sensor data for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="depth", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lat", "filter_col": "type", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008765
train
v3
Sensor network script: Node: sunlight | code: prt | fields: value, unit, depth, qc Sensor: visibility | fields: lon, value, qc, level Task: Get depth from sunlight where value exceeds the minimum depth from visibility for the same depth. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("visibility", code="clr"), match="depth"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008766
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: ts, qc, reading, unit Sensor: humidity | fields: reading, lat, value, lon Task: Fetch reading from wind_speed that have at least one corresponding humidity measurement for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="reading", )
{ "outer_table": "wind_speed", "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_008767
train
v3
Sensor network script: Node: uv_index | code: clr | fields: level, lat, unit, ts Sensor: wind_speed | fields: qc, lon, lat, depth Task: Retrieve value from uv_index with depth above the AVG(reading) of wind_speed readings sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("wind_speed", code="gst"), match="unit"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008768
train
v1
Sensor network script: Node: temperature | code: clr | fields: unit, lon, type, qc Sensor: cloud_cover | fields: lat, ts, value, type Task: Get lat from temperature where unit appears in cloud_cover readings with matching ts. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "unit", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008769
train
v3
Sensor network script: Node: evaporation | code: hub | fields: reading, depth, type, lat Sensor: soil_moisture | fields: type, lat, value, lon Task: Retrieve reading from evaporation with depth above the AVG(depth) of soil_moisture readings sharing the same type. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008770
train
v2
Sensor network script: Node: uv_index | code: clr | fields: lat, depth, level, reading Sensor: rainfall | fields: depth, type, ts, qc Task: Retrieve level from uv_index that have at least one matching reading in rainfall sharing the same type. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "level", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008771
train
v1
Sensor network script: Node: rainfall | code: stn | fields: value, type, lon, unit Sensor: dew_point | fields: unit, ts, depth, lon Task: Get level from rainfall where qc appears in dew_point readings with matching unit. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="unit", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "level", "filter_col": "qc", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008772
train
v3
Sensor network script: Node: pressure | code: mst | fields: type, unit, depth, ts Sensor: sunlight | fields: level, reading, type, value Task: Fetch reading from pressure where depth is greater than the average of value in sunlight for matching qc. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("sunlight", code="brt"), match="qc"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008773
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: value, lat, type, lon Sensor: sunlight | fields: level, type, lon, value Task: Fetch depth from soil_moisture that have at least one corresponding sunlight measurement for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008774
train
v3
Sensor network script: Node: visibility | code: ref | fields: value, level, unit, depth Sensor: evaporation | fields: depth, value, qc, reading Task: Retrieve value from visibility with reading above the AVG(value) of evaporation readings sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("evaporation", code="evp"), match="qc"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008775
train
v2
Sensor network script: Node: cloud_cover | code: gst | fields: lon, qc, lat, unit Sensor: evaporation | fields: reading, unit, ts, qc Task: Retrieve lat from cloud_cover that have at least one matching reading in evaporation sharing the same type. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "lat", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008776
train
v3
Sensor network script: Node: wind_speed | code: gst | fields: level, unit, reading, type Sensor: temperature | fields: ts, level, lon, qc Task: Retrieve reading from wind_speed with reading above the COUNT(value) of temperature readings sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("temperature", code="thr"), match="depth"), ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008777
train
v1
Sensor network script: Node: humidity | code: prt | fields: depth, ts, level, lat Sensor: visibility | fields: lon, type, reading, depth Task: Get level from humidity where depth appears in visibility readings with matching qc. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="qc", ), output="level", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "level", "filter_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008778
train
v2
Sensor network script: Node: air_quality | code: clr | fields: lat, depth, value, level Sensor: humidity | fields: value, reading, depth, qc Task: Get depth from air_quality where a corresponding entry exists in humidity with the same unit. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008779
train
v3
Sensor network script: Node: cloud_cover | code: ref | fields: depth, level, qc, ts Sensor: sunlight | fields: qc, reading, depth, lon Task: Get depth from cloud_cover where value exceeds the total depth from sunlight for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("sunlight", code="brt"), match="unit"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008780
train
v3
Sensor network script: Node: humidity | code: hub | fields: unit, depth, value, reading Sensor: dew_point | fields: reading, lat, type, unit Task: Get lon from humidity where reading exceeds the count of depth from dew_point for the same ts. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("dew_point", code="cnd"), match="ts"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lon", "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_008781
train
v2
Sensor network script: Node: lightning | code: thr | fields: depth, reading, qc, value Sensor: pressure | fields: depth, type, level, reading Task: Fetch value from lightning that have at least one corresponding pressure measurement for the same depth. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="value", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "value", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008782
train
v1
Sensor network script: Node: sunlight | code: stn | fields: level, lon, ts, lat Sensor: dew_point | fields: unit, lat, ts, value Task: Get lat from sunlight where ts appears in dew_point readings with matching qc. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="qc", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "ts", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008783
train
v1
Sensor network script: Node: dew_point | code: gst | fields: unit, value, level, ts Sensor: turbidity | fields: reading, level, type, qc Task: Fetch value from dew_point where ts exists in turbidity sensor data for the same unit. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="unit", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "value", "filter_col": "ts", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008784
train
v3
Sensor network script: Node: frost | code: gst | fields: type, unit, qc, level Sensor: sunlight | fields: unit, reading, depth, value Task: Fetch lat from frost where depth is greater than the total of depth in sunlight for matching type. Script:
readings = fetch( node=Node("frost", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("sunlight", code="brt"), match="type"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008785
train
v2
Sensor network script: Node: frost | code: gst | fields: reading, value, level, depth Sensor: turbidity | fields: reading, unit, depth, lon Task: Fetch lon from frost that have at least one corresponding turbidity measurement for the same unit. Script:
readings = fetch( node=Node("frost", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="lon", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lon", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008786
train
v2
Sensor network script: Node: soil_moisture | code: gst | fields: type, unit, level, reading Sensor: visibility | fields: depth, reading, level, value Task: Fetch reading from soil_moisture that have at least one corresponding visibility measurement for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "reading", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008787
train
v2
Sensor network script: Node: lightning | code: gst | fields: depth, type, ts, qc Sensor: visibility | fields: lon, type, depth, lat Task: Fetch depth from lightning that have at least one corresponding visibility measurement for the same unit. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "depth", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008788
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: value, level, lon, unit Sensor: turbidity | fields: qc, lat, ts, value Task: Get lat from soil_moisture where qc appears in turbidity readings with matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="qc", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008789
train
v1
Sensor network script: Node: lightning | code: prt | fields: unit, lat, level, type Sensor: temperature | fields: value, ts, reading, qc Task: Fetch value from lightning where unit exists in temperature sensor data for the same qc. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="qc", ), output="value", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008790
train
v1
Sensor network script: Node: cloud_cover | code: ref | fields: type, depth, level, qc Sensor: air_quality | fields: unit, ts, qc, type Task: Fetch depth from cloud_cover where ts exists in air_quality sensor data for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="ts", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "depth", "filter_col": "ts", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008791
train
v1
Sensor network script: Node: humidity | code: prt | fields: level, reading, value, unit Sensor: dew_point | fields: lon, lat, ts, level Task: Retrieve value from humidity whose qc is found in dew_point records where qc matches the outer node. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="qc", ), output="value", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "value", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008792
train
v3
Sensor network script: Node: humidity | code: mst | fields: depth, value, unit, reading Sensor: rainfall | fields: depth, value, lat, unit Task: Fetch level from humidity where reading is greater than the minimum of reading in rainfall for matching type. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("rainfall", code="rnfl"), match="type"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008793
train
v1
Sensor network script: Node: temperature | code: stn | fields: reading, ts, unit, depth Sensor: pressure | fields: level, depth, reading, value Task: Fetch lat from temperature where unit exists in pressure sensor data for the same unit. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="unit", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "unit", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008794
train
v1
Sensor network script: Node: sunlight | code: gst | fields: reading, ts, qc, level Sensor: soil_moisture | fields: reading, unit, level, type Task: Fetch level from sunlight where unit exists in soil_moisture sensor data for the same depth. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "level", "filter_col": "unit", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008795
train
v2
Sensor network script: Node: visibility | code: thr | fields: level, qc, type, lon Sensor: sunlight | fields: reading, value, unit, lat Task: Retrieve level from visibility that have at least one matching reading in sunlight sharing the same ts. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="level", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "level", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008796
train
v1
Sensor network script: Node: temperature | code: mst | fields: qc, depth, unit, lon Sensor: wind_speed | fields: value, lat, reading, qc Task: Get reading from temperature where qc appears in wind_speed readings with matching qc. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="qc", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_008797
train
v2
Sensor network script: Node: turbidity | code: mst | fields: level, lon, ts, depth Sensor: dew_point | fields: depth, lon, reading, level Task: Retrieve lon from turbidity that have at least one matching reading in dew_point sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lon", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008798
train
v1
Sensor network script: Node: cloud_cover | code: clr | fields: depth, lon, ts, unit Sensor: lightning | fields: qc, reading, lat, level Task: Get reading from cloud_cover where unit appears in lightning readings with matching qc. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="qc", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_008799
train