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: turbidity | code: thr | fields: depth, lon, value, unit Sensor: pressure | fields: unit, lat, qc, depth Task: Fetch value from turbidity where type exists in pressure sensor data for the same ts. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="ts", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "value", "filter_col": "type", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025900
train
v3
Sensor network script: Node: soil_moisture | code: stn | fields: lon, level, value, unit Sensor: drought_index | fields: unit, value, level, lat Task: Retrieve lon from soil_moisture with depth above the SUM(depth) of drought_index readings sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("drought_index", code="drt"), match="ts"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025901
train
v3
Sensor network script: Node: cloud_cover | code: clr | fields: ts, lat, level, qc Sensor: pressure | fields: level, unit, depth, type Task: Fetch reading from cloud_cover where value is greater than the count of of depth in pressure for matching type. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("pressure", code="mbl"), match="type"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025902
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: reading, value, ts, lon Sensor: lightning | fields: ts, lat, level, lon Task: Fetch reading from wind_speed that have at least one corresponding lightning measurement for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "reading", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025903
train
v2
Sensor network script: Node: pressure | code: prt | fields: lat, ts, reading, type Sensor: frost | fields: lon, unit, lat, qc Task: Fetch lat from pressure that have at least one corresponding frost measurement for the same ts. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lat", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025904
train
v1
Sensor network script: Node: humidity | code: prt | fields: ts, unit, depth, value Sensor: uv_index | fields: level, reading, lat, value Task: Fetch level from humidity where type exists in uv_index sensor data for the same unit. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="unit", ), output="level", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "level", "filter_col": "type", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025905
train
v1
Sensor network script: Node: temperature | code: thr | fields: lat, level, value, type Sensor: lightning | fields: level, depth, type, reading Task: Get lon from temperature where depth appears in lightning readings with matching depth. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="depth", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025906
train
v1
Sensor network script: Node: cloud_cover | code: clr | fields: ts, lat, level, qc Sensor: snow_depth | fields: type, lon, level, qc Task: Retrieve reading from cloud_cover whose qc is found in snow_depth records where unit matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="unit", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "reading", "filter_col": "qc", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025907
train
v2
Sensor network script: Node: temperature | code: thr | fields: depth, qc, lat, lon Sensor: snow_depth | fields: lon, lat, unit, reading Task: Retrieve level from temperature that have at least one matching reading in snow_depth sharing the same type. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="level", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "level", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025908
train
v1
Sensor network script: Node: rainfall | code: stn | fields: type, depth, value, lon Sensor: drought_index | fields: unit, level, value, type Task: Get lat from rainfall where depth appears in drought_index readings with matching ts. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="ts", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "lat", "filter_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025909
train
v3
Sensor network script: Node: dew_point | code: hub | fields: lon, level, type, depth Sensor: humidity | fields: unit, lon, value, ts Task: Retrieve lat from dew_point with depth above the MAX(reading) of humidity readings sharing the same type. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("humidity", code="hgr"), match="type"), ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025910
train
v1
Sensor network script: Node: temperature | code: hub | fields: lon, reading, depth, level Sensor: wind_speed | fields: level, lat, lon, reading Task: Get level from temperature where ts appears in wind_speed readings with matching unit. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="unit", ), output="level", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "level", "filter_col": "ts", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025911
train
v1
Sensor network script: Node: pressure | code: thr | fields: lon, type, qc, lat Sensor: rainfall | fields: lat, qc, ts, value Task: Fetch lat from pressure where ts exists in rainfall sensor data for the same depth. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="depth", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "ts", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025912
train
v3
Sensor network script: Node: cloud_cover | code: prt | fields: ts, depth, unit, level Sensor: visibility | fields: lon, reading, level, lat Task: Get lat from cloud_cover where value exceeds the average value from visibility for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("visibility", code="clr"), match="type"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025913
train
v2
Sensor network script: Node: frost | code: hub | fields: depth, lat, ts, type Sensor: lightning | fields: ts, unit, value, lat Task: Retrieve depth from frost that have at least one matching reading in lightning sharing the same depth. Script:
readings = fetch( node=Node("frost", code="hub"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="depth", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025914
train
v3
Sensor network script: Node: rainfall | code: gst | fields: depth, unit, qc, type Sensor: temperature | fields: type, depth, level, unit Task: Fetch value from rainfall where reading is greater than the minimum of value in temperature for matching qc. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("temperature", code="thr"), match="qc"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025915
train
v2
Sensor network script: Node: visibility | code: stn | fields: lat, unit, qc, type Sensor: wind_speed | fields: lon, level, qc, type Task: Get value from visibility where a corresponding entry exists in wind_speed with the same depth. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="value", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "value", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025916
train
v3
Sensor network script: Node: dew_point | code: mst | fields: lon, value, lat, ts Sensor: temperature | fields: level, qc, type, lon Task: Get lat from dew_point where depth exceeds the count of depth from temperature for the same depth. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("temperature", code="thr"), match="depth"), ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025917
train
v3
Sensor network script: Node: lightning | code: clr | fields: ts, type, value, depth Sensor: frost | fields: reading, depth, ts, unit Task: Fetch lat from lightning where reading is greater than the total of reading in frost for matching unit. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("frost", code="frs"), match="unit"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025918
train
v1
Sensor network script: Node: visibility | code: stn | fields: lon, unit, qc, ts Sensor: uv_index | fields: ts, level, lat, depth Task: Retrieve level from visibility whose type is found in uv_index records where unit matches the outer node. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="unit", ), output="level", )
{ "outer_table": "visibility", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "level", "filter_col": "type", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025919
train
v2
Sensor network script: Node: snow_depth | code: ref | fields: lat, level, qc, type Sensor: temperature | fields: unit, lon, reading, level Task: Get depth from snow_depth where a corresponding entry exists in temperature with the same depth. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025920
train
v3
Sensor network script: Node: humidity | code: thr | fields: ts, level, unit, type Sensor: frost | fields: lat, level, reading, qc Task: Get lon from humidity where value exceeds the count of depth from frost for the same unit. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("frost", code="frs"), match="unit"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025921
train
v1
Sensor network script: Node: air_quality | code: gst | fields: type, level, reading, lat Sensor: soil_moisture | fields: reading, value, ts, lat Task: Get level from air_quality where type appears in soil_moisture readings with matching unit. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "level", "filter_col": "type", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025922
train
v2
Sensor network script: Node: temperature | code: hub | fields: level, qc, value, unit Sensor: soil_moisture | fields: qc, level, reading, ts Task: Retrieve lon from temperature that have at least one matching reading in soil_moisture sharing the same depth. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "lon", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025923
train
v1
Sensor network script: Node: turbidity | code: clr | fields: level, lat, qc, type Sensor: snow_depth | fields: depth, qc, reading, type Task: Retrieve lon from turbidity whose unit is found in snow_depth records where qc matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="qc", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "lon", "filter_col": "unit", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025924
train
v2
Sensor network script: Node: turbidity | code: thr | fields: level, reading, lat, qc Sensor: wind_speed | fields: unit, qc, depth, value Task: Get level from turbidity where a corresponding entry exists in wind_speed with the same type. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="level", )
{ "outer_table": "turbidity", "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_025925
train
v1
Sensor network script: Node: uv_index | code: stn | fields: lat, lon, ts, value Sensor: wind_speed | fields: type, level, ts, depth Task: Retrieve value from uv_index whose type is found in wind_speed records where qc matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="qc", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "value", "filter_col": "type", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025926
train
v1
Sensor network script: Node: dew_point | code: thr | fields: ts, qc, unit, value Sensor: sunlight | fields: lat, value, qc, depth Task: Get level from dew_point where unit appears in sunlight readings with matching unit. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="unit", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "level", "filter_col": "unit", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025927
train
v1
Sensor network script: Node: cloud_cover | code: mst | fields: ts, unit, depth, qc Sensor: uv_index | fields: depth, type, lon, unit Task: Retrieve lon from cloud_cover whose depth is found in uv_index records where unit matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="unit", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lon", "filter_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025928
train
v2
Sensor network script: Node: drought_index | code: mst | fields: reading, lon, level, value Sensor: frost | fields: unit, depth, type, level Task: Fetch reading from drought_index that have at least one corresponding frost measurement for the same depth. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "reading", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025929
train
v3
Sensor network script: Node: pressure | code: ref | fields: ts, type, reading, level Sensor: evaporation | fields: ts, type, lat, level Task: Retrieve level from pressure with reading above the AVG(value) of evaporation readings sharing the same type. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("evaporation", code="evp"), match="type"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025930
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: lon, lat, unit, ts Sensor: wind_speed | fields: lat, qc, unit, ts Task: Retrieve value from snow_depth whose ts is found in wind_speed records where depth matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="depth", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "value", "filter_col": "ts", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025931
train
v1
Sensor network script: Node: humidity | code: prt | fields: ts, unit, value, qc Sensor: turbidity | fields: unit, qc, type, value Task: Get reading from humidity where unit appears in turbidity readings with matching depth. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="depth", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "unit", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025932
train
v3
Sensor network script: Node: snow_depth | code: thr | fields: level, qc, type, unit Sensor: soil_moisture | fields: value, lon, level, reading Task: Fetch lat from snow_depth where depth is greater than the minimum of reading in soil_moisture for matching qc. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025933
train
v3
Sensor network script: Node: evaporation | code: stn | fields: reading, qc, value, depth Sensor: humidity | fields: ts, lon, qc, type Task: Retrieve lat from evaporation with value above the MAX(depth) of humidity readings sharing the same type. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("humidity", code="hgr"), match="type"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025934
train
v2
Sensor network script: Node: cloud_cover | code: clr | fields: depth, value, type, reading Sensor: pressure | fields: qc, ts, type, lat Task: Get level from cloud_cover where a corresponding entry exists in pressure with the same type. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "level", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025935
train
v3
Sensor network script: Node: rainfall | code: gst | fields: ts, depth, level, value Sensor: temperature | fields: reading, value, qc, depth Task: Retrieve lon from rainfall with reading above the MIN(reading) of temperature readings sharing the same depth. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("temperature", code="thr"), match="depth"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025936
train
v3
Sensor network script: Node: dew_point | code: gst | fields: reading, qc, unit, ts Sensor: turbidity | fields: level, lat, qc, type Task: Fetch depth from dew_point where reading is greater than the maximum of depth in turbidity for matching qc. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("turbidity", code="ftu"), match="qc"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025937
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: unit, depth, value, level Sensor: air_quality | fields: qc, reading, lon, depth Task: Get level from snow_depth where qc appears in air_quality readings with matching qc. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="qc", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "level", "filter_col": "qc", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025938
train
v2
Sensor network script: Node: frost | code: stn | fields: lon, lat, level, qc Sensor: cloud_cover | fields: ts, qc, value, depth Task: Fetch lat from frost that have at least one corresponding cloud_cover measurement for the same ts. Script:
readings = fetch( node=Node("frost", code="stn"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lat", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025939
train
v2
Sensor network script: Node: temperature | code: ref | fields: unit, reading, lon, depth Sensor: drought_index | fields: ts, lat, reading, level Task: Get lon from temperature where a corresponding entry exists in drought_index with the same depth. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lon", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025940
train
v2
Sensor network script: Node: humidity | code: hub | fields: ts, lon, depth, lat Sensor: turbidity | fields: ts, level, lon, lat Task: Get lon from humidity where a corresponding entry exists in turbidity with the same unit. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "lon", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025941
train
v2
Sensor network script: Node: rainfall | code: prt | fields: depth, lat, value, lon Sensor: humidity | fields: unit, reading, level, lat Task: Fetch reading from rainfall that have at least one corresponding humidity measurement for the same depth. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "reading", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025942
train
v1
Sensor network script: Node: air_quality | code: hub | fields: level, lon, ts, qc Sensor: humidity | fields: qc, lon, level, lat Task: Fetch value from air_quality where unit exists in humidity sensor data for the same depth. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="depth", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "value", "filter_col": "unit", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025943
train
v2
Sensor network script: Node: turbidity | code: ref | fields: depth, value, lon, type Sensor: soil_moisture | fields: level, type, depth, lon Task: Retrieve lon from turbidity that have at least one matching reading in soil_moisture sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025944
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: reading, type, lon, qc Sensor: wind_speed | fields: lat, depth, unit, level Task: Retrieve lon from snow_depth with reading above the SUM(value) of wind_speed readings sharing the same type. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("wind_speed", code="gst"), match="type"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025945
train
v3
Sensor network script: Node: drought_index | code: stn | fields: value, unit, level, lon Sensor: pressure | fields: type, lon, value, ts Task: Get lat from drought_index where reading exceeds the total value from pressure for the same ts. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("pressure", code="mbl"), match="ts"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025946
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: level, qc, type, unit Sensor: snow_depth | fields: level, depth, value, reading Task: Retrieve lon from cloud_cover with reading above the SUM(reading) of snow_depth readings sharing the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("snow_depth", code="snw"), match="ts"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025947
train
v1
Sensor network script: Node: evaporation | code: clr | fields: unit, depth, reading, ts Sensor: turbidity | fields: value, qc, type, lat Task: Fetch depth from evaporation where depth exists in turbidity sensor data for the same unit. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="unit", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025948
train
v1
Sensor network script: Node: drought_index | code: clr | fields: lon, reading, level, ts Sensor: soil_moisture | fields: lon, ts, unit, type Task: Fetch lat from drought_index where depth exists in soil_moisture sensor data for the same qc. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025949
train
v3
Sensor network script: Node: dew_point | code: stn | fields: depth, value, reading, lon Sensor: visibility | fields: qc, reading, level, ts Task: Fetch level from dew_point where reading is greater than the total of reading in visibility for matching qc. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("visibility", code="clr"), match="qc"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025950
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: value, level, qc, lat Sensor: frost | fields: reading, lon, value, type Task: Fetch value from snow_depth where type exists in frost sensor data for the same type. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="type", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "value", "filter_col": "type", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025951
train
v2
Sensor network script: Node: dew_point | code: prt | fields: unit, ts, value, lon Sensor: cloud_cover | fields: lat, depth, ts, lon Task: Get reading from dew_point where a corresponding entry exists in cloud_cover with the same unit. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025952
train
v1
Sensor network script: Node: soil_moisture | code: hub | fields: lat, reading, qc, lon Sensor: wind_speed | fields: unit, type, lat, ts Task: Retrieve value from soil_moisture whose ts is found in wind_speed records where type matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="type", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "value", "filter_col": "ts", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025953
train
v3
Sensor network script: Node: humidity | code: prt | fields: type, lat, lon, depth Sensor: temperature | fields: reading, value, ts, lon Task: Retrieve lon from humidity with value above the AVG(reading) of temperature readings sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("temperature", code="thr"), match="unit"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025954
train
v3
Sensor network script: Node: frost | code: thr | fields: lat, reading, level, unit Sensor: drought_index | fields: value, type, qc, reading Task: Get depth from frost where value exceeds the count of depth from drought_index for the same qc. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("drought_index", code="drt"), match="qc"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025955
train
v2
Sensor network script: Node: visibility | code: clr | fields: unit, reading, type, qc Sensor: dew_point | fields: type, level, qc, depth Task: Get lat from visibility where a corresponding entry exists in dew_point with the same qc. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lat", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025956
train
v3
Sensor network script: Node: pressure | code: gst | fields: unit, level, value, ts Sensor: visibility | fields: lat, unit, reading, value Task: Retrieve lat from pressure with reading above the MIN(reading) of visibility readings sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("visibility", code="clr"), match="ts"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025957
train
v2
Sensor network script: Node: air_quality | code: ref | fields: value, lat, reading, ts Sensor: soil_moisture | fields: qc, value, ts, level Task: Fetch level from air_quality that have at least one corresponding soil_moisture measurement for the same qc. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "level", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025958
train
v2
Sensor network script: Node: rainfall | code: hub | fields: type, lon, ts, depth Sensor: temperature | fields: ts, lon, depth, value Task: Get lon from rainfall where a corresponding entry exists in temperature with the same qc. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "lon", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025959
train
v3
Sensor network script: Node: snow_depth | code: prt | fields: qc, ts, value, reading Sensor: cloud_cover | fields: qc, type, value, ts Task: Get reading from snow_depth where value exceeds the average reading from cloud_cover for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025960
train
v1
Sensor network script: Node: cloud_cover | code: thr | fields: level, lon, type, depth Sensor: humidity | fields: depth, lat, level, ts Task: Get lon from cloud_cover where type appears in humidity readings with matching qc. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="qc", ), output="lon", )
{ "outer_table": "cloud_cover", "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_025961
train
v1
Sensor network script: Node: turbidity | code: stn | fields: value, lat, qc, reading Sensor: air_quality | fields: lon, type, level, lat Task: Retrieve value from turbidity whose type is found in air_quality records where ts matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="ts", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "value", "filter_col": "type", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025962
train
v3
Sensor network script: Node: frost | code: clr | fields: qc, type, level, value Sensor: sunlight | fields: unit, level, value, type Task: Retrieve reading from frost with depth above the MIN(reading) of sunlight readings sharing the same qc. Script:
readings = fetch( node=Node("frost", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("sunlight", code="brt"), match="qc"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025963
train
v3
Sensor network script: Node: frost | code: mst | fields: unit, lon, qc, reading Sensor: rainfall | fields: type, level, ts, reading Task: Get value from frost where depth exceeds the maximum reading from rainfall for the same type. Script:
readings = fetch( node=Node("frost", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("rainfall", code="rnfl"), match="type"), ), output="value", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025964
train
v2
Sensor network script: Node: sunlight | code: clr | fields: level, lat, lon, type Sensor: humidity | fields: level, reading, lat, unit Task: Get value from sunlight where a corresponding entry exists in humidity with the same type. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "value", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025965
train
v2
Sensor network script: Node: uv_index | code: clr | fields: ts, lat, qc, value Sensor: temperature | fields: type, ts, lon, qc Task: Fetch value from uv_index that have at least one corresponding temperature measurement for the same type. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "value", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025966
train
v3
Sensor network script: Node: rainfall | code: gst | fields: reading, lon, level, depth Sensor: evaporation | fields: lat, level, type, value Task: Fetch reading from rainfall where value is greater than the minimum of value in evaporation for matching qc. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("evaporation", code="evp"), match="qc"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025967
train
v2
Sensor network script: Node: turbidity | code: thr | fields: type, lon, qc, reading Sensor: frost | fields: qc, reading, unit, lat Task: Fetch level from turbidity that have at least one corresponding frost measurement for the same unit. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "level", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025968
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: ts, value, depth, type Sensor: pressure | fields: unit, ts, depth, value Task: Fetch value from soil_moisture that have at least one corresponding pressure measurement for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "value", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025969
train
v1
Sensor network script: Node: pressure | code: stn | fields: lat, level, depth, qc Sensor: sunlight | fields: level, qc, reading, lat Task: Retrieve lon from pressure whose depth is found in sunlight records where type matches the outer node. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="type", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "lon", "filter_col": "depth", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025970
train
v3
Sensor network script: Node: lightning | code: clr | fields: lat, lon, type, qc Sensor: air_quality | fields: lat, qc, type, ts Task: Fetch depth from lightning where reading is greater than the average of value in air_quality for matching qc. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("air_quality", code="prt"), match="qc"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025971
train
v1
Sensor network script: Node: frost | code: thr | fields: level, unit, lon, qc Sensor: uv_index | fields: depth, qc, level, lon Task: Fetch value from frost where type exists in uv_index sensor data for the same ts. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="ts", ), output="value", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "value", "filter_col": "type", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025972
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: ts, lat, type, depth Sensor: drought_index | fields: reading, type, ts, lon Task: Get lon from cloud_cover where value exceeds the minimum reading from drought_index for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("drought_index", code="drt"), match="qc"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025973
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: ts, lat, type, depth Sensor: dew_point | fields: type, lat, reading, unit Task: Retrieve depth from snow_depth whose ts is found in dew_point records where unit matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="unit", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025974
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: value, lat, ts, level Sensor: pressure | fields: lon, lat, type, depth Task: Fetch reading from soil_moisture where unit exists in pressure sensor data for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="qc", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025975
train
v1
Sensor network script: Node: drought_index | code: prt | fields: reading, unit, ts, type Sensor: evaporation | fields: lat, reading, level, qc Task: Retrieve lon from drought_index whose qc is found in evaporation records where qc matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="qc", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025976
train
v1
Sensor network script: Node: humidity | code: clr | fields: value, reading, type, level Sensor: uv_index | fields: lat, depth, value, level Task: Retrieve depth from humidity whose type is found in uv_index records where type matches the outer node. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="type", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "depth", "filter_col": "type", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025977
train
v2
Sensor network script: Node: air_quality | code: thr | fields: type, value, qc, lon Sensor: soil_moisture | fields: lon, depth, ts, qc Task: Fetch depth from air_quality that have at least one corresponding soil_moisture measurement for the same depth. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025978
train
v3
Sensor network script: Node: air_quality | code: thr | fields: ts, depth, lon, reading Sensor: turbidity | fields: qc, value, unit, depth Task: Retrieve depth from air_quality with reading above the MIN(reading) of turbidity readings sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("turbidity", code="ftu"), match="unit"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025979
train
v3
Sensor network script: Node: frost | code: hub | fields: depth, unit, type, lon Sensor: humidity | fields: unit, lon, value, ts Task: Retrieve value from frost with depth above the MIN(depth) of humidity readings sharing the same qc. Script:
readings = fetch( node=Node("frost", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("humidity", code="hgr"), match="qc"), ), output="value", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025980
train
v2
Sensor network script: Node: humidity | code: stn | fields: ts, depth, lon, level Sensor: temperature | fields: value, type, level, lon Task: Get depth from humidity where a corresponding entry exists in temperature with the same depth. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025981
train
v3
Sensor network script: Node: lightning | code: stn | fields: type, unit, depth, lat Sensor: rainfall | fields: depth, lat, ts, lon Task: Get lat from lightning where reading exceeds the maximum value from rainfall for the same ts. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025982
train
v3
Sensor network script: Node: rainfall | code: hub | fields: unit, depth, ts, lon Sensor: drought_index | fields: ts, lon, depth, unit Task: Fetch level from rainfall where value is greater than the minimum of reading in drought_index for matching unit. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("drought_index", code="drt"), match="unit"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025983
train
v3
Sensor network script: Node: visibility | code: gst | fields: unit, type, level, qc Sensor: air_quality | fields: depth, lon, lat, qc Task: Fetch level from visibility where depth is greater than the maximum of value in air_quality for matching type. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("air_quality", code="prt"), match="type"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025984
train
v1
Sensor network script: Node: wind_speed | code: ref | fields: lon, unit, lat, qc Sensor: turbidity | fields: qc, type, unit, reading Task: Get reading from wind_speed where ts appears in turbidity readings with matching type. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="type", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "ts", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025985
train
v3
Sensor network script: Node: rainfall | code: thr | fields: qc, lon, unit, value Sensor: frost | fields: lat, level, depth, qc Task: Fetch reading from rainfall where reading is greater than the count of of reading in frost for matching depth. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("frost", code="frs"), match="depth"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025986
train
v3
Sensor network script: Node: wind_speed | code: clr | fields: reading, qc, unit, value Sensor: drought_index | fields: value, unit, ts, lon Task: Get reading from wind_speed where reading exceeds the total reading from drought_index for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("drought_index", code="drt"), match="depth"), ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "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_025987
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: qc, type, ts, level Sensor: wind_speed | fields: reading, unit, lon, qc Task: Get value from cloud_cover where depth exceeds the total reading from wind_speed for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("wind_speed", code="gst"), match="type"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025988
train
v1
Sensor network script: Node: dew_point | code: prt | fields: value, type, ts, lon Sensor: sunlight | fields: lon, qc, ts, depth Task: Fetch reading from dew_point where qc exists in sunlight sensor data for the same qc. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="qc", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025989
train
v1
Sensor network script: Node: rainfall | code: hub | fields: unit, qc, lon, level Sensor: wind_speed | fields: qc, reading, type, ts Task: Retrieve lon from rainfall whose unit is found in wind_speed records where ts matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="ts", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "lon", "filter_col": "unit", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025990
train
v2
Sensor network script: Node: cloud_cover | code: ref | fields: unit, type, ts, value Sensor: snow_depth | fields: value, level, qc, ts Task: Get depth from cloud_cover where a corresponding entry exists in snow_depth with the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025991
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: value, depth, lon, lat Sensor: wind_speed | fields: lat, ts, lon, type Task: Retrieve reading from soil_moisture whose qc is found in wind_speed records where qc matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="qc", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025992
train
v3
Sensor network script: Node: lightning | code: thr | fields: value, unit, lon, lat Sensor: turbidity | fields: depth, value, type, lon Task: Get depth from lightning where reading exceeds the average value from turbidity for the same ts. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("turbidity", code="ftu"), match="ts"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025993
train
v1
Sensor network script: Node: soil_moisture | code: ref | fields: lon, depth, lat, level Sensor: frost | fields: level, reading, type, depth Task: Retrieve reading from soil_moisture whose depth is found in frost records where qc matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="qc", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025994
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: type, lat, depth, ts Sensor: evaporation | fields: reading, unit, qc, type Task: Get reading from soil_moisture where depth exceeds the maximum depth from evaporation for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("evaporation", code="evp"), match="qc"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025995
train
v2
Sensor network script: Node: rainfall | code: hub | fields: unit, depth, level, type Sensor: lightning | fields: ts, lon, depth, reading Task: Get level from rainfall where a corresponding entry exists in lightning with the same unit. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "level", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025996
train
v3
Sensor network script: Node: wind_speed | code: thr | fields: reading, lon, ts, value Sensor: lightning | fields: unit, level, lon, ts Task: Fetch lon from wind_speed where depth is greater than the average of depth in lightning for matching ts. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("lightning", code="tnd"), match="ts"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025997
train
v2
Sensor network script: Node: sunlight | code: prt | fields: lon, lat, depth, reading Sensor: frost | fields: value, qc, lat, type Task: Fetch reading from sunlight that have at least one corresponding frost measurement for the same type. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "reading", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025998
train
v2
Sensor network script: Node: sunlight | code: ref | fields: reading, depth, type, level Sensor: evaporation | fields: unit, qc, value, lon Task: Retrieve depth from sunlight that have at least one matching reading in evaporation sharing the same ts. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025999
train