variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v2
Sensor network script: Node: sunlight | code: clr | fields: value, lon, ts, reading Sensor: wind_speed | fields: qc, type, depth, value Task: Retrieve reading from sunlight that have at least one matching reading in wind_speed sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "reading", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024900
train
v3
Sensor network script: Node: sunlight | code: stn | fields: depth, unit, reading, lon Sensor: dew_point | fields: value, level, lon, depth Task: Get level from sunlight where depth exceeds the minimum depth from dew_point for the same type. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("dew_point", code="cnd"), match="type"), ), output="level", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024901
train
v3
Sensor network script: Node: rainfall | code: prt | fields: qc, unit, depth, ts Sensor: uv_index | fields: lat, lon, ts, depth Task: Fetch depth from rainfall where depth is greater than the average of value in uv_index for matching unit. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("uv_index", code="flx"), match="unit"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024902
train
v3
Sensor network script: Node: temperature | code: stn | fields: lat, reading, value, type Sensor: frost | fields: lat, lon, level, ts Task: Retrieve level from temperature with value above the SUM(value) of frost readings sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("frost", code="frs"), match="unit"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024903
train
v3
Sensor network script: Node: frost | code: prt | fields: reading, qc, value, level Sensor: wind_speed | fields: unit, type, value, depth Task: Fetch lat from frost where value is greater than the average of reading in wind_speed for matching unit. Script:
readings = fetch( node=Node("frost", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("wind_speed", code="gst"), match="unit"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lat", "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_024904
train
v1
Sensor network script: Node: sunlight | code: gst | fields: lat, type, depth, qc Sensor: snow_depth | fields: reading, unit, level, ts Task: Retrieve reading from sunlight whose qc is found in snow_depth records where type matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="type", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "reading", "filter_col": "qc", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024905
train
v3
Sensor network script: Node: turbidity | code: clr | fields: qc, unit, lon, lat Sensor: wind_speed | fields: level, lat, type, unit Task: Retrieve reading from turbidity with value above the SUM(reading) of wind_speed readings sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("wind_speed", code="gst"), match="ts"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024906
train
v1
Sensor network script: Node: temperature | code: mst | fields: depth, type, ts, lat Sensor: sunlight | fields: lat, qc, level, unit Task: Get depth from temperature where unit appears in sunlight readings with matching unit. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="unit", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "depth", "filter_col": "unit", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024907
train
v2
Sensor network script: Node: turbidity | code: thr | fields: type, level, reading, unit Sensor: visibility | fields: type, level, unit, ts Task: Retrieve lon from turbidity that have at least one matching reading in visibility sharing the same type. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lon", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024908
train
v2
Sensor network script: Node: pressure | code: ref | fields: lon, reading, qc, lat Sensor: soil_moisture | fields: reading, ts, value, lon Task: Fetch lon from pressure that have at least one corresponding soil_moisture measurement for the same unit. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lon", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024909
train
v3
Sensor network script: Node: wind_speed | code: clr | fields: depth, reading, lon, type Sensor: evaporation | fields: unit, type, level, lon Task: Fetch lon from wind_speed where depth is greater than the average of value in evaporation for matching ts. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("evaporation", code="evp"), match="ts"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024910
train
v3
Sensor network script: Node: lightning | code: prt | fields: level, unit, lat, lon Sensor: soil_moisture | fields: level, qc, unit, depth Task: Retrieve reading from lightning with depth above the SUM(depth) of soil_moisture readings sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024911
train
v3
Sensor network script: Node: sunlight | code: mst | fields: level, depth, unit, lon Sensor: air_quality | fields: level, unit, lat, value Task: Retrieve lat from sunlight with value above the AVG(reading) of air_quality readings sharing the same unit. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("air_quality", code="prt"), match="unit"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024912
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: lat, unit, ts, lon Sensor: cloud_cover | fields: level, lon, qc, ts Task: Get lon from snow_depth where a corresponding entry exists in cloud_cover with the same type. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "lon", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024913
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: reading, qc, lon, level Sensor: sunlight | fields: type, value, qc, reading Task: Get lat from cloud_cover where a corresponding entry exists in sunlight with the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lat", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024914
train
v1
Sensor network script: Node: dew_point | code: ref | fields: depth, level, type, qc Sensor: sunlight | fields: unit, level, lat, depth Task: Fetch reading from dew_point where ts exists in sunlight sensor data for the same qc. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="qc", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "reading", "filter_col": "ts", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024915
train
v3
Sensor network script: Node: pressure | code: mst | fields: level, lon, reading, ts Sensor: visibility | fields: lon, ts, qc, depth Task: Get level from pressure where reading exceeds the total reading from visibility for the same type. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("visibility", code="clr"), match="type"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024916
train
v3
Sensor network script: Node: lightning | code: mst | fields: level, lat, lon, depth Sensor: frost | fields: type, depth, level, lat Task: Fetch lat from lightning where depth is greater than the count of of depth in frost for matching type. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("frost", code="frs"), match="type"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024917
train
v1
Sensor network script: Node: turbidity | code: hub | fields: depth, reading, type, lat Sensor: snow_depth | fields: value, type, reading, qc Task: Retrieve level from turbidity whose unit is found in snow_depth records where ts matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="ts", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024918
train
v2
Sensor network script: Node: turbidity | code: ref | fields: ts, type, reading, qc Sensor: evaporation | fields: lat, ts, depth, level Task: Fetch lon from turbidity that have at least one corresponding evaporation measurement for the same depth. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "lon", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024919
train
v2
Sensor network script: Node: turbidity | code: gst | fields: type, depth, reading, level Sensor: air_quality | fields: reading, unit, lat, qc Task: Fetch lon from turbidity that have at least one corresponding air_quality measurement for the same ts. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lon", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024920
train
v2
Sensor network script: Node: rainfall | code: hub | fields: type, reading, value, lat Sensor: uv_index | fields: depth, unit, lat, type Task: Retrieve lat from rainfall that have at least one matching reading in uv_index sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "lat", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024921
train
v1
Sensor network script: Node: air_quality | code: clr | fields: reading, value, unit, lon Sensor: rainfall | fields: lon, qc, value, ts Task: Get lat from air_quality where unit appears in rainfall readings with matching qc. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="qc", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "unit", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024922
train
v2
Sensor network script: Node: visibility | code: clr | fields: ts, reading, level, lat Sensor: dew_point | fields: lat, reading, ts, lon Task: Get level from visibility where a corresponding entry exists in dew_point with the same ts. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="level", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "level", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024923
train
v1
Sensor network script: Node: rainfall | code: stn | fields: lon, qc, type, level Sensor: pressure | fields: level, unit, value, qc Task: Get level from rainfall where unit appears in pressure readings with matching unit. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="unit", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "level", "filter_col": "unit", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024924
train
v3
Sensor network script: Node: dew_point | code: prt | fields: level, value, unit, depth Sensor: rainfall | fields: ts, depth, lon, level Task: Retrieve reading from dew_point with depth above the MIN(value) of rainfall readings sharing the same type. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("rainfall", code="rnfl"), match="type"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024925
train
v3
Sensor network script: Node: lightning | code: mst | fields: unit, reading, type, value Sensor: dew_point | fields: ts, qc, type, level Task: Retrieve lat from lightning with reading above the AVG(value) of dew_point readings sharing the same depth. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("dew_point", code="cnd"), match="depth"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024926
train
v2
Sensor network script: Node: air_quality | code: prt | fields: type, depth, unit, lon Sensor: evaporation | fields: lat, qc, reading, ts Task: Get depth from air_quality where a corresponding entry exists in evaporation with the same qc. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024927
train
v3
Sensor network script: Node: visibility | code: stn | fields: lat, lon, reading, ts Sensor: air_quality | fields: qc, level, value, type Task: Fetch lon from visibility where reading is greater than the count of of depth in air_quality for matching ts. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("air_quality", code="prt"), match="ts"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024928
train
v1
Sensor network script: Node: drought_index | code: prt | fields: level, qc, ts, value Sensor: frost | fields: value, ts, lat, reading Task: Get value from drought_index where unit appears in frost readings with matching ts. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="ts", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "value", "filter_col": "unit", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024929
train
v2
Sensor network script: Node: visibility | code: mst | fields: level, type, qc, reading Sensor: drought_index | fields: reading, qc, lat, depth Task: Fetch reading from visibility that have at least one corresponding drought_index measurement for the same type. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "reading", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024930
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: value, lat, type, qc Sensor: soil_moisture | fields: lat, value, reading, lon Task: Get reading from snow_depth where depth exceeds the total reading from soil_moisture for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024931
train
v3
Sensor network script: Node: air_quality | code: mst | fields: type, depth, value, qc Sensor: humidity | fields: lon, level, qc, depth Task: Get lon from air_quality where reading exceeds the total reading from humidity for the same unit. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("humidity", code="hgr"), match="unit"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024932
train
v2
Sensor network script: Node: pressure | code: hub | fields: lon, type, unit, qc Sensor: visibility | fields: ts, value, level, lat Task: Get depth from pressure where a corresponding entry exists in visibility with the same type. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "depth", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024933
train
v1
Sensor network script: Node: pressure | code: prt | fields: value, unit, type, lon Sensor: temperature | fields: lon, lat, level, unit Task: Retrieve lat from pressure whose ts is found in temperature records where qc matches the outer node. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="qc", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "lat", "filter_col": "ts", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024934
train
v1
Sensor network script: Node: turbidity | code: ref | fields: qc, lon, unit, ts Sensor: wind_speed | fields: value, lon, ts, reading Task: Retrieve level from turbidity whose depth is found in wind_speed records where type matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="type", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "level", "filter_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024935
train
v3
Sensor network script: Node: sunlight | code: hub | fields: type, lat, unit, level Sensor: humidity | fields: qc, type, value, ts Task: Retrieve lon from sunlight with value above the SUM(depth) of humidity readings sharing the same unit. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("humidity", code="hgr"), match="unit"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024936
train
v1
Sensor network script: Node: lightning | code: thr | fields: value, ts, unit, level Sensor: soil_moisture | fields: ts, reading, level, unit Task: Get lon from lightning where depth appears in soil_moisture readings with matching ts. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024937
train
v1
Sensor network script: Node: temperature | code: prt | fields: lon, qc, level, reading Sensor: dew_point | fields: lon, lat, depth, level Task: Get lon from temperature where depth appears in dew_point readings with matching unit. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="unit", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024938
train
v3
Sensor network script: Node: pressure | code: gst | fields: ts, type, reading, qc Sensor: humidity | fields: reading, lon, ts, lat Task: Fetch depth from pressure where depth is greater than the total of value in humidity for matching ts. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("humidity", code="hgr"), match="ts"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024939
train
v1
Sensor network script: Node: visibility | code: hub | fields: type, ts, level, qc Sensor: temperature | fields: lat, unit, reading, value Task: Retrieve lat from visibility whose unit is found in temperature records where ts matches the outer node. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="ts", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "lat", "filter_col": "unit", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024940
train
v2
Sensor network script: Node: uv_index | code: mst | fields: value, lat, depth, lon Sensor: temperature | fields: reading, depth, type, level Task: Retrieve depth from uv_index that have at least one matching reading in temperature sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024941
train
v3
Sensor network script: Node: pressure | code: stn | fields: depth, reading, unit, value Sensor: uv_index | fields: lon, reading, qc, depth Task: Retrieve reading from pressure with value above the MAX(depth) of uv_index readings sharing the same qc. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("uv_index", code="flx"), match="qc"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024942
train
v3
Sensor network script: Node: evaporation | code: mst | fields: qc, lat, type, value Sensor: dew_point | fields: lat, ts, level, lon Task: Retrieve value from evaporation with depth above the MIN(depth) of dew_point readings sharing the same type. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("dew_point", code="cnd"), match="type"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024943
train
v2
Sensor network script: Node: humidity | code: clr | fields: value, lon, qc, type Sensor: drought_index | fields: unit, type, level, qc Task: Get lat from humidity where a corresponding entry exists in drought_index with the same qc. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "lat", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024944
train
v1
Sensor network script: Node: drought_index | code: gst | fields: value, reading, level, qc Sensor: temperature | fields: type, reading, depth, ts Task: Get lat from drought_index where depth appears in temperature readings with matching ts. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="ts", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lat", "filter_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024945
train
v1
Sensor network script: Node: humidity | code: thr | fields: unit, reading, lon, ts Sensor: snow_depth | fields: type, unit, reading, lon Task: Retrieve level from humidity whose unit is found in snow_depth records where qc matches the outer node. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="qc", ), output="level", )
{ "outer_table": "humidity", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024946
train
v2
Sensor network script: Node: snow_depth | code: hub | fields: qc, unit, ts, value Sensor: evaporation | fields: ts, type, level, depth Task: Fetch level from snow_depth that have at least one corresponding evaporation measurement for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "level", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024947
train
v2
Sensor network script: Node: pressure | code: ref | fields: qc, unit, value, level Sensor: evaporation | fields: depth, level, lon, reading Task: Get level from pressure where a corresponding entry exists in evaporation with the same depth. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="level", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "level", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024948
train
v1
Sensor network script: Node: sunlight | code: clr | fields: ts, value, unit, qc Sensor: cloud_cover | fields: ts, level, value, reading Task: Retrieve lon from sunlight whose ts is found in cloud_cover records where depth matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "ts", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024949
train
v2
Sensor network script: Node: rainfall | code: mst | fields: type, lat, unit, ts Sensor: temperature | fields: level, type, depth, lon Task: Fetch lat from rainfall that have at least one corresponding temperature measurement for the same unit. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lat", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024950
train
v1
Sensor network script: Node: temperature | code: ref | fields: ts, reading, lon, type Sensor: frost | fields: ts, lon, level, unit Task: Retrieve level from temperature whose ts is found in frost records where type matches the outer node. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="type", ), output="level", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "level", "filter_col": "ts", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024951
train
v3
Sensor network script: Node: air_quality | code: ref | fields: depth, lat, ts, reading Sensor: uv_index | fields: lon, level, value, ts Task: Get lat from air_quality where reading exceeds the total depth from uv_index for the same qc. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("uv_index", code="flx"), match="qc"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024952
train
v2
Sensor network script: Node: dew_point | code: mst | fields: lat, unit, level, type Sensor: visibility | fields: type, value, lon, reading Task: Retrieve depth from dew_point that have at least one matching reading in visibility sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024953
train
v1
Sensor network script: Node: visibility | code: hub | fields: qc, level, depth, value Sensor: turbidity | fields: reading, level, qc, type Task: Get lat from visibility where ts appears in turbidity readings with matching ts. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="ts", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "ts", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024954
train
v1
Sensor network script: Node: humidity | code: ref | fields: lon, type, qc, reading Sensor: sunlight | fields: lon, depth, ts, unit Task: Get reading from humidity where unit appears in sunlight readings with matching qc. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="qc", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024955
train
v1
Sensor network script: Node: lightning | code: thr | fields: lon, reading, type, ts Sensor: snow_depth | fields: depth, lon, lat, unit Task: Get depth from lightning where ts appears in snow_depth readings with matching qc. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="qc", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "depth", "filter_col": "ts", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024956
train
v1
Sensor network script: Node: frost | code: hub | fields: unit, lon, level, type Sensor: cloud_cover | fields: qc, lat, type, lon Task: Fetch level from frost where unit exists in cloud_cover sensor data for the same depth. Script:
readings = fetch( node=Node("frost", code="hub"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="level", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "level", "filter_col": "unit", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024957
train
v2
Sensor network script: Node: temperature | code: gst | fields: qc, ts, level, depth Sensor: evaporation | fields: ts, qc, unit, reading Task: Get value from temperature where a corresponding entry exists in evaporation with the same unit. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="value", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "value", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024958
train
v1
Sensor network script: Node: pressure | code: hub | fields: level, qc, type, lon Sensor: dew_point | fields: lat, value, level, lon Task: Get depth from pressure where unit appears in dew_point readings with matching depth. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="depth", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "unit", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024959
train
v2
Sensor network script: Node: pressure | code: gst | fields: depth, reading, value, ts Sensor: sunlight | fields: lat, ts, reading, lon Task: Get depth from pressure where a corresponding entry exists in sunlight with the same depth. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024960
train
v1
Sensor network script: Node: soil_moisture | code: hub | fields: unit, type, lon, lat Sensor: snow_depth | fields: depth, lon, reading, ts Task: Get reading from soil_moisture where ts appears in snow_depth readings with matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="ts", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024961
train
v3
Sensor network script: Node: evaporation | code: ref | fields: ts, value, type, depth Sensor: cloud_cover | fields: depth, type, lon, ts Task: Fetch depth from evaporation where reading is greater than the total of depth in cloud_cover for matching unit. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024962
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: qc, depth, reading, value Sensor: wind_speed | fields: unit, depth, lon, reading Task: Fetch depth from snow_depth where depth is greater than the minimum of depth in wind_speed for matching ts. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("wind_speed", code="gst"), match="ts"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024963
train
v3
Sensor network script: Node: turbidity | code: ref | fields: ts, qc, unit, depth Sensor: wind_speed | fields: type, level, qc, depth Task: Retrieve reading from turbidity with reading above the MIN(value) of wind_speed readings sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("wind_speed", code="gst"), match="ts"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024964
train
v1
Sensor network script: Node: lightning | code: gst | fields: lon, level, reading, type Sensor: evaporation | fields: value, depth, ts, reading Task: Retrieve reading from lightning whose unit is found in evaporation records where ts matches the outer node. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="ts", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "reading", "filter_col": "unit", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024965
train
v2
Sensor network script: Node: frost | code: mst | fields: lon, value, depth, reading Sensor: temperature | fields: qc, depth, type, level Task: Get value from frost where a corresponding entry exists in temperature with the same ts. Script:
readings = fetch( node=Node("frost", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="value", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "value", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024966
train
v1
Sensor network script: Node: temperature | code: gst | fields: ts, level, reading, unit Sensor: air_quality | fields: qc, reading, lat, level Task: Get value from temperature where unit appears in air_quality readings with matching ts. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="ts", ), output="value", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "value", "filter_col": "unit", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024967
train
v3
Sensor network script: Node: sunlight | code: gst | fields: lat, lon, qc, type Sensor: pressure | fields: unit, ts, reading, value Task: Fetch reading from sunlight where reading is greater than the total of reading in pressure for matching type. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("pressure", code="mbl"), match="type"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024968
train
v2
Sensor network script: Node: uv_index | code: stn | fields: level, ts, depth, type Sensor: air_quality | fields: value, level, reading, lat Task: Get lon from uv_index where a corresponding entry exists in air_quality with the same qc. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "lon", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024969
train
v2
Sensor network script: Node: uv_index | code: clr | fields: level, lon, qc, lat Sensor: lightning | fields: unit, depth, lat, value Task: Fetch lat from uv_index that have at least one corresponding lightning measurement for the same depth. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lat", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024970
train
v2
Sensor network script: Node: rainfall | code: stn | fields: lat, value, ts, depth Sensor: lightning | fields: qc, lat, depth, reading Task: Get depth from rainfall where a corresponding entry exists in lightning with the same type. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "depth", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024971
train
v1
Sensor network script: Node: cloud_cover | code: stn | fields: ts, unit, level, value Sensor: sunlight | fields: level, type, unit, lat Task: Fetch value from cloud_cover where depth exists in sunlight sensor data for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="type", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "value", "filter_col": "depth", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024972
train
v2
Sensor network script: Node: uv_index | code: thr | fields: unit, ts, reading, qc Sensor: pressure | fields: level, lat, type, qc Task: Fetch depth from uv_index that have at least one corresponding pressure measurement for the same unit. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024973
train
v2
Sensor network script: Node: turbidity | code: stn | fields: qc, lat, reading, type Sensor: frost | fields: lat, unit, depth, ts Task: Retrieve value from turbidity that have at least one matching reading in frost sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "value", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024974
train
v3
Sensor network script: Node: humidity | code: ref | fields: ts, reading, qc, level Sensor: visibility | fields: qc, level, depth, lon Task: Get level from humidity where value exceeds the maximum depth from visibility for the same type. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("visibility", code="clr"), match="type"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024975
train
v2
Sensor network script: Node: sunlight | code: stn | fields: qc, reading, level, lon Sensor: turbidity | fields: value, unit, depth, reading Task: Get value from sunlight where a corresponding entry exists in turbidity with the same ts. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "value", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024976
train
v2
Sensor network script: Node: wind_speed | code: hub | fields: level, lon, qc, reading Sensor: visibility | fields: level, value, depth, lon Task: Get reading from wind_speed where a corresponding entry exists in visibility with the same qc. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "reading", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024977
train
v3
Sensor network script: Node: uv_index | code: mst | fields: qc, lon, unit, lat Sensor: air_quality | fields: type, depth, qc, unit Task: Get lon from uv_index where reading exceeds the minimum value from air_quality for the same unit. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("air_quality", code="prt"), match="unit"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024978
train
v3
Sensor network script: Node: dew_point | code: hub | fields: unit, value, depth, lat Sensor: evaporation | fields: lon, type, qc, reading Task: Retrieve lon from dew_point with reading above the MIN(value) of evaporation readings sharing the same type. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("evaporation", code="evp"), match="type"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024979
train
v2
Sensor network script: Node: drought_index | code: mst | fields: ts, type, level, lon Sensor: temperature | fields: level, value, depth, qc Task: Get depth from drought_index where a corresponding entry exists in temperature with the same ts. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=has_match( 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", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024980
train
v2
Sensor network script: Node: rainfall | code: prt | fields: qc, value, type, ts Sensor: uv_index | fields: type, depth, reading, lon Task: Fetch value from rainfall that have at least one corresponding uv_index measurement for the same depth. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "value", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024981
train
v1
Sensor network script: Node: humidity | code: gst | fields: ts, unit, lon, value Sensor: soil_moisture | fields: ts, reading, level, value Task: Retrieve depth from humidity whose qc is found in soil_moisture records where ts matches the outer node. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024982
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: lat, value, lon, type Sensor: frost | fields: level, lon, qc, unit Task: Fetch depth from soil_moisture that have at least one corresponding frost measurement for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024983
train
v1
Sensor network script: Node: drought_index | code: mst | fields: level, lat, ts, value Sensor: cloud_cover | fields: reading, depth, ts, value Task: Retrieve lat from drought_index whose depth is found in cloud_cover records where depth matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024984
train
v3
Sensor network script: Node: sunlight | code: mst | fields: reading, ts, type, unit Sensor: frost | fields: level, depth, reading, lon Task: Retrieve reading from sunlight with value above the MAX(reading) of frost readings sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("frost", code="frs"), match="qc"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024985
train
v1
Sensor network script: Node: frost | code: prt | fields: unit, lon, qc, lat Sensor: sunlight | fields: unit, reading, value, type Task: Retrieve lat from frost whose unit is found in sunlight records where type matches the outer node. Script:
readings = fetch( node=Node("frost", code="prt"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="type", ), output="lat", )
{ "outer_table": "frost", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "lat", "filter_col": "unit", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024986
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: ts, type, lat, reading Sensor: humidity | fields: level, value, depth, ts Task: Fetch lon from soil_moisture where value is greater than the average of reading in humidity for matching depth. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("humidity", code="hgr"), match="depth"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024987
train
v1
Sensor network script: Node: soil_moisture | code: clr | fields: depth, lon, value, unit Sensor: turbidity | fields: type, lat, qc, depth Task: Get depth from soil_moisture where qc appears in turbidity readings with matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="ts", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024988
train
v2
Sensor network script: Node: cloud_cover | code: hub | fields: qc, lat, level, unit Sensor: temperature | fields: unit, type, qc, value Task: Retrieve value from cloud_cover that have at least one matching reading in temperature sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "value", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024989
train
v1
Sensor network script: Node: drought_index | code: mst | fields: type, reading, level, lon Sensor: air_quality | fields: reading, qc, ts, level Task: Fetch value from drought_index where unit exists in air_quality sensor data for the same type. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="type", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "value", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024990
train
v2
Sensor network script: Node: drought_index | code: hub | fields: lat, level, value, ts Sensor: rainfall | fields: reading, ts, depth, unit Task: Get value from drought_index where a corresponding entry exists in rainfall with the same depth. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "value", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024991
train
v3
Sensor network script: Node: evaporation | code: clr | fields: lon, qc, level, unit Sensor: sunlight | fields: ts, type, lat, level Task: Retrieve lat from evaporation with depth above the MIN(value) of sunlight readings sharing the same type. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("sunlight", code="brt"), match="type"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024992
train
v2
Sensor network script: Node: humidity | code: gst | fields: reading, level, lat, qc Sensor: uv_index | fields: ts, qc, lon, value Task: Fetch depth from humidity that have at least one corresponding uv_index measurement for the same ts. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024993
train
v2
Sensor network script: Node: drought_index | code: ref | fields: lat, qc, unit, reading Sensor: rainfall | fields: ts, unit, type, qc Task: Get level from drought_index where a corresponding entry exists in rainfall with the same unit. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "level", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024994
train
v2
Sensor network script: Node: dew_point | code: hub | fields: value, lat, type, depth Sensor: rainfall | fields: type, unit, level, value Task: Fetch level from dew_point that have at least one corresponding rainfall measurement for the same depth. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "level", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024995
train
v2
Sensor network script: Node: turbidity | code: gst | fields: reading, level, unit, lat Sensor: air_quality | fields: lat, type, qc, reading Task: Get depth from turbidity where a corresponding entry exists in air_quality with the same type. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "depth", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024996
train
v1
Sensor network script: Node: frost | code: ref | fields: level, reading, ts, value Sensor: pressure | fields: depth, level, type, reading Task: Get level from frost where unit appears in pressure readings with matching ts. Script:
readings = fetch( node=Node("frost", code="ref"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="ts", ), output="level", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024997
train
v1
Sensor network script: Node: uv_index | code: prt | fields: unit, type, depth, level Sensor: soil_moisture | fields: depth, lat, lon, level Task: Retrieve level from uv_index whose ts is found in soil_moisture records where unit matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "level", "filter_col": "ts", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024998
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: level, ts, qc, value Sensor: temperature | fields: ts, qc, lat, value Task: Fetch lon from snow_depth where reading is greater than the count of of reading in temperature for matching qc. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("temperature", code="thr"), match="qc"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024999
train