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: cloud_cover | code: ref | fields: depth, qc, ts, unit Sensor: rainfall | fields: reading, value, depth, level Task: Fetch level from cloud_cover where depth exists in rainfall sensor data for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="unit", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081500
train
v2
Sensor network script: Node: uv_index | code: thr | fields: type, lon, qc, reading Sensor: drought_index | fields: unit, lon, qc, reading Task: Get level from uv_index where a corresponding entry exists in drought_index with the same unit. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "level", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081501
train
v3
Sensor network script: Node: evaporation | code: prt | fields: qc, lon, ts, type Sensor: turbidity | fields: qc, level, lat, depth Task: Fetch level from evaporation where value is greater than the maximum of depth in turbidity for matching unit. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("turbidity", code="ftu"), match="unit"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081502
train
v2
Sensor network script: Node: pressure | code: hub | fields: ts, level, type, reading Sensor: temperature | fields: value, qc, lat, unit Task: Fetch lat from pressure that have at least one corresponding temperature measurement for the same ts. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "lat", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081503
train
v3
Sensor network script: Node: lightning | code: prt | fields: depth, type, lat, ts Sensor: pressure | fields: qc, ts, value, unit Task: Fetch level from lightning where value is greater than the average of reading in pressure for matching type. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("pressure", code="mbl"), match="type"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081504
train
v1
Sensor network script: Node: rainfall | code: gst | fields: qc, type, unit, ts Sensor: humidity | fields: lat, type, unit, depth Task: Retrieve lon from rainfall whose type is found in humidity records where ts matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="ts", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "type", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081505
train
v3
Sensor network script: Node: drought_index | code: hub | fields: type, lon, level, reading Sensor: temperature | fields: level, unit, lon, depth Task: Fetch lon from drought_index where value is greater than the average of reading in temperature for matching ts. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("temperature", code="thr"), match="ts"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081506
train
v3
Sensor network script: Node: uv_index | code: clr | fields: type, lat, lon, unit Sensor: lightning | fields: lon, lat, ts, value Task: Get reading from uv_index where depth exceeds the count of value from lightning for the same unit. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("lightning", code="tnd"), match="unit"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081507
train
v2
Sensor network script: Node: sunlight | code: prt | fields: lon, reading, level, ts Sensor: turbidity | fields: value, unit, lon, depth Task: Retrieve lon from sunlight that have at least one matching reading in turbidity sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "lon", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081508
train
v3
Sensor network script: Node: turbidity | code: prt | fields: lon, qc, type, ts Sensor: sunlight | fields: ts, level, lat, reading Task: Fetch lon from turbidity where reading is greater than the average of value in sunlight for matching ts. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("sunlight", code="brt"), match="ts"), ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081509
train
v1
Sensor network script: Node: drought_index | code: gst | fields: depth, unit, level, reading Sensor: air_quality | fields: type, ts, lat, value Task: Retrieve depth from drought_index whose depth is found in air_quality records where ts matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="depth", source=Probe("air_quality", code="prt"), match="ts", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081510
train
v1
Sensor network script: Node: lightning | code: clr | fields: unit, value, reading, qc Sensor: wind_speed | fields: depth, value, lon, level Task: Fetch lat from lightning where unit exists in wind_speed sensor data for the same type. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="type", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lat", "filter_col": "unit", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081511
train
v2
Sensor network script: Node: lightning | code: gst | fields: qc, depth, ts, type Sensor: sunlight | fields: depth, lon, level, qc Task: Get value from lightning where a corresponding entry exists in sunlight with the same type. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="value", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "value", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081512
train
v1
Sensor network script: Node: humidity | code: hub | fields: value, unit, level, ts Sensor: snow_depth | fields: depth, value, level, lat Task: Retrieve depth from humidity whose unit is found in snow_depth records where ts matches the outer node. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="ts", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081513
train
v3
Sensor network script: Node: turbidity | code: gst | fields: type, depth, unit, lon Sensor: lightning | fields: value, unit, type, level Task: Retrieve lat from turbidity with depth above the COUNT(depth) of lightning readings sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("lightning", code="tnd"), match="ts"), ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081514
train
v3
Sensor network script: Node: uv_index | code: prt | fields: reading, qc, depth, type Sensor: humidity | fields: lon, reading, lat, unit Task: Fetch lon from uv_index where depth is greater than the count of of reading in humidity for matching qc. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("humidity", code="hgr"), match="qc"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081515
train
v2
Sensor network script: Node: temperature | code: stn | fields: lon, qc, lat, unit Sensor: soil_moisture | fields: qc, lat, reading, type Task: Fetch lat from temperature that have at least one corresponding soil_moisture measurement for the same type. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "lat", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081516
train
v1
Sensor network script: Node: visibility | code: thr | fields: lon, lat, unit, value Sensor: wind_speed | fields: level, lat, type, unit Task: Get value from visibility where ts appears in wind_speed readings with matching unit. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="unit", ), output="value", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "value", "filter_col": "ts", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081517
train
v3
Sensor network script: Node: temperature | code: thr | fields: lon, ts, value, reading Sensor: uv_index | fields: type, depth, level, ts Task: Retrieve depth from temperature with value above the MIN(value) of uv_index readings sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("uv_index", code="flx"), match="unit"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081518
train
v3
Sensor network script: Node: temperature | code: thr | fields: qc, type, depth, reading Sensor: air_quality | fields: level, unit, type, ts Task: Retrieve lon from temperature with depth above the SUM(depth) of air_quality readings sharing the same type. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("air_quality", code="prt"), match="type"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081519
train
v3
Sensor network script: Node: cloud_cover | code: clr | fields: reading, type, unit, value Sensor: lightning | fields: level, value, qc, unit Task: Fetch level from cloud_cover where depth is greater than the total of depth in lightning for matching unit. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("lightning", code="tnd"), match="unit"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081520
train
v1
Sensor network script: Node: soil_moisture | code: thr | fields: depth, value, reading, ts Sensor: cloud_cover | fields: qc, unit, type, lon Task: Get lon from soil_moisture where ts appears in cloud_cover readings with matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "ts", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081521
train
v1
Sensor network script: Node: sunlight | code: clr | fields: unit, lon, reading, level Sensor: frost | fields: unit, ts, lon, type Task: Get value from sunlight where type appears in frost readings with matching depth. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="depth", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "value", "filter_col": "type", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081522
train
v3
Sensor network script: Node: pressure | code: clr | fields: lon, ts, qc, unit Sensor: snow_depth | fields: level, reading, lon, value Task: Get depth from pressure where depth exceeds the count of depth from snow_depth for the same unit. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("snow_depth", code="snw"), match="unit"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081523
train
v1
Sensor network script: Node: temperature | code: mst | fields: reading, depth, unit, type Sensor: air_quality | fields: ts, level, lon, value Task: Get lon from temperature where ts appears in air_quality readings with matching ts. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="ts", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lon", "filter_col": "ts", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081524
train
v3
Sensor network script: Node: pressure | code: hub | fields: lat, level, unit, ts Sensor: rainfall | fields: qc, level, unit, lat Task: Retrieve depth from pressure with depth above the SUM(value) of rainfall readings sharing the same depth. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081525
train
v1
Sensor network script: Node: frost | code: hub | fields: type, unit, value, level Sensor: temperature | fields: depth, value, qc, lon Task: Get level from frost where qc appears in temperature readings with matching qc. Script:
readings = fetch( node=Node("frost", code="hub"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="qc", ), output="level", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "level", "filter_col": "qc", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081526
train
v3
Sensor network script: Node: dew_point | code: ref | fields: depth, lon, ts, type Sensor: turbidity | fields: level, depth, qc, type Task: Fetch level from dew_point where depth is greater than the count of of value in turbidity for matching ts. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("turbidity", code="ftu"), match="ts"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081527
train
v1
Sensor network script: Node: dew_point | code: mst | fields: type, ts, unit, qc Sensor: snow_depth | fields: ts, lat, reading, level Task: Get lat from dew_point where type appears in snow_depth readings with matching unit. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="unit", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "lat", "filter_col": "type", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081528
train
v2
Sensor network script: Node: uv_index | code: stn | fields: qc, depth, lon, ts Sensor: lightning | fields: lon, ts, qc, level Task: Get level from uv_index where a corresponding entry exists in lightning with the same qc. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "level", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081529
train
v2
Sensor network script: Node: pressure | code: clr | fields: unit, reading, ts, lon Sensor: turbidity | fields: ts, unit, level, depth Task: Fetch lat from pressure that have at least one corresponding turbidity measurement for the same ts. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "lat", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081530
train
v2
Sensor network script: Node: sunlight | code: gst | fields: lat, type, lon, qc Sensor: evaporation | fields: lat, qc, unit, ts Task: Fetch value from sunlight that have at least one corresponding evaporation measurement for the same depth. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "value", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081531
train
v2
Sensor network script: Node: air_quality | code: gst | fields: qc, ts, value, lon Sensor: dew_point | fields: level, reading, lon, lat Task: Get lon from air_quality where a corresponding entry exists in dew_point with the same type. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "lon", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081532
train
v2
Sensor network script: Node: visibility | code: gst | fields: reading, depth, value, qc Sensor: air_quality | fields: value, unit, ts, depth Task: Retrieve depth from visibility that have at least one matching reading in air_quality sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "depth", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081533
train
v3
Sensor network script: Node: soil_moisture | code: stn | fields: level, reading, unit, ts Sensor: temperature | fields: qc, reading, lat, ts Task: Get depth from soil_moisture where value exceeds the total value from temperature for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("temperature", code="thr"), match="ts"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081534
train
v1
Sensor network script: Node: wind_speed | code: stn | fields: qc, depth, unit, value Sensor: air_quality | fields: type, lat, unit, reading Task: Retrieve lat from wind_speed whose ts is found in air_quality records where type matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="type", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "lat", "filter_col": "ts", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081535
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: unit, type, lon, depth Sensor: pressure | fields: level, qc, depth, type Task: Get reading from wind_speed where a corresponding entry exists in pressure with the same unit. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081536
train
v1
Sensor network script: Node: snow_depth | code: ref | fields: reading, lon, ts, lat Sensor: soil_moisture | fields: ts, qc, depth, type Task: Retrieve lat from snow_depth whose unit is found in soil_moisture records where depth matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "unit", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081537
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: depth, ts, qc, value Sensor: soil_moisture | fields: lat, qc, type, level Task: Retrieve level from cloud_cover with value above the MIN(depth) of soil_moisture readings sharing the same type. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081538
train
v3
Sensor network script: Node: uv_index | code: ref | fields: ts, level, lat, lon Sensor: lightning | fields: unit, value, ts, lat Task: Retrieve depth from uv_index with reading above the AVG(depth) of lightning readings sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("lightning", code="tnd"), match="unit"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081539
train
v3
Sensor network script: Node: turbidity | code: ref | fields: reading, lon, type, lat Sensor: frost | fields: level, depth, value, type Task: Retrieve lat from turbidity with depth above the COUNT(value) of frost readings sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("frost", code="frs"), match="ts"), ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081540
train
v2
Sensor network script: Node: frost | code: hub | fields: lon, value, qc, ts Sensor: dew_point | fields: lon, qc, ts, type Task: Get lat from frost where a corresponding entry exists in dew_point with the same type. Script:
readings = fetch( node=Node("frost", code="hub"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="lat", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lat", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081541
train
v2
Sensor network script: Node: temperature | code: hub | fields: depth, reading, ts, qc Sensor: evaporation | fields: type, depth, lon, reading Task: Fetch lon from temperature that have at least one corresponding evaporation measurement for the same unit. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lon", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081542
train
v1
Sensor network script: Node: sunlight | code: clr | fields: reading, unit, level, value Sensor: air_quality | fields: value, type, lat, ts Task: Fetch level from sunlight where qc exists in air_quality sensor data for the same ts. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="ts", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "level", "filter_col": "qc", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081543
train
v1
Sensor network script: Node: cloud_cover | code: stn | fields: reading, unit, level, ts Sensor: dew_point | fields: level, unit, qc, depth Task: Get value from cloud_cover where depth appears in dew_point readings with matching qc. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="qc", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "value", "filter_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081544
train
v2
Sensor network script: Node: wind_speed | code: hub | fields: qc, reading, unit, lon Sensor: sunlight | fields: lat, reading, lon, qc Task: Fetch value from wind_speed that have at least one corresponding sunlight measurement for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "value", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081545
train
v3
Sensor network script: Node: sunlight | code: clr | fields: unit, type, reading, lat Sensor: cloud_cover | fields: ts, lat, lon, reading Task: Get lon from sunlight where value exceeds the minimum value from cloud_cover for the same type. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081546
train
v1
Sensor network script: Node: air_quality | code: mst | fields: type, reading, unit, qc Sensor: sunlight | fields: qc, reading, unit, lat Task: Retrieve depth from air_quality whose type is found in sunlight records where ts matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="ts", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "depth", "filter_col": "type", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081547
train
v3
Sensor network script: Node: evaporation | code: prt | fields: level, depth, ts, type Sensor: uv_index | fields: unit, level, reading, depth Task: Retrieve lon from evaporation with reading above the MAX(value) of uv_index readings sharing the same depth. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("uv_index", code="flx"), match="depth"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081548
train
v2
Sensor network script: Node: humidity | code: clr | fields: depth, ts, value, reading Sensor: turbidity | fields: reading, level, qc, value Task: Fetch value from humidity that have at least one corresponding turbidity measurement for the same unit. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="value", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "value", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081549
train
v2
Sensor network script: Node: cloud_cover | code: prt | fields: ts, reading, value, unit Sensor: humidity | fields: lon, value, reading, depth Task: Get lon from cloud_cover where a corresponding entry exists in humidity with the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lon", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081550
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: lat, qc, depth, type Sensor: turbidity | fields: qc, type, level, lon Task: Fetch lon from wind_speed that have at least one corresponding turbidity measurement for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "lon", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081551
train
v1
Sensor network script: Node: snow_depth | code: thr | fields: ts, type, unit, lat Sensor: rainfall | fields: qc, depth, type, value Task: Fetch level from snow_depth where unit exists in rainfall sensor data for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="unit", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "unit", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081552
train
v3
Sensor network script: Node: snow_depth | code: gst | fields: lon, qc, value, lat Sensor: uv_index | fields: type, lon, level, depth Task: Get lat from snow_depth where reading exceeds the average depth from uv_index for the same type. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("uv_index", code="flx"), match="type"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081553
train
v3
Sensor network script: Node: humidity | code: mst | fields: type, lat, qc, lon Sensor: air_quality | fields: depth, value, qc, level Task: Retrieve reading from humidity with reading above the MIN(reading) of air_quality readings sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("air_quality", code="prt"), match="depth"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081554
train
v3
Sensor network script: Node: temperature | code: thr | fields: depth, lon, value, unit Sensor: air_quality | fields: depth, ts, lat, unit Task: Get level from temperature where depth exceeds the count of depth from air_quality for the same unit. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("air_quality", code="prt"), match="unit"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081555
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: lat, lon, reading, unit Sensor: humidity | fields: lat, ts, lon, value Task: Get lat from soil_moisture where qc appears in humidity readings with matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="qc", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081556
train
v1
Sensor network script: Node: lightning | code: mst | fields: depth, type, level, lon Sensor: frost | fields: reading, qc, ts, value Task: Retrieve reading from lightning whose ts is found in frost records where unit matches the outer node. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="unit", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081557
train
v1
Sensor network script: Node: pressure | code: hub | fields: ts, reading, unit, type Sensor: uv_index | fields: level, ts, depth, lat Task: Get reading from pressure where type appears in uv_index readings with matching unit. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="unit", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081558
train
v2
Sensor network script: Node: sunlight | code: stn | fields: reading, lat, qc, level Sensor: temperature | fields: ts, lon, level, qc Task: Retrieve lat from sunlight that have at least one matching reading in temperature sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lat", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081559
train
v1
Sensor network script: Node: rainfall | code: prt | fields: value, ts, level, lon Sensor: pressure | fields: lon, depth, reading, qc Task: Fetch lon from rainfall where depth exists in pressure sensor data for the same qc. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="qc", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081560
train
v1
Sensor network script: Node: dew_point | code: stn | fields: value, depth, type, lon Sensor: lightning | fields: depth, type, lon, unit Task: Fetch depth from dew_point where qc exists in lightning sensor data for the same unit. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="unit", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "qc", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081561
train
v3
Sensor network script: Node: frost | code: ref | fields: unit, qc, ts, level Sensor: sunlight | fields: lon, value, type, qc Task: Retrieve level from frost with depth above the SUM(value) of sunlight readings sharing the same depth. Script:
readings = fetch( node=Node("frost", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("sunlight", code="brt"), match="depth"), ), output="level", )
{ "outer_table": "frost", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081562
train
v3
Sensor network script: Node: evaporation | code: ref | fields: unit, level, value, ts Sensor: uv_index | fields: reading, type, unit, level Task: Get level from evaporation where value exceeds the maximum value from uv_index for the same ts. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("uv_index", code="flx"), match="ts"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081563
train
v2
Sensor network script: Node: frost | code: ref | fields: type, depth, level, reading Sensor: temperature | fields: depth, lat, reading, type Task: Get level from frost where a corresponding entry exists in temperature with the same depth. Script:
readings = fetch( node=Node("frost", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="level", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "level", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081564
train
v1
Sensor network script: Node: pressure | code: stn | fields: reading, lon, value, level Sensor: temperature | fields: depth, qc, type, ts Task: Retrieve depth from pressure whose qc is found in temperature records where ts matches the outer node. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="ts", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081565
train
v2
Sensor network script: Node: evaporation | code: gst | fields: value, lat, unit, lon Sensor: dew_point | fields: level, unit, lon, reading Task: Get reading from evaporation where a corresponding entry exists in dew_point with the same qc. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "reading", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081566
train
v2
Sensor network script: Node: uv_index | code: clr | fields: lat, value, lon, qc Sensor: turbidity | fields: unit, value, lat, depth Task: Fetch level from uv_index that have at least one corresponding turbidity measurement for the same type. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "level", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081567
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: level, lat, ts, value Sensor: uv_index | fields: lat, lon, reading, depth Task: Get value from snow_depth where value exceeds the total depth from uv_index for the same type. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("uv_index", code="flx"), match="type"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081568
train
v1
Sensor network script: Node: drought_index | code: mst | fields: level, ts, reading, lat Sensor: temperature | fields: lat, level, unit, qc Task: Retrieve value from drought_index whose unit is found in temperature records where qc matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="qc", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081569
train
v2
Sensor network script: Node: visibility | code: gst | fields: unit, depth, level, qc Sensor: temperature | fields: lat, unit, value, lon Task: Fetch reading from visibility that have at least one corresponding temperature measurement for the same unit. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "reading", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081570
train
v2
Sensor network script: Node: dew_point | code: prt | fields: reading, depth, unit, lat Sensor: snow_depth | fields: ts, depth, unit, reading Task: Fetch value from dew_point that have at least one corresponding snow_depth measurement for the same depth. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "value", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081571
train
v2
Sensor network script: Node: air_quality | code: prt | fields: qc, reading, depth, lat Sensor: snow_depth | fields: lat, qc, ts, reading Task: Retrieve reading from air_quality that have at least one matching reading in snow_depth sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "reading", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081572
train
v1
Sensor network script: Node: rainfall | code: hub | fields: reading, depth, value, ts Sensor: turbidity | fields: lat, ts, lon, unit Task: Get reading from rainfall where ts appears in turbidity readings with matching ts. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="ts", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081573
train
v1
Sensor network script: Node: uv_index | code: prt | fields: value, depth, level, unit Sensor: turbidity | fields: level, ts, type, depth Task: Retrieve level from uv_index whose unit is found in turbidity records where unit matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="unit", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "level", "filter_col": "unit", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081574
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: depth, reading, lon, qc Sensor: wind_speed | fields: lat, lon, level, unit Task: Fetch lat from soil_moisture where value is greater than the minimum of value in wind_speed for matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("wind_speed", code="gst"), match="qc"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081575
train
v2
Sensor network script: Node: dew_point | code: prt | fields: type, level, value, lat Sensor: evaporation | fields: reading, unit, depth, ts Task: Get reading from dew_point where a corresponding entry exists in evaporation with the same type. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "reading", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081576
train
v3
Sensor network script: Node: rainfall | code: thr | fields: level, unit, depth, lon Sensor: frost | fields: level, unit, ts, qc Task: Get lat from rainfall where depth exceeds the maximum depth from frost for the same depth. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("frost", code="frs"), match="depth"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081577
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: value, qc, reading, lon Sensor: uv_index | fields: unit, type, lat, lon Task: Get reading from snow_depth where depth appears in uv_index readings with matching unit. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="unit", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "reading", "filter_col": "depth", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081578
train
v1
Sensor network script: Node: cloud_cover | code: clr | fields: level, unit, value, type Sensor: soil_moisture | fields: unit, type, lat, qc Task: Get lon from cloud_cover where ts appears in soil_moisture readings with matching unit. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081579
train
v1
Sensor network script: Node: evaporation | code: clr | fields: qc, level, value, reading Sensor: temperature | fields: value, lon, unit, type Task: Fetch reading from evaporation where qc exists in temperature sensor data for the same ts. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="ts", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "reading", "filter_col": "qc", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081580
train
v1
Sensor network script: Node: cloud_cover | code: hub | fields: reading, depth, ts, unit Sensor: rainfall | fields: type, depth, unit, level Task: Fetch level from cloud_cover where depth exists in rainfall sensor data for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="depth", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081581
train
v3
Sensor network script: Node: soil_moisture | code: ref | fields: depth, ts, unit, lon Sensor: wind_speed | fields: ts, reading, value, depth Task: Retrieve value from soil_moisture with reading above the MAX(reading) of wind_speed readings sharing the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("wind_speed", code="gst"), match="qc"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081582
train
v2
Sensor network script: Node: snow_depth | code: mst | fields: qc, value, level, ts Sensor: soil_moisture | fields: ts, qc, lon, depth Task: Retrieve lat from snow_depth that have at least one matching reading in soil_moisture sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081583
train
v3
Sensor network script: Node: humidity | code: thr | fields: qc, lon, reading, ts Sensor: visibility | fields: type, level, reading, lat Task: Retrieve lat from humidity with reading above the COUNT(reading) of visibility readings sharing the same type. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("visibility", code="clr"), match="type"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081584
train
v2
Sensor network script: Node: cloud_cover | code: ref | fields: depth, lon, reading, ts Sensor: dew_point | fields: lat, level, reading, unit Task: Get level from cloud_cover where a corresponding entry exists in dew_point with the same type. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "level", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081585
train
v1
Sensor network script: Node: visibility | code: mst | fields: ts, unit, lat, type Sensor: temperature | fields: ts, qc, level, value Task: Get reading from visibility where type appears in temperature readings with matching qc. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="qc", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "reading", "filter_col": "type", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081586
train
v2
Sensor network script: Node: air_quality | code: ref | fields: lat, qc, reading, type Sensor: wind_speed | fields: qc, lon, reading, depth Task: Fetch depth from air_quality that have at least one corresponding wind_speed measurement for the same type. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081587
train
v1
Sensor network script: Node: turbidity | code: mst | fields: lon, depth, unit, level Sensor: air_quality | fields: qc, ts, value, lon Task: Fetch lon from turbidity where qc exists in air_quality sensor data for the same unit. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="unit", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lon", "filter_col": "qc", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081588
train
v3
Sensor network script: Node: soil_moisture | code: prt | fields: depth, reading, unit, level Sensor: temperature | fields: qc, lon, unit, reading Task: Fetch depth from soil_moisture where value is greater than the minimum of value in temperature for matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("temperature", code="thr"), match="ts"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081589
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: depth, lat, level, reading Sensor: uv_index | fields: ts, lon, reading, level Task: Get value from cloud_cover where reading exceeds the average depth from uv_index for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("uv_index", code="flx"), match="type"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081590
train
v2
Sensor network script: Node: snow_depth | code: hub | fields: qc, depth, type, ts Sensor: wind_speed | fields: lon, unit, type, qc Task: Fetch depth from snow_depth that have at least one corresponding wind_speed measurement for the same type. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "depth", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081591
train
v1
Sensor network script: Node: frost | code: thr | fields: qc, depth, level, unit Sensor: lightning | fields: type, unit, depth, lat Task: Fetch level from frost where depth exists in lightning sensor data for the same depth. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="depth", ), output="level", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "level", "filter_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081592
train
v1
Sensor network script: Node: wind_speed | code: clr | fields: value, qc, level, lon Sensor: humidity | fields: lon, value, ts, level Task: Get lat from wind_speed where type appears in humidity readings with matching depth. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="depth", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "type", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081593
train
v3
Sensor network script: Node: humidity | code: clr | fields: type, ts, depth, unit Sensor: snow_depth | fields: reading, level, ts, value Task: Retrieve lon from humidity with depth above the MAX(reading) of snow_depth readings sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("snow_depth", code="snw"), match="unit"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081594
train
v1
Sensor network script: Node: temperature | code: gst | fields: reading, lon, depth, value Sensor: lightning | fields: lat, ts, value, lon Task: Fetch value from temperature where type exists in lightning sensor data for the same ts. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="ts", ), output="value", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "value", "filter_col": "type", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081595
train
v3
Sensor network script: Node: drought_index | code: mst | fields: qc, value, level, lat Sensor: visibility | fields: type, lat, level, qc Task: Fetch depth from drought_index where reading is greater than the total of value in visibility for matching type. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("visibility", code="clr"), match="type"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_081596
train
v3
Sensor network script: Node: uv_index | code: stn | fields: lat, lon, reading, unit Sensor: rainfall | fields: qc, level, lon, unit Task: Retrieve depth from uv_index with reading above the COUNT(value) of rainfall readings sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081597
train
v3
Sensor network script: Node: snow_depth | code: stn | fields: type, level, qc, lat Sensor: cloud_cover | fields: reading, qc, ts, type Task: Fetch level from snow_depth where value is greater than the maximum of value in cloud_cover for matching qc. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081598
train
v3
Sensor network script: Node: uv_index | code: gst | fields: lon, type, lat, qc Sensor: rainfall | fields: lon, unit, level, type Task: Get reading from uv_index where value exceeds the average depth from rainfall for the same ts. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_081599
train