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: uv_index | code: ref | fields: depth, lat, ts, lon Sensor: soil_moisture | fields: level, type, depth, qc Task: Fetch lon from uv_index where unit exists in soil_moisture sensor data for the same unit. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "unit", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025100
train
v3
Sensor network script: Node: dew_point | code: clr | fields: lon, lat, depth, qc Sensor: pressure | fields: unit, ts, type, depth Task: Retrieve reading from dew_point with depth above the MIN(depth) of pressure readings sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("pressure", code="mbl"), match="ts"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025101
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: unit, qc, value, level Sensor: evaporation | fields: type, depth, unit, lon Task: Fetch value from soil_moisture where reading is greater than the average of value in evaporation for matching unit. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("evaporation", code="evp"), match="unit"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025102
train
v2
Sensor network script: Node: frost | code: prt | fields: depth, level, lat, qc Sensor: pressure | fields: qc, type, value, lat Task: Retrieve value from frost that have at least one matching reading in pressure sharing the same depth. Script:
readings = fetch( node=Node("frost", code="prt"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="value", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "value", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025103
train
v3
Sensor network script: Node: sunlight | code: thr | fields: ts, type, unit, depth Sensor: uv_index | fields: lat, qc, value, lon Task: Fetch reading from sunlight where depth is greater than the maximum of value in uv_index for matching type. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("uv_index", code="flx"), match="type"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025104
train
v1
Sensor network script: Node: dew_point | code: prt | fields: value, level, lat, qc Sensor: evaporation | fields: ts, reading, level, value Task: Fetch reading from dew_point where depth exists in evaporation sensor data for the same qc. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="qc", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025105
train
v1
Sensor network script: Node: frost | code: ref | fields: value, unit, depth, level Sensor: snow_depth | fields: reading, depth, type, level Task: Retrieve lat from frost whose ts is found in snow_depth records where unit matches the outer node. Script:
readings = fetch( node=Node("frost", code="ref"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="unit", ), output="lat", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "lat", "filter_col": "ts", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025106
train
v1
Sensor network script: Node: soil_moisture | code: hub | fields: lat, type, level, value Sensor: evaporation | fields: ts, qc, depth, lat Task: Fetch depth from soil_moisture where type exists in evaporation sensor data for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="qc", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "depth", "filter_col": "type", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025107
train
v1
Sensor network script: Node: humidity | code: thr | fields: reading, depth, level, unit Sensor: soil_moisture | fields: unit, reading, value, level Task: Retrieve lat from humidity whose ts is found in soil_moisture records where ts matches the outer node. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "ts", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025108
train
v3
Sensor network script: Node: drought_index | code: hub | fields: qc, reading, type, depth Sensor: air_quality | fields: lat, lon, qc, type Task: Get value from drought_index where depth exceeds the total depth from air_quality for the same unit. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("air_quality", code="prt"), match="unit"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025109
train
v3
Sensor network script: Node: snow_depth | code: gst | fields: qc, value, ts, unit Sensor: cloud_cover | fields: qc, ts, depth, reading Task: Get value from snow_depth where value exceeds the average value from cloud_cover for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025110
train
v1
Sensor network script: Node: rainfall | code: gst | fields: ts, level, lon, qc Sensor: temperature | fields: reading, ts, value, lat Task: Get lat from rainfall where type appears in temperature readings with matching ts. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="ts", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lat", "filter_col": "type", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025111
train
v2
Sensor network script: Node: cloud_cover | code: gst | fields: reading, qc, level, lon Sensor: air_quality | fields: type, depth, level, value Task: Fetch level from cloud_cover that have at least one corresponding air_quality measurement for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "level", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025112
train
v2
Sensor network script: Node: cloud_cover | code: hub | fields: lat, depth, reading, unit Sensor: rainfall | fields: level, depth, type, reading Task: Get depth from cloud_cover where a corresponding entry exists in rainfall with the same type. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025113
train
v1
Sensor network script: Node: frost | code: clr | fields: value, depth, type, reading Sensor: pressure | fields: ts, unit, type, qc Task: Get level from frost where type appears in pressure readings with matching qc. Script:
readings = fetch( node=Node("frost", code="clr"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="qc", ), output="level", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "level", "filter_col": "type", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025114
train
v1
Sensor network script: Node: lightning | code: prt | fields: lon, level, value, lat Sensor: rainfall | fields: level, lat, reading, value Task: Fetch value from lightning where unit exists in rainfall sensor data for the same unit. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="unit", ), output="value", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "unit", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025115
train
v3
Sensor network script: Node: humidity | code: gst | fields: ts, level, reading, depth Sensor: drought_index | fields: depth, level, reading, lat Task: Fetch reading from humidity where depth is greater than the count of of reading in drought_index for matching unit. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("drought_index", code="drt"), match="unit"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025116
train
v2
Sensor network script: Node: rainfall | code: hub | fields: level, depth, lat, lon Sensor: wind_speed | fields: unit, qc, level, value Task: Retrieve reading from rainfall that have at least one matching reading in wind_speed sharing the same depth. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "reading", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025117
train
v2
Sensor network script: Node: turbidity | code: ref | fields: value, reading, type, level Sensor: drought_index | fields: reading, value, unit, type Task: Get depth from turbidity where a corresponding entry exists in drought_index with the same depth. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025118
train
v1
Sensor network script: Node: lightning | code: clr | fields: level, unit, lat, ts Sensor: sunlight | fields: type, depth, unit, level Task: Fetch lat from lightning where unit exists in sunlight sensor data for the same depth. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="depth", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "lat", "filter_col": "unit", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025119
train
v3
Sensor network script: Node: frost | code: mst | fields: ts, reading, type, qc Sensor: turbidity | fields: qc, reading, type, depth Task: Fetch lat from frost where depth is greater than the average of depth in turbidity for matching qc. Script:
readings = fetch( node=Node("frost", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("turbidity", code="ftu"), match="qc"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025120
train
v2
Sensor network script: Node: soil_moisture | code: prt | fields: unit, lon, type, ts Sensor: frost | fields: lat, level, lon, ts Task: Get lon from soil_moisture where a corresponding entry exists in frost with the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lon", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025121
train
v2
Sensor network script: Node: drought_index | code: clr | fields: type, unit, qc, ts Sensor: evaporation | fields: lon, depth, level, reading Task: Retrieve lat from drought_index that have at least one matching reading in evaporation sharing the same ts. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "lat", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025122
train
v1
Sensor network script: Node: uv_index | code: mst | fields: value, lon, qc, type Sensor: humidity | fields: unit, value, lat, reading Task: Fetch depth from uv_index where unit exists in humidity sensor data for the same ts. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="ts", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025123
train
v2
Sensor network script: Node: drought_index | code: thr | fields: unit, lat, level, value Sensor: wind_speed | fields: reading, lat, lon, unit Task: Retrieve level from drought_index that have at least one matching reading in wind_speed sharing the same type. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "level", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025124
train
v3
Sensor network script: Node: temperature | code: stn | fields: level, ts, unit, lat Sensor: humidity | fields: reading, unit, lat, ts Task: Retrieve depth from temperature with value above the SUM(reading) of humidity readings sharing the same ts. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("humidity", code="hgr"), match="ts"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025125
train
v3
Sensor network script: Node: turbidity | code: clr | fields: lat, level, ts, type Sensor: air_quality | fields: lat, level, lon, reading Task: Get value from turbidity where reading exceeds the maximum depth from air_quality for the same depth. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("air_quality", code="prt"), match="depth"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025126
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: value, lon, type, depth Sensor: pressure | fields: type, lon, level, unit Task: Fetch depth from snow_depth where depth is greater than the average of value in pressure for matching unit. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("pressure", code="mbl"), match="unit"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025127
train
v3
Sensor network script: Node: evaporation | code: stn | fields: depth, lon, ts, qc Sensor: soil_moisture | fields: type, qc, lon, level Task: Get value from evaporation where reading exceeds the average value from soil_moisture for the same type. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025128
train
v2
Sensor network script: Node: air_quality | code: stn | fields: value, unit, lat, reading Sensor: rainfall | fields: level, reading, unit, ts Task: Retrieve lon from air_quality that have at least one matching reading in rainfall sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lon", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025129
train
v2
Sensor network script: Node: sunlight | code: hub | fields: value, depth, ts, lon Sensor: rainfall | fields: type, lat, reading, value Task: Get reading from sunlight where a corresponding entry exists in rainfall with the same type. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "reading", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025130
train
v1
Sensor network script: Node: cloud_cover | code: thr | fields: qc, ts, type, reading Sensor: wind_speed | fields: unit, lat, reading, type Task: Fetch lat from cloud_cover where unit exists in wind_speed sensor data for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="qc", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lat", "filter_col": "unit", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025131
train
v3
Sensor network script: Node: humidity | code: hub | fields: depth, level, type, lat Sensor: sunlight | fields: ts, qc, reading, lon Task: Fetch level from humidity where depth is greater than the total of depth in sunlight for matching depth. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("sunlight", code="brt"), match="depth"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025132
train
v3
Sensor network script: Node: cloud_cover | code: hub | fields: unit, reading, lon, lat Sensor: lightning | fields: level, lon, type, lat Task: Fetch level from cloud_cover where value is greater than the count of of depth in lightning for matching type. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("lightning", code="tnd"), match="type"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025133
train
v3
Sensor network script: Node: uv_index | code: thr | fields: unit, lon, qc, reading Sensor: humidity | fields: value, unit, reading, depth Task: Retrieve lat from uv_index with depth above the MIN(value) of humidity readings sharing the same ts. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("humidity", code="hgr"), match="ts"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025134
train
v2
Sensor network script: Node: visibility | code: hub | fields: value, unit, ts, type Sensor: sunlight | fields: ts, level, qc, lon Task: Get level from visibility where a corresponding entry exists in sunlight with the same depth. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="level", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "level", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025135
train
v1
Sensor network script: Node: cloud_cover | code: thr | fields: qc, reading, lat, lon Sensor: soil_moisture | fields: qc, type, ts, value Task: Retrieve reading from cloud_cover whose unit is found in soil_moisture records where qc matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025136
train
v3
Sensor network script: Node: lightning | code: ref | fields: ts, lon, unit, lat Sensor: rainfall | fields: reading, qc, type, lat Task: Fetch depth from lightning where depth is greater than the minimum of value in rainfall for matching ts. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025137
train
v1
Sensor network script: Node: dew_point | code: hub | fields: value, ts, level, type Sensor: snow_depth | fields: value, lat, lon, type Task: Fetch reading from dew_point where ts exists in snow_depth sensor data for the same unit. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="unit", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025138
train
v2
Sensor network script: Node: lightning | code: ref | fields: reading, value, depth, type Sensor: pressure | fields: value, ts, lat, qc Task: Retrieve depth from lightning that have at least one matching reading in pressure sharing the same type. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025139
train
v3
Sensor network script: Node: pressure | code: gst | fields: lat, value, type, depth Sensor: lightning | fields: unit, qc, type, lon Task: Get value from pressure where reading exceeds the maximum value from lightning for the same qc. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("lightning", code="tnd"), match="qc"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025140
train
v1
Sensor network script: Node: soil_moisture | code: clr | fields: reading, lat, type, depth Sensor: dew_point | fields: lon, value, reading, unit Task: Fetch lon from soil_moisture where unit exists in dew_point sensor data for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="unit", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "unit", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025141
train
v3
Sensor network script: Node: humidity | code: mst | fields: lon, type, value, level Sensor: pressure | fields: reading, unit, value, type Task: Retrieve lon from humidity with reading above the COUNT(depth) of pressure readings sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("pressure", code="mbl"), match="unit"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025142
train
v3
Sensor network script: Node: drought_index | code: mst | fields: level, value, type, qc Sensor: temperature | fields: unit, depth, ts, qc Task: Fetch depth from drought_index where depth is greater than the maximum of depth in temperature for matching ts. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("temperature", code="thr"), match="ts"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025143
train
v3
Sensor network script: Node: uv_index | code: mst | fields: lon, type, lat, level Sensor: air_quality | fields: lat, value, level, depth Task: Fetch level from uv_index where reading is greater than the count of of value in air_quality for matching qc. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("air_quality", code="prt"), match="qc"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025144
train
v3
Sensor network script: Node: rainfall | code: stn | fields: lon, depth, ts, type Sensor: drought_index | fields: depth, lat, unit, lon Task: Get reading from rainfall where reading exceeds the average reading from drought_index for the same unit. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("drought_index", code="drt"), match="unit"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025145
train
v3
Sensor network script: Node: frost | code: ref | fields: lon, type, ts, value Sensor: soil_moisture | fields: unit, type, ts, qc Task: Get level from frost where depth exceeds the average reading from soil_moisture for the same ts. Script:
readings = fetch( node=Node("frost", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="level", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025146
train
v2
Sensor network script: Node: snow_depth | code: gst | fields: lon, value, lat, unit Sensor: lightning | fields: unit, value, ts, qc Task: Get level from snow_depth where a corresponding entry exists in lightning with the same type. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "level", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025147
train
v1
Sensor network script: Node: snow_depth | code: ref | fields: reading, value, ts, lat Sensor: frost | fields: lat, qc, type, value Task: Get value from snow_depth where type appears in frost readings with matching qc. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="qc", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "value", "filter_col": "type", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025148
train
v2
Sensor network script: Node: turbidity | code: hub | fields: lat, reading, qc, unit Sensor: snow_depth | fields: reading, value, ts, depth Task: Get value from turbidity where a corresponding entry exists in snow_depth with the same qc. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "value", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025149
train
v3
Sensor network script: Node: wind_speed | code: mst | fields: type, unit, level, lon Sensor: air_quality | fields: ts, type, level, unit Task: Retrieve reading from wind_speed with reading above the AVG(value) of air_quality readings sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("air_quality", code="prt"), match="qc"), ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025150
train
v2
Sensor network script: Node: uv_index | code: prt | fields: reading, level, depth, qc Sensor: dew_point | fields: level, qc, value, depth Task: Retrieve value from uv_index that have at least one matching reading in dew_point sharing the same ts. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "value", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025151
train
v2
Sensor network script: Node: sunlight | code: gst | fields: level, value, depth, unit Sensor: uv_index | fields: type, lon, qc, reading Task: Retrieve lat from sunlight that have at least one matching reading in uv_index sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "lat", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025152
train
v2
Sensor network script: Node: uv_index | code: clr | fields: value, lon, lat, reading Sensor: snow_depth | fields: unit, qc, depth, reading Task: Retrieve lon from uv_index that have at least one matching reading in snow_depth sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "lon", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025153
train
v1
Sensor network script: Node: temperature | code: prt | fields: ts, lat, type, depth Sensor: pressure | fields: lat, level, lon, type Task: Get lat from temperature where type appears in pressure readings with matching depth. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="depth", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "type", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025154
train
v3
Sensor network script: Node: lightning | code: clr | fields: lat, lon, depth, unit Sensor: dew_point | fields: type, depth, lat, level Task: Fetch depth from lightning where reading is greater than the maximum of depth in dew_point for matching ts. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("dew_point", code="cnd"), match="ts"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025155
train
v1
Sensor network script: Node: wind_speed | code: prt | fields: type, qc, unit, value Sensor: humidity | fields: qc, depth, unit, lat Task: Fetch lat from wind_speed where qc exists in humidity sensor data for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="ts", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "qc", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025156
train
v1
Sensor network script: Node: evaporation | code: clr | fields: lon, type, level, lat Sensor: air_quality | fields: level, lon, depth, type Task: Get level from evaporation where ts appears in air_quality readings with matching ts. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="ts", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025157
train
v1
Sensor network script: Node: temperature | code: ref | fields: qc, depth, lat, type Sensor: drought_index | fields: lon, qc, unit, depth Task: Get reading from temperature where qc appears in drought_index readings with matching type. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="type", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "reading", "filter_col": "qc", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025158
train
v3
Sensor network script: Node: air_quality | code: clr | fields: ts, qc, reading, unit Sensor: drought_index | fields: depth, ts, lat, lon Task: Fetch lon from air_quality where value is greater than the total of reading in drought_index for matching depth. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("drought_index", code="drt"), match="depth"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025159
train
v2
Sensor network script: Node: visibility | code: thr | fields: depth, qc, type, lon Sensor: drought_index | fields: level, type, lon, lat Task: Retrieve depth from visibility that have at least one matching reading in drought_index sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "depth", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025160
train
v2
Sensor network script: Node: dew_point | code: hub | fields: ts, depth, qc, value Sensor: uv_index | fields: unit, qc, level, lon Task: Fetch reading from dew_point that have at least one corresponding uv_index measurement for the same unit. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=has_match( source=Probe("uv_index", code="flx"), match="unit", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "reading", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025161
train
v1
Sensor network script: Node: turbidity | code: mst | fields: value, lon, reading, level Sensor: lightning | fields: qc, type, reading, depth Task: Fetch lat from turbidity where ts exists in lightning sensor data for the same type. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="type", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "ts", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025162
train
v1
Sensor network script: Node: evaporation | code: clr | fields: reading, level, lon, value Sensor: cloud_cover | fields: lon, reading, depth, type Task: Retrieve lon from evaporation whose type is found in cloud_cover records where unit matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "type", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025163
train
v2
Sensor network script: Node: temperature | code: ref | fields: qc, unit, depth, type Sensor: rainfall | fields: depth, ts, lon, lat Task: Get lat from temperature where a corresponding entry exists in rainfall with the same qc. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025164
train
v3
Sensor network script: Node: lightning | code: mst | fields: level, ts, value, lon Sensor: turbidity | fields: unit, ts, lat, reading Task: Retrieve depth from lightning with value above the AVG(value) of turbidity readings sharing the same depth. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("turbidity", code="ftu"), match="depth"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025165
train
v3
Sensor network script: Node: pressure | code: gst | fields: value, level, unit, depth Sensor: rainfall | fields: depth, value, reading, ts Task: Retrieve level from pressure with reading above the MAX(depth) of rainfall readings sharing the same unit. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025166
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: reading, value, lon, unit Sensor: uv_index | fields: qc, level, value, type Task: Get lon from soil_moisture where depth exceeds the minimum depth from uv_index for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("uv_index", code="flx"), match="qc"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025167
train
v1
Sensor network script: Node: rainfall | code: mst | fields: depth, reading, qc, unit Sensor: soil_moisture | fields: lon, qc, level, value Task: Fetch value from rainfall where qc exists in soil_moisture sensor data for the same unit. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "value", "filter_col": "qc", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025168
train
v1
Sensor network script: Node: rainfall | code: thr | fields: reading, ts, level, type Sensor: visibility | fields: reading, ts, unit, depth Task: Retrieve depth from rainfall whose depth is found in visibility records where ts matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="ts", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025169
train
v3
Sensor network script: Node: pressure | code: prt | fields: level, lat, lon, type Sensor: wind_speed | fields: depth, unit, qc, type Task: Get lat from pressure where depth exceeds the count of reading from wind_speed for the same type. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("wind_speed", code="gst"), match="type"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025170
train
v3
Sensor network script: Node: air_quality | code: ref | fields: type, lon, reading, level Sensor: rainfall | fields: lon, type, level, depth Task: Retrieve lat from air_quality with value above the SUM(reading) of rainfall readings sharing the same qc. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025171
train
v1
Sensor network script: Node: sunlight | code: prt | fields: unit, ts, qc, lat Sensor: wind_speed | fields: lon, level, reading, depth Task: Retrieve depth from sunlight whose qc is found in wind_speed records where qc matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="qc", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "depth", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025172
train
v3
Sensor network script: Node: evaporation | code: hub | fields: type, ts, unit, value Sensor: visibility | fields: lon, ts, lat, reading Task: Fetch value from evaporation where value is greater than the average of value in visibility for matching qc. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("visibility", code="clr"), match="qc"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025173
train
v2
Sensor network script: Node: dew_point | code: stn | fields: value, lon, ts, unit Sensor: cloud_cover | fields: lon, level, lat, value Task: Fetch depth from dew_point that have at least one corresponding cloud_cover measurement for the same type. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "depth", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025174
train
v1
Sensor network script: Node: soil_moisture | code: hub | fields: lat, unit, qc, level Sensor: evaporation | fields: ts, lon, depth, type Task: Retrieve lon from soil_moisture whose type is found in evaporation records where depth matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="depth", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lon", "filter_col": "type", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025175
train
v1
Sensor network script: Node: air_quality | code: gst | fields: lon, lat, value, level Sensor: rainfall | fields: qc, unit, type, level Task: Get value from air_quality where type appears in rainfall readings with matching qc. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="qc", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "type", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025176
train
v2
Sensor network script: Node: rainfall | code: mst | fields: reading, lon, unit, depth Sensor: cloud_cover | fields: reading, type, level, value Task: Retrieve level from rainfall that have at least one matching reading in cloud_cover sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "level", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025177
train
v2
Sensor network script: Node: pressure | code: mst | fields: ts, value, qc, type Sensor: air_quality | fields: value, ts, reading, lat Task: Retrieve lon from pressure that have at least one matching reading in air_quality sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lon", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025178
train
v2
Sensor network script: Node: frost | code: stn | fields: unit, value, depth, reading Sensor: uv_index | fields: reading, level, qc, type Task: Retrieve value from frost that have at least one matching reading in uv_index sharing the same ts. Script:
readings = fetch( node=Node("frost", code="stn"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="value", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "value", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025179
train
v2
Sensor network script: Node: lightning | code: mst | fields: type, depth, reading, unit Sensor: humidity | fields: reading, type, value, depth Task: Retrieve value from lightning that have at least one matching reading in humidity sharing the same ts. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="value", )
{ "outer_table": "lightning", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "value", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025180
train
v1
Sensor network script: Node: dew_point | code: thr | fields: lat, level, reading, lon Sensor: humidity | fields: level, lat, lon, type Task: Retrieve lon from dew_point whose type is found in humidity records where qc matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="qc", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "type", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025181
train
v3
Sensor network script: Node: air_quality | code: thr | fields: value, lon, unit, qc Sensor: frost | fields: unit, ts, qc, lon Task: Retrieve lon from air_quality with reading above the MIN(depth) of frost readings sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("frost", code="frs"), match="unit"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025182
train
v3
Sensor network script: Node: evaporation | code: stn | fields: level, lon, value, type Sensor: cloud_cover | fields: unit, level, lon, ts Task: Get value from evaporation where depth exceeds the count of value from cloud_cover for the same unit. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025183
train
v3
Sensor network script: Node: uv_index | code: ref | fields: level, lat, unit, reading Sensor: humidity | fields: value, type, lon, level Task: Get value from uv_index where reading exceeds the maximum reading from humidity for the same ts. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("humidity", code="hgr"), match="ts"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025184
train
v1
Sensor network script: Node: temperature | code: mst | fields: unit, level, type, ts Sensor: humidity | fields: qc, level, lat, lon Task: Get reading from temperature where ts appears in humidity readings with matching depth. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="depth", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "ts", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025185
train
v1
Sensor network script: Node: frost | code: mst | fields: reading, value, ts, unit Sensor: drought_index | fields: level, unit, lat, lon Task: Get lat from frost where depth appears in drought_index readings with matching unit. Script:
readings = fetch( node=Node("frost", code="mst"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="unit", ), output="lat", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025186
train
v2
Sensor network script: Node: wind_speed | code: mst | fields: depth, type, qc, lat Sensor: snow_depth | fields: qc, reading, type, depth Task: Retrieve value from wind_speed that have at least one matching reading in snow_depth sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "value", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025187
train
v2
Sensor network script: Node: humidity | code: clr | fields: type, value, qc, lon Sensor: rainfall | fields: depth, reading, qc, value Task: Retrieve value from humidity that have at least one matching reading in rainfall sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="value", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "value", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025188
train
v2
Sensor network script: Node: air_quality | code: prt | fields: lon, unit, ts, reading Sensor: humidity | fields: level, unit, reading, depth Task: Get value from air_quality where a corresponding entry exists in humidity with the same type. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "value", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025189
train
v1
Sensor network script: Node: humidity | code: ref | fields: ts, unit, value, reading Sensor: rainfall | fields: type, level, depth, value Task: Fetch lat from humidity where depth exists in rainfall sensor data for the same unit. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="unit", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025190
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: reading, ts, level, lon Sensor: uv_index | fields: ts, value, unit, lat Task: Retrieve lon from snow_depth whose unit is found in uv_index records where type matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="type", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025191
train
v1
Sensor network script: Node: dew_point | code: thr | fields: lat, lon, unit, value Sensor: snow_depth | fields: unit, level, qc, lat Task: Retrieve level from dew_point whose unit is found in snow_depth records where ts matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="ts", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025192
train
v3
Sensor network script: Node: frost | code: gst | fields: depth, value, ts, lat Sensor: turbidity | fields: ts, depth, type, lon Task: Retrieve depth from frost with depth above the MIN(reading) of turbidity readings sharing the same ts. Script:
readings = fetch( node=Node("frost", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("turbidity", code="ftu"), match="ts"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025193
train
v1
Sensor network script: Node: evaporation | code: gst | fields: type, depth, value, lat Sensor: frost | fields: ts, lon, value, depth Task: Fetch depth from evaporation where unit exists in frost sensor data for the same type. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="type", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "depth", "filter_col": "unit", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025194
train
v3
Sensor network script: Node: rainfall | code: clr | fields: reading, lat, level, value Sensor: lightning | fields: type, unit, ts, reading Task: Get level from rainfall where reading exceeds the count of depth from lightning for the same type. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("lightning", code="tnd"), match="type"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025195
train
v2
Sensor network script: Node: rainfall | code: gst | fields: qc, reading, unit, lon Sensor: cloud_cover | fields: reading, level, value, lon Task: Retrieve level from rainfall that have at least one matching reading in cloud_cover sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "level", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025196
train
v1
Sensor network script: Node: uv_index | code: clr | fields: lon, reading, qc, level Sensor: temperature | fields: lat, value, lon, unit Task: Get depth from uv_index where unit appears in temperature readings with matching qc. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="qc", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "depth", "filter_col": "unit", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025197
train
v1
Sensor network script: Node: wind_speed | code: ref | fields: value, reading, depth, lon Sensor: drought_index | fields: type, lat, ts, reading Task: Retrieve level from wind_speed whose qc is found in drought_index records where qc matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="qc", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "level", "filter_col": "qc", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025198
train
v1
Sensor network script: Node: sunlight | code: thr | fields: depth, lon, level, value Sensor: evaporation | fields: type, qc, reading, ts Task: Retrieve level from sunlight whose type is found in evaporation records where ts matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="ts", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "level", "filter_col": "type", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025199
train